Documentation ¶
Index ¶
- type Args
- type DataArgs
- type DataNodeTypeConfigsAttributes
- func (ntc DataNodeTypeConfigsAttributes) CustomCoreCount() terra.NumberValue
- func (ntc DataNodeTypeConfigsAttributes) InternalRef() (terra.Reference, error)
- func (ntc DataNodeTypeConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ntc DataNodeTypeConfigsAttributes) InternalWithRef(ref terra.Reference) DataNodeTypeConfigsAttributes
- func (ntc DataNodeTypeConfigsAttributes) NodeCount() terra.NumberValue
- func (ntc DataNodeTypeConfigsAttributes) NodeTypeId() terra.StringValue
- type DataNodeTypeConfigsState
- type DataSource
- type NodeTypeConfigs
- type NodeTypeConfigsAttributes
- func (ntc NodeTypeConfigsAttributes) CustomCoreCount() terra.NumberValue
- func (ntc NodeTypeConfigsAttributes) InternalRef() (terra.Reference, error)
- func (ntc NodeTypeConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ntc NodeTypeConfigsAttributes) InternalWithRef(ref terra.Reference) NodeTypeConfigsAttributes
- func (ntc NodeTypeConfigsAttributes) NodeCount() terra.NumberValue
- func (ntc NodeTypeConfigsAttributes) NodeTypeId() terra.StringValue
- type NodeTypeConfigsState
- type Resource
- func (gvc *Resource) Attributes() googleVmwareengineClusterAttributes
- func (gvc *Resource) Configuration() interface{}
- func (gvc *Resource) DependOn() terra.Reference
- func (gvc *Resource) Dependencies() terra.Dependencies
- func (gvc *Resource) ImportState(state io.Reader) error
- func (gvc *Resource) LifecycleManagement() *terra.Lifecycle
- func (gvc *Resource) LocalName() string
- func (gvc *Resource) State() (*googleVmwareengineClusterState, bool)
- func (gvc *Resource) StateMust() *googleVmwareengineClusterState
- func (gvc *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 { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Parent: string, required Parent terra.StringValue `hcl:"parent,attr" validate:"required"` // NodeTypeConfigs: min=0 NodeTypeConfigs []NodeTypeConfigs `hcl:"node_type_configs,block" validate:"min=0"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_vmwareengine_cluster.
type DataArgs ¶
type DataArgs struct { // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Parent: string, required Parent terra.StringValue `hcl:"parent,attr" validate:"required"` }
DataArgs contains the configurations for google_vmwareengine_cluster.
type DataNodeTypeConfigsAttributes ¶
type DataNodeTypeConfigsAttributes struct {
// contains filtered or unexported fields
}
func (DataNodeTypeConfigsAttributes) CustomCoreCount ¶
func (ntc DataNodeTypeConfigsAttributes) CustomCoreCount() terra.NumberValue
func (DataNodeTypeConfigsAttributes) InternalRef ¶
func (ntc DataNodeTypeConfigsAttributes) InternalRef() (terra.Reference, error)
func (DataNodeTypeConfigsAttributes) InternalTokens ¶
func (ntc DataNodeTypeConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DataNodeTypeConfigsAttributes) InternalWithRef ¶
func (ntc DataNodeTypeConfigsAttributes) InternalWithRef(ref terra.Reference) DataNodeTypeConfigsAttributes
func (DataNodeTypeConfigsAttributes) NodeCount ¶
func (ntc DataNodeTypeConfigsAttributes) NodeCount() terra.NumberValue
func (DataNodeTypeConfigsAttributes) NodeTypeId ¶
func (ntc DataNodeTypeConfigsAttributes) NodeTypeId() terra.StringValue
type DataSource ¶
DataSource represents the Terraform data resource google_vmwareengine_cluster.
func Data ¶
func Data(name string, args DataArgs) *DataSource
Data creates a new instance of DataSource.
func (*DataSource) Attributes ¶
func (gvc *DataSource) Attributes() dataGoogleVmwareengineClusterAttributes
Attributes returns the attributes for DataSource.
func (*DataSource) Configuration ¶
func (gvc *DataSource) Configuration() interface{}
Configuration returns the configuration (args) for DataSource.
func (*DataSource) DataSource ¶
func (gvc *DataSource) DataSource() string
DataSource returns the Terraform object type for DataSource.
func (*DataSource) LocalName ¶
func (gvc *DataSource) LocalName() string
LocalName returns the local name for DataSource.
type NodeTypeConfigs ¶
type NodeTypeConfigs struct { // CustomCoreCount: number, optional CustomCoreCount terra.NumberValue `hcl:"custom_core_count,attr"` // NodeCount: number, required NodeCount terra.NumberValue `hcl:"node_count,attr" validate:"required"` // NodeTypeId: string, required NodeTypeId terra.StringValue `hcl:"node_type_id,attr" validate:"required"` }
type NodeTypeConfigsAttributes ¶
type NodeTypeConfigsAttributes struct {
// contains filtered or unexported fields
}
func (NodeTypeConfigsAttributes) CustomCoreCount ¶
func (ntc NodeTypeConfigsAttributes) CustomCoreCount() terra.NumberValue
func (NodeTypeConfigsAttributes) InternalRef ¶
func (ntc NodeTypeConfigsAttributes) InternalRef() (terra.Reference, error)
func (NodeTypeConfigsAttributes) InternalTokens ¶
func (ntc NodeTypeConfigsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (NodeTypeConfigsAttributes) InternalWithRef ¶
func (ntc NodeTypeConfigsAttributes) InternalWithRef(ref terra.Reference) NodeTypeConfigsAttributes
func (NodeTypeConfigsAttributes) NodeCount ¶
func (ntc NodeTypeConfigsAttributes) NodeCount() terra.NumberValue
func (NodeTypeConfigsAttributes) NodeTypeId ¶
func (ntc NodeTypeConfigsAttributes) NodeTypeId() terra.StringValue
type NodeTypeConfigsState ¶
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_vmwareengine_cluster.
func (*Resource) Attributes ¶
func (gvc *Resource) Attributes() googleVmwareengineClusterAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (gvc *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (gvc *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