Represents a {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile google_bigtable_app_profile}.
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.NewBigtableAppProfile(scope Construct, id *string, config BigtableAppProfileConfig) BigtableAppProfile
Name | Type | Description |
---|---|---|
scope |
github.com/aws/constructs-go/constructs/v10.Construct |
The scope in which to define this construct. |
id |
*string |
The scoped construct ID. |
config |
BigtableAppProfileConfig |
No description. |
- Type: github.com/aws/constructs-go/constructs/v10.Construct
The scope in which to define this construct.
- Type: *string
The scoped construct ID.
Must be unique amongst siblings in the same scope
- Type: BigtableAppProfileConfig
Name | Description |
---|---|
ToString |
Returns a string representation of this construct. |
AddOverride |
No description. |
OverrideLogicalId |
Overrides the auto-generated logical ID with a specific ID. |
ResetOverrideLogicalId |
Resets a previously passed logical Id to use the auto-generated logical id again. |
ToHclTerraform |
No description. |
ToMetadata |
No description. |
ToTerraform |
Adds this resource to the terraform JSON output. |
AddMoveTarget |
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
HasResourceMove |
No description. |
ImportFrom |
No description. |
InterpolationForAttribute |
No description. |
MoveFromId |
Move the resource corresponding to "id" to this resource. |
MoveTo |
Moves this resource to the target resource given by moveTarget. |
MoveToId |
Moves this resource to the resource corresponding to "id". |
PutDataBoostIsolationReadOnly |
No description. |
PutSingleClusterRouting |
No description. |
PutStandardIsolation |
No description. |
PutTimeouts |
No description. |
ResetDataBoostIsolationReadOnly |
No description. |
ResetDescription |
No description. |
ResetId |
No description. |
ResetIgnoreWarnings |
No description. |
ResetInstance |
No description. |
ResetMultiClusterRoutingClusterIds |
No description. |
ResetMultiClusterRoutingUseAny |
No description. |
ResetProject |
No description. |
ResetRowAffinity |
No description. |
ResetSingleClusterRouting |
No description. |
ResetStandardIsolation |
No description. |
ResetTimeouts |
No description. |
func ToString() *string
Returns a string representation of this construct.
func AddOverride(path *string, value interface{})
- Type: *string
- Type: interface{}
func OverrideLogicalId(newLogicalId *string)
Overrides the auto-generated logical ID with a specific ID.
- Type: *string
The new logical ID to use for this stack element.
func ResetOverrideLogicalId()
Resets a previously passed logical Id to use the auto-generated logical id again.
func ToHclTerraform() interface{}
func ToMetadata() interface{}
func ToTerraform() interface{}
Adds this resource to the terraform JSON output.
func AddMoveTarget(moveTarget *string)
Adds a user defined moveTarget string to this resource to be later used in .moveTo(moveTarget) to resolve the location of the move.
- Type: *string
The string move target that will correspond to this resource.
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func HasResourceMove() interface{}
func ImportFrom(id *string, provider TerraformProvider)
- Type: *string
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
func InterpolationForAttribute(terraformAttribute *string) IResolvable
- Type: *string
func MoveFromId(id *string)
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.
- Type: *string
Full id of resource being moved from, e.g. "aws_s3_bucket.example".
func MoveTo(moveTarget *string, index interface{})
Moves this resource to the target resource given by moveTarget.
- Type: *string
The previously set user defined string set by .addMoveTarget() corresponding to the resource to move to.
- Type: interface{}
Optional The index corresponding to the key the resource is to appear in the foreach of a resource to move to.
func MoveToId(id *string)
Moves this resource to the resource corresponding to "id".
- Type: *string
Full id of resource to move to, e.g. "aws_s3_bucket.example".
func PutDataBoostIsolationReadOnly(value BigtableAppProfileDataBoostIsolationReadOnly)
func PutSingleClusterRouting(value BigtableAppProfileSingleClusterRouting)
func PutStandardIsolation(value BigtableAppProfileStandardIsolation)
func PutTimeouts(value BigtableAppProfileTimeouts)
func ResetDataBoostIsolationReadOnly()
func ResetDescription()
func ResetId()
func ResetIgnoreWarnings()
func ResetInstance()
func ResetMultiClusterRoutingClusterIds()
func ResetMultiClusterRoutingUseAny()
func ResetProject()
func ResetRowAffinity()
func ResetSingleClusterRouting()
func ResetStandardIsolation()
func ResetTimeouts()
Name | Description |
---|---|
IsConstruct |
Checks if x is a construct. |
IsTerraformElement |
No description. |
IsTerraformResource |
No description. |
GenerateConfigForImport |
Generates CDKTF code for importing a BigtableAppProfile resource upon running "cdktf plan ". |
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.BigtableAppProfile_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.
- Type: interface{}
Any object.
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.BigtableAppProfile_IsTerraformElement(x interface{}) *bool
- Type: interface{}
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.BigtableAppProfile_IsTerraformResource(x interface{}) *bool
- Type: interface{}
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.BigtableAppProfile_GenerateConfigForImport(scope Construct, importToId *string, importFromId *string, provider TerraformProvider) ImportableResource
Generates CDKTF code for importing a BigtableAppProfile resource upon running "cdktf plan ".
- Type: github.com/aws/constructs-go/constructs/v10.Construct
The scope in which to define this construct.
- Type: *string
The construct id used in the generated config for the BigtableAppProfile to import.
- Type: *string
The id of the existing BigtableAppProfile that should be imported.
Refer to the {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#import import section} in the documentation of this resource for the id to use
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
? Optional instance of the provider where the BigtableAppProfile to import is found.
Name | Type | Description |
---|---|---|
Node |
github.com/aws/constructs-go/constructs/v10.Node |
The tree node. |
CdktfStack |
github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack |
No description. |
Fqn |
*string |
No description. |
FriendlyUniqueId |
*string |
No description. |
TerraformMetaArguments |
*map[string]interface{} |
No description. |
TerraformResourceType |
*string |
No description. |
TerraformGeneratorMetadata |
github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata |
No description. |
Connection |
interface{} |
No description. |
Count |
interface{} |
No description. |
DependsOn |
*[]*string |
No description. |
ForEach |
github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator |
No description. |
Lifecycle |
github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle |
No description. |
Provider |
github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider |
No description. |
Provisioners |
*[]interface{} |
No description. |
DataBoostIsolationReadOnly |
BigtableAppProfileDataBoostIsolationReadOnlyOutputReference |
No description. |
Name |
*string |
No description. |
SingleClusterRouting |
BigtableAppProfileSingleClusterRoutingOutputReference |
No description. |
StandardIsolation |
BigtableAppProfileStandardIsolationOutputReference |
No description. |
Timeouts |
BigtableAppProfileTimeoutsOutputReference |
No description. |
AppProfileIdInput |
*string |
No description. |
DataBoostIsolationReadOnlyInput |
BigtableAppProfileDataBoostIsolationReadOnly |
No description. |
DescriptionInput |
*string |
No description. |
IdInput |
*string |
No description. |
IgnoreWarningsInput |
interface{} |
No description. |
InstanceInput |
*string |
No description. |
MultiClusterRoutingClusterIdsInput |
*[]*string |
No description. |
MultiClusterRoutingUseAnyInput |
interface{} |
No description. |
ProjectInput |
*string |
No description. |
RowAffinityInput |
interface{} |
No description. |
SingleClusterRoutingInput |
BigtableAppProfileSingleClusterRouting |
No description. |
StandardIsolationInput |
BigtableAppProfileStandardIsolation |
No description. |
TimeoutsInput |
interface{} |
No description. |
AppProfileId |
*string |
No description. |
Description |
*string |
No description. |
Id |
*string |
No description. |
IgnoreWarnings |
interface{} |
No description. |
Instance |
*string |
No description. |
MultiClusterRoutingClusterIds |
*[]*string |
No description. |
MultiClusterRoutingUseAny |
interface{} |
No description. |
Project |
*string |
No description. |
RowAffinity |
interface{} |
No description. |
func Node() Node
- Type: github.com/aws/constructs-go/constructs/v10.Node
The tree node.
func CdktfStack() TerraformStack
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformStack
func Fqn() *string
- Type: *string
func FriendlyUniqueId() *string
- Type: *string
func TerraformMetaArguments() *map[string]interface{}
- Type: *map[string]interface{}
func TerraformResourceType() *string
- Type: *string
func TerraformGeneratorMetadata() TerraformProviderGeneratorMetadata
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProviderGeneratorMetadata
func Connection() interface{}
- Type: interface{}
func Count() interface{}
- Type: interface{}
func DependsOn() *[]*string
- Type: *[]*string
func ForEach() ITerraformIterator
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator
func Lifecycle() TerraformResourceLifecycle
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle
func Provider() TerraformProvider
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
func Provisioners() *[]interface{}
- Type: *[]interface{}
func DataBoostIsolationReadOnly() BigtableAppProfileDataBoostIsolationReadOnlyOutputReference
func Name() *string
- Type: *string
func SingleClusterRouting() BigtableAppProfileSingleClusterRoutingOutputReference
func StandardIsolation() BigtableAppProfileStandardIsolationOutputReference
func Timeouts() BigtableAppProfileTimeoutsOutputReference
func AppProfileIdInput() *string
- Type: *string
func DataBoostIsolationReadOnlyInput() BigtableAppProfileDataBoostIsolationReadOnly
func DescriptionInput() *string
- Type: *string
func IdInput() *string
- Type: *string
func IgnoreWarningsInput() interface{}
- Type: interface{}
func InstanceInput() *string
- Type: *string
func MultiClusterRoutingClusterIdsInput() *[]*string
- Type: *[]*string
func MultiClusterRoutingUseAnyInput() interface{}
- Type: interface{}
func ProjectInput() *string
- Type: *string
func RowAffinityInput() interface{}
- Type: interface{}
func SingleClusterRoutingInput() BigtableAppProfileSingleClusterRouting
func StandardIsolationInput() BigtableAppProfileStandardIsolation
func TimeoutsInput() interface{}
- Type: interface{}
func AppProfileId() *string
- Type: *string
func Description() *string
- Type: *string
func Id() *string
- Type: *string
func IgnoreWarnings() interface{}
- Type: interface{}
func Instance() *string
- Type: *string
func MultiClusterRoutingClusterIds() *[]*string
- Type: *[]*string
func MultiClusterRoutingUseAny() interface{}
- Type: interface{}
func Project() *string
- Type: *string
func RowAffinity() interface{}
- Type: interface{}
Name | Type | Description |
---|---|---|
TfResourceType |
*string |
No description. |
func TfResourceType() *string
- Type: *string
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
&bigtableappprofile.BigtableAppProfileConfig {
Connection: interface{},
Count: interface{},
DependsOn: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable,
ForEach: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator,
Lifecycle: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle,
Provider: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider,
Provisioners: *[]interface{},
AppProfileId: *string,
DataBoostIsolationReadOnly: github.com/cdktf/cdktf-provider-google-go/google/v14.bigtableAppProfile.BigtableAppProfileDataBoostIsolationReadOnly,
Description: *string,
Id: *string,
IgnoreWarnings: interface{},
Instance: *string,
MultiClusterRoutingClusterIds: *[]*string,
MultiClusterRoutingUseAny: interface{},
Project: *string,
RowAffinity: interface{},
SingleClusterRouting: github.com/cdktf/cdktf-provider-google-go/google/v14.bigtableAppProfile.BigtableAppProfileSingleClusterRouting,
StandardIsolation: github.com/cdktf/cdktf-provider-google-go/google/v14.bigtableAppProfile.BigtableAppProfileStandardIsolation,
Timeouts: github.com/cdktf/cdktf-provider-google-go/google/v14.bigtableAppProfile.BigtableAppProfileTimeouts,
}
Name | Type | Description |
---|---|---|
Connection |
interface{} |
No description. |
Count |
interface{} |
No description. |
DependsOn |
*[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable |
No description. |
ForEach |
github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator |
No description. |
Lifecycle |
github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle |
No description. |
Provider |
github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider |
No description. |
Provisioners |
*[]interface{} |
No description. |
AppProfileId |
*string |
The unique name of the app profile in the form '[a-zA-Z0-9][-.a-zA-Z0-9]*'. |
DataBoostIsolationReadOnly |
BigtableAppProfileDataBoostIsolationReadOnly |
data_boost_isolation_read_only block. |
Description |
*string |
Long form description of the use case for this app profile. |
Id |
*string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#id BigtableAppProfile#id}. |
IgnoreWarnings |
interface{} |
If true, ignore safety checks when deleting/updating the app profile. |
Instance |
*string |
The name of the instance to create the app profile within. |
MultiClusterRoutingClusterIds |
*[]*string |
The set of clusters to route to. |
MultiClusterRoutingUseAny |
interface{} |
If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available in the event of transient errors or delays. |
Project |
*string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#project BigtableAppProfile#project}. |
RowAffinity |
interface{} |
Must be used with multi-cluster routing. |
SingleClusterRouting |
BigtableAppProfileSingleClusterRouting |
single_cluster_routing block. |
StandardIsolation |
BigtableAppProfileStandardIsolation |
standard_isolation block. |
Timeouts |
BigtableAppProfileTimeouts |
timeouts block. |
Connection interface{}
- Type: interface{}
Count interface{}
- Type: interface{}
DependsOn *[]ITerraformDependable
- Type: *[]github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformDependable
ForEach ITerraformIterator
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.ITerraformIterator
Lifecycle TerraformResourceLifecycle
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformResourceLifecycle
Provider TerraformProvider
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.TerraformProvider
Provisioners *[]interface{}
- Type: *[]interface{}
AppProfileId *string
- Type: *string
The unique name of the app profile in the form '[a-zA-Z0-9][-.a-zA-Z0-9]*'.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#app_profile_id BigtableAppProfile#app_profile_id}
DataBoostIsolationReadOnly BigtableAppProfileDataBoostIsolationReadOnly
data_boost_isolation_read_only block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#data_boost_isolation_read_only BigtableAppProfile#data_boost_isolation_read_only}
Description *string
- Type: *string
Long form description of the use case for this app profile.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#description BigtableAppProfile#description}
Id *string
- Type: *string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#id BigtableAppProfile#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.
IgnoreWarnings interface{}
- Type: interface{}
If true, ignore safety checks when deleting/updating the app profile.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#ignore_warnings BigtableAppProfile#ignore_warnings}
Instance *string
- Type: *string
The name of the instance to create the app profile within.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#instance BigtableAppProfile#instance}
MultiClusterRoutingClusterIds *[]*string
- Type: *[]*string
The set of clusters to route to.
The order is ignored; clusters will be tried in order of distance. If left empty, all clusters are eligible.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#multi_cluster_routing_cluster_ids BigtableAppProfile#multi_cluster_routing_cluster_ids}
MultiClusterRoutingUseAny interface{}
- Type: interface{}
If true, read/write requests are routed to the nearest cluster in the instance, and will fail over to the nearest cluster that is available in the event of transient errors or delays.
Clusters in a region are considered equidistant. Choosing this option sacrifices read-your-writes consistency to improve availability.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#multi_cluster_routing_use_any BigtableAppProfile#multi_cluster_routing_use_any}
Project *string
- Type: *string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#project BigtableAppProfile#project}.
RowAffinity interface{}
- Type: interface{}
Must be used with multi-cluster routing.
If true, then this app profile will use row affinity sticky routing. With row affinity, Bigtable will route single row key requests based on the row key, rather than randomly. Instead, each row key will be assigned to a cluster by Cloud Bigtable, and will stick to that cluster. Choosing this option improves read-your-writes consistency for most requests under most circumstances, without sacrificing availability. Consistency is not guaranteed, as requests may still fail over between clusters in the event of errors or latency.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#row_affinity BigtableAppProfile#row_affinity}
SingleClusterRouting BigtableAppProfileSingleClusterRouting
single_cluster_routing block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#single_cluster_routing BigtableAppProfile#single_cluster_routing}
StandardIsolation BigtableAppProfileStandardIsolation
standard_isolation block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#standard_isolation BigtableAppProfile#standard_isolation}
Timeouts BigtableAppProfileTimeouts
timeouts block.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#timeouts BigtableAppProfile#timeouts}
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
&bigtableappprofile.BigtableAppProfileDataBoostIsolationReadOnly {
ComputeBillingOwner: *string,
}
Name | Type | Description |
---|---|---|
ComputeBillingOwner |
*string |
The Compute Billing Owner for this Data Boost App Profile. Possible values: ["HOST_PAYS"]. |
ComputeBillingOwner *string
- Type: *string
The Compute Billing Owner for this Data Boost App Profile. Possible values: ["HOST_PAYS"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#compute_billing_owner BigtableAppProfile#compute_billing_owner}
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
&bigtableappprofile.BigtableAppProfileSingleClusterRouting {
ClusterId: *string,
AllowTransactionalWrites: interface{},
}
Name | Type | Description |
---|---|---|
ClusterId |
*string |
The cluster to which read/write requests should be routed. |
AllowTransactionalWrites |
interface{} |
If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile. |
ClusterId *string
- Type: *string
The cluster to which read/write requests should be routed.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#cluster_id BigtableAppProfile#cluster_id}
AllowTransactionalWrites interface{}
- Type: interface{}
If true, CheckAndMutateRow and ReadModifyWriteRow requests are allowed by this app profile.
It is unsafe to send these requests to the same table/row/column in multiple clusters.
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#allow_transactional_writes BigtableAppProfile#allow_transactional_writes}
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
&bigtableappprofile.BigtableAppProfileStandardIsolation {
Priority: *string,
}
Name | Type | Description |
---|---|---|
Priority |
*string |
The priority of requests sent using this app profile. Possible values: ["PRIORITY_LOW", "PRIORITY_MEDIUM", "PRIORITY_HIGH"]. |
Priority *string
- Type: *string
The priority of requests sent using this app profile. Possible values: ["PRIORITY_LOW", "PRIORITY_MEDIUM", "PRIORITY_HIGH"].
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#priority BigtableAppProfile#priority}
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
&bigtableappprofile.BigtableAppProfileTimeouts {
Create: *string,
Delete: *string,
Update: *string,
}
Name | Type | Description |
---|---|---|
Create |
*string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#create BigtableAppProfile#create}. |
Delete |
*string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#delete BigtableAppProfile#delete}. |
Update |
*string |
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#update BigtableAppProfile#update}. |
Create *string
- Type: *string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#create BigtableAppProfile#create}.
Delete *string
- Type: *string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#delete BigtableAppProfile#delete}.
Update *string
- Type: *string
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/6.14.1/docs/resources/bigtable_app_profile#update BigtableAppProfile#update}.
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.NewBigtableAppProfileDataBoostIsolationReadOnlyOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) BigtableAppProfileDataBoostIsolationReadOnlyOutputReference
Name | Type | Description |
---|---|---|
terraformResource |
github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
*string |
The attribute on the parent resource this class is referencing. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
CreationStack |
*[]*string |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
*string |
No description. |
ComputeBillingOwnerInput |
*string |
No description. |
ComputeBillingOwner |
*string |
No description. |
InternalValue |
BigtableAppProfileDataBoostIsolationReadOnly |
No description. |
func CreationStack() *[]*string
- Type: *[]*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.
func Fqn() *string
- Type: *string
func ComputeBillingOwnerInput() *string
- Type: *string
func ComputeBillingOwner() *string
- Type: *string
func InternalValue() BigtableAppProfileDataBoostIsolationReadOnly
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.NewBigtableAppProfileSingleClusterRoutingOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) BigtableAppProfileSingleClusterRoutingOutputReference
Name | Type | Description |
---|---|---|
terraformResource |
github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
*string |
The attribute on the parent resource this class is referencing. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
ResetAllowTransactionalWrites |
No description. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetAllowTransactionalWrites()
Name | Type | Description |
---|---|---|
CreationStack |
*[]*string |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
*string |
No description. |
AllowTransactionalWritesInput |
interface{} |
No description. |
ClusterIdInput |
*string |
No description. |
AllowTransactionalWrites |
interface{} |
No description. |
ClusterId |
*string |
No description. |
InternalValue |
BigtableAppProfileSingleClusterRouting |
No description. |
func CreationStack() *[]*string
- Type: *[]*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.
func Fqn() *string
- Type: *string
func AllowTransactionalWritesInput() interface{}
- Type: interface{}
func ClusterIdInput() *string
- Type: *string
func AllowTransactionalWrites() interface{}
- Type: interface{}
func ClusterId() *string
- Type: *string
func InternalValue() BigtableAppProfileSingleClusterRouting
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.NewBigtableAppProfileStandardIsolationOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) BigtableAppProfileStandardIsolationOutputReference
Name | Type | Description |
---|---|---|
terraformResource |
github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
*string |
The attribute on the parent resource this class is referencing. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
Name | Type | Description |
---|---|---|
CreationStack |
*[]*string |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
*string |
No description. |
PriorityInput |
*string |
No description. |
Priority |
*string |
No description. |
InternalValue |
BigtableAppProfileStandardIsolation |
No description. |
func CreationStack() *[]*string
- Type: *[]*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.
func Fqn() *string
- Type: *string
func PriorityInput() *string
- Type: *string
func Priority() *string
- Type: *string
func InternalValue() BigtableAppProfileStandardIsolation
import "github.com/cdktf/cdktf-provider-google-go/google/v14/bigtableappprofile"
bigtableappprofile.NewBigtableAppProfileTimeoutsOutputReference(terraformResource IInterpolatingParent, terraformAttribute *string) BigtableAppProfileTimeoutsOutputReference
Name | Type | Description |
---|---|---|
terraformResource |
github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent |
The parent resource. |
terraformAttribute |
*string |
The attribute on the parent resource this class is referencing. |
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IInterpolatingParent
The parent resource.
- Type: *string
The attribute on the parent resource this class is referencing.
Name | Description |
---|---|
ComputeFqn |
No description. |
GetAnyMapAttribute |
No description. |
GetBooleanAttribute |
No description. |
GetBooleanMapAttribute |
No description. |
GetListAttribute |
No description. |
GetNumberAttribute |
No description. |
GetNumberListAttribute |
No description. |
GetNumberMapAttribute |
No description. |
GetStringAttribute |
No description. |
GetStringMapAttribute |
No description. |
InterpolationForAttribute |
No description. |
Resolve |
Produce the Token's value at resolution time. |
ToString |
Return a string representation of this resolvable object. |
ResetCreate |
No description. |
ResetDelete |
No description. |
ResetUpdate |
No description. |
func ComputeFqn() *string
func GetAnyMapAttribute(terraformAttribute *string) *map[string]interface{}
- Type: *string
func GetBooleanAttribute(terraformAttribute *string) IResolvable
- Type: *string
func GetBooleanMapAttribute(terraformAttribute *string) *map[string]*bool
- Type: *string
func GetListAttribute(terraformAttribute *string) *[]*string
- Type: *string
func GetNumberAttribute(terraformAttribute *string) *f64
- Type: *string
func GetNumberListAttribute(terraformAttribute *string) *[]*f64
- Type: *string
func GetNumberMapAttribute(terraformAttribute *string) *map[string]*f64
- Type: *string
func GetStringAttribute(terraformAttribute *string) *string
- Type: *string
func GetStringMapAttribute(terraformAttribute *string) *map[string]*string
- Type: *string
func InterpolationForAttribute(property *string) IResolvable
- Type: *string
func Resolve(_context IResolveContext) interface{}
Produce the Token's value at resolution time.
- Type: github.com/hashicorp/terraform-cdk-go/cdktf.IResolveContext
func ToString() *string
Return a string representation of this resolvable object.
Returns a reversible string representation.
func ResetCreate()
func ResetDelete()
func ResetUpdate()
Name | Type | Description |
---|---|---|
CreationStack |
*[]*string |
The creation stack of this resolvable which will be appended to errors thrown during resolution. |
Fqn |
*string |
No description. |
CreateInput |
*string |
No description. |
DeleteInput |
*string |
No description. |
UpdateInput |
*string |
No description. |
Create |
*string |
No description. |
Delete |
*string |
No description. |
Update |
*string |
No description. |
InternalValue |
interface{} |
No description. |
func CreationStack() *[]*string
- Type: *[]*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.
func Fqn() *string
- Type: *string
func CreateInput() *string
- Type: *string
func DeleteInput() *string
- Type: *string
func UpdateInput() *string
- Type: *string
func Create() *string
- Type: *string
func Delete() *string
- Type: *string
func Update() *string
- Type: *string
func InternalValue() interface{}
- Type: interface{}