Documentation
¶
Index ¶
- type AksAssignedIdentityAttributes
- func (aai AksAssignedIdentityAttributes) InternalRef() (terra.Reference, error)
- func (aai AksAssignedIdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (aai AksAssignedIdentityAttributes) InternalWithRef(ref terra.Reference) AksAssignedIdentityAttributes
- func (aai AksAssignedIdentityAttributes) PrincipalId() terra.StringValue
- func (aai AksAssignedIdentityAttributes) TenantId() terra.StringValue
- func (aai AksAssignedIdentityAttributes) Type() terra.StringValue
- type AksAssignedIdentityState
- type Args
- type Plan
- type PlanAttributes
- func (p PlanAttributes) InternalRef() (terra.Reference, error)
- func (p PlanAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (p PlanAttributes) InternalWithRef(ref terra.Reference) PlanAttributes
- func (p PlanAttributes) Name() terra.StringValue
- func (p PlanAttributes) Product() terra.StringValue
- func (p PlanAttributes) PromotionCode() terra.StringValue
- func (p PlanAttributes) Publisher() terra.StringValue
- func (p PlanAttributes) Version() terra.StringValue
- type PlanState
- type Resource
- func (akce *Resource) Attributes() azurermKubernetesClusterExtensionAttributes
- func (akce *Resource) Configuration() interface{}
- func (akce *Resource) DependOn() terra.Reference
- func (akce *Resource) Dependencies() terra.Dependencies
- func (akce *Resource) ImportState(state io.Reader) error
- func (akce *Resource) LifecycleManagement() *terra.Lifecycle
- func (akce *Resource) LocalName() string
- func (akce *Resource) State() (*azurermKubernetesClusterExtensionState, bool)
- func (akce *Resource) StateMust() *azurermKubernetesClusterExtensionState
- func (akce *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) Read() terra.StringValue
- 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 AksAssignedIdentityAttributes ¶
type AksAssignedIdentityAttributes struct {
// contains filtered or unexported fields
}
func (AksAssignedIdentityAttributes) InternalRef ¶
func (aai AksAssignedIdentityAttributes) InternalRef() (terra.Reference, error)
func (AksAssignedIdentityAttributes) InternalTokens ¶
func (aai AksAssignedIdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AksAssignedIdentityAttributes) InternalWithRef ¶
func (aai AksAssignedIdentityAttributes) InternalWithRef(ref terra.Reference) AksAssignedIdentityAttributes
func (AksAssignedIdentityAttributes) PrincipalId ¶
func (aai AksAssignedIdentityAttributes) PrincipalId() terra.StringValue
func (AksAssignedIdentityAttributes) TenantId ¶
func (aai AksAssignedIdentityAttributes) TenantId() terra.StringValue
func (AksAssignedIdentityAttributes) Type ¶
func (aai AksAssignedIdentityAttributes) Type() terra.StringValue
type Args ¶
type Args struct { // ClusterId: string, required ClusterId terra.StringValue `hcl:"cluster_id,attr" validate:"required"` // ConfigurationProtectedSettings: map of string, optional ConfigurationProtectedSettings terra.MapValue[terra.StringValue] `hcl:"configuration_protected_settings,attr"` // ConfigurationSettings: map of string, optional ConfigurationSettings terra.MapValue[terra.StringValue] `hcl:"configuration_settings,attr"` // ExtensionType: string, required ExtensionType terra.StringValue `hcl:"extension_type,attr" validate:"required"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // ReleaseNamespace: string, optional ReleaseNamespace terra.StringValue `hcl:"release_namespace,attr"` // ReleaseTrain: string, optional ReleaseTrain terra.StringValue `hcl:"release_train,attr"` // TargetNamespace: string, optional TargetNamespace terra.StringValue `hcl:"target_namespace,attr"` // Version: string, optional Version terra.StringValue `hcl:"version,attr"` // Plan: optional Plan *Plan `hcl:"plan,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_kubernetes_cluster_extension.
type Plan ¶
type Plan struct { // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Product: string, required Product terra.StringValue `hcl:"product,attr" validate:"required"` // PromotionCode: string, optional PromotionCode terra.StringValue `hcl:"promotion_code,attr"` // Publisher: string, required Publisher terra.StringValue `hcl:"publisher,attr" validate:"required"` // Version: string, optional Version terra.StringValue `hcl:"version,attr"` }
type PlanAttributes ¶
type PlanAttributes struct {
// contains filtered or unexported fields
}
func (PlanAttributes) InternalRef ¶
func (p PlanAttributes) InternalRef() (terra.Reference, error)
func (PlanAttributes) InternalTokens ¶
func (p PlanAttributes) InternalTokens() (hclwrite.Tokens, error)
func (PlanAttributes) InternalWithRef ¶
func (p PlanAttributes) InternalWithRef(ref terra.Reference) PlanAttributes
func (PlanAttributes) Name ¶
func (p PlanAttributes) Name() terra.StringValue
func (PlanAttributes) Product ¶
func (p PlanAttributes) Product() terra.StringValue
func (PlanAttributes) PromotionCode ¶
func (p PlanAttributes) PromotionCode() terra.StringValue
func (PlanAttributes) Publisher ¶
func (p PlanAttributes) Publisher() terra.StringValue
func (PlanAttributes) Version ¶
func (p PlanAttributes) Version() terra.StringValue
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 azurerm_kubernetes_cluster_extension.
func (*Resource) Attributes ¶
func (akce *Resource) Attributes() azurermKubernetesClusterExtensionAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (akce *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (akce *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"` // Read: string, optional Read terra.StringValue `hcl:"read,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) Read ¶
func (t TimeoutsAttributes) Read() terra.StringValue
func (TimeoutsAttributes) Update ¶
func (t TimeoutsAttributes) Update() terra.StringValue
Click to show internal directories.
Click to hide internal directories.