Documentation
¶
Index ¶
- func DnsimpleProvider_IsConstruct(x interface{}) *bool
- func DnsimpleProvider_IsTerraformElement(x interface{}) *bool
- func DnsimpleProvider_IsTerraformProvider(x interface{}) *bool
- func DnsimpleProvider_TfResourceType() *string
- func NewDnsimpleProvider_Override(d DnsimpleProvider, scope constructs.Construct, id *string, ...)
- type DnsimpleProvider
- type DnsimpleProviderConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DnsimpleProvider_IsConstruct ¶
func DnsimpleProvider_IsConstruct(x interface{}) *bool
Checks if `x` is a construct.
Use this method instead of `instanceof` to properly detect `Construct` instances, even when the construct library is symlinked.
Explanation: in JavaScript, multiple copies of the `constructs` library on disk are seen as independent, completely different libraries. As a consequence, the class `Construct` in each copy of the `constructs` library is seen as a different class, and an instance of one class will not test as `instanceof` the other class. `npm install` will not create installations like this, but users may manually symlink construct libraries together or use a monorepo tool: in those cases, multiple copies of the `constructs` library can be accidentally installed, and `instanceof` will behave unpredictably. It is safest to avoid using `instanceof`, and using this type-testing method instead.
Returns: true if `x` is an object created from a class which extends `Construct`.
func DnsimpleProvider_IsTerraformElement ¶
func DnsimpleProvider_IsTerraformElement(x interface{}) *bool
Experimental.
func DnsimpleProvider_IsTerraformProvider ¶
func DnsimpleProvider_IsTerraformProvider(x interface{}) *bool
Experimental.
func DnsimpleProvider_TfResourceType ¶
func DnsimpleProvider_TfResourceType() *string
func NewDnsimpleProvider_Override ¶
func NewDnsimpleProvider_Override(d DnsimpleProvider, scope constructs.Construct, id *string, config *DnsimpleProviderConfig)
Create a new {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs dnsimple} Resource.
Types ¶
type DnsimpleProvider ¶
type DnsimpleProvider interface { cdktf.TerraformProvider Account() *string SetAccount(val *string) AccountInput() *string Alias() *string SetAlias(val *string) AliasInput() *string // Experimental. CdktfStack() cdktf.TerraformStack // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string // Experimental. MetaAttributes() *map[string]interface{} // The tree node. Node() constructs.Node Prefetch() interface{} SetPrefetch(val interface{}) PrefetchInput() interface{} // Experimental. RawOverrides() interface{} Sandbox() interface{} SetSandbox(val interface{}) SandboxInput() interface{} // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformProviderSource() *string // Experimental. TerraformResourceType() *string Token() *string SetToken(val *string) TokenInput() *string UserAgent() *string SetUserAgent(val *string) UserAgentInput() *string // Experimental. AddOverride(path *string, value interface{}) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) ResetAccount() ResetAlias() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetPrefetch() ResetSandbox() ResetToken() ResetUserAgent() SynthesizeAttributes() *map[string]interface{} // Experimental. ToMetadata() interface{} // Returns a string representation of this construct. ToString() *string // Adds this resource to the terraform JSON output. // Experimental. ToTerraform() interface{} }
Represents a {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs dnsimple}.
func NewDnsimpleProvider ¶
func NewDnsimpleProvider(scope constructs.Construct, id *string, config *DnsimpleProviderConfig) DnsimpleProvider
Create a new {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs dnsimple} Resource.
type DnsimpleProviderConfig ¶
type DnsimpleProviderConfig struct { // The account for API operations. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs#account DnsimpleProvider#account} Account *string `field:"optional" json:"account" yaml:"account"` // Alias name. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs#alias DnsimpleProvider#alias} Alias *string `field:"optional" json:"alias" yaml:"alias"` // Flag to enable the prefetch of zone records. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs#prefetch DnsimpleProvider#prefetch} Prefetch interface{} `field:"optional" json:"prefetch" yaml:"prefetch"` // Flag to enable the sandbox API. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs#sandbox DnsimpleProvider#sandbox} Sandbox interface{} `field:"optional" json:"sandbox" yaml:"sandbox"` // The API v2 token for API operations. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs#token DnsimpleProvider#token} Token *string `field:"optional" json:"token" yaml:"token"` // Custom string to append to the user agent used for sending HTTP requests to the API. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/dnsimple/dnsimple/1.1.2/docs#user_agent DnsimpleProvider#user_agent} UserAgent *string `field:"optional" json:"userAgent" yaml:"userAgent"` }