Documentation ¶
Index ¶
- type Configuration
- type ConfigurationAttributes
- func (c ConfigurationAttributes) InternalRef() (terra.Reference, error)
- func (c ConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (c ConfigurationAttributes) InternalWithRef(ref terra.Reference) ConfigurationAttributes
- func (c ConfigurationAttributes) Parameters() terra.SetValue[ParametersAttributes]
- func (c ConfigurationAttributes) Type() terra.StringValue
- type ConfigurationState
- type Parameters
- type ParametersAttributes
- func (p ParametersAttributes) InternalRef() (terra.Reference, error)
- func (p ParametersAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (p ParametersAttributes) InternalWithRef(ref terra.Reference) ParametersAttributes
- func (p ParametersAttributes) Name() terra.StringValue
- func (p ParametersAttributes) Values() terra.ListValue[terra.StringValue]
- type ParametersState
- type ResourceQuery
- type ResourceQueryAttributes
- func (rq ResourceQueryAttributes) InternalRef() (terra.Reference, error)
- func (rq ResourceQueryAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (rq ResourceQueryAttributes) InternalWithRef(ref terra.Reference) ResourceQueryAttributes
- func (rq ResourceQueryAttributes) Query() terra.StringValue
- func (rq ResourceQueryAttributes) Type() terra.StringValue
- type ResourceQueryState
- type Timeouts
- type TimeoutsAttributes
- func (t TimeoutsAttributes) Create() 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 Configuration ¶
type Configuration struct { // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` // Parameters: min=0 Parameters []Parameters `hcl:"parameters,block" validate:"min=0"` }
type ConfigurationAttributes ¶
type ConfigurationAttributes struct {
// contains filtered or unexported fields
}
func (ConfigurationAttributes) InternalRef ¶
func (c ConfigurationAttributes) InternalRef() (terra.Reference, error)
func (ConfigurationAttributes) InternalTokens ¶
func (c ConfigurationAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ConfigurationAttributes) InternalWithRef ¶
func (c ConfigurationAttributes) InternalWithRef(ref terra.Reference) ConfigurationAttributes
func (ConfigurationAttributes) Parameters ¶
func (c ConfigurationAttributes) Parameters() terra.SetValue[ParametersAttributes]
func (ConfigurationAttributes) Type ¶
func (c ConfigurationAttributes) Type() terra.StringValue
type ConfigurationState ¶
type ConfigurationState struct { Type string `json:"type"` Parameters []ParametersState `json:"parameters"` }
type Parameters ¶
type Parameters struct { // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Values: list of string, required Values terra.ListValue[terra.StringValue] `hcl:"values,attr" validate:"required"` }
type ParametersAttributes ¶
type ParametersAttributes struct {
// contains filtered or unexported fields
}
func (ParametersAttributes) InternalRef ¶
func (p ParametersAttributes) InternalRef() (terra.Reference, error)
func (ParametersAttributes) InternalTokens ¶
func (p ParametersAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ParametersAttributes) InternalWithRef ¶
func (p ParametersAttributes) InternalWithRef(ref terra.Reference) ParametersAttributes
func (ParametersAttributes) Name ¶
func (p ParametersAttributes) Name() terra.StringValue
func (ParametersAttributes) Values ¶
func (p ParametersAttributes) Values() terra.ListValue[terra.StringValue]
type ParametersState ¶
type ResourceQuery ¶
type ResourceQuery struct { // Query: string, required Query terra.StringValue `hcl:"query,attr" validate:"required"` // Type: string, optional Type terra.StringValue `hcl:"type,attr"` }
type ResourceQueryAttributes ¶
type ResourceQueryAttributes struct {
// contains filtered or unexported fields
}
func (ResourceQueryAttributes) InternalRef ¶
func (rq ResourceQueryAttributes) InternalRef() (terra.Reference, error)
func (ResourceQueryAttributes) InternalTokens ¶
func (rq ResourceQueryAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ResourceQueryAttributes) InternalWithRef ¶
func (rq ResourceQueryAttributes) InternalWithRef(ref terra.Reference) ResourceQueryAttributes
func (ResourceQueryAttributes) Query ¶
func (rq ResourceQueryAttributes) Query() terra.StringValue
func (ResourceQueryAttributes) Type ¶
func (rq ResourceQueryAttributes) Type() terra.StringValue
type ResourceQueryState ¶
type Timeouts ¶
type Timeouts struct { // Create: string, optional Create terra.StringValue `hcl:"create,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) 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.