Documentation ¶
Index ¶
- type Args
- type BigQuery
- type BigQueryAttributes
- func (bq BigQueryAttributes) BigQuerySource() terra.ListValue[BigQueryBigQuerySourceAttributes]
- func (bq BigQueryAttributes) EntityIdColumns() terra.ListValue[terra.StringValue]
- func (bq BigQueryAttributes) InternalRef() (terra.Reference, error)
- func (bq BigQueryAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (bq BigQueryAttributes) InternalWithRef(ref terra.Reference) BigQueryAttributes
- type BigQueryBigQuerySource
- type BigQueryBigQuerySourceAttributes
- func (bqs BigQueryBigQuerySourceAttributes) InputUri() terra.StringValue
- func (bqs BigQueryBigQuerySourceAttributes) InternalRef() (terra.Reference, error)
- func (bqs BigQueryBigQuerySourceAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (bqs BigQueryBigQuerySourceAttributes) InternalWithRef(ref terra.Reference) BigQueryBigQuerySourceAttributes
- type BigQueryBigQuerySourceState
- type BigQueryState
- type Resource
- func (gvafg *Resource) Attributes() googleVertexAiFeatureGroupAttributes
- func (gvafg *Resource) Configuration() interface{}
- func (gvafg *Resource) DependOn() terra.Reference
- func (gvafg *Resource) Dependencies() terra.Dependencies
- func (gvafg *Resource) ImportState(state io.Reader) error
- func (gvafg *Resource) LifecycleManagement() *terra.Lifecycle
- func (gvafg *Resource) LocalName() string
- func (gvafg *Resource) State() (*googleVertexAiFeatureGroupState, bool)
- func (gvafg *Resource) StateMust() *googleVertexAiFeatureGroupState
- func (gvafg *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 Args ¶
type Args struct { // Description: string, optional Description terra.StringValue `hcl:"description,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Labels: map of string, optional Labels terra.MapValue[terra.StringValue] `hcl:"labels,attr"` // Name: string, optional Name terra.StringValue `hcl:"name,attr"` // Project: string, optional Project terra.StringValue `hcl:"project,attr"` // Region: string, optional Region terra.StringValue `hcl:"region,attr"` // BigQuery: optional BigQuery *BigQuery `hcl:"big_query,block"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_vertex_ai_feature_group.
type BigQuery ¶
type BigQuery struct { // EntityIdColumns: list of string, optional EntityIdColumns terra.ListValue[terra.StringValue] `hcl:"entity_id_columns,attr"` // BigQueryBigQuerySource: required BigQuerySource *BigQueryBigQuerySource `hcl:"big_query_source,block" validate:"required"` }
type BigQueryAttributes ¶
type BigQueryAttributes struct {
// contains filtered or unexported fields
}
func (BigQueryAttributes) BigQuerySource ¶
func (bq BigQueryAttributes) BigQuerySource() terra.ListValue[BigQueryBigQuerySourceAttributes]
func (BigQueryAttributes) EntityIdColumns ¶
func (bq BigQueryAttributes) EntityIdColumns() terra.ListValue[terra.StringValue]
func (BigQueryAttributes) InternalRef ¶
func (bq BigQueryAttributes) InternalRef() (terra.Reference, error)
func (BigQueryAttributes) InternalTokens ¶
func (bq BigQueryAttributes) InternalTokens() (hclwrite.Tokens, error)
func (BigQueryAttributes) InternalWithRef ¶
func (bq BigQueryAttributes) InternalWithRef(ref terra.Reference) BigQueryAttributes
type BigQueryBigQuerySource ¶
type BigQueryBigQuerySource struct { // InputUri: string, required InputUri terra.StringValue `hcl:"input_uri,attr" validate:"required"` }
type BigQueryBigQuerySourceAttributes ¶
type BigQueryBigQuerySourceAttributes struct {
// contains filtered or unexported fields
}
func (BigQueryBigQuerySourceAttributes) InputUri ¶
func (bqs BigQueryBigQuerySourceAttributes) InputUri() terra.StringValue
func (BigQueryBigQuerySourceAttributes) InternalRef ¶
func (bqs BigQueryBigQuerySourceAttributes) InternalRef() (terra.Reference, error)
func (BigQueryBigQuerySourceAttributes) InternalTokens ¶
func (bqs BigQueryBigQuerySourceAttributes) InternalTokens() (hclwrite.Tokens, error)
func (BigQueryBigQuerySourceAttributes) InternalWithRef ¶
func (bqs BigQueryBigQuerySourceAttributes) InternalWithRef(ref terra.Reference) BigQueryBigQuerySourceAttributes
type BigQueryBigQuerySourceState ¶
type BigQueryBigQuerySourceState struct {
InputUri string `json:"input_uri"`
}
type BigQueryState ¶
type BigQueryState struct { EntityIdColumns []string `json:"entity_id_columns"` BigQuerySource []BigQueryBigQuerySourceState `json:"big_query_source"` }
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_vertex_ai_feature_group.
func (*Resource) Attributes ¶
func (gvafg *Resource) Attributes() googleVertexAiFeatureGroupAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (gvafg *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (gvafg *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.