Documentation ¶
Index ¶
- type AccessRule
- type AccessRuleAttributes
- func (ar AccessRuleAttributes) Access() terra.StringValue
- func (ar AccessRuleAttributes) AnonymousGid() terra.NumberValue
- func (ar AccessRuleAttributes) AnonymousUid() terra.NumberValue
- func (ar AccessRuleAttributes) Filter() terra.StringValue
- func (ar AccessRuleAttributes) InternalRef() (terra.Reference, error)
- func (ar AccessRuleAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ar AccessRuleAttributes) InternalWithRef(ref terra.Reference) AccessRuleAttributes
- func (ar AccessRuleAttributes) RootSquashEnabled() terra.BoolValue
- func (ar AccessRuleAttributes) Scope() terra.StringValue
- func (ar AccessRuleAttributes) SubmountAccessEnabled() terra.BoolValue
- func (ar AccessRuleAttributes) SuidEnabled() terra.BoolValue
- type AccessRuleState
- type Args
- type Resource
- func (ahcap *Resource) Attributes() azurermHpcCacheAccessPolicyAttributes
- func (ahcap *Resource) Configuration() interface{}
- func (ahcap *Resource) DependOn() terra.Reference
- func (ahcap *Resource) Dependencies() terra.Dependencies
- func (ahcap *Resource) ImportState(state io.Reader) error
- func (ahcap *Resource) LifecycleManagement() *terra.Lifecycle
- func (ahcap *Resource) LocalName() string
- func (ahcap *Resource) State() (*azurermHpcCacheAccessPolicyState, bool)
- func (ahcap *Resource) StateMust() *azurermHpcCacheAccessPolicyState
- func (ahcap *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 AccessRule ¶
type AccessRule struct { // Access: string, required Access terra.StringValue `hcl:"access,attr" validate:"required"` // AnonymousGid: number, optional AnonymousGid terra.NumberValue `hcl:"anonymous_gid,attr"` // AnonymousUid: number, optional AnonymousUid terra.NumberValue `hcl:"anonymous_uid,attr"` // Filter: string, optional Filter terra.StringValue `hcl:"filter,attr"` // RootSquashEnabled: bool, optional RootSquashEnabled terra.BoolValue `hcl:"root_squash_enabled,attr"` // Scope: string, required Scope terra.StringValue `hcl:"scope,attr" validate:"required"` // SubmountAccessEnabled: bool, optional SubmountAccessEnabled terra.BoolValue `hcl:"submount_access_enabled,attr"` // SuidEnabled: bool, optional SuidEnabled terra.BoolValue `hcl:"suid_enabled,attr"` }
type AccessRuleAttributes ¶
type AccessRuleAttributes struct {
// contains filtered or unexported fields
}
func (AccessRuleAttributes) Access ¶
func (ar AccessRuleAttributes) Access() terra.StringValue
func (AccessRuleAttributes) AnonymousGid ¶
func (ar AccessRuleAttributes) AnonymousGid() terra.NumberValue
func (AccessRuleAttributes) AnonymousUid ¶
func (ar AccessRuleAttributes) AnonymousUid() terra.NumberValue
func (AccessRuleAttributes) Filter ¶
func (ar AccessRuleAttributes) Filter() terra.StringValue
func (AccessRuleAttributes) InternalRef ¶
func (ar AccessRuleAttributes) InternalRef() (terra.Reference, error)
func (AccessRuleAttributes) InternalTokens ¶
func (ar AccessRuleAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AccessRuleAttributes) InternalWithRef ¶
func (ar AccessRuleAttributes) InternalWithRef(ref terra.Reference) AccessRuleAttributes
func (AccessRuleAttributes) RootSquashEnabled ¶
func (ar AccessRuleAttributes) RootSquashEnabled() terra.BoolValue
func (AccessRuleAttributes) Scope ¶
func (ar AccessRuleAttributes) Scope() terra.StringValue
func (AccessRuleAttributes) SubmountAccessEnabled ¶
func (ar AccessRuleAttributes) SubmountAccessEnabled() terra.BoolValue
func (AccessRuleAttributes) SuidEnabled ¶
func (ar AccessRuleAttributes) SuidEnabled() terra.BoolValue
type AccessRuleState ¶
type AccessRuleState struct { Access string `json:"access"` AnonymousGid float64 `json:"anonymous_gid"` AnonymousUid float64 `json:"anonymous_uid"` Filter string `json:"filter"` RootSquashEnabled bool `json:"root_squash_enabled"` Scope string `json:"scope"` SubmountAccessEnabled bool `json:"submount_access_enabled"` SuidEnabled bool `json:"suid_enabled"` }
type Args ¶
type Args struct { // HpcCacheId: string, required HpcCacheId terra.StringValue `hcl:"hpc_cache_id,attr" validate:"required"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // AccessRule: min=1,max=3 AccessRule []AccessRule `hcl:"access_rule,block" validate:"min=1,max=3"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for azurerm_hpc_cache_access_policy.
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_hpc_cache_access_policy.
func (*Resource) Attributes ¶
func (ahcap *Resource) Attributes() azurermHpcCacheAccessPolicyAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (ahcap *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (ahcap *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.