1. Packages
  2. Constellix Provider
  3. API Docs
  4. getHinfoRecord
constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix

constellix.getHinfoRecord

Start a Neo task
Explain and create a constellix.getHinfoRecord resource
constellix logo
constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix

    Data source for HINFO record

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as constellix from "@pulumi/constellix";
    
    const hinfo = constellix.getHinfoRecord({
        domainId: data.constellix_domain.domain1.id,
        name: "datahinforecord",
        sourceType: "domains",
    });
    
    import pulumi
    import pulumi_constellix as constellix
    
    hinfo = constellix.get_hinfo_record(domain_id=data["constellix_domain"]["domain1"]["id"],
        name="datahinforecord",
        source_type="domains")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/constellix/constellix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := constellix.LookupHinfoRecord(ctx, &constellix.LookupHinfoRecordArgs{
    			DomainId:   data.Constellix_domain.Domain1.Id,
    			Name:       "datahinforecord",
    			SourceType: "domains",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Constellix = Pulumi.Constellix;
    
    return await Deployment.RunAsync(() => 
    {
        var hinfo = Constellix.GetHinfoRecord.Invoke(new()
        {
            DomainId = data.Constellix_domain.Domain1.Id,
            Name = "datahinforecord",
            SourceType = "domains",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.constellix.ConstellixFunctions;
    import com.pulumi.constellix.inputs.GetHinfoRecordArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var hinfo = ConstellixFunctions.getHinfoRecord(GetHinfoRecordArgs.builder()
                .domainId(data.constellix_domain().domain1().id())
                .name("datahinforecord")
                .sourceType("domains")
                .build());
    
        }
    }
    
    variables:
      hinfo:
        fn::invoke:
          function: constellix:getHinfoRecord
          arguments:
            domainId: ${data.constellix_domain.domain1.id}
            name: datahinforecord
            sourceType: domains
    

    Argument Reference

    • name - (Required) Name of record. Name should be unique.
    • source_type - (Required) “domains” for Domain records and “template” for Template records
    • domain_id - (Required) Record id of HINFO record

    Attribute Reference

    • ttl - (Optional) TTL must be in between 0 and 2147483647
    • source_type - (Required) “domains” for Domain records and “template” for Template records
    • roundrobin - (Optional) Set
    • roundrobin.cpu - (Optional) A description of basic system hardware
    • roundrobin.disable_flag - (Optional) Enable or Disable the roundrobin object. Default is false. Atleast one roundrobin object should be false.
    • roundrobin.os - (Optional) A description of the operating system and version
    • name - (Required) Name of record. Name should be unique.
    • noanswer - (Optional) Shows if record is enabled or disabled. Default is false (Active)
    • note - (Optional) Record note
    • gtd_region - (Optional) Shows id of GTD region in which record is to be created.
    • type - (Optional) Record type HINFO

    Using getHinfoRecord

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getHinfoRecord(args: GetHinfoRecordArgs, opts?: InvokeOptions): Promise<GetHinfoRecordResult>
    function getHinfoRecordOutput(args: GetHinfoRecordOutputArgs, opts?: InvokeOptions): Output<GetHinfoRecordResult>
    def get_hinfo_record(domain_id: Optional[str] = None,
                         gtd_region: Optional[float] = None,
                         id: Optional[str] = None,
                         name: Optional[str] = None,
                         noanswer: Optional[bool] = None,
                         note: Optional[str] = None,
                         roundrobins: Optional[Sequence[GetHinfoRecordRoundrobin]] = None,
                         source_type: Optional[str] = None,
                         ttl: Optional[float] = None,
                         type: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetHinfoRecordResult
    def get_hinfo_record_output(domain_id: Optional[pulumi.Input[str]] = None,
                         gtd_region: Optional[pulumi.Input[float]] = None,
                         id: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         noanswer: Optional[pulumi.Input[bool]] = None,
                         note: Optional[pulumi.Input[str]] = None,
                         roundrobins: Optional[pulumi.Input[Sequence[pulumi.Input[GetHinfoRecordRoundrobinArgs]]]] = None,
                         source_type: Optional[pulumi.Input[str]] = None,
                         ttl: Optional[pulumi.Input[float]] = None,
                         type: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetHinfoRecordResult]
    func LookupHinfoRecord(ctx *Context, args *LookupHinfoRecordArgs, opts ...InvokeOption) (*LookupHinfoRecordResult, error)
    func LookupHinfoRecordOutput(ctx *Context, args *LookupHinfoRecordOutputArgs, opts ...InvokeOption) LookupHinfoRecordResultOutput

    > Note: This function is named LookupHinfoRecord in the Go SDK.

    public static class GetHinfoRecord 
    {
        public static Task<GetHinfoRecordResult> InvokeAsync(GetHinfoRecordArgs args, InvokeOptions? opts = null)
        public static Output<GetHinfoRecordResult> Invoke(GetHinfoRecordInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetHinfoRecordResult> getHinfoRecord(GetHinfoRecordArgs args, InvokeOptions options)
    public static Output<GetHinfoRecordResult> getHinfoRecord(GetHinfoRecordArgs args, InvokeOptions options)
    
    fn::invoke:
      function: constellix:index/getHinfoRecord:getHinfoRecord
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DomainId string
    Name string
    SourceType string
    GtdRegion double
    Id string
    Noanswer bool
    Note string
    Roundrobins List<GetHinfoRecordRoundrobin>
    Ttl double
    Type string
    DomainId string
    Name string
    SourceType string
    GtdRegion float64
    Id string
    Noanswer bool
    Note string
    Roundrobins []GetHinfoRecordRoundrobin
    Ttl float64
    Type string
    domainId String
    name String
    sourceType String
    gtdRegion Double
    id String
    noanswer Boolean
    note String
    roundrobins List<GetHinfoRecordRoundrobin>
    ttl Double
    type String
    domainId string
    name string
    sourceType string
    gtdRegion number
    id string
    noanswer boolean
    note string
    roundrobins GetHinfoRecordRoundrobin[]
    ttl number
    type string
    domainId String
    name String
    sourceType String
    gtdRegion Number
    id String
    noanswer Boolean
    note String
    roundrobins List<Property Map>
    ttl Number
    type String

    getHinfoRecord Result

    The following output properties are available:

    DomainId string
    GtdRegion double
    Id string
    Name string
    Noanswer bool
    Note string
    SourceType string
    Ttl double
    Type string
    Roundrobins List<GetHinfoRecordRoundrobin>
    DomainId string
    GtdRegion float64
    Id string
    Name string
    Noanswer bool
    Note string
    SourceType string
    Ttl float64
    Type string
    Roundrobins []GetHinfoRecordRoundrobin
    domainId String
    gtdRegion Double
    id String
    name String
    noanswer Boolean
    note String
    sourceType String
    ttl Double
    type String
    roundrobins List<GetHinfoRecordRoundrobin>
    domainId string
    gtdRegion number
    id string
    name string
    noanswer boolean
    note string
    sourceType string
    ttl number
    type string
    roundrobins GetHinfoRecordRoundrobin[]
    domainId String
    gtdRegion Number
    id String
    name String
    noanswer Boolean
    note String
    sourceType String
    ttl Number
    type String
    roundrobins List<Property Map>

    Supporting Types

    GetHinfoRecordRoundrobin

    Cpu string
    DisableFlag string
    Os string
    Cpu string
    DisableFlag string
    Os string
    cpu String
    disableFlag String
    os String
    cpu string
    disableFlag string
    os string
    cpu str
    disable_flag str
    os str
    cpu String
    disableFlag String
    os String

    Package Details

    Repository
    constellix constellix/terraform-provider-constellix
    License
    Notes
    This Pulumi package is based on the constellix Terraform Provider.
    constellix logo
    constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix
      Meet Neo: Your AI Platform Teammate