Documentation ¶
Index ¶
- type ContentTypeProfileConfig
- type ContentTypeProfileConfigAttributes
- func (ctpc ContentTypeProfileConfigAttributes) ContentTypeProfiles() terra.ListValue[ContentTypeProfilesAttributes]
- func (ctpc ContentTypeProfileConfigAttributes) ForwardWhenContentTypeIsUnknown() terra.BoolValue
- func (ctpc ContentTypeProfileConfigAttributes) InternalRef() (terra.Reference, error)
- func (ctpc ContentTypeProfileConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ctpc ContentTypeProfileConfigAttributes) InternalWithRef(ref terra.Reference) ContentTypeProfileConfigAttributes
- type ContentTypeProfileConfigState
- type ContentTypeProfiles
- type ContentTypeProfilesAttributes
- func (ctp ContentTypeProfilesAttributes) InternalRef() (terra.Reference, error)
- func (ctp ContentTypeProfilesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ctp ContentTypeProfilesAttributes) InternalWithRef(ref terra.Reference) ContentTypeProfilesAttributes
- func (ctp ContentTypeProfilesAttributes) Items() terra.SetValue[ContentTypeProfilesItemsAttributes]
- type ContentTypeProfilesItems
- type ContentTypeProfilesItemsAttributes
- func (i ContentTypeProfilesItemsAttributes) ContentType() terra.StringValue
- func (i ContentTypeProfilesItemsAttributes) Format() terra.StringValue
- func (i ContentTypeProfilesItemsAttributes) InternalRef() (terra.Reference, error)
- func (i ContentTypeProfilesItemsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (i ContentTypeProfilesItemsAttributes) InternalWithRef(ref terra.Reference) ContentTypeProfilesItemsAttributes
- func (i ContentTypeProfilesItemsAttributes) ProfileId() terra.StringValue
- type ContentTypeProfilesItemsState
- type ContentTypeProfilesState
- type QueryArgProfileConfig
- type QueryArgProfileConfigAttributes
- func (qapc QueryArgProfileConfigAttributes) ForwardWhenQueryArgProfileIsUnknown() terra.BoolValue
- func (qapc QueryArgProfileConfigAttributes) InternalRef() (terra.Reference, error)
- func (qapc QueryArgProfileConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (qapc QueryArgProfileConfigAttributes) InternalWithRef(ref terra.Reference) QueryArgProfileConfigAttributes
- func (qapc QueryArgProfileConfigAttributes) QueryArgProfiles() terra.ListValue[QueryArgProfilesAttributes]
- type QueryArgProfileConfigState
- type QueryArgProfiles
- type QueryArgProfilesAttributes
- func (qap QueryArgProfilesAttributes) InternalRef() (terra.Reference, error)
- func (qap QueryArgProfilesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (qap QueryArgProfilesAttributes) InternalWithRef(ref terra.Reference) QueryArgProfilesAttributes
- func (qap QueryArgProfilesAttributes) Items() terra.SetValue[QueryArgProfilesItemsAttributes]
- type QueryArgProfilesItems
- type QueryArgProfilesItemsAttributes
- func (i QueryArgProfilesItemsAttributes) InternalRef() (terra.Reference, error)
- func (i QueryArgProfilesItemsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (i QueryArgProfilesItemsAttributes) InternalWithRef(ref terra.Reference) QueryArgProfilesItemsAttributes
- func (i QueryArgProfilesItemsAttributes) ProfileId() terra.StringValue
- func (i QueryArgProfilesItemsAttributes) QueryArg() terra.StringValue
- type QueryArgProfilesItemsState
- type QueryArgProfilesState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContentTypeProfileConfig ¶
type ContentTypeProfileConfig struct { // ForwardWhenContentTypeIsUnknown: bool, required ForwardWhenContentTypeIsUnknown terra.BoolValue `hcl:"forward_when_content_type_is_unknown,attr" validate:"required"` // ContentTypeProfiles: required ContentTypeProfiles *ContentTypeProfiles `hcl:"content_type_profiles,block" validate:"required"` }
type ContentTypeProfileConfigAttributes ¶
type ContentTypeProfileConfigAttributes struct {
// contains filtered or unexported fields
}
func (ContentTypeProfileConfigAttributes) ContentTypeProfiles ¶
func (ctpc ContentTypeProfileConfigAttributes) ContentTypeProfiles() terra.ListValue[ContentTypeProfilesAttributes]
func (ContentTypeProfileConfigAttributes) ForwardWhenContentTypeIsUnknown ¶
func (ctpc ContentTypeProfileConfigAttributes) ForwardWhenContentTypeIsUnknown() terra.BoolValue
func (ContentTypeProfileConfigAttributes) InternalRef ¶
func (ctpc ContentTypeProfileConfigAttributes) InternalRef() (terra.Reference, error)
func (ContentTypeProfileConfigAttributes) InternalTokens ¶
func (ctpc ContentTypeProfileConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ContentTypeProfileConfigAttributes) InternalWithRef ¶
func (ctpc ContentTypeProfileConfigAttributes) InternalWithRef(ref terra.Reference) ContentTypeProfileConfigAttributes
type ContentTypeProfileConfigState ¶
type ContentTypeProfileConfigState struct { ForwardWhenContentTypeIsUnknown bool `json:"forward_when_content_type_is_unknown"` ContentTypeProfiles []ContentTypeProfilesState `json:"content_type_profiles"` }
type ContentTypeProfiles ¶
type ContentTypeProfiles struct { // ContentTypeProfilesItems: min=1 Items []ContentTypeProfilesItems `hcl:"items,block" validate:"min=1"` }
type ContentTypeProfilesAttributes ¶
type ContentTypeProfilesAttributes struct {
// contains filtered or unexported fields
}
func (ContentTypeProfilesAttributes) InternalRef ¶
func (ctp ContentTypeProfilesAttributes) InternalRef() (terra.Reference, error)
func (ContentTypeProfilesAttributes) InternalTokens ¶
func (ctp ContentTypeProfilesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ContentTypeProfilesAttributes) InternalWithRef ¶
func (ctp ContentTypeProfilesAttributes) InternalWithRef(ref terra.Reference) ContentTypeProfilesAttributes
func (ContentTypeProfilesAttributes) Items ¶
func (ctp ContentTypeProfilesAttributes) Items() terra.SetValue[ContentTypeProfilesItemsAttributes]
type ContentTypeProfilesItems ¶
type ContentTypeProfilesItems struct { // ContentType: string, required ContentType terra.StringValue `hcl:"content_type,attr" validate:"required"` // Format: string, required Format terra.StringValue `hcl:"format,attr" validate:"required"` // ProfileId: string, optional ProfileId terra.StringValue `hcl:"profile_id,attr"` }
type ContentTypeProfilesItemsAttributes ¶
type ContentTypeProfilesItemsAttributes struct {
// contains filtered or unexported fields
}
func (ContentTypeProfilesItemsAttributes) ContentType ¶
func (i ContentTypeProfilesItemsAttributes) ContentType() terra.StringValue
func (ContentTypeProfilesItemsAttributes) Format ¶
func (i ContentTypeProfilesItemsAttributes) Format() terra.StringValue
func (ContentTypeProfilesItemsAttributes) InternalRef ¶
func (i ContentTypeProfilesItemsAttributes) InternalRef() (terra.Reference, error)
func (ContentTypeProfilesItemsAttributes) InternalTokens ¶
func (i ContentTypeProfilesItemsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ContentTypeProfilesItemsAttributes) InternalWithRef ¶
func (i ContentTypeProfilesItemsAttributes) InternalWithRef(ref terra.Reference) ContentTypeProfilesItemsAttributes
func (ContentTypeProfilesItemsAttributes) ProfileId ¶
func (i ContentTypeProfilesItemsAttributes) ProfileId() terra.StringValue
type ContentTypeProfilesState ¶
type ContentTypeProfilesState struct {
Items []ContentTypeProfilesItemsState `json:"items"`
}
type QueryArgProfileConfig ¶
type QueryArgProfileConfig struct { // ForwardWhenQueryArgProfileIsUnknown: bool, required ForwardWhenQueryArgProfileIsUnknown terra.BoolValue `hcl:"forward_when_query_arg_profile_is_unknown,attr" validate:"required"` // QueryArgProfiles: optional QueryArgProfiles *QueryArgProfiles `hcl:"query_arg_profiles,block"` }
type QueryArgProfileConfigAttributes ¶
type QueryArgProfileConfigAttributes struct {
// contains filtered or unexported fields
}
func (QueryArgProfileConfigAttributes) ForwardWhenQueryArgProfileIsUnknown ¶
func (qapc QueryArgProfileConfigAttributes) ForwardWhenQueryArgProfileIsUnknown() terra.BoolValue
func (QueryArgProfileConfigAttributes) InternalRef ¶
func (qapc QueryArgProfileConfigAttributes) InternalRef() (terra.Reference, error)
func (QueryArgProfileConfigAttributes) InternalTokens ¶
func (qapc QueryArgProfileConfigAttributes) InternalTokens() (hclwrite.Tokens, error)
func (QueryArgProfileConfigAttributes) InternalWithRef ¶
func (qapc QueryArgProfileConfigAttributes) InternalWithRef(ref terra.Reference) QueryArgProfileConfigAttributes
func (QueryArgProfileConfigAttributes) QueryArgProfiles ¶
func (qapc QueryArgProfileConfigAttributes) QueryArgProfiles() terra.ListValue[QueryArgProfilesAttributes]
type QueryArgProfileConfigState ¶
type QueryArgProfileConfigState struct { ForwardWhenQueryArgProfileIsUnknown bool `json:"forward_when_query_arg_profile_is_unknown"` QueryArgProfiles []QueryArgProfilesState `json:"query_arg_profiles"` }
type QueryArgProfiles ¶
type QueryArgProfiles struct { // QueryArgProfilesItems: min=0 Items []QueryArgProfilesItems `hcl:"items,block" validate:"min=0"` }
type QueryArgProfilesAttributes ¶
type QueryArgProfilesAttributes struct {
// contains filtered or unexported fields
}
func (QueryArgProfilesAttributes) InternalRef ¶
func (qap QueryArgProfilesAttributes) InternalRef() (terra.Reference, error)
func (QueryArgProfilesAttributes) InternalTokens ¶
func (qap QueryArgProfilesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (QueryArgProfilesAttributes) InternalWithRef ¶
func (qap QueryArgProfilesAttributes) InternalWithRef(ref terra.Reference) QueryArgProfilesAttributes
func (QueryArgProfilesAttributes) Items ¶
func (qap QueryArgProfilesAttributes) Items() terra.SetValue[QueryArgProfilesItemsAttributes]
type QueryArgProfilesItems ¶
type QueryArgProfilesItems struct { // ProfileId: string, required ProfileId terra.StringValue `hcl:"profile_id,attr" validate:"required"` // QueryArg: string, required QueryArg terra.StringValue `hcl:"query_arg,attr" validate:"required"` }
type QueryArgProfilesItemsAttributes ¶
type QueryArgProfilesItemsAttributes struct {
// contains filtered or unexported fields
}
func (QueryArgProfilesItemsAttributes) InternalRef ¶
func (i QueryArgProfilesItemsAttributes) InternalRef() (terra.Reference, error)
func (QueryArgProfilesItemsAttributes) InternalTokens ¶
func (i QueryArgProfilesItemsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (QueryArgProfilesItemsAttributes) InternalWithRef ¶
func (i QueryArgProfilesItemsAttributes) InternalWithRef(ref terra.Reference) QueryArgProfilesItemsAttributes
func (QueryArgProfilesItemsAttributes) ProfileId ¶
func (i QueryArgProfilesItemsAttributes) ProfileId() terra.StringValue
func (QueryArgProfilesItemsAttributes) QueryArg ¶
func (i QueryArgProfilesItemsAttributes) QueryArg() terra.StringValue
type QueryArgProfilesState ¶
type QueryArgProfilesState struct {
Items []QueryArgProfilesItemsState `json:"items"`
}
Click to show internal directories.
Click to hide internal directories.