Documentation ¶
Index ¶
- type AccessRestrictions
- type AccessRestrictionsAllowedServices
- type AccessRestrictionsAllowedServicesAttributes
- func (as AccessRestrictionsAllowedServicesAttributes) Domain() terra.StringValue
- func (as AccessRestrictionsAllowedServicesAttributes) InternalRef() (terra.Reference, error)
- func (as AccessRestrictionsAllowedServicesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (as AccessRestrictionsAllowedServicesAttributes) InternalWithRef(ref terra.Reference) AccessRestrictionsAllowedServicesAttributes
- type AccessRestrictionsAllowedServicesState
- type AccessRestrictionsAttributes
- func (ar AccessRestrictionsAttributes) AllowedServices() terra.ListValue[AccessRestrictionsAllowedServicesAttributes]
- func (ar AccessRestrictionsAttributes) DisableProgrammaticSignin() terra.BoolValue
- func (ar AccessRestrictionsAttributes) InternalRef() (terra.Reference, error)
- func (ar AccessRestrictionsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ar AccessRestrictionsAttributes) InternalWithRef(ref terra.Reference) AccessRestrictionsAttributes
- type AccessRestrictionsState
- type Args
- type Resource
- func (giwp *Resource) Attributes() googleIamWorkforcePoolAttributes
- func (giwp *Resource) Configuration() interface{}
- func (giwp *Resource) DependOn() terra.Reference
- func (giwp *Resource) Dependencies() terra.Dependencies
- func (giwp *Resource) ImportState(state io.Reader) error
- func (giwp *Resource) LifecycleManagement() *terra.Lifecycle
- func (giwp *Resource) LocalName() string
- func (giwp *Resource) State() (*googleIamWorkforcePoolState, bool)
- func (giwp *Resource) StateMust() *googleIamWorkforcePoolState
- func (giwp *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 AccessRestrictions ¶
type AccessRestrictions struct { // DisableProgrammaticSignin: bool, optional DisableProgrammaticSignin terra.BoolValue `hcl:"disable_programmatic_signin,attr"` // AccessRestrictionsAllowedServices: min=0 AllowedServices []AccessRestrictionsAllowedServices `hcl:"allowed_services,block" validate:"min=0"` }
type AccessRestrictionsAllowedServices ¶
type AccessRestrictionsAllowedServices struct { // Domain: string, optional Domain terra.StringValue `hcl:"domain,attr"` }
type AccessRestrictionsAllowedServicesAttributes ¶
type AccessRestrictionsAllowedServicesAttributes struct {
// contains filtered or unexported fields
}
func (AccessRestrictionsAllowedServicesAttributes) Domain ¶
func (as AccessRestrictionsAllowedServicesAttributes) Domain() terra.StringValue
func (AccessRestrictionsAllowedServicesAttributes) InternalRef ¶
func (as AccessRestrictionsAllowedServicesAttributes) InternalRef() (terra.Reference, error)
func (AccessRestrictionsAllowedServicesAttributes) InternalTokens ¶
func (as AccessRestrictionsAllowedServicesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AccessRestrictionsAllowedServicesAttributes) InternalWithRef ¶
func (as AccessRestrictionsAllowedServicesAttributes) InternalWithRef(ref terra.Reference) AccessRestrictionsAllowedServicesAttributes
type AccessRestrictionsAllowedServicesState ¶
type AccessRestrictionsAllowedServicesState struct {
Domain string `json:"domain"`
}
type AccessRestrictionsAttributes ¶
type AccessRestrictionsAttributes struct {
// contains filtered or unexported fields
}
func (AccessRestrictionsAttributes) AllowedServices ¶
func (ar AccessRestrictionsAttributes) AllowedServices() terra.ListValue[AccessRestrictionsAllowedServicesAttributes]
func (AccessRestrictionsAttributes) DisableProgrammaticSignin ¶
func (ar AccessRestrictionsAttributes) DisableProgrammaticSignin() terra.BoolValue
func (AccessRestrictionsAttributes) InternalRef ¶
func (ar AccessRestrictionsAttributes) InternalRef() (terra.Reference, error)
func (AccessRestrictionsAttributes) InternalTokens ¶
func (ar AccessRestrictionsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AccessRestrictionsAttributes) InternalWithRef ¶
func (ar AccessRestrictionsAttributes) InternalWithRef(ref terra.Reference) AccessRestrictionsAttributes
type AccessRestrictionsState ¶
type AccessRestrictionsState struct { DisableProgrammaticSignin bool `json:"disable_programmatic_signin"` AllowedServices []AccessRestrictionsAllowedServicesState `json:"allowed_services"` }
type Args ¶
type Args struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Disabled: bool, optional Disabled terra.BoolValue `hcl:"disabled,attr"` // DisplayName: string, optional DisplayName terra.StringValue `hcl:"display_name,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` // Parent: string, required Parent terra.StringValue `hcl:"parent,attr" validate:"required"` // SessionDuration: string, optional SessionDuration terra.StringValue `hcl:"session_duration,attr"` // WorkforcePoolId: string, required WorkforcePoolId terra.StringValue `hcl:"workforce_pool_id,attr" validate:"required"` // AccessRestrictions: optional AccessRestrictions *AccessRestrictions `hcl:"access_restrictions,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_iam_workforce_pool.
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_iam_workforce_pool.
func (*Resource) Attributes ¶
func (giwp *Resource) Attributes() googleIamWorkforcePoolAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (giwp *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (giwp *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.