Documentation ¶
Index ¶
- type Args
- type Authority
- type AuthorityAttributes
- type AuthorityState
- type Endpoint
- type EndpointAttributes
- func (e EndpointAttributes) GkeCluster() terra.ListValue[EndpointGkeClusterAttributes]
- func (e EndpointAttributes) InternalRef() (terra.Reference, error)
- func (e EndpointAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (e EndpointAttributes) InternalWithRef(ref terra.Reference) EndpointAttributes
- type EndpointGkeCluster
- type EndpointGkeClusterAttributes
- func (gc EndpointGkeClusterAttributes) InternalRef() (terra.Reference, error)
- func (gc EndpointGkeClusterAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (gc EndpointGkeClusterAttributes) InternalWithRef(ref terra.Reference) EndpointGkeClusterAttributes
- func (gc EndpointGkeClusterAttributes) ResourceLink() terra.StringValue
- type EndpointGkeClusterState
- type EndpointState
- type Resource
- func (gghm *Resource) Attributes() googleGkeHubMembershipAttributes
- func (gghm *Resource) Configuration() interface{}
- func (gghm *Resource) DependOn() terra.Reference
- func (gghm *Resource) Dependencies() terra.Dependencies
- func (gghm *Resource) ImportState(state io.Reader) error
- func (gghm *Resource) LifecycleManagement() *terra.Lifecycle
- func (gghm *Resource) LocalName() string
- func (gghm *Resource) State() (*googleGkeHubMembershipState, bool)
- func (gghm *Resource) StateMust() *googleGkeHubMembershipState
- func (gghm *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 { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Labels: map of string, optional Labels terra.MapValue[terra.StringValue] `hcl:"labels,attr"` // Location: string, optional Location terra.StringValue `hcl:"location,attr"` // MembershipId: string, required MembershipId terra.StringValue `hcl:"membership_id,attr" validate:"required"` // Project: string, optional Project terra.StringValue `hcl:"project,attr"` // Authority: optional Authority *Authority `hcl:"authority,block"` // Endpoint: optional Endpoint *Endpoint `hcl:"endpoint,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_gke_hub_membership.
type Authority ¶
type Authority struct { // Issuer: string, required Issuer terra.StringValue `hcl:"issuer,attr" validate:"required"` }
type AuthorityAttributes ¶
type AuthorityAttributes struct {
// contains filtered or unexported fields
}
func (AuthorityAttributes) InternalRef ¶
func (a AuthorityAttributes) InternalRef() (terra.Reference, error)
func (AuthorityAttributes) InternalTokens ¶
func (a AuthorityAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AuthorityAttributes) InternalWithRef ¶
func (a AuthorityAttributes) InternalWithRef(ref terra.Reference) AuthorityAttributes
func (AuthorityAttributes) Issuer ¶
func (a AuthorityAttributes) Issuer() terra.StringValue
type AuthorityState ¶
type AuthorityState struct {
Issuer string `json:"issuer"`
}
type Endpoint ¶
type Endpoint struct { // EndpointGkeCluster: optional GkeCluster *EndpointGkeCluster `hcl:"gke_cluster,block"` }
type EndpointAttributes ¶
type EndpointAttributes struct {
// contains filtered or unexported fields
}
func (EndpointAttributes) GkeCluster ¶
func (e EndpointAttributes) GkeCluster() terra.ListValue[EndpointGkeClusterAttributes]
func (EndpointAttributes) InternalRef ¶
func (e EndpointAttributes) InternalRef() (terra.Reference, error)
func (EndpointAttributes) InternalTokens ¶
func (e EndpointAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EndpointAttributes) InternalWithRef ¶
func (e EndpointAttributes) InternalWithRef(ref terra.Reference) EndpointAttributes
type EndpointGkeCluster ¶
type EndpointGkeCluster struct { // ResourceLink: string, required ResourceLink terra.StringValue `hcl:"resource_link,attr" validate:"required"` }
type EndpointGkeClusterAttributes ¶
type EndpointGkeClusterAttributes struct {
// contains filtered or unexported fields
}
func (EndpointGkeClusterAttributes) InternalRef ¶
func (gc EndpointGkeClusterAttributes) InternalRef() (terra.Reference, error)
func (EndpointGkeClusterAttributes) InternalTokens ¶
func (gc EndpointGkeClusterAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EndpointGkeClusterAttributes) InternalWithRef ¶
func (gc EndpointGkeClusterAttributes) InternalWithRef(ref terra.Reference) EndpointGkeClusterAttributes
func (EndpointGkeClusterAttributes) ResourceLink ¶
func (gc EndpointGkeClusterAttributes) ResourceLink() terra.StringValue
type EndpointGkeClusterState ¶
type EndpointGkeClusterState struct {
ResourceLink string `json:"resource_link"`
}
type EndpointState ¶
type EndpointState struct {
GkeCluster []EndpointGkeClusterState `json:"gke_cluster"`
}
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_gke_hub_membership.
func (*Resource) Attributes ¶
func (gghm *Resource) Attributes() googleGkeHubMembershipAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (gghm *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (gghm *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.