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

constellix.CertRecord

Explore with Pulumi AI

constellix logo
constellix 0.4.6 published on Friday, Mar 7, 2025 by constellix

    Create CertRecord Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CertRecord(name: string, args: CertRecordArgs, opts?: CustomResourceOptions);
    @overload
    def CertRecord(resource_name: str,
                   args: CertRecordArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def CertRecord(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   roundrobins: Optional[Sequence[CertRecordRoundrobinArgs]] = None,
                   domain_id: Optional[str] = None,
                   ttl: Optional[float] = None,
                   source_type: Optional[str] = None,
                   parent: Optional[str] = None,
                   note: Optional[str] = None,
                   cert_record_id: Optional[str] = None,
                   parentid: Optional[float] = None,
                   noanswer: Optional[bool] = None,
                   source: Optional[str] = None,
                   name: Optional[str] = None,
                   gtd_region: Optional[float] = None,
                   type: Optional[str] = None)
    func NewCertRecord(ctx *Context, name string, args CertRecordArgs, opts ...ResourceOption) (*CertRecord, error)
    public CertRecord(string name, CertRecordArgs args, CustomResourceOptions? opts = null)
    public CertRecord(String name, CertRecordArgs args)
    public CertRecord(String name, CertRecordArgs args, CustomResourceOptions options)
    
    type: constellix:CertRecord
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args CertRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CertRecordArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CertRecordArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CertRecordArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CertRecordArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var certRecordResource = new Constellix.CertRecord("certRecordResource", new()
    {
        Roundrobins = new[]
        {
            new Constellix.Inputs.CertRecordRoundrobinArgs
            {
                Algorithm = 0,
                Certificate = "string",
                CertificateType = 0,
                KeyTag = 0,
                DisableFlag = "string",
            },
        },
        DomainId = "string",
        Ttl = 0,
        SourceType = "string",
        Parent = "string",
        Note = "string",
        CertRecordId = "string",
        Parentid = 0,
        Noanswer = false,
        Source = "string",
        Name = "string",
        GtdRegion = 0,
        Type = "string",
    });
    
    example, err := constellix.NewCertRecord(ctx, "certRecordResource", &constellix.CertRecordArgs{
    Roundrobins: .CertRecordRoundrobinArray{
    &.CertRecordRoundrobinArgs{
    Algorithm: pulumi.Float64(0),
    Certificate: pulumi.String("string"),
    CertificateType: pulumi.Float64(0),
    KeyTag: pulumi.Float64(0),
    DisableFlag: pulumi.String("string"),
    },
    },
    DomainId: pulumi.String("string"),
    Ttl: pulumi.Float64(0),
    SourceType: pulumi.String("string"),
    Parent: pulumi.String("string"),
    Note: pulumi.String("string"),
    CertRecordId: pulumi.String("string"),
    Parentid: pulumi.Float64(0),
    Noanswer: pulumi.Bool(false),
    Source: pulumi.String("string"),
    Name: pulumi.String("string"),
    GtdRegion: pulumi.Float64(0),
    Type: pulumi.String("string"),
    })
    
    var certRecordResource = new CertRecord("certRecordResource", CertRecordArgs.builder()
        .roundrobins(CertRecordRoundrobinArgs.builder()
            .algorithm(0)
            .certificate("string")
            .certificateType(0)
            .keyTag(0)
            .disableFlag("string")
            .build())
        .domainId("string")
        .ttl(0)
        .sourceType("string")
        .parent("string")
        .note("string")
        .certRecordId("string")
        .parentid(0)
        .noanswer(false)
        .source("string")
        .name("string")
        .gtdRegion(0)
        .type("string")
        .build());
    
    cert_record_resource = constellix.CertRecord("certRecordResource",
        roundrobins=[{
            "algorithm": 0,
            "certificate": "string",
            "certificate_type": 0,
            "key_tag": 0,
            "disable_flag": "string",
        }],
        domain_id="string",
        ttl=0,
        source_type="string",
        parent="string",
        note="string",
        cert_record_id="string",
        parentid=0,
        noanswer=False,
        source="string",
        name="string",
        gtd_region=0,
        type="string")
    
    const certRecordResource = new constellix.CertRecord("certRecordResource", {
        roundrobins: [{
            algorithm: 0,
            certificate: "string",
            certificateType: 0,
            keyTag: 0,
            disableFlag: "string",
        }],
        domainId: "string",
        ttl: 0,
        sourceType: "string",
        parent: "string",
        note: "string",
        certRecordId: "string",
        parentid: 0,
        noanswer: false,
        source: "string",
        name: "string",
        gtdRegion: 0,
        type: "string",
    });
    
    type: constellix:CertRecord
    properties:
        certRecordId: string
        domainId: string
        gtdRegion: 0
        name: string
        noanswer: false
        note: string
        parent: string
        parentid: 0
        roundrobins:
            - algorithm: 0
              certificate: string
              certificateType: 0
              disableFlag: string
              keyTag: 0
        source: string
        sourceType: string
        ttl: 0
        type: string
    

    CertRecord Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CertRecord resource accepts the following input properties:

    DomainId string
    Roundrobins List<CertRecordRoundrobin>
    SourceType string
    Ttl double
    CertRecordId string
    The constellix calculated id of the CERT resource.
    GtdRegion double
    Name string
    Noanswer bool
    Note string
    Parent string
    Parentid double
    Source string
    Type string
    DomainId string
    Roundrobins []CertRecordRoundrobinArgs
    SourceType string
    Ttl float64
    CertRecordId string
    The constellix calculated id of the CERT resource.
    GtdRegion float64
    Name string
    Noanswer bool
    Note string
    Parent string
    Parentid float64
    Source string
    Type string
    domainId String
    roundrobins List<CertRecordRoundrobin>
    sourceType String
    ttl Double
    certRecordId String
    The constellix calculated id of the CERT resource.
    gtdRegion Double
    name String
    noanswer Boolean
    note String
    parent String
    parentid Double
    source String
    type String
    domainId string
    roundrobins CertRecordRoundrobin[]
    sourceType string
    ttl number
    certRecordId string
    The constellix calculated id of the CERT resource.
    gtdRegion number
    name string
    noanswer boolean
    note string
    parent string
    parentid number
    source string
    type string
    domain_id str
    roundrobins Sequence[CertRecordRoundrobinArgs]
    source_type str
    ttl float
    cert_record_id str
    The constellix calculated id of the CERT resource.
    gtd_region float
    name str
    noanswer bool
    note str
    parent str
    parentid float
    source str
    type str
    domainId String
    roundrobins List<Property Map>
    sourceType String
    ttl Number
    certRecordId String
    The constellix calculated id of the CERT resource.
    gtdRegion Number
    name String
    noanswer Boolean
    note String
    parent String
    parentid Number
    source String
    type String

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CertRecord resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing CertRecord Resource

    Get an existing CertRecord resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CertRecordState, opts?: CustomResourceOptions): CertRecord
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cert_record_id: Optional[str] = None,
            domain_id: Optional[str] = None,
            gtd_region: Optional[float] = None,
            name: Optional[str] = None,
            noanswer: Optional[bool] = None,
            note: Optional[str] = None,
            parent: Optional[str] = None,
            parentid: Optional[float] = None,
            roundrobins: Optional[Sequence[CertRecordRoundrobinArgs]] = None,
            source: Optional[str] = None,
            source_type: Optional[str] = None,
            ttl: Optional[float] = None,
            type: Optional[str] = None) -> CertRecord
    func GetCertRecord(ctx *Context, name string, id IDInput, state *CertRecordState, opts ...ResourceOption) (*CertRecord, error)
    public static CertRecord Get(string name, Input<string> id, CertRecordState? state, CustomResourceOptions? opts = null)
    public static CertRecord get(String name, Output<String> id, CertRecordState state, CustomResourceOptions options)
    resources:  _:    type: constellix:CertRecord    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CertRecordId string
    The constellix calculated id of the CERT resource.
    DomainId string
    GtdRegion double
    Name string
    Noanswer bool
    Note string
    Parent string
    Parentid double
    Roundrobins List<CertRecordRoundrobin>
    Source string
    SourceType string
    Ttl double
    Type string
    CertRecordId string
    The constellix calculated id of the CERT resource.
    DomainId string
    GtdRegion float64
    Name string
    Noanswer bool
    Note string
    Parent string
    Parentid float64
    Roundrobins []CertRecordRoundrobinArgs
    Source string
    SourceType string
    Ttl float64
    Type string
    certRecordId String
    The constellix calculated id of the CERT resource.
    domainId String
    gtdRegion Double
    name String
    noanswer Boolean
    note String
    parent String
    parentid Double
    roundrobins List<CertRecordRoundrobin>
    source String
    sourceType String
    ttl Double
    type String
    certRecordId string
    The constellix calculated id of the CERT resource.
    domainId string
    gtdRegion number
    name string
    noanswer boolean
    note string
    parent string
    parentid number
    roundrobins CertRecordRoundrobin[]
    source string
    sourceType string
    ttl number
    type string
    cert_record_id str
    The constellix calculated id of the CERT resource.
    domain_id str
    gtd_region float
    name str
    noanswer bool
    note str
    parent str
    parentid float
    roundrobins Sequence[CertRecordRoundrobinArgs]
    source str
    source_type str
    ttl float
    type str
    certRecordId String
    The constellix calculated id of the CERT resource.
    domainId String
    gtdRegion Number
    name String
    noanswer Boolean
    note String
    parent String
    parentid Number
    roundrobins List<Property Map>
    source String
    sourceType String
    ttl Number
    type String

    Supporting Types

    CertRecordRoundrobin, CertRecordRoundrobinArgs

    Algorithm double
    Certificate string
    CertificateType double
    KeyTag double
    DisableFlag string
    Algorithm float64
    Certificate string
    CertificateType float64
    KeyTag float64
    DisableFlag string
    algorithm Double
    certificate String
    certificateType Double
    keyTag Double
    disableFlag String
    algorithm number
    certificate string
    certificateType number
    keyTag number
    disableFlag string
    algorithm Number
    certificate String
    certificateType Number
    keyTag Number
    disableFlag 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