Documentation ¶
Index ¶
- type Args
- type Bigtable
- type BigtableAttributes
- func (b BigtableAttributes) AutoScaling() terra.ListValue[BigtableAutoScalingAttributes]
- func (b BigtableAttributes) InternalRef() (terra.Reference, error)
- func (b BigtableAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (b BigtableAttributes) InternalWithRef(ref terra.Reference) BigtableAttributes
- type BigtableAutoScaling
- type BigtableAutoScalingAttributes
- func (as BigtableAutoScalingAttributes) CpuUtilizationTarget() terra.NumberValue
- func (as BigtableAutoScalingAttributes) InternalRef() (terra.Reference, error)
- func (as BigtableAutoScalingAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (as BigtableAutoScalingAttributes) InternalWithRef(ref terra.Reference) BigtableAutoScalingAttributes
- func (as BigtableAutoScalingAttributes) MaxNodeCount() terra.NumberValue
- func (as BigtableAutoScalingAttributes) MinNodeCount() terra.NumberValue
- type BigtableAutoScalingState
- type BigtableState
- type Resource
- func (gvafos *Resource) Attributes() googleVertexAiFeatureOnlineStoreAttributes
- func (gvafos *Resource) Configuration() interface{}
- func (gvafos *Resource) DependOn() terra.Reference
- func (gvafos *Resource) Dependencies() terra.Dependencies
- func (gvafos *Resource) ImportState(state io.Reader) error
- func (gvafos *Resource) LifecycleManagement() *terra.Lifecycle
- func (gvafos *Resource) LocalName() string
- func (gvafos *Resource) State() (*googleVertexAiFeatureOnlineStoreState, bool)
- func (gvafos *Resource) StateMust() *googleVertexAiFeatureOnlineStoreState
- func (gvafos *Resource) Type() string
- 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 { // ForceDestroy: bool, optional ForceDestroy terra.BoolValue `hcl:"force_destroy,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Labels: map of string, optional Labels terra.MapValue[terra.StringValue] `hcl:"labels,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Project: string, optional Project terra.StringValue `hcl:"project,attr"` // Region: string, optional Region terra.StringValue `hcl:"region,attr"` // Bigtable: optional Bigtable *Bigtable `hcl:"bigtable,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_vertex_ai_feature_online_store.
type Bigtable ¶
type Bigtable struct { // BigtableAutoScaling: required AutoScaling *BigtableAutoScaling `hcl:"auto_scaling,block" validate:"required"` }
type BigtableAttributes ¶
type BigtableAttributes struct {
// contains filtered or unexported fields
}
func (BigtableAttributes) AutoScaling ¶
func (b BigtableAttributes) AutoScaling() terra.ListValue[BigtableAutoScalingAttributes]
func (BigtableAttributes) InternalRef ¶
func (b BigtableAttributes) InternalRef() (terra.Reference, error)
func (BigtableAttributes) InternalTokens ¶
func (b BigtableAttributes) InternalTokens() (hclwrite.Tokens, error)
func (BigtableAttributes) InternalWithRef ¶
func (b BigtableAttributes) InternalWithRef(ref terra.Reference) BigtableAttributes
type BigtableAutoScaling ¶
type BigtableAutoScaling struct { // CpuUtilizationTarget: number, optional CpuUtilizationTarget terra.NumberValue `hcl:"cpu_utilization_target,attr"` // MaxNodeCount: number, required MaxNodeCount terra.NumberValue `hcl:"max_node_count,attr" validate:"required"` // MinNodeCount: number, required MinNodeCount terra.NumberValue `hcl:"min_node_count,attr" validate:"required"` }
type BigtableAutoScalingAttributes ¶
type BigtableAutoScalingAttributes struct {
// contains filtered or unexported fields
}
func (BigtableAutoScalingAttributes) CpuUtilizationTarget ¶
func (as BigtableAutoScalingAttributes) CpuUtilizationTarget() terra.NumberValue
func (BigtableAutoScalingAttributes) InternalRef ¶
func (as BigtableAutoScalingAttributes) InternalRef() (terra.Reference, error)
func (BigtableAutoScalingAttributes) InternalTokens ¶
func (as BigtableAutoScalingAttributes) InternalTokens() (hclwrite.Tokens, error)
func (BigtableAutoScalingAttributes) InternalWithRef ¶
func (as BigtableAutoScalingAttributes) InternalWithRef(ref terra.Reference) BigtableAutoScalingAttributes
func (BigtableAutoScalingAttributes) MaxNodeCount ¶
func (as BigtableAutoScalingAttributes) MaxNodeCount() terra.NumberValue
func (BigtableAutoScalingAttributes) MinNodeCount ¶
func (as BigtableAutoScalingAttributes) MinNodeCount() terra.NumberValue
type BigtableState ¶
type BigtableState struct {
AutoScaling []BigtableAutoScalingState `json:"auto_scaling"`
}
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_vertex_ai_feature_online_store.
func (*Resource) Attributes ¶
func (gvafos *Resource) Attributes() googleVertexAiFeatureOnlineStoreAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (gvafos *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (gvafos *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 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.