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

constellix.AaaaRecord

Explore with Pulumi AI

Create AaaaRecord Resource

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

Constructor syntax

new AaaaRecord(name: string, args: AaaaRecordArgs, opts?: CustomResourceOptions);
@overload
def AaaaRecord(resource_name: str,
               args: AaaaRecordArgs,
               opts: Optional[ResourceOptions] = None)

@overload
def AaaaRecord(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               source_type: Optional[str] = None,
               ttl: Optional[float] = None,
               domain_id: Optional[str] = None,
               pools: Optional[Sequence[float]] = None,
               record_failover_failover_type: Optional[str] = None,
               name: Optional[str] = None,
               noanswer: Optional[bool] = None,
               note: Optional[str] = None,
               aaaa_record_id: Optional[str] = None,
               record_failover_disable_flag: Optional[str] = None,
               gtd_region: Optional[float] = None,
               record_failover_values: Optional[Sequence[AaaaRecordRecordFailoverValueArgs]] = None,
               record_option: Optional[str] = None,
               roundrobin_failovers: Optional[Sequence[AaaaRecordRoundrobinFailoverArgs]] = None,
               roundrobins: Optional[Sequence[AaaaRecordRoundrobinArgs]] = None,
               geo_location: Optional[Mapping[str, str]] = None,
               contact_ids: Optional[Sequence[float]] = None,
               type: Optional[str] = None)
func NewAaaaRecord(ctx *Context, name string, args AaaaRecordArgs, opts ...ResourceOption) (*AaaaRecord, error)
public AaaaRecord(string name, AaaaRecordArgs args, CustomResourceOptions? opts = null)
public AaaaRecord(String name, AaaaRecordArgs args)
public AaaaRecord(String name, AaaaRecordArgs args, CustomResourceOptions options)
type: constellix:AaaaRecord
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AaaaRecordArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AaaaRecordArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AaaaRecordArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AaaaRecordArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AaaaRecordArgs
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 aaaaRecordResource = new Constellix.AaaaRecord("aaaaRecordResource", new()
{
    SourceType = "string",
    Ttl = 0,
    DomainId = "string",
    Pools = new[]
    {
        0,
    },
    RecordFailoverFailoverType = "string",
    Name = "string",
    Noanswer = false,
    Note = "string",
    AaaaRecordId = "string",
    RecordFailoverDisableFlag = "string",
    GtdRegion = 0,
    RecordFailoverValues = new[]
    {
        new Constellix.Inputs.AaaaRecordRecordFailoverValueArgs
        {
            DisableFlag = "string",
            SortOrder = "string",
            Value = "string",
            CheckId = 0,
        },
    },
    RecordOption = "string",
    RoundrobinFailovers = new[]
    {
        new Constellix.Inputs.AaaaRecordRoundrobinFailoverArgs
        {
            SortOrder = "string",
            Value = "string",
            DisableFlag = "string",
        },
    },
    Roundrobins = new[]
    {
        new Constellix.Inputs.AaaaRecordRoundrobinArgs
        {
            DisableFlag = "string",
            Value = "string",
        },
    },
    GeoLocation = 
    {
        { "string", "string" },
    },
    ContactIds = new[]
    {
        0,
    },
    Type = "string",
});
Copy
example, err := constellix.NewAaaaRecord(ctx, "aaaaRecordResource", &constellix.AaaaRecordArgs{
SourceType: pulumi.String("string"),
Ttl: pulumi.Float64(0),
DomainId: pulumi.String("string"),
Pools: pulumi.Float64Array{
pulumi.Float64(0),
},
RecordFailoverFailoverType: pulumi.String("string"),
Name: pulumi.String("string"),
Noanswer: pulumi.Bool(false),
Note: pulumi.String("string"),
AaaaRecordId: pulumi.String("string"),
RecordFailoverDisableFlag: pulumi.String("string"),
GtdRegion: pulumi.Float64(0),
RecordFailoverValues: .AaaaRecordRecordFailoverValueArray{
&.AaaaRecordRecordFailoverValueArgs{
DisableFlag: pulumi.String("string"),
SortOrder: pulumi.String("string"),
Value: pulumi.String("string"),
CheckId: pulumi.Float64(0),
},
},
RecordOption: pulumi.String("string"),
RoundrobinFailovers: .AaaaRecordRoundrobinFailoverArray{
&.AaaaRecordRoundrobinFailoverArgs{
SortOrder: pulumi.String("string"),
Value: pulumi.String("string"),
DisableFlag: pulumi.String("string"),
},
},
Roundrobins: .AaaaRecordRoundrobinArray{
&.AaaaRecordRoundrobinArgs{
DisableFlag: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
GeoLocation: pulumi.StringMap{
"string": pulumi.String("string"),
},
ContactIds: pulumi.Float64Array{
pulumi.Float64(0),
},
Type: pulumi.String("string"),
})
Copy
var aaaaRecordResource = new AaaaRecord("aaaaRecordResource", AaaaRecordArgs.builder()
    .sourceType("string")
    .ttl(0)
    .domainId("string")
    .pools(0)
    .recordFailoverFailoverType("string")
    .name("string")
    .noanswer(false)
    .note("string")
    .aaaaRecordId("string")
    .recordFailoverDisableFlag("string")
    .gtdRegion(0)
    .recordFailoverValues(AaaaRecordRecordFailoverValueArgs.builder()
        .disableFlag("string")
        .sortOrder("string")
        .value("string")
        .checkId(0)
        .build())
    .recordOption("string")
    .roundrobinFailovers(AaaaRecordRoundrobinFailoverArgs.builder()
        .sortOrder("string")
        .value("string")
        .disableFlag("string")
        .build())
    .roundrobins(AaaaRecordRoundrobinArgs.builder()
        .disableFlag("string")
        .value("string")
        .build())
    .geoLocation(Map.of("string", "string"))
    .contactIds(0)
    .type("string")
    .build());
Copy
aaaa_record_resource = constellix.AaaaRecord("aaaaRecordResource",
    source_type="string",
    ttl=0,
    domain_id="string",
    pools=[0],
    record_failover_failover_type="string",
    name="string",
    noanswer=False,
    note="string",
    aaaa_record_id="string",
    record_failover_disable_flag="string",
    gtd_region=0,
    record_failover_values=[{
        "disable_flag": "string",
        "sort_order": "string",
        "value": "string",
        "check_id": 0,
    }],
    record_option="string",
    roundrobin_failovers=[{
        "sort_order": "string",
        "value": "string",
        "disable_flag": "string",
    }],
    roundrobins=[{
        "disable_flag": "string",
        "value": "string",
    }],
    geo_location={
        "string": "string",
    },
    contact_ids=[0],
    type="string")
Copy
const aaaaRecordResource = new constellix.AaaaRecord("aaaaRecordResource", {
    sourceType: "string",
    ttl: 0,
    domainId: "string",
    pools: [0],
    recordFailoverFailoverType: "string",
    name: "string",
    noanswer: false,
    note: "string",
    aaaaRecordId: "string",
    recordFailoverDisableFlag: "string",
    gtdRegion: 0,
    recordFailoverValues: [{
        disableFlag: "string",
        sortOrder: "string",
        value: "string",
        checkId: 0,
    }],
    recordOption: "string",
    roundrobinFailovers: [{
        sortOrder: "string",
        value: "string",
        disableFlag: "string",
    }],
    roundrobins: [{
        disableFlag: "string",
        value: "string",
    }],
    geoLocation: {
        string: "string",
    },
    contactIds: [0],
    type: "string",
});
Copy
type: constellix:AaaaRecord
properties:
    aaaaRecordId: string
    contactIds:
        - 0
    domainId: string
    geoLocation:
        string: string
    gtdRegion: 0
    name: string
    noanswer: false
    note: string
    pools:
        - 0
    recordFailoverDisableFlag: string
    recordFailoverFailoverType: string
    recordFailoverValues:
        - checkId: 0
          disableFlag: string
          sortOrder: string
          value: string
    recordOption: string
    roundrobinFailovers:
        - disableFlag: string
          sortOrder: string
          value: string
    roundrobins:
        - disableFlag: string
          value: string
    sourceType: string
    ttl: 0
    type: string
Copy

AaaaRecord 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 AaaaRecord resource accepts the following input properties:

DomainId This property is required. string
SourceType This property is required. string
Ttl This property is required. double
AaaaRecordId string
The constellix calculated id of the AAAA resource.
ContactIds List<double>
GeoLocation Dictionary<string, string>
GtdRegion double
Name string
Noanswer bool
Note string
Pools List<double>
RecordFailoverDisableFlag string
RecordFailoverFailoverType string
RecordFailoverValues List<AaaaRecordRecordFailoverValue>
RecordOption string
RoundrobinFailovers List<AaaaRecordRoundrobinFailover>
Roundrobins List<AaaaRecordRoundrobin>
Type string
DomainId This property is required. string
SourceType This property is required. string
Ttl This property is required. float64
AaaaRecordId string
The constellix calculated id of the AAAA resource.
ContactIds []float64
GeoLocation map[string]string
GtdRegion float64
Name string
Noanswer bool
Note string
Pools []float64
RecordFailoverDisableFlag string
RecordFailoverFailoverType string
RecordFailoverValues []AaaaRecordRecordFailoverValueArgs
RecordOption string
RoundrobinFailovers []AaaaRecordRoundrobinFailoverArgs
Roundrobins []AaaaRecordRoundrobinArgs
Type string
domainId This property is required. String
sourceType This property is required. String
ttl This property is required. Double
aaaaRecordId String
The constellix calculated id of the AAAA resource.
contactIds List<Double>
geoLocation Map<String,String>
gtdRegion Double
name String
noanswer Boolean
note String
pools List<Double>
recordFailoverDisableFlag String
recordFailoverFailoverType String
recordFailoverValues List<AaaaRecordRecordFailoverValue>
recordOption String
roundrobinFailovers List<AaaaRecordRoundrobinFailover>
roundrobins List<AaaaRecordRoundrobin>
type String
domainId This property is required. string
sourceType This property is required. string
ttl This property is required. number
aaaaRecordId string
The constellix calculated id of the AAAA resource.
contactIds number[]
geoLocation {[key: string]: string}
gtdRegion number
name string
noanswer boolean
note string
pools number[]
recordFailoverDisableFlag string
recordFailoverFailoverType string
recordFailoverValues AaaaRecordRecordFailoverValue[]
recordOption string
roundrobinFailovers AaaaRecordRoundrobinFailover[]
roundrobins AaaaRecordRoundrobin[]
type string
domain_id This property is required. str
source_type This property is required. str
ttl This property is required. float
aaaa_record_id str
The constellix calculated id of the AAAA resource.
contact_ids Sequence[float]
geo_location Mapping[str, str]
gtd_region float
name str
noanswer bool
note str
pools Sequence[float]
record_failover_disable_flag str
record_failover_failover_type str
record_failover_values Sequence[AaaaRecordRecordFailoverValueArgs]
record_option str
roundrobin_failovers Sequence[AaaaRecordRoundrobinFailoverArgs]
roundrobins Sequence[AaaaRecordRoundrobinArgs]
type str
domainId This property is required. String
sourceType This property is required. String
ttl This property is required. Number
aaaaRecordId String
The constellix calculated id of the AAAA resource.
contactIds List<Number>
geoLocation Map<String>
gtdRegion Number
name String
noanswer Boolean
note String
pools List<Number>
recordFailoverDisableFlag String
recordFailoverFailoverType String
recordFailoverValues List<Property Map>
recordOption String
roundrobinFailovers List<Property Map>
roundrobins List<Property Map>
type String

Outputs

All input properties are implicitly available as output properties. Additionally, the AaaaRecord 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 AaaaRecord Resource

Get an existing AaaaRecord 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?: AaaaRecordState, opts?: CustomResourceOptions): AaaaRecord
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        aaaa_record_id: Optional[str] = None,
        contact_ids: Optional[Sequence[float]] = None,
        domain_id: Optional[str] = None,
        geo_location: Optional[Mapping[str, str]] = None,
        gtd_region: Optional[float] = None,
        name: Optional[str] = None,
        noanswer: Optional[bool] = None,
        note: Optional[str] = None,
        pools: Optional[Sequence[float]] = None,
        record_failover_disable_flag: Optional[str] = None,
        record_failover_failover_type: Optional[str] = None,
        record_failover_values: Optional[Sequence[AaaaRecordRecordFailoverValueArgs]] = None,
        record_option: Optional[str] = None,
        roundrobin_failovers: Optional[Sequence[AaaaRecordRoundrobinFailoverArgs]] = None,
        roundrobins: Optional[Sequence[AaaaRecordRoundrobinArgs]] = None,
        source_type: Optional[str] = None,
        ttl: Optional[float] = None,
        type: Optional[str] = None) -> AaaaRecord
func GetAaaaRecord(ctx *Context, name string, id IDInput, state *AaaaRecordState, opts ...ResourceOption) (*AaaaRecord, error)
public static AaaaRecord Get(string name, Input<string> id, AaaaRecordState? state, CustomResourceOptions? opts = null)
public static AaaaRecord get(String name, Output<String> id, AaaaRecordState state, CustomResourceOptions options)
resources:  _:    type: constellix:AaaaRecord    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
aaaaRecordId String
The constellix calculated id of the AAAA resource.
contactIds List<Number>
domainId String
geoLocation Map<String>
gtdRegion Number
name String
noanswer Boolean
note String
pools List<Number>
recordFailoverDisableFlag String
recordFailoverFailoverType String
recordFailoverValues List<Property Map>
recordOption String
roundrobinFailovers List<Property Map>
roundrobins List<Property Map>
sourceType String
ttl Number
type String

Supporting Types

AaaaRecordRecordFailoverValue
, AaaaRecordRecordFailoverValueArgs

DisableFlag This property is required. string
SortOrder This property is required. string
Value This property is required. string
CheckId double
DisableFlag This property is required. string
SortOrder This property is required. string
Value This property is required. string
CheckId float64
disableFlag This property is required. String
sortOrder This property is required. String
value This property is required. String
checkId Double
disableFlag This property is required. string
sortOrder This property is required. string
value This property is required. string
checkId number
disable_flag This property is required. str
sort_order This property is required. str
value This property is required. str
check_id float
disableFlag This property is required. String
sortOrder This property is required. String
value This property is required. String
checkId Number

AaaaRecordRoundrobin
, AaaaRecordRoundrobinArgs

DisableFlag This property is required. string
Value This property is required. string
DisableFlag This property is required. string
Value This property is required. string
disableFlag This property is required. String
value This property is required. String
disableFlag This property is required. string
value This property is required. string
disable_flag This property is required. str
value This property is required. str
disableFlag This property is required. String
value This property is required. String

AaaaRecordRoundrobinFailover
, AaaaRecordRoundrobinFailoverArgs

SortOrder This property is required. string
Value This property is required. string
DisableFlag string
SortOrder This property is required. string
Value This property is required. string
DisableFlag string
sortOrder This property is required. String
value This property is required. String
disableFlag String
sortOrder This property is required. string
value This property is required. string
disableFlag string
sort_order This property is required. str
value This property is required. str
disable_flag str
sortOrder This property is required. String
value This property is required. String
disableFlag String

Package Details

Repository
constellix constellix/terraform-provider-constellix
License
Notes
This Pulumi package is based on the constellix Terraform Provider.