Documentation ¶
Index ¶
- type Args
- type Resource
- func (gbap *Resource) Attributes() googleBigtableAppProfileAttributes
- func (gbap *Resource) Configuration() interface{}
- func (gbap *Resource) DependOn() terra.Reference
- func (gbap *Resource) Dependencies() terra.Dependencies
- func (gbap *Resource) ImportState(state io.Reader) error
- func (gbap *Resource) LifecycleManagement() *terra.Lifecycle
- func (gbap *Resource) LocalName() string
- func (gbap *Resource) State() (*googleBigtableAppProfileState, bool)
- func (gbap *Resource) StateMust() *googleBigtableAppProfileState
- func (gbap *Resource) Type() string
- type SingleClusterRouting
- type SingleClusterRoutingAttributes
- func (scr SingleClusterRoutingAttributes) AllowTransactionalWrites() terra.BoolValue
- func (scr SingleClusterRoutingAttributes) ClusterId() terra.StringValue
- func (scr SingleClusterRoutingAttributes) InternalRef() (terra.Reference, error)
- func (scr SingleClusterRoutingAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (scr SingleClusterRoutingAttributes) InternalWithRef(ref terra.Reference) SingleClusterRoutingAttributes
- type SingleClusterRoutingState
- type StandardIsolation
- type StandardIsolationAttributes
- func (si StandardIsolationAttributes) InternalRef() (terra.Reference, error)
- func (si StandardIsolationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (si StandardIsolationAttributes) InternalWithRef(ref terra.Reference) StandardIsolationAttributes
- func (si StandardIsolationAttributes) Priority() terra.StringValue
- type StandardIsolationState
- type Timeouts
- type TimeoutsAttributes
- func (t TimeoutsAttributes) Create() terra.StringValue
- func (t TimeoutsAttributes) Delete() terra.StringValue
- func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)
- func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes
- func (t TimeoutsAttributes) Update() terra.StringValue
- type TimeoutsState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Args ¶
type Args struct { // AppProfileId: string, required AppProfileId terra.StringValue `hcl:"app_profile_id,attr" validate:"required"` // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // IgnoreWarnings: bool, optional IgnoreWarnings terra.BoolValue `hcl:"ignore_warnings,attr"` // Instance: string, optional Instance terra.StringValue `hcl:"instance,attr"` // MultiClusterRoutingClusterIds: list of string, optional MultiClusterRoutingClusterIds terra.ListValue[terra.StringValue] `hcl:"multi_cluster_routing_cluster_ids,attr"` // MultiClusterRoutingUseAny: bool, optional MultiClusterRoutingUseAny terra.BoolValue `hcl:"multi_cluster_routing_use_any,attr"` // Project: string, optional Project terra.StringValue `hcl:"project,attr"` // SingleClusterRouting: optional SingleClusterRouting *SingleClusterRouting `hcl:"single_cluster_routing,block"` // StandardIsolation: optional StandardIsolation *StandardIsolation `hcl:"standard_isolation,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_bigtable_app_profile.
type Resource ¶
type Resource struct { Name string Args Args DependsOn terra.Dependencies Lifecycle *terra.Lifecycle // contains filtered or unexported fields }
Resource represents the Terraform resource google_bigtable_app_profile.
func (*Resource) Attributes ¶
func (gbap *Resource) Attributes() googleBigtableAppProfileAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (gbap *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (gbap *Resource) Dependencies() terra.Dependencies
Dependencies returns the list of resources Resource depends_on.
func (*Resource) ImportState ¶
ImportState imports the given attribute values into Resource's state.
func (*Resource) LifecycleManagement ¶
LifecycleManagement returns the lifecycle block for Resource.
type SingleClusterRouting ¶
type SingleClusterRouting struct { // AllowTransactionalWrites: bool, optional AllowTransactionalWrites terra.BoolValue `hcl:"allow_transactional_writes,attr"` // ClusterId: string, required ClusterId terra.StringValue `hcl:"cluster_id,attr" validate:"required"` }
type SingleClusterRoutingAttributes ¶
type SingleClusterRoutingAttributes struct {
// contains filtered or unexported fields
}
func (SingleClusterRoutingAttributes) AllowTransactionalWrites ¶
func (scr SingleClusterRoutingAttributes) AllowTransactionalWrites() terra.BoolValue
func (SingleClusterRoutingAttributes) ClusterId ¶
func (scr SingleClusterRoutingAttributes) ClusterId() terra.StringValue
func (SingleClusterRoutingAttributes) InternalRef ¶
func (scr SingleClusterRoutingAttributes) InternalRef() (terra.Reference, error)
func (SingleClusterRoutingAttributes) InternalTokens ¶
func (scr SingleClusterRoutingAttributes) InternalTokens() (hclwrite.Tokens, error)
func (SingleClusterRoutingAttributes) InternalWithRef ¶
func (scr SingleClusterRoutingAttributes) InternalWithRef(ref terra.Reference) SingleClusterRoutingAttributes
type StandardIsolation ¶
type StandardIsolation struct { // Priority: string, required Priority terra.StringValue `hcl:"priority,attr" validate:"required"` }
type StandardIsolationAttributes ¶
type StandardIsolationAttributes struct {
// contains filtered or unexported fields
}
func (StandardIsolationAttributes) InternalRef ¶
func (si StandardIsolationAttributes) InternalRef() (terra.Reference, error)
func (StandardIsolationAttributes) InternalTokens ¶
func (si StandardIsolationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (StandardIsolationAttributes) InternalWithRef ¶
func (si StandardIsolationAttributes) InternalWithRef(ref terra.Reference) StandardIsolationAttributes
func (StandardIsolationAttributes) Priority ¶
func (si StandardIsolationAttributes) Priority() terra.StringValue
type StandardIsolationState ¶
type StandardIsolationState struct {
Priority string `json:"priority"`
}
type Timeouts ¶
type Timeouts struct { // Create: string, optional Create terra.StringValue `hcl:"create,attr"` // Delete: string, optional Delete terra.StringValue `hcl:"delete,attr"` // Update: string, optional Update terra.StringValue `hcl:"update,attr"` }
type TimeoutsAttributes ¶
type TimeoutsAttributes struct {
// contains filtered or unexported fields
}
func (TimeoutsAttributes) Create ¶
func (t TimeoutsAttributes) Create() terra.StringValue
func (TimeoutsAttributes) Delete ¶
func (t TimeoutsAttributes) Delete() terra.StringValue
func (TimeoutsAttributes) InternalRef ¶
func (t TimeoutsAttributes) InternalRef() (terra.Reference, error)
func (TimeoutsAttributes) InternalTokens ¶
func (t TimeoutsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (TimeoutsAttributes) InternalWithRef ¶
func (t TimeoutsAttributes) InternalWithRef(ref terra.Reference) TimeoutsAttributes
func (TimeoutsAttributes) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue
type TimeoutsState ¶
Click to show internal directories.
Click to hide internal directories.