Documentation
¶
Index ¶
- type Args
- type Encryption
- type EncryptionAttributes
- func (e EncryptionAttributes) CurrentVersionedKeyExpirationTimestamp() terra.StringValue
- func (e EncryptionAttributes) CurrentVersionedKeyId() terra.StringValue
- func (e EncryptionAttributes) InternalRef() (terra.Reference, error)
- func (e EncryptionAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (e EncryptionAttributes) InternalWithRef(ref terra.Reference) EncryptionAttributes
- func (e EncryptionAttributes) KeyVaultKeyId() terra.StringValue
- func (e EncryptionAttributes) LastKeyRotationTimestamp() terra.StringValue
- func (e EncryptionAttributes) UserAssignedIdentityId() terra.StringValue
- type EncryptionState
- type Identity
- type IdentityAttributes
- func (i IdentityAttributes) IdentityIds() terra.SetValue[terra.StringValue]
- func (i IdentityAttributes) InternalRef() (terra.Reference, error)
- func (i IdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (i IdentityAttributes) InternalWithRef(ref terra.Reference) IdentityAttributes
- func (i IdentityAttributes) PrincipalId() terra.StringValue
- func (i IdentityAttributes) TenantId() terra.StringValue
- func (i IdentityAttributes) Type() terra.StringValue
- type IdentityState
- type NetworkRule
- type NetworkRuleAttributes
- func (nr NetworkRuleAttributes) Action() terra.StringValue
- func (nr NetworkRuleAttributes) InternalRef() (terra.Reference, error)
- func (nr NetworkRuleAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (nr NetworkRuleAttributes) InternalWithRef(ref terra.Reference) NetworkRuleAttributes
- func (nr NetworkRuleAttributes) SubnetId() terra.StringValue
- type NetworkRuleState
- type Resource
- func (aesvg *Resource) Attributes() azurermElasticSanVolumeGroupAttributes
- func (aesvg *Resource) Configuration() interface{}
- func (aesvg *Resource) DependOn() terra.Reference
- func (aesvg *Resource) Dependencies() terra.Dependencies
- func (aesvg *Resource) ImportState(state io.Reader) error
- func (aesvg *Resource) LifecycleManagement() *terra.Lifecycle
- func (aesvg *Resource) LocalName() string
- func (aesvg *Resource) State() (*azurermElasticSanVolumeGroupState, bool)
- func (aesvg *Resource) StateMust() *azurermElasticSanVolumeGroupState
- func (aesvg *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 Args ¶
type Args struct { // ElasticSanId: string, required ElasticSanId terra.StringValue `hcl:"elastic_san_id,attr" validate:"required"` // EncryptionType: string, optional EncryptionType terra.StringValue `hcl:"encryption_type,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // ProtocolType: string, optional ProtocolType terra.StringValue `hcl:"protocol_type,attr"` // Encryption: optional Encryption *Encryption `hcl:"encryption,block"` // Identity: optional Identity *Identity `hcl:"identity,block"` // NetworkRule: min=0 NetworkRule []NetworkRule `hcl:"network_rule,block" validate:"min=0"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_elastic_san_volume_group.
type Encryption ¶
type Encryption struct { // KeyVaultKeyId: string, required KeyVaultKeyId terra.StringValue `hcl:"key_vault_key_id,attr" validate:"required"` // UserAssignedIdentityId: string, optional UserAssignedIdentityId terra.StringValue `hcl:"user_assigned_identity_id,attr"` }
type EncryptionAttributes ¶
type EncryptionAttributes struct {
// contains filtered or unexported fields
}
func (EncryptionAttributes) CurrentVersionedKeyExpirationTimestamp ¶
func (e EncryptionAttributes) CurrentVersionedKeyExpirationTimestamp() terra.StringValue
func (EncryptionAttributes) CurrentVersionedKeyId ¶
func (e EncryptionAttributes) CurrentVersionedKeyId() terra.StringValue
func (EncryptionAttributes) InternalRef ¶
func (e EncryptionAttributes) InternalRef() (terra.Reference, error)
func (EncryptionAttributes) InternalTokens ¶
func (e EncryptionAttributes) InternalTokens() (hclwrite.Tokens, error)
func (EncryptionAttributes) InternalWithRef ¶
func (e EncryptionAttributes) InternalWithRef(ref terra.Reference) EncryptionAttributes
func (EncryptionAttributes) KeyVaultKeyId ¶
func (e EncryptionAttributes) KeyVaultKeyId() terra.StringValue
func (EncryptionAttributes) LastKeyRotationTimestamp ¶
func (e EncryptionAttributes) LastKeyRotationTimestamp() terra.StringValue
func (EncryptionAttributes) UserAssignedIdentityId ¶
func (e EncryptionAttributes) UserAssignedIdentityId() terra.StringValue
type EncryptionState ¶
type EncryptionState struct { CurrentVersionedKeyExpirationTimestamp string `json:"current_versioned_key_expiration_timestamp"` CurrentVersionedKeyId string `json:"current_versioned_key_id"` KeyVaultKeyId string `json:"key_vault_key_id"` LastKeyRotationTimestamp string `json:"last_key_rotation_timestamp"` UserAssignedIdentityId string `json:"user_assigned_identity_id"` }
type Identity ¶
type Identity struct { // IdentityIds: set of string, optional IdentityIds terra.SetValue[terra.StringValue] `hcl:"identity_ids,attr"` // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` }
type IdentityAttributes ¶
type IdentityAttributes struct {
// contains filtered or unexported fields
}
func (IdentityAttributes) IdentityIds ¶
func (i IdentityAttributes) IdentityIds() terra.SetValue[terra.StringValue]
func (IdentityAttributes) InternalRef ¶
func (i IdentityAttributes) InternalRef() (terra.Reference, error)
func (IdentityAttributes) InternalTokens ¶
func (i IdentityAttributes) InternalTokens() (hclwrite.Tokens, error)
func (IdentityAttributes) InternalWithRef ¶
func (i IdentityAttributes) InternalWithRef(ref terra.Reference) IdentityAttributes
func (IdentityAttributes) PrincipalId ¶
func (i IdentityAttributes) PrincipalId() terra.StringValue
func (IdentityAttributes) TenantId ¶
func (i IdentityAttributes) TenantId() terra.StringValue
func (IdentityAttributes) Type ¶
func (i IdentityAttributes) Type() terra.StringValue
type IdentityState ¶
type NetworkRule ¶
type NetworkRule struct { // Action: string, optional Action terra.StringValue `hcl:"action,attr"` // SubnetId: string, required SubnetId terra.StringValue `hcl:"subnet_id,attr" validate:"required"` }
type NetworkRuleAttributes ¶
type NetworkRuleAttributes struct {
// contains filtered or unexported fields
}
func (NetworkRuleAttributes) Action ¶
func (nr NetworkRuleAttributes) Action() terra.StringValue
func (NetworkRuleAttributes) InternalRef ¶
func (nr NetworkRuleAttributes) InternalRef() (terra.Reference, error)
func (NetworkRuleAttributes) InternalTokens ¶
func (nr NetworkRuleAttributes) InternalTokens() (hclwrite.Tokens, error)
func (NetworkRuleAttributes) InternalWithRef ¶
func (nr NetworkRuleAttributes) InternalWithRef(ref terra.Reference) NetworkRuleAttributes
func (NetworkRuleAttributes) SubnetId ¶
func (nr NetworkRuleAttributes) SubnetId() terra.StringValue
type NetworkRuleState ¶
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_elastic_san_volume_group.
func (*Resource) Attributes ¶
func (aesvg *Resource) Attributes() azurermElasticSanVolumeGroupAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (aesvg *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (aesvg *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.