Documentation ¶
Index ¶
- type FindMatchesParameters
- type FindMatchesParametersAttributes
- func (fmp FindMatchesParametersAttributes) AccuracyCostTradeOff() terra.NumberValue
- func (fmp FindMatchesParametersAttributes) EnforceProvidedLabels() terra.BoolValue
- func (fmp FindMatchesParametersAttributes) InternalRef() (terra.Reference, error)
- func (fmp FindMatchesParametersAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (fmp FindMatchesParametersAttributes) InternalWithRef(ref terra.Reference) FindMatchesParametersAttributes
- func (fmp FindMatchesParametersAttributes) PrecisionRecallTradeOff() terra.NumberValue
- func (fmp FindMatchesParametersAttributes) PrimaryKeyColumnName() terra.StringValue
- type FindMatchesParametersState
- type InputRecordTables
- type InputRecordTablesAttributes
- func (irt InputRecordTablesAttributes) CatalogId() terra.StringValue
- func (irt InputRecordTablesAttributes) ConnectionName() terra.StringValue
- func (irt InputRecordTablesAttributes) DatabaseName() terra.StringValue
- func (irt InputRecordTablesAttributes) InternalRef() (terra.Reference, error)
- func (irt InputRecordTablesAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (irt InputRecordTablesAttributes) InternalWithRef(ref terra.Reference) InputRecordTablesAttributes
- func (irt InputRecordTablesAttributes) TableName() terra.StringValue
- type InputRecordTablesState
- type Parameters
- type ParametersAttributes
- func (p ParametersAttributes) FindMatchesParameters() terra.ListValue[FindMatchesParametersAttributes]
- 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) TransformType() terra.StringValue
- type ParametersState
- type Schema
- type SchemaAttributes
- func (s SchemaAttributes) DataType() terra.StringValue
- func (s SchemaAttributes) InternalRef() (terra.Reference, error)
- func (s SchemaAttributes) InternalTokens() (hclwrite.Tokens, error)
- func (s SchemaAttributes) InternalWithRef(ref terra.Reference) SchemaAttributes
- func (s SchemaAttributes) Name() terra.StringValue
- type SchemaState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type FindMatchesParameters ¶
type FindMatchesParameters struct { // AccuracyCostTradeOff: number, optional AccuracyCostTradeOff terra.NumberValue `hcl:"accuracy_cost_trade_off,attr"` // EnforceProvidedLabels: bool, optional EnforceProvidedLabels terra.BoolValue `hcl:"enforce_provided_labels,attr"` // PrecisionRecallTradeOff: number, optional PrecisionRecallTradeOff terra.NumberValue `hcl:"precision_recall_trade_off,attr"` // PrimaryKeyColumnName: string, optional PrimaryKeyColumnName terra.StringValue `hcl:"primary_key_column_name,attr"` }
type FindMatchesParametersAttributes ¶
type FindMatchesParametersAttributes struct {
// contains filtered or unexported fields
}
func (FindMatchesParametersAttributes) AccuracyCostTradeOff ¶
func (fmp FindMatchesParametersAttributes) AccuracyCostTradeOff() terra.NumberValue
func (FindMatchesParametersAttributes) EnforceProvidedLabels ¶
func (fmp FindMatchesParametersAttributes) EnforceProvidedLabels() terra.BoolValue
func (FindMatchesParametersAttributes) InternalRef ¶
func (fmp FindMatchesParametersAttributes) InternalRef() (terra.Reference, error)
func (FindMatchesParametersAttributes) InternalTokens ¶
func (fmp FindMatchesParametersAttributes) InternalTokens() (hclwrite.Tokens, error)
func (FindMatchesParametersAttributes) InternalWithRef ¶
func (fmp FindMatchesParametersAttributes) InternalWithRef(ref terra.Reference) FindMatchesParametersAttributes
func (FindMatchesParametersAttributes) PrecisionRecallTradeOff ¶
func (fmp FindMatchesParametersAttributes) PrecisionRecallTradeOff() terra.NumberValue
func (FindMatchesParametersAttributes) PrimaryKeyColumnName ¶
func (fmp FindMatchesParametersAttributes) PrimaryKeyColumnName() terra.StringValue
type InputRecordTables ¶
type InputRecordTables struct { // CatalogId: string, optional CatalogId terra.StringValue `hcl:"catalog_id,attr"` // ConnectionName: string, optional ConnectionName terra.StringValue `hcl:"connection_name,attr"` // DatabaseName: string, required DatabaseName terra.StringValue `hcl:"database_name,attr" validate:"required"` // TableName: string, required TableName terra.StringValue `hcl:"table_name,attr" validate:"required"` }
type InputRecordTablesAttributes ¶
type InputRecordTablesAttributes struct {
// contains filtered or unexported fields
}
func (InputRecordTablesAttributes) CatalogId ¶
func (irt InputRecordTablesAttributes) CatalogId() terra.StringValue
func (InputRecordTablesAttributes) ConnectionName ¶
func (irt InputRecordTablesAttributes) ConnectionName() terra.StringValue
func (InputRecordTablesAttributes) DatabaseName ¶
func (irt InputRecordTablesAttributes) DatabaseName() terra.StringValue
func (InputRecordTablesAttributes) InternalRef ¶
func (irt InputRecordTablesAttributes) InternalRef() (terra.Reference, error)
func (InputRecordTablesAttributes) InternalTokens ¶
func (irt InputRecordTablesAttributes) InternalTokens() (hclwrite.Tokens, error)
func (InputRecordTablesAttributes) InternalWithRef ¶
func (irt InputRecordTablesAttributes) InternalWithRef(ref terra.Reference) InputRecordTablesAttributes
func (InputRecordTablesAttributes) TableName ¶
func (irt InputRecordTablesAttributes) TableName() terra.StringValue
type InputRecordTablesState ¶
type Parameters ¶
type Parameters struct { // TransformType: string, required TransformType terra.StringValue `hcl:"transform_type,attr" validate:"required"` // FindMatchesParameters: required FindMatchesParameters *FindMatchesParameters `hcl:"find_matches_parameters,block" validate:"required"` }
type ParametersAttributes ¶
type ParametersAttributes struct {
// contains filtered or unexported fields
}
func (ParametersAttributes) FindMatchesParameters ¶
func (p ParametersAttributes) FindMatchesParameters() terra.ListValue[FindMatchesParametersAttributes]
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) TransformType ¶
func (p ParametersAttributes) TransformType() terra.StringValue
type ParametersState ¶
type ParametersState struct { TransformType string `json:"transform_type"` FindMatchesParameters []FindMatchesParametersState `json:"find_matches_parameters"` }
type SchemaAttributes ¶
type SchemaAttributes struct {
// contains filtered or unexported fields
}
func (SchemaAttributes) DataType ¶
func (s SchemaAttributes) DataType() terra.StringValue
func (SchemaAttributes) InternalRef ¶
func (s SchemaAttributes) InternalRef() (terra.Reference, error)
func (SchemaAttributes) InternalTokens ¶
func (s SchemaAttributes) InternalTokens() (hclwrite.Tokens, error)
func (SchemaAttributes) InternalWithRef ¶
func (s SchemaAttributes) InternalWithRef(ref terra.Reference) SchemaAttributes
func (SchemaAttributes) Name ¶
func (s SchemaAttributes) Name() terra.StringValue
type SchemaState ¶
Click to show internal directories.
Click to hide internal directories.