Documentation ¶
Index ¶
- type AdvancedEventSelector
- type AdvancedEventSelectorAttributes
- func (aes AdvancedEventSelectorAttributes) FieldSelector() terra.SetValue[FieldSelectorAttributes]
- func (aes AdvancedEventSelectorAttributes) InternalRef() (terra.Reference, error)
- func (aes AdvancedEventSelectorAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (aes AdvancedEventSelectorAttributes) InternalWithRef(ref terra.Reference) AdvancedEventSelectorAttributes
- func (aes AdvancedEventSelectorAttributes) Name() terra.StringValue
- type AdvancedEventSelectorState
- type FieldSelector
- type FieldSelectorAttributes
- func (fs FieldSelectorAttributes) EndsWith() terra.ListValue[terra.StringValue]
- func (fs FieldSelectorAttributes) Equals() terra.ListValue[terra.StringValue]
- func (fs FieldSelectorAttributes) Field() terra.StringValue
- func (fs FieldSelectorAttributes) InternalRef() (terra.Reference, error)
- func (fs FieldSelectorAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (fs FieldSelectorAttributes) InternalWithRef(ref terra.Reference) FieldSelectorAttributes
- func (fs FieldSelectorAttributes) NotEndsWith() terra.ListValue[terra.StringValue]
- func (fs FieldSelectorAttributes) NotEquals() terra.ListValue[terra.StringValue]
- func (fs FieldSelectorAttributes) NotStartsWith() terra.ListValue[terra.StringValue]
- func (fs FieldSelectorAttributes) StartsWith() terra.ListValue[terra.StringValue]
- type FieldSelectorState
- 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 AdvancedEventSelector ¶
type AdvancedEventSelector struct { // Name: string, optional Name terra.StringValue `hcl:"name,attr"` // FieldSelector: min=0 FieldSelector []FieldSelector `hcl:"field_selector,block" validate:"min=0"` }
type AdvancedEventSelectorAttributes ¶
type AdvancedEventSelectorAttributes struct {
// contains filtered or unexported fields
}
func (AdvancedEventSelectorAttributes) FieldSelector ¶
func (aes AdvancedEventSelectorAttributes) FieldSelector() terra.SetValue[FieldSelectorAttributes]
func (AdvancedEventSelectorAttributes) InternalRef ¶
func (aes AdvancedEventSelectorAttributes) InternalRef() (terra.Reference, error)
func (AdvancedEventSelectorAttributes) InternalTokens ¶
func (aes AdvancedEventSelectorAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AdvancedEventSelectorAttributes) InternalWithRef ¶
func (aes AdvancedEventSelectorAttributes) InternalWithRef(ref terra.Reference) AdvancedEventSelectorAttributes
func (AdvancedEventSelectorAttributes) Name ¶
func (aes AdvancedEventSelectorAttributes) Name() terra.StringValue
type AdvancedEventSelectorState ¶
type AdvancedEventSelectorState struct { Name string `json:"name"` FieldSelector []FieldSelectorState `json:"field_selector"` }
type FieldSelector ¶
type FieldSelector struct { // EndsWith: list of string, optional EndsWith terra.ListValue[terra.StringValue] `hcl:"ends_with,attr"` // Equals: list of string, optional Equals terra.ListValue[terra.StringValue] `hcl:"equals,attr"` // Field: string, optional Field terra.StringValue `hcl:"field,attr"` // NotEndsWith: list of string, optional NotEndsWith terra.ListValue[terra.StringValue] `hcl:"not_ends_with,attr"` // NotEquals: list of string, optional NotEquals terra.ListValue[terra.StringValue] `hcl:"not_equals,attr"` // NotStartsWith: list of string, optional NotStartsWith terra.ListValue[terra.StringValue] `hcl:"not_starts_with,attr"` // StartsWith: list of string, optional StartsWith terra.ListValue[terra.StringValue] `hcl:"starts_with,attr"` }
type FieldSelectorAttributes ¶
type FieldSelectorAttributes struct {
// contains filtered or unexported fields
}
func (FieldSelectorAttributes) EndsWith ¶
func (fs FieldSelectorAttributes) EndsWith() terra.ListValue[terra.StringValue]
func (FieldSelectorAttributes) Equals ¶
func (fs FieldSelectorAttributes) Equals() terra.ListValue[terra.StringValue]
func (FieldSelectorAttributes) Field ¶
func (fs FieldSelectorAttributes) Field() terra.StringValue
func (FieldSelectorAttributes) InternalRef ¶
func (fs FieldSelectorAttributes) InternalRef() (terra.Reference, error)
func (FieldSelectorAttributes) InternalTokens ¶
func (fs FieldSelectorAttributes) InternalTokens() (hclwrite.Tokens, error)
func (FieldSelectorAttributes) InternalWithRef ¶
func (fs FieldSelectorAttributes) InternalWithRef(ref terra.Reference) FieldSelectorAttributes
func (FieldSelectorAttributes) NotEndsWith ¶
func (fs FieldSelectorAttributes) NotEndsWith() terra.ListValue[terra.StringValue]
func (FieldSelectorAttributes) NotEquals ¶
func (fs FieldSelectorAttributes) NotEquals() terra.ListValue[terra.StringValue]
func (FieldSelectorAttributes) NotStartsWith ¶
func (fs FieldSelectorAttributes) NotStartsWith() terra.ListValue[terra.StringValue]
func (FieldSelectorAttributes) StartsWith ¶
func (fs FieldSelectorAttributes) StartsWith() terra.ListValue[terra.StringValue]
type FieldSelectorState ¶
type FieldSelectorState struct { EndsWith []string `json:"ends_with"` Equals []string `json:"equals"` Field string `json:"field"` NotEndsWith []string `json:"not_ends_with"` NotEquals []string `json:"not_equals"` NotStartsWith []string `json:"not_starts_with"` StartsWith []string `json:"starts_with"` }
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.