Documentation
¶
Index ¶
- func NewSqlEndpointChannelOutputReference_Override(s SqlEndpointChannelOutputReference, ...)
- func NewSqlEndpointHealthFailureReasonList_Override(s SqlEndpointHealthFailureReasonList, ...)
- func NewSqlEndpointHealthFailureReasonOutputReference_Override(s SqlEndpointHealthFailureReasonOutputReference, ...)
- func NewSqlEndpointHealthList_Override(s SqlEndpointHealthList, terraformResource cdktf.IInterpolatingParent, ...)
- func NewSqlEndpointHealthOutputReference_Override(s SqlEndpointHealthOutputReference, ...)
- func NewSqlEndpointOdbcParamsList_Override(s SqlEndpointOdbcParamsList, terraformResource cdktf.IInterpolatingParent, ...)
- func NewSqlEndpointOdbcParamsOutputReference_Override(s SqlEndpointOdbcParamsOutputReference, ...)
- func NewSqlEndpointTagsCustomTagsList_Override(s SqlEndpointTagsCustomTagsList, terraformResource cdktf.IInterpolatingParent, ...)
- func NewSqlEndpointTagsCustomTagsOutputReference_Override(s SqlEndpointTagsCustomTagsOutputReference, ...)
- func NewSqlEndpointTagsOutputReference_Override(s SqlEndpointTagsOutputReference, terraformResource cdktf.IInterpolatingParent, ...)
- func NewSqlEndpointTimeoutsOutputReference_Override(s SqlEndpointTimeoutsOutputReference, ...)
- func NewSqlEndpoint_Override(s SqlEndpoint, scope constructs.Construct, id *string, ...)
- func SqlEndpoint_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, ...) cdktf.ImportableResource
- func SqlEndpoint_IsConstruct(x interface{}) *bool
- func SqlEndpoint_IsTerraformElement(x interface{}) *bool
- func SqlEndpoint_IsTerraformResource(x interface{}) *bool
- func SqlEndpoint_TfResourceType() *string
- type SqlEndpoint
- type SqlEndpointChannel
- type SqlEndpointChannelOutputReference
- type SqlEndpointConfig
- type SqlEndpointHealth
- type SqlEndpointHealthFailureReason
- type SqlEndpointHealthFailureReasonList
- type SqlEndpointHealthFailureReasonOutputReference
- type SqlEndpointHealthList
- type SqlEndpointHealthOutputReference
- type SqlEndpointOdbcParams
- type SqlEndpointOdbcParamsList
- type SqlEndpointOdbcParamsOutputReference
- type SqlEndpointTags
- type SqlEndpointTagsCustomTags
- type SqlEndpointTagsCustomTagsList
- type SqlEndpointTagsCustomTagsOutputReference
- type SqlEndpointTagsOutputReference
- type SqlEndpointTimeouts
- type SqlEndpointTimeoutsOutputReference
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewSqlEndpointChannelOutputReference_Override ¶
func NewSqlEndpointChannelOutputReference_Override(s SqlEndpointChannelOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewSqlEndpointHealthFailureReasonList_Override ¶ added in v13.0.1
func NewSqlEndpointHealthFailureReasonList_Override(s SqlEndpointHealthFailureReasonList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSqlEndpointHealthFailureReasonOutputReference_Override ¶ added in v13.0.1
func NewSqlEndpointHealthFailureReasonOutputReference_Override(s SqlEndpointHealthFailureReasonOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSqlEndpointHealthList_Override ¶ added in v13.0.1
func NewSqlEndpointHealthList_Override(s SqlEndpointHealthList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSqlEndpointHealthOutputReference_Override ¶ added in v13.0.1
func NewSqlEndpointHealthOutputReference_Override(s SqlEndpointHealthOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSqlEndpointOdbcParamsList_Override ¶ added in v13.0.1
func NewSqlEndpointOdbcParamsList_Override(s SqlEndpointOdbcParamsList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSqlEndpointOdbcParamsOutputReference_Override ¶
func NewSqlEndpointOdbcParamsOutputReference_Override(s SqlEndpointOdbcParamsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSqlEndpointTagsCustomTagsList_Override ¶
func NewSqlEndpointTagsCustomTagsList_Override(s SqlEndpointTagsCustomTagsList, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool)
func NewSqlEndpointTagsCustomTagsOutputReference_Override ¶
func NewSqlEndpointTagsCustomTagsOutputReference_Override(s SqlEndpointTagsCustomTagsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool)
func NewSqlEndpointTagsOutputReference_Override ¶
func NewSqlEndpointTagsOutputReference_Override(s SqlEndpointTagsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewSqlEndpointTimeoutsOutputReference_Override ¶
func NewSqlEndpointTimeoutsOutputReference_Override(s SqlEndpointTimeoutsOutputReference, terraformResource cdktf.IInterpolatingParent, terraformAttribute *string)
func NewSqlEndpoint_Override ¶
func NewSqlEndpoint_Override(s SqlEndpoint, scope constructs.Construct, id *string, config *SqlEndpointConfig)
Create a new {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint databricks_sql_endpoint} Resource.
func SqlEndpoint_GenerateConfigForImport ¶
func SqlEndpoint_GenerateConfigForImport(scope constructs.Construct, importToId *string, importFromId *string, provider cdktf.TerraformProvider) cdktf.ImportableResource
Generates CDKTF code for importing a SqlEndpoint resource upon running "cdktf plan <stack-name>".
func SqlEndpoint_IsConstruct ¶
func SqlEndpoint_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 SqlEndpoint_IsTerraformElement ¶
func SqlEndpoint_IsTerraformElement(x interface{}) *bool
Experimental.
func SqlEndpoint_IsTerraformResource ¶
func SqlEndpoint_IsTerraformResource(x interface{}) *bool
Experimental.
func SqlEndpoint_TfResourceType ¶
func SqlEndpoint_TfResourceType() *string
Types ¶
type SqlEndpoint ¶
type SqlEndpoint interface { cdktf.TerraformResource AutoStopMins() *float64 SetAutoStopMins(val *float64) AutoStopMinsInput() *float64 // Experimental. CdktfStack() cdktf.TerraformStack Channel() SqlEndpointChannelOutputReference ChannelInput() *SqlEndpointChannel ClusterSize() *string SetClusterSize(val *string) ClusterSizeInput() *string // Experimental. Connection() interface{} // Experimental. SetConnection(val interface{}) // Experimental. ConstructNodeMetadata() *map[string]interface{} // Experimental. Count() interface{} // Experimental. SetCount(val interface{}) CreatorName() *string DataSourceId() *string SetDataSourceId(val *string) DataSourceIdInput() *string // Experimental. DependsOn() *[]*string // Experimental. SetDependsOn(val *[]*string) EnablePhoton() interface{} SetEnablePhoton(val interface{}) EnablePhotonInput() interface{} EnableServerlessCompute() interface{} SetEnableServerlessCompute(val interface{}) EnableServerlessComputeInput() interface{} // Experimental. ForEach() cdktf.ITerraformIterator // Experimental. SetForEach(val cdktf.ITerraformIterator) // Experimental. Fqn() *string // Experimental. FriendlyUniqueId() *string Health() SqlEndpointHealthList Id() *string SetId(val *string) IdInput() *string InstanceProfileArn() *string SetInstanceProfileArn(val *string) InstanceProfileArnInput() *string JdbcUrl() *string // Experimental. Lifecycle() *cdktf.TerraformResourceLifecycle // Experimental. SetLifecycle(val *cdktf.TerraformResourceLifecycle) MaxNumClusters() *float64 SetMaxNumClusters(val *float64) MaxNumClustersInput() *float64 MinNumClusters() *float64 SetMinNumClusters(val *float64) MinNumClustersInput() *float64 Name() *string SetName(val *string) NameInput() *string // The tree node. Node() constructs.Node NumActiveSessions() *float64 NumClusters() *float64 OdbcParams() SqlEndpointOdbcParamsList // Experimental. Provider() cdktf.TerraformProvider // Experimental. SetProvider(val cdktf.TerraformProvider) // Experimental. Provisioners() *[]interface{} // Experimental. SetProvisioners(val *[]interface{}) // Experimental. RawOverrides() interface{} SpotInstancePolicy() *string SetSpotInstancePolicy(val *string) SpotInstancePolicyInput() *string State() *string Tags() SqlEndpointTagsOutputReference TagsInput() *SqlEndpointTags // Experimental. TerraformGeneratorMetadata() *cdktf.TerraformProviderGeneratorMetadata // Experimental. TerraformMetaArguments() *map[string]interface{} // Experimental. TerraformResourceType() *string Timeouts() SqlEndpointTimeoutsOutputReference TimeoutsInput() interface{} WarehouseType() *string SetWarehouseType(val *string) WarehouseTypeInput() *string // Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. // Experimental. AddMoveTarget(moveTarget *string) // Experimental. AddOverride(path *string, value interface{}) // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. HasResourceMove() interface{} // Experimental. ImportFrom(id *string, provider cdktf.TerraformProvider) // Experimental. InterpolationForAttribute(terraformAttribute *string) cdktf.IResolvable // Move the resource corresponding to "id" to this resource. // // Note that the resource being moved from must be marked as moved using it's instance function. // Experimental. MoveFromId(id *string) // Moves this resource to the target resource given by moveTarget. // Experimental. MoveTo(moveTarget *string, index interface{}) // Moves this resource to the resource corresponding to "id". // Experimental. MoveToId(id *string) // Overrides the auto-generated logical ID with a specific ID. // Experimental. OverrideLogicalId(newLogicalId *string) PutChannel(value *SqlEndpointChannel) PutTags(value *SqlEndpointTags) PutTimeouts(value *SqlEndpointTimeouts) ResetAutoStopMins() ResetChannel() ResetDataSourceId() ResetEnablePhoton() ResetEnableServerlessCompute() ResetId() ResetInstanceProfileArn() ResetMaxNumClusters() ResetMinNumClusters() // Resets a previously passed logical Id to use the auto-generated logical id again. // Experimental. ResetOverrideLogicalId() ResetSpotInstancePolicy() ResetTags() ResetTimeouts() ResetWarehouseType() SynthesizeAttributes() *map[string]interface{} SynthesizeHclAttributes() *map[string]interface{} // Experimental. ToHclTerraform() 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/databricks/databricks/1.63.0/docs/resources/sql_endpoint databricks_sql_endpoint}.
func NewSqlEndpoint ¶
func NewSqlEndpoint(scope constructs.Construct, id *string, config *SqlEndpointConfig) SqlEndpoint
Create a new {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint databricks_sql_endpoint} Resource.
type SqlEndpointChannel ¶
type SqlEndpointChannel struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#dbsql_version SqlEndpoint#dbsql_version}. DbsqlVersion *string `field:"optional" json:"dbsqlVersion" yaml:"dbsqlVersion"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#name SqlEndpoint#name}. Name *string `field:"optional" json:"name" yaml:"name"` }
type SqlEndpointChannelOutputReference ¶
type SqlEndpointChannelOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string DbsqlVersion() *string SetDbsqlVersion(val *string) DbsqlVersionInput() *string // Experimental. Fqn() *string InternalValue() *SqlEndpointChannel SetInternalValue(val *SqlEndpointChannel) Name() *string SetName(val *string) NameInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetDbsqlVersion() ResetName() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointChannelOutputReference ¶
func NewSqlEndpointChannelOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) SqlEndpointChannelOutputReference
type SqlEndpointConfig ¶
type SqlEndpointConfig struct { // Experimental. Connection interface{} `field:"optional" json:"connection" yaml:"connection"` // Experimental. Count interface{} `field:"optional" json:"count" yaml:"count"` // Experimental. DependsOn *[]cdktf.ITerraformDependable `field:"optional" json:"dependsOn" yaml:"dependsOn"` // Experimental. ForEach cdktf.ITerraformIterator `field:"optional" json:"forEach" yaml:"forEach"` // Experimental. Lifecycle *cdktf.TerraformResourceLifecycle `field:"optional" json:"lifecycle" yaml:"lifecycle"` // Experimental. Provider cdktf.TerraformProvider `field:"optional" json:"provider" yaml:"provider"` // Experimental. Provisioners *[]interface{} `field:"optional" json:"provisioners" yaml:"provisioners"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#cluster_size SqlEndpoint#cluster_size}. ClusterSize *string `field:"required" json:"clusterSize" yaml:"clusterSize"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#name SqlEndpoint#name}. Name *string `field:"required" json:"name" yaml:"name"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#auto_stop_mins SqlEndpoint#auto_stop_mins}. AutoStopMins *float64 `field:"optional" json:"autoStopMins" yaml:"autoStopMins"` // channel block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#channel SqlEndpoint#channel} Channel *SqlEndpointChannel `field:"optional" json:"channel" yaml:"channel"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#data_source_id SqlEndpoint#data_source_id}. DataSourceId *string `field:"optional" json:"dataSourceId" yaml:"dataSourceId"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#enable_photon SqlEndpoint#enable_photon}. EnablePhoton interface{} `field:"optional" json:"enablePhoton" yaml:"enablePhoton"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#enable_serverless_compute SqlEndpoint#enable_serverless_compute}. EnableServerlessCompute interface{} `field:"optional" json:"enableServerlessCompute" yaml:"enableServerlessCompute"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#id SqlEndpoint#id}. // // Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. // If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable. Id *string `field:"optional" json:"id" yaml:"id"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#instance_profile_arn SqlEndpoint#instance_profile_arn}. InstanceProfileArn *string `field:"optional" json:"instanceProfileArn" yaml:"instanceProfileArn"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#max_num_clusters SqlEndpoint#max_num_clusters}. MaxNumClusters *float64 `field:"optional" json:"maxNumClusters" yaml:"maxNumClusters"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#min_num_clusters SqlEndpoint#min_num_clusters}. MinNumClusters *float64 `field:"optional" json:"minNumClusters" yaml:"minNumClusters"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#spot_instance_policy SqlEndpoint#spot_instance_policy}. SpotInstancePolicy *string `field:"optional" json:"spotInstancePolicy" yaml:"spotInstancePolicy"` // tags block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#tags SqlEndpoint#tags} Tags *SqlEndpointTags `field:"optional" json:"tags" yaml:"tags"` // timeouts block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#timeouts SqlEndpoint#timeouts} Timeouts *SqlEndpointTimeouts `field:"optional" json:"timeouts" yaml:"timeouts"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#warehouse_type SqlEndpoint#warehouse_type}. WarehouseType *string `field:"optional" json:"warehouseType" yaml:"warehouseType"` }
type SqlEndpointHealth ¶ added in v13.0.1
type SqlEndpointHealth struct { }
type SqlEndpointHealthFailureReason ¶ added in v13.0.1
type SqlEndpointHealthFailureReason struct { }
type SqlEndpointHealthFailureReasonList ¶ added in v13.0.1
type SqlEndpointHealthFailureReasonList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SqlEndpointHealthFailureReasonOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointHealthFailureReasonList ¶ added in v13.0.1
func NewSqlEndpointHealthFailureReasonList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlEndpointHealthFailureReasonList
type SqlEndpointHealthFailureReasonOutputReference ¶ added in v13.0.1
type SqlEndpointHealthFailureReasonOutputReference interface { cdktf.ComplexObject Code() *string // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() *SqlEndpointHealthFailureReason SetInternalValue(val *SqlEndpointHealthFailureReason) Parameters() cdktf.StringMap // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Type() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointHealthFailureReasonOutputReference ¶ added in v13.0.1
func NewSqlEndpointHealthFailureReasonOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SqlEndpointHealthFailureReasonOutputReference
type SqlEndpointHealthList ¶ added in v13.0.1
type SqlEndpointHealthList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SqlEndpointHealthOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointHealthList ¶ added in v13.0.1
func NewSqlEndpointHealthList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlEndpointHealthList
type SqlEndpointHealthOutputReference ¶ added in v13.0.1
type SqlEndpointHealthOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string Details() *string FailureReason() SqlEndpointHealthFailureReasonList // Experimental. Fqn() *string InternalValue() *SqlEndpointHealth SetInternalValue(val *SqlEndpointHealth) Message() *string Status() *string Summary() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointHealthOutputReference ¶ added in v13.0.1
func NewSqlEndpointHealthOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SqlEndpointHealthOutputReference
type SqlEndpointOdbcParams ¶
type SqlEndpointOdbcParams struct { }
type SqlEndpointOdbcParamsList ¶ added in v13.0.1
type SqlEndpointOdbcParamsList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SqlEndpointOdbcParamsOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointOdbcParamsList ¶ added in v13.0.1
func NewSqlEndpointOdbcParamsList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlEndpointOdbcParamsList
type SqlEndpointOdbcParamsOutputReference ¶
type SqlEndpointOdbcParamsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string Hostname() *string InternalValue() *SqlEndpointOdbcParams SetInternalValue(val *SqlEndpointOdbcParams) Path() *string Port() *float64 Protocol() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointOdbcParamsOutputReference ¶
func NewSqlEndpointOdbcParamsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SqlEndpointOdbcParamsOutputReference
type SqlEndpointTags ¶
type SqlEndpointTags struct { // custom_tags block. // // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#custom_tags SqlEndpoint#custom_tags} CustomTags interface{} `field:"optional" json:"customTags" yaml:"customTags"` }
type SqlEndpointTagsCustomTags ¶
type SqlEndpointTagsCustomTags struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#key SqlEndpoint#key}. Key *string `field:"required" json:"key" yaml:"key"` // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#value SqlEndpoint#value}. Value *string `field:"required" json:"value" yaml:"value"` }
type SqlEndpointTagsCustomTagsList ¶
type SqlEndpointTagsCustomTagsList interface { cdktf.ComplexList // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // The attribute on the parent resource this class is referencing. TerraformAttribute() *string SetTerraformAttribute(val *string) // The parent resource. TerraformResource() cdktf.IInterpolatingParent SetTerraformResource(val cdktf.IInterpolatingParent) // whether the list is wrapping a set (will add tolist() to be able to access an item via an index). WrapsSet() *bool SetWrapsSet(val *bool) // Creating an iterator for this complex list. // // The list will be converted into a map with the mapKeyAttributeName as the key. // Experimental. AllWithMapKey(mapKeyAttributeName *string) cdktf.DynamicListTerraformIterator // Experimental. ComputeFqn() *string Get(index *float64) SqlEndpointTagsCustomTagsOutputReference // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointTagsCustomTagsList ¶
func NewSqlEndpointTagsCustomTagsList(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, wrapsSet *bool) SqlEndpointTagsCustomTagsList
type SqlEndpointTagsCustomTagsOutputReference ¶
type SqlEndpointTagsCustomTagsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) Key() *string SetKey(val *string) KeyInput() *string // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) Value() *string SetValue(val *string) ValueInput() *string // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointTagsCustomTagsOutputReference ¶
func NewSqlEndpointTagsCustomTagsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string, complexObjectIndex *float64, complexObjectIsFromSet *bool) SqlEndpointTagsCustomTagsOutputReference
type SqlEndpointTagsOutputReference ¶
type SqlEndpointTagsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string CustomTags() SqlEndpointTagsCustomTagsList CustomTagsInput() interface{} // Experimental. Fqn() *string InternalValue() *SqlEndpointTags SetInternalValue(val *SqlEndpointTags) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable PutCustomTags(value interface{}) ResetCustomTags() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointTagsOutputReference ¶
func NewSqlEndpointTagsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) SqlEndpointTagsOutputReference
type SqlEndpointTimeouts ¶
type SqlEndpointTimeouts struct { // Docs at Terraform Registry: {@link https://registry.terraform.io/providers/databricks/databricks/1.63.0/docs/resources/sql_endpoint#create SqlEndpoint#create}. Create *string `field:"optional" json:"create" yaml:"create"` }
type SqlEndpointTimeoutsOutputReference ¶
type SqlEndpointTimeoutsOutputReference interface { cdktf.ComplexObject // the index of the complex object in a list. // Experimental. ComplexObjectIndex() interface{} // Experimental. SetComplexObjectIndex(val interface{}) // set to true if this item is from inside a set and needs tolist() for accessing it set to "0" for single list items. // Experimental. ComplexObjectIsFromSet() *bool // Experimental. SetComplexObjectIsFromSet(val *bool) Create() *string SetCreate(val *string) CreateInput() *string // The creation stack of this resolvable which will be appended to errors thrown during resolution. // // If this returns an empty array the stack will not be attached. // Experimental. CreationStack() *[]*string // Experimental. Fqn() *string InternalValue() interface{} SetInternalValue(val interface{}) // Experimental. TerraformAttribute() *string // Experimental. SetTerraformAttribute(val *string) // Experimental. TerraformResource() cdktf.IInterpolatingParent // Experimental. SetTerraformResource(val cdktf.IInterpolatingParent) // Experimental. ComputeFqn() *string // Experimental. GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{} // Experimental. GetBooleanAttribute(terraformAttribute *string) cdktf.IResolvable // Experimental. GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool // Experimental. GetListAttribute(terraformAttribute *string) *[]*string // Experimental. GetNumberAttribute(terraformAttribute *string) *float64 // Experimental. GetNumberListAttribute(terraformAttribute *string) *[]*float64 // Experimental. GetNumberMapAttribute(terraformAttribute *string) *map[string]*float64 // Experimental. GetStringAttribute(terraformAttribute *string) *string // Experimental. GetStringMapAttribute(terraformAttribute *string) *map[string]*string // Experimental. InterpolationAsList() cdktf.IResolvable // Experimental. InterpolationForAttribute(property *string) cdktf.IResolvable ResetCreate() // Produce the Token's value at resolution time. // Experimental. Resolve(_context cdktf.IResolveContext) interface{} // Return a string representation of this resolvable object. // // Returns a reversible string representation. // Experimental. ToString() *string }
func NewSqlEndpointTimeoutsOutputReference ¶
func NewSqlEndpointTimeoutsOutputReference(terraformResource cdktf.IInterpolatingParent, terraformAttribute *string) SqlEndpointTimeoutsOutputReference
Source Files
¶
- SqlEndpoint.go
- SqlEndpointChannel.go
- SqlEndpointChannelOutputReference.go
- SqlEndpointChannelOutputReference__checks.go
- SqlEndpointConfig.go
- SqlEndpointHealth.go
- SqlEndpointHealthFailureReason.go
- SqlEndpointHealthFailureReasonList.go
- SqlEndpointHealthFailureReasonList__checks.go
- SqlEndpointHealthFailureReasonOutputReference.go
- SqlEndpointHealthFailureReasonOutputReference__checks.go
- SqlEndpointHealthList.go
- SqlEndpointHealthList__checks.go
- SqlEndpointHealthOutputReference.go
- SqlEndpointHealthOutputReference__checks.go
- SqlEndpointOdbcParams.go
- SqlEndpointOdbcParamsList.go
- SqlEndpointOdbcParamsList__checks.go
- SqlEndpointOdbcParamsOutputReference.go
- SqlEndpointOdbcParamsOutputReference__checks.go
- SqlEndpointTags.go
- SqlEndpointTagsCustomTags.go
- SqlEndpointTagsCustomTagsList.go
- SqlEndpointTagsCustomTagsList__checks.go
- SqlEndpointTagsCustomTagsOutputReference.go
- SqlEndpointTagsCustomTagsOutputReference__checks.go
- SqlEndpointTagsOutputReference.go
- SqlEndpointTagsOutputReference__checks.go
- SqlEndpointTimeouts.go
- SqlEndpointTimeoutsOutputReference.go
- SqlEndpointTimeoutsOutputReference__checks.go
- SqlEndpoint__checks.go
- main.go