Documentation ¶
Index ¶
- type Args
- type AssetStatusAttributes
- func (as AssetStatusAttributes) ActiveAssets() terra.NumberValue
- func (as AssetStatusAttributes) InternalRef() (terra.Reference, error)
- func (as AssetStatusAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (as AssetStatusAttributes) InternalWithRef(ref terra.Reference) AssetStatusAttributes
- func (as AssetStatusAttributes) SecurityPolicyApplyingAssets() terra.NumberValue
- func (as AssetStatusAttributes) UpdateTime() terra.StringValue
- type AssetStatusState
- type DiscoverySpec
- type DiscoverySpecAttributes
- func (ds DiscoverySpecAttributes) CsvOptions() terra.ListValue[DiscoverySpecCsvOptionsAttributes]
- func (ds DiscoverySpecAttributes) Enabled() terra.BoolValue
- func (ds DiscoverySpecAttributes) ExcludePatterns() terra.ListValue[terra.StringValue]
- func (ds DiscoverySpecAttributes) IncludePatterns() terra.ListValue[terra.StringValue]
- func (ds DiscoverySpecAttributes) InternalRef() (terra.Reference, error)
- func (ds DiscoverySpecAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (ds DiscoverySpecAttributes) InternalWithRef(ref terra.Reference) DiscoverySpecAttributes
- func (ds DiscoverySpecAttributes) JsonOptions() terra.ListValue[DiscoverySpecJsonOptionsAttributes]
- func (ds DiscoverySpecAttributes) Schedule() terra.StringValue
- type DiscoverySpecCsvOptions
- type DiscoverySpecCsvOptionsAttributes
- func (co DiscoverySpecCsvOptionsAttributes) Delimiter() terra.StringValue
- func (co DiscoverySpecCsvOptionsAttributes) DisableTypeInference() terra.BoolValue
- func (co DiscoverySpecCsvOptionsAttributes) Encoding() terra.StringValue
- func (co DiscoverySpecCsvOptionsAttributes) HeaderRows() terra.NumberValue
- func (co DiscoverySpecCsvOptionsAttributes) InternalRef() (terra.Reference, error)
- func (co DiscoverySpecCsvOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (co DiscoverySpecCsvOptionsAttributes) InternalWithRef(ref terra.Reference) DiscoverySpecCsvOptionsAttributes
- type DiscoverySpecCsvOptionsState
- type DiscoverySpecJsonOptions
- type DiscoverySpecJsonOptionsAttributes
- func (jo DiscoverySpecJsonOptionsAttributes) DisableTypeInference() terra.BoolValue
- func (jo DiscoverySpecJsonOptionsAttributes) Encoding() terra.StringValue
- func (jo DiscoverySpecJsonOptionsAttributes) InternalRef() (terra.Reference, error)
- func (jo DiscoverySpecJsonOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (jo DiscoverySpecJsonOptionsAttributes) InternalWithRef(ref terra.Reference) DiscoverySpecJsonOptionsAttributes
- type DiscoverySpecJsonOptionsState
- type DiscoverySpecState
- type Resource
- func (gdz *Resource) Attributes() googleDataplexZoneAttributes
- func (gdz *Resource) Configuration() interface{}
- func (gdz *Resource) DependOn() terra.Reference
- func (gdz *Resource) Dependencies() terra.Dependencies
- func (gdz *Resource) ImportState(state io.Reader) error
- func (gdz *Resource) LifecycleManagement() *terra.Lifecycle
- func (gdz *Resource) LocalName() string
- func (gdz *Resource) State() (*googleDataplexZoneState, bool)
- func (gdz *Resource) StateMust() *googleDataplexZoneState
- func (gdz *Resource) Type() string
- type ResourceSpec
- type ResourceSpecAttributes
- func (rs ResourceSpecAttributes) InternalRef() (terra.Reference, error)
- func (rs ResourceSpecAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (rs ResourceSpecAttributes) InternalWithRef(ref terra.Reference) ResourceSpecAttributes
- func (rs ResourceSpecAttributes) LocationType() terra.StringValue
- type ResourceSpecState
- 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"` // DisplayName: string, optional DisplayName terra.StringValue `hcl:"display_name,attr"` // Id: string, optional Id terra.StringValue `hcl:"id,attr"` // Labels: map of string, optional Labels terra.MapValue[terra.StringValue] `hcl:"labels,attr"` // Lake: string, required Lake terra.StringValue `hcl:"lake,attr" validate:"required"` // Location: string, required Location terra.StringValue `hcl:"location,attr" validate:"required"` // Name: string, required Name terra.StringValue `hcl:"name,attr" validate:"required"` // Project: string, optional Project terra.StringValue `hcl:"project,attr"` // Type: string, required Type terra.StringValue `hcl:"type,attr" validate:"required"` // DiscoverySpec: required DiscoverySpec *DiscoverySpec `hcl:"discovery_spec,block" validate:"required"` // ResourceSpec: required ResourceSpec *ResourceSpec `hcl:"resource_spec,block" validate:"required"` // Timeouts: optional Timeouts *Timeouts `hcl:"timeouts,block"` }
Args contains the configurations for google_dataplex_zone.
type AssetStatusAttributes ¶
type AssetStatusAttributes struct {
// contains filtered or unexported fields
}
func (AssetStatusAttributes) ActiveAssets ¶
func (as AssetStatusAttributes) ActiveAssets() terra.NumberValue
func (AssetStatusAttributes) InternalRef ¶
func (as AssetStatusAttributes) InternalRef() (terra.Reference, error)
func (AssetStatusAttributes) InternalTokens ¶
func (as AssetStatusAttributes) InternalTokens() (hclwrite.Tokens, error)
func (AssetStatusAttributes) InternalWithRef ¶
func (as AssetStatusAttributes) InternalWithRef(ref terra.Reference) AssetStatusAttributes
func (AssetStatusAttributes) SecurityPolicyApplyingAssets ¶
func (as AssetStatusAttributes) SecurityPolicyApplyingAssets() terra.NumberValue
func (AssetStatusAttributes) UpdateTime ¶
func (as AssetStatusAttributes) UpdateTime() terra.StringValue
type AssetStatusState ¶
type DiscoverySpec ¶
type DiscoverySpec struct { // Enabled: bool, required Enabled terra.BoolValue `hcl:"enabled,attr" validate:"required"` // ExcludePatterns: list of string, optional ExcludePatterns terra.ListValue[terra.StringValue] `hcl:"exclude_patterns,attr"` // IncludePatterns: list of string, optional IncludePatterns terra.ListValue[terra.StringValue] `hcl:"include_patterns,attr"` // Schedule: string, optional Schedule terra.StringValue `hcl:"schedule,attr"` // DiscoverySpecCsvOptions: optional CsvOptions *DiscoverySpecCsvOptions `hcl:"csv_options,block"` // DiscoverySpecJsonOptions: optional JsonOptions *DiscoverySpecJsonOptions `hcl:"json_options,block"` }
type DiscoverySpecAttributes ¶
type DiscoverySpecAttributes struct {
// contains filtered or unexported fields
}
func (DiscoverySpecAttributes) CsvOptions ¶
func (ds DiscoverySpecAttributes) CsvOptions() terra.ListValue[DiscoverySpecCsvOptionsAttributes]
func (DiscoverySpecAttributes) Enabled ¶
func (ds DiscoverySpecAttributes) Enabled() terra.BoolValue
func (DiscoverySpecAttributes) ExcludePatterns ¶
func (ds DiscoverySpecAttributes) ExcludePatterns() terra.ListValue[terra.StringValue]
func (DiscoverySpecAttributes) IncludePatterns ¶
func (ds DiscoverySpecAttributes) IncludePatterns() terra.ListValue[terra.StringValue]
func (DiscoverySpecAttributes) InternalRef ¶
func (ds DiscoverySpecAttributes) InternalRef() (terra.Reference, error)
func (DiscoverySpecAttributes) InternalTokens ¶
func (ds DiscoverySpecAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DiscoverySpecAttributes) InternalWithRef ¶
func (ds DiscoverySpecAttributes) InternalWithRef(ref terra.Reference) DiscoverySpecAttributes
func (DiscoverySpecAttributes) JsonOptions ¶
func (ds DiscoverySpecAttributes) JsonOptions() terra.ListValue[DiscoverySpecJsonOptionsAttributes]
func (DiscoverySpecAttributes) Schedule ¶
func (ds DiscoverySpecAttributes) Schedule() terra.StringValue
type DiscoverySpecCsvOptions ¶
type DiscoverySpecCsvOptions struct { // Delimiter: string, optional Delimiter terra.StringValue `hcl:"delimiter,attr"` // DisableTypeInference: bool, optional DisableTypeInference terra.BoolValue `hcl:"disable_type_inference,attr"` // Encoding: string, optional Encoding terra.StringValue `hcl:"encoding,attr"` // HeaderRows: number, optional HeaderRows terra.NumberValue `hcl:"header_rows,attr"` }
type DiscoverySpecCsvOptionsAttributes ¶
type DiscoverySpecCsvOptionsAttributes struct {
// contains filtered or unexported fields
}
func (DiscoverySpecCsvOptionsAttributes) Delimiter ¶
func (co DiscoverySpecCsvOptionsAttributes) Delimiter() terra.StringValue
func (DiscoverySpecCsvOptionsAttributes) DisableTypeInference ¶
func (co DiscoverySpecCsvOptionsAttributes) DisableTypeInference() terra.BoolValue
func (DiscoverySpecCsvOptionsAttributes) Encoding ¶
func (co DiscoverySpecCsvOptionsAttributes) Encoding() terra.StringValue
func (DiscoverySpecCsvOptionsAttributes) HeaderRows ¶
func (co DiscoverySpecCsvOptionsAttributes) HeaderRows() terra.NumberValue
func (DiscoverySpecCsvOptionsAttributes) InternalRef ¶
func (co DiscoverySpecCsvOptionsAttributes) InternalRef() (terra.Reference, error)
func (DiscoverySpecCsvOptionsAttributes) InternalTokens ¶
func (co DiscoverySpecCsvOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DiscoverySpecCsvOptionsAttributes) InternalWithRef ¶
func (co DiscoverySpecCsvOptionsAttributes) InternalWithRef(ref terra.Reference) DiscoverySpecCsvOptionsAttributes
type DiscoverySpecJsonOptions ¶
type DiscoverySpecJsonOptions struct { // DisableTypeInference: bool, optional DisableTypeInference terra.BoolValue `hcl:"disable_type_inference,attr"` // Encoding: string, optional Encoding terra.StringValue `hcl:"encoding,attr"` }
type DiscoverySpecJsonOptionsAttributes ¶
type DiscoverySpecJsonOptionsAttributes struct {
// contains filtered or unexported fields
}
func (DiscoverySpecJsonOptionsAttributes) DisableTypeInference ¶
func (jo DiscoverySpecJsonOptionsAttributes) DisableTypeInference() terra.BoolValue
func (DiscoverySpecJsonOptionsAttributes) Encoding ¶
func (jo DiscoverySpecJsonOptionsAttributes) Encoding() terra.StringValue
func (DiscoverySpecJsonOptionsAttributes) InternalRef ¶
func (jo DiscoverySpecJsonOptionsAttributes) InternalRef() (terra.Reference, error)
func (DiscoverySpecJsonOptionsAttributes) InternalTokens ¶
func (jo DiscoverySpecJsonOptionsAttributes) InternalTokens() (hclwrite.Tokens, error)
func (DiscoverySpecJsonOptionsAttributes) InternalWithRef ¶
func (jo DiscoverySpecJsonOptionsAttributes) InternalWithRef(ref terra.Reference) DiscoverySpecJsonOptionsAttributes
type DiscoverySpecState ¶
type DiscoverySpecState struct { Enabled bool `json:"enabled"` ExcludePatterns []string `json:"exclude_patterns"` IncludePatterns []string `json:"include_patterns"` Schedule string `json:"schedule"` CsvOptions []DiscoverySpecCsvOptionsState `json:"csv_options"` JsonOptions []DiscoverySpecJsonOptionsState `json:"json_options"` }
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_dataplex_zone.
func (*Resource) Attributes ¶
func (gdz *Resource) Attributes() googleDataplexZoneAttributes
Attributes returns the attributes for Resource.
func (*Resource) Configuration ¶
func (gdz *Resource) Configuration() interface{}
Configuration returns the configuration (args) for Resource.
func (*Resource) Dependencies ¶
func (gdz *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 ResourceSpec ¶
type ResourceSpec struct { // LocationType: string, required LocationType terra.StringValue `hcl:"location_type,attr" validate:"required"` }
type ResourceSpecAttributes ¶
type ResourceSpecAttributes struct {
// contains filtered or unexported fields
}
func (ResourceSpecAttributes) InternalRef ¶
func (rs ResourceSpecAttributes) InternalRef() (terra.Reference, error)
func (ResourceSpecAttributes) InternalTokens ¶
func (rs ResourceSpecAttributes) InternalTokens() (hclwrite.Tokens, error)
func (ResourceSpecAttributes) InternalWithRef ¶
func (rs ResourceSpecAttributes) InternalWithRef(ref terra.Reference) ResourceSpecAttributes
func (ResourceSpecAttributes) LocationType ¶
func (rs ResourceSpecAttributes) LocationType() terra.StringValue
type ResourceSpecState ¶
type ResourceSpecState struct {
LocationType string `json:"location_type"`
}
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.