Documentation ¶
Index ¶
- func NewTritonProvider_Override(t TritonProvider, scope constructs.Construct, id *string, ...)
- func TritonProvider_IsConstruct(x interface{}) *bool
- func TritonProvider_IsTerraformElement(x interface{}) *bool
- func TritonProvider_IsTerraformProvider(x interface{}) *bool
- func TritonProvider_TfResourceType() *string
- type TritonProvider
- type TritonProviderConfig
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewTritonProvider_Override ¶
func NewTritonProvider_Override(t TritonProvider, scope constructs.Construct, id *string, config *TritonProviderConfig)
Create a new {@link https://www.terraform.io/docs/providers/triton triton} Resource.
func TritonProvider_IsConstruct ¶
func TritonProvider_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 TritonProvider_IsTerraformElement ¶
func TritonProvider_IsTerraformElement(x interface{}) *bool
Experimental.
func TritonProvider_IsTerraformProvider ¶
func TritonProvider_IsTerraformProvider(x interface{}) *bool
Experimental.
func TritonProvider_TfResourceType ¶
func TritonProvider_TfResourceType() *string
Types ¶
type TritonProvider ¶
type TritonProvider 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 InsecureSkipTlsVerify() interface{} SetInsecureSkipTlsVerify(val interface{}) InsecureSkipTlsVerifyInput() interface{} KeyId() *string SetKeyId(val *string) KeyIdInput() *string KeyMaterial() *string SetKeyMaterial(val *string) KeyMaterialInput() *string // Experimental. MetaAttributes() *map[string]interface{} // The tree node. Node() constructs.Node // Experimental. RawOverrides() interface{} // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformProviderSource() *string // Experimental. TerraformResourceType() *string Url() *string SetUrl(val *string) UrlInput() *string User() *string SetUser(val *string) UserInput() *string // Experimental. AddOverride(path *string, value interface{}) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) ResetAccount() ResetAlias() ResetInsecureSkipTlsVerify() ResetKeyId() ResetKeyMaterial() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetUrl() ResetUser() 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://www.terraform.io/docs/providers/triton triton}.
func NewTritonProvider ¶
func NewTritonProvider(scope constructs.Construct, id *string, config *TritonProviderConfig) TritonProvider
Create a new {@link https://www.terraform.io/docs/providers/triton triton} Resource.
type TritonProviderConfig ¶
type TritonProviderConfig struct { // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#account TritonProvider#account}. Account *string `field:"optional" json:"account" yaml:"account"` // Alias name. // // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#alias TritonProvider#alias} Alias *string `field:"optional" json:"alias" yaml:"alias"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#insecure_skip_tls_verify TritonProvider#insecure_skip_tls_verify}. InsecureSkipTlsVerify interface{} `field:"optional" json:"insecureSkipTlsVerify" yaml:"insecureSkipTlsVerify"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#key_id TritonProvider#key_id}. KeyId *string `field:"optional" json:"keyId" yaml:"keyId"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#key_material TritonProvider#key_material}. KeyMaterial *string `field:"optional" json:"keyMaterial" yaml:"keyMaterial"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#url TritonProvider#url}. Url *string `field:"optional" json:"url" yaml:"url"` // Docs at Terraform Registry: {@link https://www.terraform.io/docs/providers/triton#user TritonProvider#user}. User *string `field:"optional" json:"user" yaml:"user"` }