vectorsearch_tf

package
v1.65.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 5, 2025 License: Apache-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ColumnInfo

type ColumnInfo struct {
	// Name of the column.
	Name types.String `tfsdk:"name"`
}

func (ColumnInfo) ApplySchemaCustomizations added in v1.63.0

func (c ColumnInfo) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ColumnInfo) GetComplexFieldTypes added in v1.61.0

func (a ColumnInfo) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ColumnInfo. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ColumnInfo) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ColumnInfo) SyncEffectiveFieldsDuringCreateOrUpdate(plan ColumnInfo)

func (*ColumnInfo) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ColumnInfo) SyncEffectiveFieldsDuringRead(existingState ColumnInfo)

func (ColumnInfo) ToObjectValue added in v1.61.0

func (o ColumnInfo) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ColumnInfo only implements ToObjectValue() and Type().

func (ColumnInfo) Type added in v1.61.0

func (o ColumnInfo) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type ColumnInfo_SdkV2 added in v1.62.1

type ColumnInfo_SdkV2 struct {
	// Name of the column.
	Name types.String `tfsdk:"name"`
}

func (ColumnInfo_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c ColumnInfo_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ColumnInfo_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ColumnInfo_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ColumnInfo. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ColumnInfo_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ColumnInfo_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ColumnInfo_SdkV2)

func (*ColumnInfo_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ColumnInfo_SdkV2) SyncEffectiveFieldsDuringRead(existingState ColumnInfo_SdkV2)

func (ColumnInfo_SdkV2) ToObjectValue added in v1.62.1

func (o ColumnInfo_SdkV2) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ColumnInfo_SdkV2 only implements ToObjectValue() and Type().

func (ColumnInfo_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type CreateEndpoint

type CreateEndpoint struct {
	// Type of endpoint.
	EndpointType types.String `tfsdk:"endpoint_type"`
	// Name of endpoint
	Name types.String `tfsdk:"name"`
}

func (CreateEndpoint) ApplySchemaCustomizations added in v1.63.0

func (c CreateEndpoint) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (CreateEndpoint) GetComplexFieldTypes added in v1.61.0

func (a CreateEndpoint) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in CreateEndpoint. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*CreateEndpoint) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *CreateEndpoint) SyncEffectiveFieldsDuringCreateOrUpdate(plan CreateEndpoint)

func (*CreateEndpoint) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *CreateEndpoint) SyncEffectiveFieldsDuringRead(existingState CreateEndpoint)

func (CreateEndpoint) ToObjectValue added in v1.61.0

func (o CreateEndpoint) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, CreateEndpoint only implements ToObjectValue() and Type().

func (CreateEndpoint) Type added in v1.61.0

func (o CreateEndpoint) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type CreateEndpoint_SdkV2 added in v1.62.1

type CreateEndpoint_SdkV2 struct {
	// Type of endpoint.
	EndpointType types.String `tfsdk:"endpoint_type"`
	// Name of endpoint
	Name types.String `tfsdk:"name"`
}

func (CreateEndpoint_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c CreateEndpoint_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (CreateEndpoint_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a CreateEndpoint_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in CreateEndpoint. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*CreateEndpoint_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *CreateEndpoint_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan CreateEndpoint_SdkV2)

func (*CreateEndpoint_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *CreateEndpoint_SdkV2) SyncEffectiveFieldsDuringRead(existingState CreateEndpoint_SdkV2)

func (CreateEndpoint_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, CreateEndpoint_SdkV2 only implements ToObjectValue() and Type().

func (CreateEndpoint_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type CreateVectorIndexRequest

type CreateVectorIndexRequest struct {
	// Specification for Delta Sync Index. Required if `index_type` is
	// `DELTA_SYNC`.
	DeltaSyncIndexSpec types.Object `tfsdk:"delta_sync_index_spec"`
	// Specification for Direct Vector Access Index. Required if `index_type` is
	// `DIRECT_ACCESS`.
	DirectAccessIndexSpec types.Object `tfsdk:"direct_access_index_spec"`
	// Name of the endpoint to be used for serving the index
	EndpointName types.String `tfsdk:"endpoint_name"`
	// There are 2 types of Vector Search indexes:
	//
	// - `DELTA_SYNC`: An index that automatically syncs with a source Delta
	// Table, automatically and incrementally updating the index as the
	// underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index
	// that supports direct read and write of vectors and metadata through our
	// REST and SDK APIs. With this model, the user manages index updates.
	IndexType types.String `tfsdk:"index_type"`
	// Name of the index
	Name types.String `tfsdk:"name"`
	// Primary key of the index
	PrimaryKey types.String `tfsdk:"primary_key"`
}

func (CreateVectorIndexRequest) ApplySchemaCustomizations added in v1.63.0

func (c CreateVectorIndexRequest) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (CreateVectorIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a CreateVectorIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in CreateVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*CreateVectorIndexRequest) GetDeltaSyncIndexSpec added in v1.61.0

GetDeltaSyncIndexSpec returns the value of the DeltaSyncIndexSpec field in CreateVectorIndexRequest as a DeltaSyncVectorIndexSpecRequest value. If the field is unknown or null, the boolean return value is false.

func (*CreateVectorIndexRequest) GetDirectAccessIndexSpec added in v1.61.0

func (o *CreateVectorIndexRequest) GetDirectAccessIndexSpec(ctx context.Context) (DirectAccessVectorIndexSpec, bool)

GetDirectAccessIndexSpec returns the value of the DirectAccessIndexSpec field in CreateVectorIndexRequest as a DirectAccessVectorIndexSpec value. If the field is unknown or null, the boolean return value is false.

func (*CreateVectorIndexRequest) SetDeltaSyncIndexSpec added in v1.61.0

SetDeltaSyncIndexSpec sets the value of the DeltaSyncIndexSpec field in CreateVectorIndexRequest.

func (*CreateVectorIndexRequest) SetDirectAccessIndexSpec added in v1.61.0

func (o *CreateVectorIndexRequest) SetDirectAccessIndexSpec(ctx context.Context, v DirectAccessVectorIndexSpec)

SetDirectAccessIndexSpec sets the value of the DirectAccessIndexSpec field in CreateVectorIndexRequest.

func (*CreateVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *CreateVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan CreateVectorIndexRequest)

func (*CreateVectorIndexRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *CreateVectorIndexRequest) SyncEffectiveFieldsDuringRead(existingState CreateVectorIndexRequest)

func (CreateVectorIndexRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, CreateVectorIndexRequest only implements ToObjectValue() and Type().

func (CreateVectorIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type CreateVectorIndexRequest_SdkV2 added in v1.62.1

type CreateVectorIndexRequest_SdkV2 struct {
	// Specification for Delta Sync Index. Required if `index_type` is
	// `DELTA_SYNC`.
	DeltaSyncIndexSpec types.List `tfsdk:"delta_sync_index_spec"`
	// Specification for Direct Vector Access Index. Required if `index_type` is
	// `DIRECT_ACCESS`.
	DirectAccessIndexSpec types.List `tfsdk:"direct_access_index_spec"`
	// Name of the endpoint to be used for serving the index
	EndpointName types.String `tfsdk:"endpoint_name"`
	// There are 2 types of Vector Search indexes:
	//
	// - `DELTA_SYNC`: An index that automatically syncs with a source Delta
	// Table, automatically and incrementally updating the index as the
	// underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index
	// that supports direct read and write of vectors and metadata through our
	// REST and SDK APIs. With this model, the user manages index updates.
	IndexType types.String `tfsdk:"index_type"`
	// Name of the index
	Name types.String `tfsdk:"name"`
	// Primary key of the index
	PrimaryKey types.String `tfsdk:"primary_key"`
}

func (CreateVectorIndexRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (CreateVectorIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a CreateVectorIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in CreateVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*CreateVectorIndexRequest_SdkV2) GetDeltaSyncIndexSpec added in v1.62.1

GetDeltaSyncIndexSpec returns the value of the DeltaSyncIndexSpec field in CreateVectorIndexRequest_SdkV2 as a DeltaSyncVectorIndexSpecRequest_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*CreateVectorIndexRequest_SdkV2) GetDirectAccessIndexSpec added in v1.62.1

GetDirectAccessIndexSpec returns the value of the DirectAccessIndexSpec field in CreateVectorIndexRequest_SdkV2 as a DirectAccessVectorIndexSpec_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*CreateVectorIndexRequest_SdkV2) SetDeltaSyncIndexSpec added in v1.62.1

SetDeltaSyncIndexSpec sets the value of the DeltaSyncIndexSpec field in CreateVectorIndexRequest_SdkV2.

func (*CreateVectorIndexRequest_SdkV2) SetDirectAccessIndexSpec added in v1.62.1

SetDirectAccessIndexSpec sets the value of the DirectAccessIndexSpec field in CreateVectorIndexRequest_SdkV2.

func (*CreateVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *CreateVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan CreateVectorIndexRequest_SdkV2)

func (*CreateVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *CreateVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState CreateVectorIndexRequest_SdkV2)

func (CreateVectorIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, CreateVectorIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (CreateVectorIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type CreateVectorIndexResponse

type CreateVectorIndexResponse struct {
	VectorIndex types.Object `tfsdk:"vector_index"`
}

func (CreateVectorIndexResponse) ApplySchemaCustomizations added in v1.63.0

func (c CreateVectorIndexResponse) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (CreateVectorIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a CreateVectorIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in CreateVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*CreateVectorIndexResponse) GetVectorIndex added in v1.61.0

func (o *CreateVectorIndexResponse) GetVectorIndex(ctx context.Context) (VectorIndex, bool)

GetVectorIndex returns the value of the VectorIndex field in CreateVectorIndexResponse as a VectorIndex value. If the field is unknown or null, the boolean return value is false.

func (*CreateVectorIndexResponse) SetVectorIndex added in v1.61.0

func (o *CreateVectorIndexResponse) SetVectorIndex(ctx context.Context, v VectorIndex)

SetVectorIndex sets the value of the VectorIndex field in CreateVectorIndexResponse.

func (*CreateVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *CreateVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan CreateVectorIndexResponse)

func (*CreateVectorIndexResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *CreateVectorIndexResponse) SyncEffectiveFieldsDuringRead(existingState CreateVectorIndexResponse)

func (CreateVectorIndexResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, CreateVectorIndexResponse only implements ToObjectValue() and Type().

func (CreateVectorIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type CreateVectorIndexResponse_SdkV2 added in v1.62.1

type CreateVectorIndexResponse_SdkV2 struct {
	VectorIndex types.List `tfsdk:"vector_index"`
}

func (CreateVectorIndexResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (CreateVectorIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a CreateVectorIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in CreateVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*CreateVectorIndexResponse_SdkV2) GetVectorIndex added in v1.62.1

GetVectorIndex returns the value of the VectorIndex field in CreateVectorIndexResponse_SdkV2 as a VectorIndex_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*CreateVectorIndexResponse_SdkV2) SetVectorIndex added in v1.62.1

SetVectorIndex sets the value of the VectorIndex field in CreateVectorIndexResponse_SdkV2.

func (*CreateVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *CreateVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan CreateVectorIndexResponse_SdkV2)

func (*CreateVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *CreateVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState CreateVectorIndexResponse_SdkV2)

func (CreateVectorIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, CreateVectorIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (CreateVectorIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteDataResult

type DeleteDataResult struct {
	// List of primary keys for rows that failed to process.
	FailedPrimaryKeys types.List `tfsdk:"failed_primary_keys"`
	// Count of successfully processed rows.
	SuccessRowCount types.Int64 `tfsdk:"success_row_count"`
}

Result of the upsert or delete operation.

func (DeleteDataResult) ApplySchemaCustomizations added in v1.63.0

func (c DeleteDataResult) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (DeleteDataResult) GetComplexFieldTypes added in v1.61.0

func (a DeleteDataResult) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteDataResult. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeleteDataResult) GetFailedPrimaryKeys added in v1.61.0

func (o *DeleteDataResult) GetFailedPrimaryKeys(ctx context.Context) ([]types.String, bool)

GetFailedPrimaryKeys returns the value of the FailedPrimaryKeys field in DeleteDataResult as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*DeleteDataResult) SetFailedPrimaryKeys added in v1.61.0

func (o *DeleteDataResult) SetFailedPrimaryKeys(ctx context.Context, v []types.String)

SetFailedPrimaryKeys sets the value of the FailedPrimaryKeys field in DeleteDataResult.

func (*DeleteDataResult) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *DeleteDataResult) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeleteDataResult)

func (*DeleteDataResult) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *DeleteDataResult) SyncEffectiveFieldsDuringRead(existingState DeleteDataResult)

func (DeleteDataResult) ToObjectValue added in v1.61.0

func (o DeleteDataResult) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteDataResult only implements ToObjectValue() and Type().

func (DeleteDataResult) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteDataResult_SdkV2 added in v1.62.1

type DeleteDataResult_SdkV2 struct {
	// List of primary keys for rows that failed to process.
	FailedPrimaryKeys types.List `tfsdk:"failed_primary_keys"`
	// Count of successfully processed rows.
	SuccessRowCount types.Int64 `tfsdk:"success_row_count"`
}

Result of the upsert or delete operation.

func (DeleteDataResult_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c DeleteDataResult_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (DeleteDataResult_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteDataResult_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteDataResult. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeleteDataResult_SdkV2) GetFailedPrimaryKeys added in v1.62.1

func (o *DeleteDataResult_SdkV2) GetFailedPrimaryKeys(ctx context.Context) ([]types.String, bool)

GetFailedPrimaryKeys returns the value of the FailedPrimaryKeys field in DeleteDataResult_SdkV2 as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*DeleteDataResult_SdkV2) SetFailedPrimaryKeys added in v1.62.1

func (o *DeleteDataResult_SdkV2) SetFailedPrimaryKeys(ctx context.Context, v []types.String)

SetFailedPrimaryKeys sets the value of the FailedPrimaryKeys field in DeleteDataResult_SdkV2.

func (*DeleteDataResult_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *DeleteDataResult_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeleteDataResult_SdkV2)

func (*DeleteDataResult_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *DeleteDataResult_SdkV2) SyncEffectiveFieldsDuringRead(existingState DeleteDataResult_SdkV2)

func (DeleteDataResult_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteDataResult_SdkV2 only implements ToObjectValue() and Type().

func (DeleteDataResult_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteDataVectorIndexRequest

type DeleteDataVectorIndexRequest struct {
	// Name of the vector index where data is to be deleted. Must be a Direct
	// Vector Access Index.
	IndexName types.String `tfsdk:"-"`
	// List of primary keys for the data to be deleted.
	PrimaryKeys types.List `tfsdk:"primary_keys"`
}

Request payload for deleting data from a vector index.

func (DeleteDataVectorIndexRequest) ApplySchemaCustomizations added in v1.63.0

func (DeleteDataVectorIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a DeleteDataVectorIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteDataVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeleteDataVectorIndexRequest) GetPrimaryKeys added in v1.61.0

func (o *DeleteDataVectorIndexRequest) GetPrimaryKeys(ctx context.Context) ([]types.String, bool)

GetPrimaryKeys returns the value of the PrimaryKeys field in DeleteDataVectorIndexRequest as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*DeleteDataVectorIndexRequest) SetPrimaryKeys added in v1.61.0

func (o *DeleteDataVectorIndexRequest) SetPrimaryKeys(ctx context.Context, v []types.String)

SetPrimaryKeys sets the value of the PrimaryKeys field in DeleteDataVectorIndexRequest.

func (*DeleteDataVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *DeleteDataVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeleteDataVectorIndexRequest)

func (*DeleteDataVectorIndexRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *DeleteDataVectorIndexRequest) SyncEffectiveFieldsDuringRead(existingState DeleteDataVectorIndexRequest)

func (DeleteDataVectorIndexRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteDataVectorIndexRequest only implements ToObjectValue() and Type().

func (DeleteDataVectorIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteDataVectorIndexRequest_SdkV2 added in v1.62.1

type DeleteDataVectorIndexRequest_SdkV2 struct {
	// Name of the vector index where data is to be deleted. Must be a Direct
	// Vector Access Index.
	IndexName types.String `tfsdk:"-"`
	// List of primary keys for the data to be deleted.
	PrimaryKeys types.List `tfsdk:"primary_keys"`
}

Request payload for deleting data from a vector index.

func (DeleteDataVectorIndexRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (DeleteDataVectorIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteDataVectorIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteDataVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeleteDataVectorIndexRequest_SdkV2) GetPrimaryKeys added in v1.62.1

func (o *DeleteDataVectorIndexRequest_SdkV2) GetPrimaryKeys(ctx context.Context) ([]types.String, bool)

GetPrimaryKeys returns the value of the PrimaryKeys field in DeleteDataVectorIndexRequest_SdkV2 as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*DeleteDataVectorIndexRequest_SdkV2) SetPrimaryKeys added in v1.62.1

func (o *DeleteDataVectorIndexRequest_SdkV2) SetPrimaryKeys(ctx context.Context, v []types.String)

SetPrimaryKeys sets the value of the PrimaryKeys field in DeleteDataVectorIndexRequest_SdkV2.

func (*DeleteDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *DeleteDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeleteDataVectorIndexRequest_SdkV2)

func (*DeleteDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *DeleteDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState DeleteDataVectorIndexRequest_SdkV2)

func (DeleteDataVectorIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteDataVectorIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (DeleteDataVectorIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteDataVectorIndexResponse

type DeleteDataVectorIndexResponse struct {
	// Result of the upsert or delete operation.
	Result types.Object `tfsdk:"result"`
	// Status of the delete operation.
	Status types.String `tfsdk:"status"`
}

Response to a delete data vector index request.

func (DeleteDataVectorIndexResponse) ApplySchemaCustomizations added in v1.63.0

func (DeleteDataVectorIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a DeleteDataVectorIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteDataVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeleteDataVectorIndexResponse) GetResult added in v1.61.0

GetResult returns the value of the Result field in DeleteDataVectorIndexResponse as a DeleteDataResult value. If the field is unknown or null, the boolean return value is false.

func (*DeleteDataVectorIndexResponse) SetResult added in v1.61.0

SetResult sets the value of the Result field in DeleteDataVectorIndexResponse.

func (*DeleteDataVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *DeleteDataVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeleteDataVectorIndexResponse)

func (*DeleteDataVectorIndexResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *DeleteDataVectorIndexResponse) SyncEffectiveFieldsDuringRead(existingState DeleteDataVectorIndexResponse)

func (DeleteDataVectorIndexResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteDataVectorIndexResponse only implements ToObjectValue() and Type().

func (DeleteDataVectorIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteDataVectorIndexResponse_SdkV2 added in v1.62.1

type DeleteDataVectorIndexResponse_SdkV2 struct {
	// Result of the upsert or delete operation.
	Result types.List `tfsdk:"result"`
	// Status of the delete operation.
	Status types.String `tfsdk:"status"`
}

Response to a delete data vector index request.

func (DeleteDataVectorIndexResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (DeleteDataVectorIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteDataVectorIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteDataVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeleteDataVectorIndexResponse_SdkV2) GetResult added in v1.62.1

GetResult returns the value of the Result field in DeleteDataVectorIndexResponse_SdkV2 as a DeleteDataResult_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*DeleteDataVectorIndexResponse_SdkV2) SetResult added in v1.62.1

SetResult sets the value of the Result field in DeleteDataVectorIndexResponse_SdkV2.

func (*DeleteDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *DeleteDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeleteDataVectorIndexResponse_SdkV2)

func (*DeleteDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *DeleteDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState DeleteDataVectorIndexResponse_SdkV2)

func (DeleteDataVectorIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteDataVectorIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (DeleteDataVectorIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteEndpointRequest

type DeleteEndpointRequest struct {
	// Name of the endpoint
	EndpointName types.String `tfsdk:"-"`
}

Delete an endpoint

func (DeleteEndpointRequest) GetComplexFieldTypes added in v1.61.0

func (a DeleteEndpointRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteEndpointRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteEndpointRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteEndpointRequest only implements ToObjectValue() and Type().

func (DeleteEndpointRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteEndpointRequest_SdkV2 added in v1.62.1

type DeleteEndpointRequest_SdkV2 struct {
	// Name of the endpoint
	EndpointName types.String `tfsdk:"-"`
}

Delete an endpoint

func (DeleteEndpointRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteEndpointRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteEndpointRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteEndpointRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteEndpointRequest_SdkV2 only implements ToObjectValue() and Type().

func (DeleteEndpointRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteEndpointResponse

type DeleteEndpointResponse struct {
}

func (DeleteEndpointResponse) GetComplexFieldTypes added in v1.61.0

func (a DeleteEndpointResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteEndpointResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteEndpointResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteEndpointResponse only implements ToObjectValue() and Type().

func (DeleteEndpointResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteEndpointResponse_SdkV2 added in v1.62.1

type DeleteEndpointResponse_SdkV2 struct {
}

func (DeleteEndpointResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteEndpointResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteEndpointResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteEndpointResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteEndpointResponse_SdkV2 only implements ToObjectValue() and Type().

func (DeleteEndpointResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteIndexRequest

type DeleteIndexRequest struct {
	// Name of the index
	IndexName types.String `tfsdk:"-"`
}

Delete an index

func (DeleteIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a DeleteIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteIndexRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteIndexRequest only implements ToObjectValue() and Type().

func (DeleteIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteIndexRequest_SdkV2 added in v1.62.1

type DeleteIndexRequest_SdkV2 struct {
	// Name of the index
	IndexName types.String `tfsdk:"-"`
}

Delete an index

func (DeleteIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (DeleteIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeleteIndexResponse

type DeleteIndexResponse struct {
}

func (DeleteIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a DeleteIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteIndexResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteIndexResponse only implements ToObjectValue() and Type().

func (DeleteIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeleteIndexResponse_SdkV2 added in v1.62.1

type DeleteIndexResponse_SdkV2 struct {
}

func (DeleteIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeleteIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeleteIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (DeleteIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeleteIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (DeleteIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeltaSyncVectorIndexSpecRequest

type DeltaSyncVectorIndexSpecRequest struct {
	// [Optional] Select the columns to sync with the vector index. If you leave
	// this field blank, all columns from the source table are synced with the
	// index. The primary key column and embedding source column or embedding
	// vector column are always synced.
	ColumnsToSync types.List `tfsdk:"columns_to_sync"`
	// The columns that contain the embedding source.
	EmbeddingSourceColumns types.List `tfsdk:"embedding_source_columns"`
	// The columns that contain the embedding vectors. The format should be
	// array[double].
	EmbeddingVectorColumns types.List `tfsdk:"embedding_vector_columns"`
	// [Optional] Automatically sync the vector index contents and computed
	// embeddings to the specified Delta table. The only supported table name is
	// the index name with the suffix `_writeback_table`.
	EmbeddingWritebackTable types.String `tfsdk:"embedding_writeback_table"`
	// Pipeline execution mode.
	//
	// - `TRIGGERED`: If the pipeline uses the triggered execution mode, the
	// system stops processing after successfully refreshing the source table in
	// the pipeline once, ensuring the table is updated based on the data
	// available when the update started. - `CONTINUOUS`: If the pipeline uses
	// continuous execution, the pipeline processes new data as it arrives in
	// the source table to keep vector index fresh.
	PipelineType types.String `tfsdk:"pipeline_type"`
	// The name of the source table.
	SourceTable types.String `tfsdk:"source_table"`
}

func (DeltaSyncVectorIndexSpecRequest) ApplySchemaCustomizations added in v1.63.0

func (*DeltaSyncVectorIndexSpecRequest) GetColumnsToSync added in v1.61.0

func (o *DeltaSyncVectorIndexSpecRequest) GetColumnsToSync(ctx context.Context) ([]types.String, bool)

GetColumnsToSync returns the value of the ColumnsToSync field in DeltaSyncVectorIndexSpecRequest as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (DeltaSyncVectorIndexSpecRequest) GetComplexFieldTypes added in v1.61.0

func (a DeltaSyncVectorIndexSpecRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeltaSyncVectorIndexSpecRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeltaSyncVectorIndexSpecRequest) GetEmbeddingSourceColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecRequest) GetEmbeddingSourceColumns(ctx context.Context) ([]EmbeddingSourceColumn, bool)

GetEmbeddingSourceColumns returns the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecRequest as a slice of EmbeddingSourceColumn values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecRequest) GetEmbeddingVectorColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecRequest) GetEmbeddingVectorColumns(ctx context.Context) ([]EmbeddingVectorColumn, bool)

GetEmbeddingVectorColumns returns the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecRequest as a slice of EmbeddingVectorColumn values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecRequest) SetColumnsToSync added in v1.61.0

func (o *DeltaSyncVectorIndexSpecRequest) SetColumnsToSync(ctx context.Context, v []types.String)

SetColumnsToSync sets the value of the ColumnsToSync field in DeltaSyncVectorIndexSpecRequest.

func (*DeltaSyncVectorIndexSpecRequest) SetEmbeddingSourceColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecRequest) SetEmbeddingSourceColumns(ctx context.Context, v []EmbeddingSourceColumn)

SetEmbeddingSourceColumns sets the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecRequest.

func (*DeltaSyncVectorIndexSpecRequest) SetEmbeddingVectorColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecRequest) SetEmbeddingVectorColumns(ctx context.Context, v []EmbeddingVectorColumn)

SetEmbeddingVectorColumns sets the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecRequest.

func (*DeltaSyncVectorIndexSpecRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *DeltaSyncVectorIndexSpecRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeltaSyncVectorIndexSpecRequest)

func (*DeltaSyncVectorIndexSpecRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *DeltaSyncVectorIndexSpecRequest) SyncEffectiveFieldsDuringRead(existingState DeltaSyncVectorIndexSpecRequest)

func (DeltaSyncVectorIndexSpecRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeltaSyncVectorIndexSpecRequest only implements ToObjectValue() and Type().

func (DeltaSyncVectorIndexSpecRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeltaSyncVectorIndexSpecRequest_SdkV2 added in v1.62.1

type DeltaSyncVectorIndexSpecRequest_SdkV2 struct {
	// [Optional] Select the columns to sync with the vector index. If you leave
	// this field blank, all columns from the source table are synced with the
	// index. The primary key column and embedding source column or embedding
	// vector column are always synced.
	ColumnsToSync types.List `tfsdk:"columns_to_sync"`
	// The columns that contain the embedding source.
	EmbeddingSourceColumns types.List `tfsdk:"embedding_source_columns"`
	// The columns that contain the embedding vectors. The format should be
	// array[double].
	EmbeddingVectorColumns types.List `tfsdk:"embedding_vector_columns"`
	// [Optional] Automatically sync the vector index contents and computed
	// embeddings to the specified Delta table. The only supported table name is
	// the index name with the suffix `_writeback_table`.
	EmbeddingWritebackTable types.String `tfsdk:"embedding_writeback_table"`
	// Pipeline execution mode.
	//
	// - `TRIGGERED`: If the pipeline uses the triggered execution mode, the
	// system stops processing after successfully refreshing the source table in
	// the pipeline once, ensuring the table is updated based on the data
	// available when the update started. - `CONTINUOUS`: If the pipeline uses
	// continuous execution, the pipeline processes new data as it arrives in
	// the source table to keep vector index fresh.
	PipelineType types.String `tfsdk:"pipeline_type"`
	// The name of the source table.
	SourceTable types.String `tfsdk:"source_table"`
}

func (DeltaSyncVectorIndexSpecRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) GetColumnsToSync added in v1.62.1

func (o *DeltaSyncVectorIndexSpecRequest_SdkV2) GetColumnsToSync(ctx context.Context) ([]types.String, bool)

GetColumnsToSync returns the value of the ColumnsToSync field in DeltaSyncVectorIndexSpecRequest_SdkV2 as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (DeltaSyncVectorIndexSpecRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeltaSyncVectorIndexSpecRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeltaSyncVectorIndexSpecRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) GetEmbeddingSourceColumns added in v1.62.1

GetEmbeddingSourceColumns returns the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecRequest_SdkV2 as a slice of EmbeddingSourceColumn_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) GetEmbeddingVectorColumns added in v1.62.1

GetEmbeddingVectorColumns returns the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecRequest_SdkV2 as a slice of EmbeddingVectorColumn_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) SetColumnsToSync added in v1.62.1

func (o *DeltaSyncVectorIndexSpecRequest_SdkV2) SetColumnsToSync(ctx context.Context, v []types.String)

SetColumnsToSync sets the value of the ColumnsToSync field in DeltaSyncVectorIndexSpecRequest_SdkV2.

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) SetEmbeddingSourceColumns added in v1.62.1

SetEmbeddingSourceColumns sets the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecRequest_SdkV2.

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) SetEmbeddingVectorColumns added in v1.62.1

SetEmbeddingVectorColumns sets the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecRequest_SdkV2.

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *DeltaSyncVectorIndexSpecRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeltaSyncVectorIndexSpecRequest_SdkV2)

func (*DeltaSyncVectorIndexSpecRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *DeltaSyncVectorIndexSpecRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState DeltaSyncVectorIndexSpecRequest_SdkV2)

func (DeltaSyncVectorIndexSpecRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeltaSyncVectorIndexSpecRequest_SdkV2 only implements ToObjectValue() and Type().

func (DeltaSyncVectorIndexSpecRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DeltaSyncVectorIndexSpecResponse

type DeltaSyncVectorIndexSpecResponse struct {
	// The columns that contain the embedding source.
	EmbeddingSourceColumns types.List `tfsdk:"embedding_source_columns"`
	// The columns that contain the embedding vectors.
	EmbeddingVectorColumns types.List `tfsdk:"embedding_vector_columns"`
	// [Optional] Name of the Delta table to sync the vector index contents and
	// computed embeddings to.
	EmbeddingWritebackTable types.String `tfsdk:"embedding_writeback_table"`
	// The ID of the pipeline that is used to sync the index.
	PipelineId types.String `tfsdk:"pipeline_id"`
	// Pipeline execution mode.
	//
	// - `TRIGGERED`: If the pipeline uses the triggered execution mode, the
	// system stops processing after successfully refreshing the source table in
	// the pipeline once, ensuring the table is updated based on the data
	// available when the update started. - `CONTINUOUS`: If the pipeline uses
	// continuous execution, the pipeline processes new data as it arrives in
	// the source table to keep vector index fresh.
	PipelineType types.String `tfsdk:"pipeline_type"`
	// The name of the source table.
	SourceTable types.String `tfsdk:"source_table"`
}

func (DeltaSyncVectorIndexSpecResponse) ApplySchemaCustomizations added in v1.63.0

func (DeltaSyncVectorIndexSpecResponse) GetComplexFieldTypes added in v1.61.0

func (a DeltaSyncVectorIndexSpecResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeltaSyncVectorIndexSpecResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeltaSyncVectorIndexSpecResponse) GetEmbeddingSourceColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecResponse) GetEmbeddingSourceColumns(ctx context.Context) ([]EmbeddingSourceColumn, bool)

GetEmbeddingSourceColumns returns the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecResponse as a slice of EmbeddingSourceColumn values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecResponse) GetEmbeddingVectorColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecResponse) GetEmbeddingVectorColumns(ctx context.Context) ([]EmbeddingVectorColumn, bool)

GetEmbeddingVectorColumns returns the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecResponse as a slice of EmbeddingVectorColumn values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecResponse) SetEmbeddingSourceColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecResponse) SetEmbeddingSourceColumns(ctx context.Context, v []EmbeddingSourceColumn)

SetEmbeddingSourceColumns sets the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecResponse.

func (*DeltaSyncVectorIndexSpecResponse) SetEmbeddingVectorColumns added in v1.61.0

func (o *DeltaSyncVectorIndexSpecResponse) SetEmbeddingVectorColumns(ctx context.Context, v []EmbeddingVectorColumn)

SetEmbeddingVectorColumns sets the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecResponse.

func (*DeltaSyncVectorIndexSpecResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *DeltaSyncVectorIndexSpecResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeltaSyncVectorIndexSpecResponse)

func (*DeltaSyncVectorIndexSpecResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *DeltaSyncVectorIndexSpecResponse) SyncEffectiveFieldsDuringRead(existingState DeltaSyncVectorIndexSpecResponse)

func (DeltaSyncVectorIndexSpecResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeltaSyncVectorIndexSpecResponse only implements ToObjectValue() and Type().

func (DeltaSyncVectorIndexSpecResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DeltaSyncVectorIndexSpecResponse_SdkV2 added in v1.62.1

type DeltaSyncVectorIndexSpecResponse_SdkV2 struct {
	// The columns that contain the embedding source.
	EmbeddingSourceColumns types.List `tfsdk:"embedding_source_columns"`
	// The columns that contain the embedding vectors.
	EmbeddingVectorColumns types.List `tfsdk:"embedding_vector_columns"`
	// [Optional] Name of the Delta table to sync the vector index contents and
	// computed embeddings to.
	EmbeddingWritebackTable types.String `tfsdk:"embedding_writeback_table"`
	// The ID of the pipeline that is used to sync the index.
	PipelineId types.String `tfsdk:"pipeline_id"`
	// Pipeline execution mode.
	//
	// - `TRIGGERED`: If the pipeline uses the triggered execution mode, the
	// system stops processing after successfully refreshing the source table in
	// the pipeline once, ensuring the table is updated based on the data
	// available when the update started. - `CONTINUOUS`: If the pipeline uses
	// continuous execution, the pipeline processes new data as it arrives in
	// the source table to keep vector index fresh.
	PipelineType types.String `tfsdk:"pipeline_type"`
	// The name of the source table.
	SourceTable types.String `tfsdk:"source_table"`
}

func (DeltaSyncVectorIndexSpecResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (DeltaSyncVectorIndexSpecResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DeltaSyncVectorIndexSpecResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DeltaSyncVectorIndexSpecResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DeltaSyncVectorIndexSpecResponse_SdkV2) GetEmbeddingSourceColumns added in v1.62.1

GetEmbeddingSourceColumns returns the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecResponse_SdkV2 as a slice of EmbeddingSourceColumn_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecResponse_SdkV2) GetEmbeddingVectorColumns added in v1.62.1

GetEmbeddingVectorColumns returns the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecResponse_SdkV2 as a slice of EmbeddingVectorColumn_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*DeltaSyncVectorIndexSpecResponse_SdkV2) SetEmbeddingSourceColumns added in v1.62.1

SetEmbeddingSourceColumns sets the value of the EmbeddingSourceColumns field in DeltaSyncVectorIndexSpecResponse_SdkV2.

func (*DeltaSyncVectorIndexSpecResponse_SdkV2) SetEmbeddingVectorColumns added in v1.62.1

SetEmbeddingVectorColumns sets the value of the EmbeddingVectorColumns field in DeltaSyncVectorIndexSpecResponse_SdkV2.

func (*DeltaSyncVectorIndexSpecResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *DeltaSyncVectorIndexSpecResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan DeltaSyncVectorIndexSpecResponse_SdkV2)

func (*DeltaSyncVectorIndexSpecResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *DeltaSyncVectorIndexSpecResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState DeltaSyncVectorIndexSpecResponse_SdkV2)

func (DeltaSyncVectorIndexSpecResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DeltaSyncVectorIndexSpecResponse_SdkV2 only implements ToObjectValue() and Type().

func (DeltaSyncVectorIndexSpecResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type DirectAccessVectorIndexSpec

type DirectAccessVectorIndexSpec struct {
	// Contains the optional model endpoint to use during query time.
	EmbeddingSourceColumns types.List `tfsdk:"embedding_source_columns"`

	EmbeddingVectorColumns types.List `tfsdk:"embedding_vector_columns"`
	// The schema of the index in JSON format.
	//
	// Supported types are `integer`, `long`, `float`, `double`, `boolean`,
	// `string`, `date`, `timestamp`.
	//
	// Supported types for vector column: `array<float>`, `array<double>`,`.
	SchemaJson types.String `tfsdk:"schema_json"`
}

func (DirectAccessVectorIndexSpec) ApplySchemaCustomizations added in v1.63.0

func (c DirectAccessVectorIndexSpec) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (DirectAccessVectorIndexSpec) GetComplexFieldTypes added in v1.61.0

func (a DirectAccessVectorIndexSpec) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DirectAccessVectorIndexSpec. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DirectAccessVectorIndexSpec) GetEmbeddingSourceColumns added in v1.61.0

func (o *DirectAccessVectorIndexSpec) GetEmbeddingSourceColumns(ctx context.Context) ([]EmbeddingSourceColumn, bool)

GetEmbeddingSourceColumns returns the value of the EmbeddingSourceColumns field in DirectAccessVectorIndexSpec as a slice of EmbeddingSourceColumn values. If the field is unknown or null, the boolean return value is false.

func (*DirectAccessVectorIndexSpec) GetEmbeddingVectorColumns added in v1.61.0

func (o *DirectAccessVectorIndexSpec) GetEmbeddingVectorColumns(ctx context.Context) ([]EmbeddingVectorColumn, bool)

GetEmbeddingVectorColumns returns the value of the EmbeddingVectorColumns field in DirectAccessVectorIndexSpec as a slice of EmbeddingVectorColumn values. If the field is unknown or null, the boolean return value is false.

func (*DirectAccessVectorIndexSpec) SetEmbeddingSourceColumns added in v1.61.0

func (o *DirectAccessVectorIndexSpec) SetEmbeddingSourceColumns(ctx context.Context, v []EmbeddingSourceColumn)

SetEmbeddingSourceColumns sets the value of the EmbeddingSourceColumns field in DirectAccessVectorIndexSpec.

func (*DirectAccessVectorIndexSpec) SetEmbeddingVectorColumns added in v1.61.0

func (o *DirectAccessVectorIndexSpec) SetEmbeddingVectorColumns(ctx context.Context, v []EmbeddingVectorColumn)

SetEmbeddingVectorColumns sets the value of the EmbeddingVectorColumns field in DirectAccessVectorIndexSpec.

func (*DirectAccessVectorIndexSpec) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *DirectAccessVectorIndexSpec) SyncEffectiveFieldsDuringCreateOrUpdate(plan DirectAccessVectorIndexSpec)

func (*DirectAccessVectorIndexSpec) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *DirectAccessVectorIndexSpec) SyncEffectiveFieldsDuringRead(existingState DirectAccessVectorIndexSpec)

func (DirectAccessVectorIndexSpec) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DirectAccessVectorIndexSpec only implements ToObjectValue() and Type().

func (DirectAccessVectorIndexSpec) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type DirectAccessVectorIndexSpec_SdkV2 added in v1.62.1

type DirectAccessVectorIndexSpec_SdkV2 struct {
	// Contains the optional model endpoint to use during query time.
	EmbeddingSourceColumns types.List `tfsdk:"embedding_source_columns"`

	EmbeddingVectorColumns types.List `tfsdk:"embedding_vector_columns"`
	// The schema of the index in JSON format.
	//
	// Supported types are `integer`, `long`, `float`, `double`, `boolean`,
	// `string`, `date`, `timestamp`.
	//
	// Supported types for vector column: `array<float>`, `array<double>`,`.
	SchemaJson types.String `tfsdk:"schema_json"`
}

func (DirectAccessVectorIndexSpec_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (DirectAccessVectorIndexSpec_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a DirectAccessVectorIndexSpec_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in DirectAccessVectorIndexSpec. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*DirectAccessVectorIndexSpec_SdkV2) GetEmbeddingSourceColumns added in v1.62.1

func (o *DirectAccessVectorIndexSpec_SdkV2) GetEmbeddingSourceColumns(ctx context.Context) ([]EmbeddingSourceColumn_SdkV2, bool)

GetEmbeddingSourceColumns returns the value of the EmbeddingSourceColumns field in DirectAccessVectorIndexSpec_SdkV2 as a slice of EmbeddingSourceColumn_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*DirectAccessVectorIndexSpec_SdkV2) GetEmbeddingVectorColumns added in v1.62.1

func (o *DirectAccessVectorIndexSpec_SdkV2) GetEmbeddingVectorColumns(ctx context.Context) ([]EmbeddingVectorColumn_SdkV2, bool)

GetEmbeddingVectorColumns returns the value of the EmbeddingVectorColumns field in DirectAccessVectorIndexSpec_SdkV2 as a slice of EmbeddingVectorColumn_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*DirectAccessVectorIndexSpec_SdkV2) SetEmbeddingSourceColumns added in v1.62.1

func (o *DirectAccessVectorIndexSpec_SdkV2) SetEmbeddingSourceColumns(ctx context.Context, v []EmbeddingSourceColumn_SdkV2)

SetEmbeddingSourceColumns sets the value of the EmbeddingSourceColumns field in DirectAccessVectorIndexSpec_SdkV2.

func (*DirectAccessVectorIndexSpec_SdkV2) SetEmbeddingVectorColumns added in v1.62.1

func (o *DirectAccessVectorIndexSpec_SdkV2) SetEmbeddingVectorColumns(ctx context.Context, v []EmbeddingVectorColumn_SdkV2)

SetEmbeddingVectorColumns sets the value of the EmbeddingVectorColumns field in DirectAccessVectorIndexSpec_SdkV2.

func (*DirectAccessVectorIndexSpec_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *DirectAccessVectorIndexSpec_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan DirectAccessVectorIndexSpec_SdkV2)

func (*DirectAccessVectorIndexSpec_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *DirectAccessVectorIndexSpec_SdkV2) SyncEffectiveFieldsDuringRead(existingState DirectAccessVectorIndexSpec_SdkV2)

func (DirectAccessVectorIndexSpec_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, DirectAccessVectorIndexSpec_SdkV2 only implements ToObjectValue() and Type().

func (DirectAccessVectorIndexSpec_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type EmbeddingSourceColumn

type EmbeddingSourceColumn struct {
	// Name of the embedding model endpoint
	EmbeddingModelEndpointName types.String `tfsdk:"embedding_model_endpoint_name"`
	// Name of the column
	Name types.String `tfsdk:"name"`
}

func (EmbeddingSourceColumn) ApplySchemaCustomizations added in v1.63.0

func (c EmbeddingSourceColumn) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EmbeddingSourceColumn) GetComplexFieldTypes added in v1.61.0

func (a EmbeddingSourceColumn) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EmbeddingSourceColumn. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EmbeddingSourceColumn) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *EmbeddingSourceColumn) SyncEffectiveFieldsDuringCreateOrUpdate(plan EmbeddingSourceColumn)

func (*EmbeddingSourceColumn) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *EmbeddingSourceColumn) SyncEffectiveFieldsDuringRead(existingState EmbeddingSourceColumn)

func (EmbeddingSourceColumn) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EmbeddingSourceColumn only implements ToObjectValue() and Type().

func (EmbeddingSourceColumn) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type EmbeddingSourceColumn_SdkV2 added in v1.62.1

type EmbeddingSourceColumn_SdkV2 struct {
	// Name of the embedding model endpoint
	EmbeddingModelEndpointName types.String `tfsdk:"embedding_model_endpoint_name"`
	// Name of the column
	Name types.String `tfsdk:"name"`
}

func (EmbeddingSourceColumn_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c EmbeddingSourceColumn_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EmbeddingSourceColumn_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a EmbeddingSourceColumn_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EmbeddingSourceColumn. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EmbeddingSourceColumn_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *EmbeddingSourceColumn_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan EmbeddingSourceColumn_SdkV2)

func (*EmbeddingSourceColumn_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *EmbeddingSourceColumn_SdkV2) SyncEffectiveFieldsDuringRead(existingState EmbeddingSourceColumn_SdkV2)

func (EmbeddingSourceColumn_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EmbeddingSourceColumn_SdkV2 only implements ToObjectValue() and Type().

func (EmbeddingSourceColumn_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type EmbeddingVectorColumn

type EmbeddingVectorColumn struct {
	// Dimension of the embedding vector
	EmbeddingDimension types.Int64 `tfsdk:"embedding_dimension"`
	// Name of the column
	Name types.String `tfsdk:"name"`
}

func (EmbeddingVectorColumn) ApplySchemaCustomizations added in v1.63.0

func (c EmbeddingVectorColumn) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EmbeddingVectorColumn) GetComplexFieldTypes added in v1.61.0

func (a EmbeddingVectorColumn) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EmbeddingVectorColumn. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EmbeddingVectorColumn) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *EmbeddingVectorColumn) SyncEffectiveFieldsDuringCreateOrUpdate(plan EmbeddingVectorColumn)

func (*EmbeddingVectorColumn) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *EmbeddingVectorColumn) SyncEffectiveFieldsDuringRead(existingState EmbeddingVectorColumn)

func (EmbeddingVectorColumn) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EmbeddingVectorColumn only implements ToObjectValue() and Type().

func (EmbeddingVectorColumn) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type EmbeddingVectorColumn_SdkV2 added in v1.62.1

type EmbeddingVectorColumn_SdkV2 struct {
	// Dimension of the embedding vector
	EmbeddingDimension types.Int64 `tfsdk:"embedding_dimension"`
	// Name of the column
	Name types.String `tfsdk:"name"`
}

func (EmbeddingVectorColumn_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c EmbeddingVectorColumn_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EmbeddingVectorColumn_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a EmbeddingVectorColumn_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EmbeddingVectorColumn. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EmbeddingVectorColumn_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *EmbeddingVectorColumn_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan EmbeddingVectorColumn_SdkV2)

func (*EmbeddingVectorColumn_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *EmbeddingVectorColumn_SdkV2) SyncEffectiveFieldsDuringRead(existingState EmbeddingVectorColumn_SdkV2)

func (EmbeddingVectorColumn_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EmbeddingVectorColumn_SdkV2 only implements ToObjectValue() and Type().

func (EmbeddingVectorColumn_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type EndpointInfo

type EndpointInfo struct {
	// Timestamp of endpoint creation
	CreationTimestamp types.Int64 `tfsdk:"creation_timestamp"`
	// Creator of the endpoint
	Creator types.String `tfsdk:"creator"`
	// Current status of the endpoint
	EndpointStatus types.Object `tfsdk:"endpoint_status"`
	// Type of endpoint.
	EndpointType types.String `tfsdk:"endpoint_type"`
	// Unique identifier of the endpoint
	Id types.String `tfsdk:"id"`
	// Timestamp of last update to the endpoint
	LastUpdatedTimestamp types.Int64 `tfsdk:"last_updated_timestamp"`
	// User who last updated the endpoint
	LastUpdatedUser types.String `tfsdk:"last_updated_user"`
	// Name of endpoint
	Name types.String `tfsdk:"name"`
	// Number of indexes on the endpoint
	NumIndexes types.Int64 `tfsdk:"num_indexes"`
}

func (EndpointInfo) ApplySchemaCustomizations added in v1.63.0

func (c EndpointInfo) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EndpointInfo) GetComplexFieldTypes added in v1.61.0

func (a EndpointInfo) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EndpointInfo. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EndpointInfo) GetEndpointStatus added in v1.61.0

func (o *EndpointInfo) GetEndpointStatus(ctx context.Context) (EndpointStatus, bool)

GetEndpointStatus returns the value of the EndpointStatus field in EndpointInfo as a EndpointStatus value. If the field is unknown or null, the boolean return value is false.

func (*EndpointInfo) SetEndpointStatus added in v1.61.0

func (o *EndpointInfo) SetEndpointStatus(ctx context.Context, v EndpointStatus)

SetEndpointStatus sets the value of the EndpointStatus field in EndpointInfo.

func (*EndpointInfo) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *EndpointInfo) SyncEffectiveFieldsDuringCreateOrUpdate(plan EndpointInfo)

func (*EndpointInfo) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *EndpointInfo) SyncEffectiveFieldsDuringRead(existingState EndpointInfo)

func (EndpointInfo) ToObjectValue added in v1.61.0

func (o EndpointInfo) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EndpointInfo only implements ToObjectValue() and Type().

func (EndpointInfo) Type added in v1.61.0

func (o EndpointInfo) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type EndpointInfo_SdkV2 added in v1.62.1

type EndpointInfo_SdkV2 struct {
	// Timestamp of endpoint creation
	CreationTimestamp types.Int64 `tfsdk:"creation_timestamp"`
	// Creator of the endpoint
	Creator types.String `tfsdk:"creator"`
	// Current status of the endpoint
	EndpointStatus types.List `tfsdk:"endpoint_status"`
	// Type of endpoint.
	EndpointType types.String `tfsdk:"endpoint_type"`
	// Unique identifier of the endpoint
	Id types.String `tfsdk:"id"`
	// Timestamp of last update to the endpoint
	LastUpdatedTimestamp types.Int64 `tfsdk:"last_updated_timestamp"`
	// User who last updated the endpoint
	LastUpdatedUser types.String `tfsdk:"last_updated_user"`
	// Name of endpoint
	Name types.String `tfsdk:"name"`
	// Number of indexes on the endpoint
	NumIndexes types.Int64 `tfsdk:"num_indexes"`
}

func (EndpointInfo_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c EndpointInfo_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EndpointInfo_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a EndpointInfo_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EndpointInfo. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EndpointInfo_SdkV2) GetEndpointStatus added in v1.62.1

func (o *EndpointInfo_SdkV2) GetEndpointStatus(ctx context.Context) (EndpointStatus_SdkV2, bool)

GetEndpointStatus returns the value of the EndpointStatus field in EndpointInfo_SdkV2 as a EndpointStatus_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*EndpointInfo_SdkV2) SetEndpointStatus added in v1.62.1

func (o *EndpointInfo_SdkV2) SetEndpointStatus(ctx context.Context, v EndpointStatus_SdkV2)

SetEndpointStatus sets the value of the EndpointStatus field in EndpointInfo_SdkV2.

func (*EndpointInfo_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *EndpointInfo_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan EndpointInfo_SdkV2)

func (*EndpointInfo_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *EndpointInfo_SdkV2) SyncEffectiveFieldsDuringRead(existingState EndpointInfo_SdkV2)

func (EndpointInfo_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EndpointInfo_SdkV2 only implements ToObjectValue() and Type().

func (EndpointInfo_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type EndpointStatus

type EndpointStatus struct {
	// Additional status message
	Message types.String `tfsdk:"message"`
	// Current state of the endpoint
	State types.String `tfsdk:"state"`
}

Status information of an endpoint

func (EndpointStatus) ApplySchemaCustomizations added in v1.63.0

func (c EndpointStatus) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EndpointStatus) GetComplexFieldTypes added in v1.61.0

func (a EndpointStatus) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EndpointStatus. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EndpointStatus) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *EndpointStatus) SyncEffectiveFieldsDuringCreateOrUpdate(plan EndpointStatus)

func (*EndpointStatus) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *EndpointStatus) SyncEffectiveFieldsDuringRead(existingState EndpointStatus)

func (EndpointStatus) ToObjectValue added in v1.61.0

func (o EndpointStatus) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EndpointStatus only implements ToObjectValue() and Type().

func (EndpointStatus) Type added in v1.61.0

func (o EndpointStatus) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type EndpointStatus_SdkV2 added in v1.62.1

type EndpointStatus_SdkV2 struct {
	// Additional status message
	Message types.String `tfsdk:"message"`
	// Current state of the endpoint
	State types.String `tfsdk:"state"`
}

Status information of an endpoint

func (EndpointStatus_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c EndpointStatus_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (EndpointStatus_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a EndpointStatus_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in EndpointStatus. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*EndpointStatus_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *EndpointStatus_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan EndpointStatus_SdkV2)

func (*EndpointStatus_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *EndpointStatus_SdkV2) SyncEffectiveFieldsDuringRead(existingState EndpointStatus_SdkV2)

func (EndpointStatus_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, EndpointStatus_SdkV2 only implements ToObjectValue() and Type().

func (EndpointStatus_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type GetEndpointRequest

type GetEndpointRequest struct {
	// Name of the endpoint
	EndpointName types.String `tfsdk:"-"`
}

Get an endpoint

func (GetEndpointRequest) GetComplexFieldTypes added in v1.61.0

func (a GetEndpointRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in GetEndpointRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (GetEndpointRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, GetEndpointRequest only implements ToObjectValue() and Type().

func (GetEndpointRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type GetEndpointRequest_SdkV2 added in v1.62.1

type GetEndpointRequest_SdkV2 struct {
	// Name of the endpoint
	EndpointName types.String `tfsdk:"-"`
}

Get an endpoint

func (GetEndpointRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a GetEndpointRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in GetEndpointRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (GetEndpointRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, GetEndpointRequest_SdkV2 only implements ToObjectValue() and Type().

func (GetEndpointRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type GetIndexRequest

type GetIndexRequest struct {
	// Name of the index
	IndexName types.String `tfsdk:"-"`
}

Get an index

func (GetIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a GetIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in GetIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (GetIndexRequest) ToObjectValue added in v1.61.0

func (o GetIndexRequest) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, GetIndexRequest only implements ToObjectValue() and Type().

func (GetIndexRequest) Type added in v1.61.0

func (o GetIndexRequest) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type GetIndexRequest_SdkV2 added in v1.62.1

type GetIndexRequest_SdkV2 struct {
	// Name of the index
	IndexName types.String `tfsdk:"-"`
}

Get an index

func (GetIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a GetIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in GetIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (GetIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, GetIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (GetIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ListEndpointResponse

type ListEndpointResponse struct {
	// An array of Endpoint objects
	Endpoints types.List `tfsdk:"endpoints"`
	// A token that can be used to get the next page of results. If not present,
	// there are no more results to show.
	NextPageToken types.String `tfsdk:"next_page_token"`
}

func (ListEndpointResponse) ApplySchemaCustomizations added in v1.63.0

func (c ListEndpointResponse) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ListEndpointResponse) GetComplexFieldTypes added in v1.61.0

func (a ListEndpointResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListEndpointResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ListEndpointResponse) GetEndpoints added in v1.61.0

func (o *ListEndpointResponse) GetEndpoints(ctx context.Context) ([]EndpointInfo, bool)

GetEndpoints returns the value of the Endpoints field in ListEndpointResponse as a slice of EndpointInfo values. If the field is unknown or null, the boolean return value is false.

func (*ListEndpointResponse) SetEndpoints added in v1.61.0

func (o *ListEndpointResponse) SetEndpoints(ctx context.Context, v []EndpointInfo)

SetEndpoints sets the value of the Endpoints field in ListEndpointResponse.

func (*ListEndpointResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ListEndpointResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan ListEndpointResponse)

func (*ListEndpointResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ListEndpointResponse) SyncEffectiveFieldsDuringRead(existingState ListEndpointResponse)

func (ListEndpointResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListEndpointResponse only implements ToObjectValue() and Type().

func (ListEndpointResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type ListEndpointResponse_SdkV2 added in v1.62.1

type ListEndpointResponse_SdkV2 struct {
	// An array of Endpoint objects
	Endpoints types.List `tfsdk:"endpoints"`
	// A token that can be used to get the next page of results. If not present,
	// there are no more results to show.
	NextPageToken types.String `tfsdk:"next_page_token"`
}

func (ListEndpointResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c ListEndpointResponse_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ListEndpointResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ListEndpointResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListEndpointResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ListEndpointResponse_SdkV2) GetEndpoints added in v1.62.1

GetEndpoints returns the value of the Endpoints field in ListEndpointResponse_SdkV2 as a slice of EndpointInfo_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*ListEndpointResponse_SdkV2) SetEndpoints added in v1.62.1

SetEndpoints sets the value of the Endpoints field in ListEndpointResponse_SdkV2.

func (*ListEndpointResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ListEndpointResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ListEndpointResponse_SdkV2)

func (*ListEndpointResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ListEndpointResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState ListEndpointResponse_SdkV2)

func (ListEndpointResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListEndpointResponse_SdkV2 only implements ToObjectValue() and Type().

func (ListEndpointResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ListEndpointsRequest

type ListEndpointsRequest struct {
	// Token for pagination
	PageToken types.String `tfsdk:"-"`
}

List all endpoints

func (ListEndpointsRequest) GetComplexFieldTypes added in v1.61.0

func (a ListEndpointsRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListEndpointsRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (ListEndpointsRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListEndpointsRequest only implements ToObjectValue() and Type().

func (ListEndpointsRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type ListEndpointsRequest_SdkV2 added in v1.62.1

type ListEndpointsRequest_SdkV2 struct {
	// Token for pagination
	PageToken types.String `tfsdk:"-"`
}

List all endpoints

func (ListEndpointsRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ListEndpointsRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListEndpointsRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (ListEndpointsRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListEndpointsRequest_SdkV2 only implements ToObjectValue() and Type().

func (ListEndpointsRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ListIndexesRequest

type ListIndexesRequest struct {
	// Name of the endpoint
	EndpointName types.String `tfsdk:"-"`
	// Token for pagination
	PageToken types.String `tfsdk:"-"`
}

List indexes

func (ListIndexesRequest) GetComplexFieldTypes added in v1.61.0

func (a ListIndexesRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListIndexesRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (ListIndexesRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListIndexesRequest only implements ToObjectValue() and Type().

func (ListIndexesRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type ListIndexesRequest_SdkV2 added in v1.62.1

type ListIndexesRequest_SdkV2 struct {
	// Name of the endpoint
	EndpointName types.String `tfsdk:"-"`
	// Token for pagination
	PageToken types.String `tfsdk:"-"`
}

List indexes

func (ListIndexesRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ListIndexesRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListIndexesRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (ListIndexesRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListIndexesRequest_SdkV2 only implements ToObjectValue() and Type().

func (ListIndexesRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ListValue

type ListValue struct {
	Values types.List `tfsdk:"values"`
}

func (ListValue) ApplySchemaCustomizations added in v1.63.0

func (c ListValue) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ListValue) GetComplexFieldTypes added in v1.61.0

func (a ListValue) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListValue. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ListValue) GetValues added in v1.61.0

func (o *ListValue) GetValues(ctx context.Context) ([]Value, bool)

GetValues returns the value of the Values field in ListValue as a slice of Value values. If the field is unknown or null, the boolean return value is false.

func (*ListValue) SetValues added in v1.61.0

func (o *ListValue) SetValues(ctx context.Context, v []Value)

SetValues sets the value of the Values field in ListValue.

func (*ListValue) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ListValue) SyncEffectiveFieldsDuringCreateOrUpdate(plan ListValue)

func (*ListValue) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ListValue) SyncEffectiveFieldsDuringRead(existingState ListValue)

func (ListValue) ToObjectValue added in v1.61.0

func (o ListValue) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListValue only implements ToObjectValue() and Type().

func (ListValue) Type added in v1.61.0

func (o ListValue) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type ListValue_SdkV2 added in v1.62.1

type ListValue_SdkV2 struct {
	Values types.List `tfsdk:"values"`
}

func (ListValue_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c ListValue_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ListValue_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ListValue_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListValue. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ListValue_SdkV2) GetValues added in v1.62.1

func (o *ListValue_SdkV2) GetValues(ctx context.Context) ([]Value_SdkV2, bool)

GetValues returns the value of the Values field in ListValue_SdkV2 as a slice of Value_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*ListValue_SdkV2) SetValues added in v1.62.1

func (o *ListValue_SdkV2) SetValues(ctx context.Context, v []Value_SdkV2)

SetValues sets the value of the Values field in ListValue_SdkV2.

func (*ListValue_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ListValue_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ListValue_SdkV2)

func (*ListValue_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ListValue_SdkV2) SyncEffectiveFieldsDuringRead(existingState ListValue_SdkV2)

func (ListValue_SdkV2) ToObjectValue added in v1.62.1

func (o ListValue_SdkV2) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListValue_SdkV2 only implements ToObjectValue() and Type().

func (ListValue_SdkV2) Type added in v1.62.1

func (o ListValue_SdkV2) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type ListVectorIndexesResponse

type ListVectorIndexesResponse struct {
	// A token that can be used to get the next page of results. If not present,
	// there are no more results to show.
	NextPageToken types.String `tfsdk:"next_page_token"`

	VectorIndexes types.List `tfsdk:"vector_indexes"`
}

func (ListVectorIndexesResponse) ApplySchemaCustomizations added in v1.63.0

func (c ListVectorIndexesResponse) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ListVectorIndexesResponse) GetComplexFieldTypes added in v1.61.0

func (a ListVectorIndexesResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListVectorIndexesResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ListVectorIndexesResponse) GetVectorIndexes added in v1.61.0

func (o *ListVectorIndexesResponse) GetVectorIndexes(ctx context.Context) ([]MiniVectorIndex, bool)

GetVectorIndexes returns the value of the VectorIndexes field in ListVectorIndexesResponse as a slice of MiniVectorIndex values. If the field is unknown or null, the boolean return value is false.

func (*ListVectorIndexesResponse) SetVectorIndexes added in v1.61.0

func (o *ListVectorIndexesResponse) SetVectorIndexes(ctx context.Context, v []MiniVectorIndex)

SetVectorIndexes sets the value of the VectorIndexes field in ListVectorIndexesResponse.

func (*ListVectorIndexesResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ListVectorIndexesResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan ListVectorIndexesResponse)

func (*ListVectorIndexesResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ListVectorIndexesResponse) SyncEffectiveFieldsDuringRead(existingState ListVectorIndexesResponse)

func (ListVectorIndexesResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListVectorIndexesResponse only implements ToObjectValue() and Type().

func (ListVectorIndexesResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type ListVectorIndexesResponse_SdkV2 added in v1.62.1

type ListVectorIndexesResponse_SdkV2 struct {
	// A token that can be used to get the next page of results. If not present,
	// there are no more results to show.
	NextPageToken types.String `tfsdk:"next_page_token"`

	VectorIndexes types.List `tfsdk:"vector_indexes"`
}

func (ListVectorIndexesResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (ListVectorIndexesResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ListVectorIndexesResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ListVectorIndexesResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ListVectorIndexesResponse_SdkV2) GetVectorIndexes added in v1.62.1

GetVectorIndexes returns the value of the VectorIndexes field in ListVectorIndexesResponse_SdkV2 as a slice of MiniVectorIndex_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*ListVectorIndexesResponse_SdkV2) SetVectorIndexes added in v1.62.1

SetVectorIndexes sets the value of the VectorIndexes field in ListVectorIndexesResponse_SdkV2.

func (*ListVectorIndexesResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ListVectorIndexesResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ListVectorIndexesResponse_SdkV2)

func (*ListVectorIndexesResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ListVectorIndexesResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState ListVectorIndexesResponse_SdkV2)

func (ListVectorIndexesResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ListVectorIndexesResponse_SdkV2 only implements ToObjectValue() and Type().

func (ListVectorIndexesResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type MapStringValueEntry

type MapStringValueEntry struct {
	// Column name.
	Key types.String `tfsdk:"key"`
	// Column value, nullable.
	Value types.Object `tfsdk:"value"`
}

Key-value pair.

func (MapStringValueEntry) ApplySchemaCustomizations added in v1.63.0

func (c MapStringValueEntry) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (MapStringValueEntry) GetComplexFieldTypes added in v1.61.0

func (a MapStringValueEntry) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in MapStringValueEntry. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*MapStringValueEntry) GetValue added in v1.61.0

func (o *MapStringValueEntry) GetValue(ctx context.Context) (Value, bool)

GetValue returns the value of the Value field in MapStringValueEntry as a Value value. If the field is unknown or null, the boolean return value is false.

func (*MapStringValueEntry) SetValue added in v1.61.0

func (o *MapStringValueEntry) SetValue(ctx context.Context, v Value)

SetValue sets the value of the Value field in MapStringValueEntry.

func (*MapStringValueEntry) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *MapStringValueEntry) SyncEffectiveFieldsDuringCreateOrUpdate(plan MapStringValueEntry)

func (*MapStringValueEntry) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *MapStringValueEntry) SyncEffectiveFieldsDuringRead(existingState MapStringValueEntry)

func (MapStringValueEntry) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, MapStringValueEntry only implements ToObjectValue() and Type().

func (MapStringValueEntry) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type MapStringValueEntry_SdkV2 added in v1.62.1

type MapStringValueEntry_SdkV2 struct {
	// Column name.
	Key types.String `tfsdk:"key"`
	// Column value, nullable.
	Value types.List `tfsdk:"value"`
}

Key-value pair.

func (MapStringValueEntry_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c MapStringValueEntry_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (MapStringValueEntry_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a MapStringValueEntry_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in MapStringValueEntry. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*MapStringValueEntry_SdkV2) GetValue added in v1.62.1

GetValue returns the value of the Value field in MapStringValueEntry_SdkV2 as a Value_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*MapStringValueEntry_SdkV2) SetValue added in v1.62.1

SetValue sets the value of the Value field in MapStringValueEntry_SdkV2.

func (*MapStringValueEntry_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *MapStringValueEntry_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan MapStringValueEntry_SdkV2)

func (*MapStringValueEntry_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *MapStringValueEntry_SdkV2) SyncEffectiveFieldsDuringRead(existingState MapStringValueEntry_SdkV2)

func (MapStringValueEntry_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, MapStringValueEntry_SdkV2 only implements ToObjectValue() and Type().

func (MapStringValueEntry_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type MiniVectorIndex

type MiniVectorIndex struct {
	// The user who created the index.
	Creator types.String `tfsdk:"creator"`
	// Name of the endpoint associated with the index
	EndpointName types.String `tfsdk:"endpoint_name"`
	// There are 2 types of Vector Search indexes:
	//
	// - `DELTA_SYNC`: An index that automatically syncs with a source Delta
	// Table, automatically and incrementally updating the index as the
	// underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index
	// that supports direct read and write of vectors and metadata through our
	// REST and SDK APIs. With this model, the user manages index updates.
	IndexType types.String `tfsdk:"index_type"`
	// Name of the index
	Name types.String `tfsdk:"name"`
	// Primary key of the index
	PrimaryKey types.String `tfsdk:"primary_key"`
}

func (MiniVectorIndex) ApplySchemaCustomizations added in v1.63.0

func (c MiniVectorIndex) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (MiniVectorIndex) GetComplexFieldTypes added in v1.61.0

func (a MiniVectorIndex) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in MiniVectorIndex. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*MiniVectorIndex) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *MiniVectorIndex) SyncEffectiveFieldsDuringCreateOrUpdate(plan MiniVectorIndex)

func (*MiniVectorIndex) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *MiniVectorIndex) SyncEffectiveFieldsDuringRead(existingState MiniVectorIndex)

func (MiniVectorIndex) ToObjectValue added in v1.61.0

func (o MiniVectorIndex) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, MiniVectorIndex only implements ToObjectValue() and Type().

func (MiniVectorIndex) Type added in v1.61.0

func (o MiniVectorIndex) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type MiniVectorIndex_SdkV2 added in v1.62.1

type MiniVectorIndex_SdkV2 struct {
	// The user who created the index.
	Creator types.String `tfsdk:"creator"`
	// Name of the endpoint associated with the index
	EndpointName types.String `tfsdk:"endpoint_name"`
	// There are 2 types of Vector Search indexes:
	//
	// - `DELTA_SYNC`: An index that automatically syncs with a source Delta
	// Table, automatically and incrementally updating the index as the
	// underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index
	// that supports direct read and write of vectors and metadata through our
	// REST and SDK APIs. With this model, the user manages index updates.
	IndexType types.String `tfsdk:"index_type"`
	// Name of the index
	Name types.String `tfsdk:"name"`
	// Primary key of the index
	PrimaryKey types.String `tfsdk:"primary_key"`
}

func (MiniVectorIndex_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c MiniVectorIndex_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (MiniVectorIndex_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a MiniVectorIndex_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in MiniVectorIndex. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*MiniVectorIndex_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *MiniVectorIndex_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan MiniVectorIndex_SdkV2)

func (*MiniVectorIndex_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *MiniVectorIndex_SdkV2) SyncEffectiveFieldsDuringRead(existingState MiniVectorIndex_SdkV2)

func (MiniVectorIndex_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, MiniVectorIndex_SdkV2 only implements ToObjectValue() and Type().

func (MiniVectorIndex_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type QueryVectorIndexNextPageRequest

type QueryVectorIndexNextPageRequest struct {
	// Name of the endpoint.
	EndpointName types.String `tfsdk:"endpoint_name"`
	// Name of the vector index to query.
	IndexName types.String `tfsdk:"-"`
	// Page token returned from previous `QueryVectorIndex` or
	// `QueryVectorIndexNextPage` API.
	PageToken types.String `tfsdk:"page_token"`
}

Request payload for getting next page of results.

func (QueryVectorIndexNextPageRequest) ApplySchemaCustomizations added in v1.63.0

func (QueryVectorIndexNextPageRequest) GetComplexFieldTypes added in v1.61.0

func (a QueryVectorIndexNextPageRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in QueryVectorIndexNextPageRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*QueryVectorIndexNextPageRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *QueryVectorIndexNextPageRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan QueryVectorIndexNextPageRequest)

func (*QueryVectorIndexNextPageRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *QueryVectorIndexNextPageRequest) SyncEffectiveFieldsDuringRead(existingState QueryVectorIndexNextPageRequest)

func (QueryVectorIndexNextPageRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, QueryVectorIndexNextPageRequest only implements ToObjectValue() and Type().

func (QueryVectorIndexNextPageRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type QueryVectorIndexNextPageRequest_SdkV2 added in v1.62.1

type QueryVectorIndexNextPageRequest_SdkV2 struct {
	// Name of the endpoint.
	EndpointName types.String `tfsdk:"endpoint_name"`
	// Name of the vector index to query.
	IndexName types.String `tfsdk:"-"`
	// Page token returned from previous `QueryVectorIndex` or
	// `QueryVectorIndexNextPage` API.
	PageToken types.String `tfsdk:"page_token"`
}

Request payload for getting next page of results.

func (QueryVectorIndexNextPageRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (QueryVectorIndexNextPageRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a QueryVectorIndexNextPageRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in QueryVectorIndexNextPageRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*QueryVectorIndexNextPageRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *QueryVectorIndexNextPageRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan QueryVectorIndexNextPageRequest_SdkV2)

func (*QueryVectorIndexNextPageRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *QueryVectorIndexNextPageRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState QueryVectorIndexNextPageRequest_SdkV2)

func (QueryVectorIndexNextPageRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, QueryVectorIndexNextPageRequest_SdkV2 only implements ToObjectValue() and Type().

func (QueryVectorIndexNextPageRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type QueryVectorIndexRequest

type QueryVectorIndexRequest struct {
	// List of column names to include in the response.
	Columns types.List `tfsdk:"columns"`
	// JSON string representing query filters.
	//
	// Example filters: - `{"id <": 5}`: Filter for id less than 5. - `{"id >":
	// 5}`: Filter for id greater than 5. - `{"id <=": 5}`: Filter for id less
	// than equal to 5. - `{"id >=": 5}`: Filter for id greater than equal to 5.
	// - `{"id": 5}`: Filter for id equal to 5.
	FiltersJson types.String `tfsdk:"filters_json"`
	// Name of the vector index to query.
	IndexName types.String `tfsdk:"-"`
	// Number of results to return. Defaults to 10.
	NumResults types.Int64 `tfsdk:"num_results"`
	// Query text. Required for Delta Sync Index using model endpoint.
	QueryText types.String `tfsdk:"query_text"`
	// The query type to use. Choices are `ANN` and `HYBRID`. Defaults to `ANN`.
	QueryType types.String `tfsdk:"query_type"`
	// Query vector. Required for Direct Vector Access Index and Delta Sync
	// Index using self-managed vectors.
	QueryVector types.List `tfsdk:"query_vector"`
	// Threshold for the approximate nearest neighbor search. Defaults to 0.0.
	ScoreThreshold types.Float64 `tfsdk:"score_threshold"`
}

func (QueryVectorIndexRequest) ApplySchemaCustomizations added in v1.63.0

func (c QueryVectorIndexRequest) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (*QueryVectorIndexRequest) GetColumns added in v1.61.0

func (o *QueryVectorIndexRequest) GetColumns(ctx context.Context) ([]types.String, bool)

GetColumns returns the value of the Columns field in QueryVectorIndexRequest as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (QueryVectorIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a QueryVectorIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in QueryVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*QueryVectorIndexRequest) GetQueryVector added in v1.61.0

func (o *QueryVectorIndexRequest) GetQueryVector(ctx context.Context) ([]types.Float64, bool)

GetQueryVector returns the value of the QueryVector field in QueryVectorIndexRequest as a slice of types.Float64 values. If the field is unknown or null, the boolean return value is false.

func (*QueryVectorIndexRequest) SetColumns added in v1.61.0

func (o *QueryVectorIndexRequest) SetColumns(ctx context.Context, v []types.String)

SetColumns sets the value of the Columns field in QueryVectorIndexRequest.

func (*QueryVectorIndexRequest) SetQueryVector added in v1.61.0

func (o *QueryVectorIndexRequest) SetQueryVector(ctx context.Context, v []types.Float64)

SetQueryVector sets the value of the QueryVector field in QueryVectorIndexRequest.

func (*QueryVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *QueryVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan QueryVectorIndexRequest)

func (*QueryVectorIndexRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *QueryVectorIndexRequest) SyncEffectiveFieldsDuringRead(existingState QueryVectorIndexRequest)

func (QueryVectorIndexRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, QueryVectorIndexRequest only implements ToObjectValue() and Type().

func (QueryVectorIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type QueryVectorIndexRequest_SdkV2 added in v1.62.1

type QueryVectorIndexRequest_SdkV2 struct {
	// List of column names to include in the response.
	Columns types.List `tfsdk:"columns"`
	// JSON string representing query filters.
	//
	// Example filters: - `{"id <": 5}`: Filter for id less than 5. - `{"id >":
	// 5}`: Filter for id greater than 5. - `{"id <=": 5}`: Filter for id less
	// than equal to 5. - `{"id >=": 5}`: Filter for id greater than equal to 5.
	// - `{"id": 5}`: Filter for id equal to 5.
	FiltersJson types.String `tfsdk:"filters_json"`
	// Name of the vector index to query.
	IndexName types.String `tfsdk:"-"`
	// Number of results to return. Defaults to 10.
	NumResults types.Int64 `tfsdk:"num_results"`
	// Query text. Required for Delta Sync Index using model endpoint.
	QueryText types.String `tfsdk:"query_text"`
	// The query type to use. Choices are `ANN` and `HYBRID`. Defaults to `ANN`.
	QueryType types.String `tfsdk:"query_type"`
	// Query vector. Required for Direct Vector Access Index and Delta Sync
	// Index using self-managed vectors.
	QueryVector types.List `tfsdk:"query_vector"`
	// Threshold for the approximate nearest neighbor search. Defaults to 0.0.
	ScoreThreshold types.Float64 `tfsdk:"score_threshold"`
}

func (QueryVectorIndexRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (*QueryVectorIndexRequest_SdkV2) GetColumns added in v1.62.1

GetColumns returns the value of the Columns field in QueryVectorIndexRequest_SdkV2 as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (QueryVectorIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a QueryVectorIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in QueryVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*QueryVectorIndexRequest_SdkV2) GetQueryVector added in v1.62.1

func (o *QueryVectorIndexRequest_SdkV2) GetQueryVector(ctx context.Context) ([]types.Float64, bool)

GetQueryVector returns the value of the QueryVector field in QueryVectorIndexRequest_SdkV2 as a slice of types.Float64 values. If the field is unknown or null, the boolean return value is false.

func (*QueryVectorIndexRequest_SdkV2) SetColumns added in v1.62.1

func (o *QueryVectorIndexRequest_SdkV2) SetColumns(ctx context.Context, v []types.String)

SetColumns sets the value of the Columns field in QueryVectorIndexRequest_SdkV2.

func (*QueryVectorIndexRequest_SdkV2) SetQueryVector added in v1.62.1

func (o *QueryVectorIndexRequest_SdkV2) SetQueryVector(ctx context.Context, v []types.Float64)

SetQueryVector sets the value of the QueryVector field in QueryVectorIndexRequest_SdkV2.

func (*QueryVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *QueryVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan QueryVectorIndexRequest_SdkV2)

func (*QueryVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *QueryVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState QueryVectorIndexRequest_SdkV2)

func (QueryVectorIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, QueryVectorIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (QueryVectorIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type QueryVectorIndexResponse

type QueryVectorIndexResponse struct {
	// Metadata about the result set.
	Manifest types.Object `tfsdk:"manifest"`
	// [Optional] Token that can be used in `QueryVectorIndexNextPage` API to
	// get next page of results. If more than 1000 results satisfy the query,
	// they are returned in groups of 1000. Empty value means no more results.
	NextPageToken types.String `tfsdk:"next_page_token"`
	// Data returned in the query result.
	Result types.Object `tfsdk:"result"`
}

func (QueryVectorIndexResponse) ApplySchemaCustomizations added in v1.63.0

func (c QueryVectorIndexResponse) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (QueryVectorIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a QueryVectorIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in QueryVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*QueryVectorIndexResponse) GetManifest added in v1.61.0

GetManifest returns the value of the Manifest field in QueryVectorIndexResponse as a ResultManifest value. If the field is unknown or null, the boolean return value is false.

func (*QueryVectorIndexResponse) GetResult added in v1.61.0

GetResult returns the value of the Result field in QueryVectorIndexResponse as a ResultData value. If the field is unknown or null, the boolean return value is false.

func (*QueryVectorIndexResponse) SetManifest added in v1.61.0

func (o *QueryVectorIndexResponse) SetManifest(ctx context.Context, v ResultManifest)

SetManifest sets the value of the Manifest field in QueryVectorIndexResponse.

func (*QueryVectorIndexResponse) SetResult added in v1.61.0

func (o *QueryVectorIndexResponse) SetResult(ctx context.Context, v ResultData)

SetResult sets the value of the Result field in QueryVectorIndexResponse.

func (*QueryVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *QueryVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan QueryVectorIndexResponse)

func (*QueryVectorIndexResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *QueryVectorIndexResponse) SyncEffectiveFieldsDuringRead(existingState QueryVectorIndexResponse)

func (QueryVectorIndexResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, QueryVectorIndexResponse only implements ToObjectValue() and Type().

func (QueryVectorIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type QueryVectorIndexResponse_SdkV2 added in v1.62.1

type QueryVectorIndexResponse_SdkV2 struct {
	// Metadata about the result set.
	Manifest types.List `tfsdk:"manifest"`
	// [Optional] Token that can be used in `QueryVectorIndexNextPage` API to
	// get next page of results. If more than 1000 results satisfy the query,
	// they are returned in groups of 1000. Empty value means no more results.
	NextPageToken types.String `tfsdk:"next_page_token"`
	// Data returned in the query result.
	Result types.List `tfsdk:"result"`
}

func (QueryVectorIndexResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (QueryVectorIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a QueryVectorIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in QueryVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*QueryVectorIndexResponse_SdkV2) GetManifest added in v1.62.1

GetManifest returns the value of the Manifest field in QueryVectorIndexResponse_SdkV2 as a ResultManifest_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*QueryVectorIndexResponse_SdkV2) GetResult added in v1.62.1

GetResult returns the value of the Result field in QueryVectorIndexResponse_SdkV2 as a ResultData_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*QueryVectorIndexResponse_SdkV2) SetManifest added in v1.62.1

SetManifest sets the value of the Manifest field in QueryVectorIndexResponse_SdkV2.

func (*QueryVectorIndexResponse_SdkV2) SetResult added in v1.62.1

SetResult sets the value of the Result field in QueryVectorIndexResponse_SdkV2.

func (*QueryVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *QueryVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan QueryVectorIndexResponse_SdkV2)

func (*QueryVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *QueryVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState QueryVectorIndexResponse_SdkV2)

func (QueryVectorIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, QueryVectorIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (QueryVectorIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ResultData

type ResultData struct {
	// Data rows returned in the query.
	DataArray types.List `tfsdk:"data_array"`
	// Number of rows in the result set.
	RowCount types.Int64 `tfsdk:"row_count"`
}

Data returned in the query result.

func (ResultData) ApplySchemaCustomizations added in v1.63.0

func (c ResultData) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ResultData) GetComplexFieldTypes added in v1.61.0

func (a ResultData) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ResultData. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ResultData) GetDataArray added in v1.61.0

func (o *ResultData) GetDataArray(ctx context.Context) ([]types.String, bool)

GetDataArray returns the value of the DataArray field in ResultData as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*ResultData) SetDataArray added in v1.61.0

func (o *ResultData) SetDataArray(ctx context.Context, v []types.String)

SetDataArray sets the value of the DataArray field in ResultData.

func (*ResultData) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ResultData) SyncEffectiveFieldsDuringCreateOrUpdate(plan ResultData)

func (*ResultData) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ResultData) SyncEffectiveFieldsDuringRead(existingState ResultData)

func (ResultData) ToObjectValue added in v1.61.0

func (o ResultData) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ResultData only implements ToObjectValue() and Type().

func (ResultData) Type added in v1.61.0

func (o ResultData) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type ResultData_SdkV2 added in v1.62.1

type ResultData_SdkV2 struct {
	// Data rows returned in the query.
	DataArray types.List `tfsdk:"data_array"`
	// Number of rows in the result set.
	RowCount types.Int64 `tfsdk:"row_count"`
}

Data returned in the query result.

func (ResultData_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c ResultData_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ResultData_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ResultData_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ResultData. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ResultData_SdkV2) GetDataArray added in v1.62.1

func (o *ResultData_SdkV2) GetDataArray(ctx context.Context) ([]types.String, bool)

GetDataArray returns the value of the DataArray field in ResultData_SdkV2 as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*ResultData_SdkV2) SetDataArray added in v1.62.1

func (o *ResultData_SdkV2) SetDataArray(ctx context.Context, v []types.String)

SetDataArray sets the value of the DataArray field in ResultData_SdkV2.

func (*ResultData_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ResultData_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ResultData_SdkV2)

func (*ResultData_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ResultData_SdkV2) SyncEffectiveFieldsDuringRead(existingState ResultData_SdkV2)

func (ResultData_SdkV2) ToObjectValue added in v1.62.1

func (o ResultData_SdkV2) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ResultData_SdkV2 only implements ToObjectValue() and Type().

func (ResultData_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ResultManifest

type ResultManifest struct {
	// Number of columns in the result set.
	ColumnCount types.Int64 `tfsdk:"column_count"`
	// Information about each column in the result set.
	Columns types.List `tfsdk:"columns"`
}

Metadata about the result set.

func (ResultManifest) ApplySchemaCustomizations added in v1.63.0

func (c ResultManifest) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (*ResultManifest) GetColumns added in v1.61.0

func (o *ResultManifest) GetColumns(ctx context.Context) ([]ColumnInfo, bool)

GetColumns returns the value of the Columns field in ResultManifest as a slice of ColumnInfo values. If the field is unknown or null, the boolean return value is false.

func (ResultManifest) GetComplexFieldTypes added in v1.61.0

func (a ResultManifest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ResultManifest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ResultManifest) SetColumns added in v1.61.0

func (o *ResultManifest) SetColumns(ctx context.Context, v []ColumnInfo)

SetColumns sets the value of the Columns field in ResultManifest.

func (*ResultManifest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ResultManifest) SyncEffectiveFieldsDuringCreateOrUpdate(plan ResultManifest)

func (*ResultManifest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ResultManifest) SyncEffectiveFieldsDuringRead(existingState ResultManifest)

func (ResultManifest) ToObjectValue added in v1.61.0

func (o ResultManifest) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ResultManifest only implements ToObjectValue() and Type().

func (ResultManifest) Type added in v1.61.0

func (o ResultManifest) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type ResultManifest_SdkV2 added in v1.62.1

type ResultManifest_SdkV2 struct {
	// Number of columns in the result set.
	ColumnCount types.Int64 `tfsdk:"column_count"`
	// Information about each column in the result set.
	Columns types.List `tfsdk:"columns"`
}

Metadata about the result set.

func (ResultManifest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c ResultManifest_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (*ResultManifest_SdkV2) GetColumns added in v1.62.1

func (o *ResultManifest_SdkV2) GetColumns(ctx context.Context) ([]ColumnInfo_SdkV2, bool)

GetColumns returns the value of the Columns field in ResultManifest_SdkV2 as a slice of ColumnInfo_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (ResultManifest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ResultManifest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ResultManifest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ResultManifest_SdkV2) SetColumns added in v1.62.1

func (o *ResultManifest_SdkV2) SetColumns(ctx context.Context, v []ColumnInfo_SdkV2)

SetColumns sets the value of the Columns field in ResultManifest_SdkV2.

func (*ResultManifest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ResultManifest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ResultManifest_SdkV2)

func (*ResultManifest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ResultManifest_SdkV2) SyncEffectiveFieldsDuringRead(existingState ResultManifest_SdkV2)

func (ResultManifest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ResultManifest_SdkV2 only implements ToObjectValue() and Type().

func (ResultManifest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ScanVectorIndexRequest

type ScanVectorIndexRequest struct {
	// Name of the vector index to scan.
	IndexName types.String `tfsdk:"-"`
	// Primary key of the last entry returned in the previous scan.
	LastPrimaryKey types.String `tfsdk:"last_primary_key"`
	// Number of results to return. Defaults to 10.
	NumResults types.Int64 `tfsdk:"num_results"`
}

Request payload for scanning data from a vector index.

func (ScanVectorIndexRequest) ApplySchemaCustomizations added in v1.63.0

func (c ScanVectorIndexRequest) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ScanVectorIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a ScanVectorIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ScanVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ScanVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ScanVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan ScanVectorIndexRequest)

func (*ScanVectorIndexRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ScanVectorIndexRequest) SyncEffectiveFieldsDuringRead(existingState ScanVectorIndexRequest)

func (ScanVectorIndexRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ScanVectorIndexRequest only implements ToObjectValue() and Type().

func (ScanVectorIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type ScanVectorIndexRequest_SdkV2 added in v1.62.1

type ScanVectorIndexRequest_SdkV2 struct {
	// Name of the vector index to scan.
	IndexName types.String `tfsdk:"-"`
	// Primary key of the last entry returned in the previous scan.
	LastPrimaryKey types.String `tfsdk:"last_primary_key"`
	// Number of results to return. Defaults to 10.
	NumResults types.Int64 `tfsdk:"num_results"`
}

Request payload for scanning data from a vector index.

func (ScanVectorIndexRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (ScanVectorIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ScanVectorIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ScanVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ScanVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ScanVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ScanVectorIndexRequest_SdkV2)

func (*ScanVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ScanVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState ScanVectorIndexRequest_SdkV2)

func (ScanVectorIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ScanVectorIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (ScanVectorIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type ScanVectorIndexResponse

type ScanVectorIndexResponse struct {
	// List of data entries
	Data types.List `tfsdk:"data"`
	// Primary key of the last entry.
	LastPrimaryKey types.String `tfsdk:"last_primary_key"`
}

Response to a scan vector index request.

func (ScanVectorIndexResponse) ApplySchemaCustomizations added in v1.63.0

func (c ScanVectorIndexResponse) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (ScanVectorIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a ScanVectorIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ScanVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ScanVectorIndexResponse) GetData added in v1.61.0

func (o *ScanVectorIndexResponse) GetData(ctx context.Context) ([]Struct, bool)

GetData returns the value of the Data field in ScanVectorIndexResponse as a slice of Struct values. If the field is unknown or null, the boolean return value is false.

func (*ScanVectorIndexResponse) SetData added in v1.61.0

func (o *ScanVectorIndexResponse) SetData(ctx context.Context, v []Struct)

SetData sets the value of the Data field in ScanVectorIndexResponse.

func (*ScanVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *ScanVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan ScanVectorIndexResponse)

func (*ScanVectorIndexResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *ScanVectorIndexResponse) SyncEffectiveFieldsDuringRead(existingState ScanVectorIndexResponse)

func (ScanVectorIndexResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ScanVectorIndexResponse only implements ToObjectValue() and Type().

func (ScanVectorIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type ScanVectorIndexResponse_SdkV2 added in v1.62.1

type ScanVectorIndexResponse_SdkV2 struct {
	// List of data entries
	Data types.List `tfsdk:"data"`
	// Primary key of the last entry.
	LastPrimaryKey types.String `tfsdk:"last_primary_key"`
}

Response to a scan vector index request.

func (ScanVectorIndexResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (ScanVectorIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a ScanVectorIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in ScanVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*ScanVectorIndexResponse_SdkV2) GetData added in v1.62.1

GetData returns the value of the Data field in ScanVectorIndexResponse_SdkV2 as a slice of Struct_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*ScanVectorIndexResponse_SdkV2) SetData added in v1.62.1

SetData sets the value of the Data field in ScanVectorIndexResponse_SdkV2.

func (*ScanVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *ScanVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan ScanVectorIndexResponse_SdkV2)

func (*ScanVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *ScanVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState ScanVectorIndexResponse_SdkV2)

func (ScanVectorIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, ScanVectorIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (ScanVectorIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type Struct

type Struct struct {
	// Data entry, corresponding to a row in a vector index.
	Fields types.List `tfsdk:"fields"`
}

func (Struct) ApplySchemaCustomizations added in v1.63.0

func (c Struct) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (Struct) GetComplexFieldTypes added in v1.61.0

func (a Struct) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in Struct. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*Struct) GetFields added in v1.61.0

func (o *Struct) GetFields(ctx context.Context) ([]MapStringValueEntry, bool)

GetFields returns the value of the Fields field in Struct as a slice of MapStringValueEntry values. If the field is unknown or null, the boolean return value is false.

func (*Struct) SetFields added in v1.61.0

func (o *Struct) SetFields(ctx context.Context, v []MapStringValueEntry)

SetFields sets the value of the Fields field in Struct.

func (*Struct) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *Struct) SyncEffectiveFieldsDuringCreateOrUpdate(plan Struct)

func (*Struct) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *Struct) SyncEffectiveFieldsDuringRead(existingState Struct)

func (Struct) ToObjectValue added in v1.61.0

func (o Struct) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, Struct only implements ToObjectValue() and Type().

func (Struct) Type added in v1.61.0

func (o Struct) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type Struct_SdkV2 added in v1.62.1

type Struct_SdkV2 struct {
	// Data entry, corresponding to a row in a vector index.
	Fields types.List `tfsdk:"fields"`
}

func (Struct_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c Struct_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (Struct_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a Struct_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in Struct. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*Struct_SdkV2) GetFields added in v1.62.1

GetFields returns the value of the Fields field in Struct_SdkV2 as a slice of MapStringValueEntry_SdkV2 values. If the field is unknown or null, the boolean return value is false.

func (*Struct_SdkV2) SetFields added in v1.62.1

func (o *Struct_SdkV2) SetFields(ctx context.Context, v []MapStringValueEntry_SdkV2)

SetFields sets the value of the Fields field in Struct_SdkV2.

func (*Struct_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *Struct_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan Struct_SdkV2)

func (*Struct_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *Struct_SdkV2) SyncEffectiveFieldsDuringRead(existingState Struct_SdkV2)

func (Struct_SdkV2) ToObjectValue added in v1.62.1

func (o Struct_SdkV2) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, Struct_SdkV2 only implements ToObjectValue() and Type().

func (Struct_SdkV2) Type added in v1.62.1

func (o Struct_SdkV2) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type SyncIndexRequest

type SyncIndexRequest struct {
	// Name of the vector index to synchronize. Must be a Delta Sync Index.
	IndexName types.String `tfsdk:"-"`
}

Synchronize an index

func (SyncIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a SyncIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in SyncIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (SyncIndexRequest) ToObjectValue added in v1.61.0

func (o SyncIndexRequest) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, SyncIndexRequest only implements ToObjectValue() and Type().

func (SyncIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type SyncIndexRequest_SdkV2 added in v1.62.1

type SyncIndexRequest_SdkV2 struct {
	// Name of the vector index to synchronize. Must be a Delta Sync Index.
	IndexName types.String `tfsdk:"-"`
}

Synchronize an index

func (SyncIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a SyncIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in SyncIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (SyncIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, SyncIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (SyncIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type SyncIndexResponse

type SyncIndexResponse struct {
}

func (SyncIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a SyncIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in SyncIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (SyncIndexResponse) ToObjectValue added in v1.61.0

func (o SyncIndexResponse) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, SyncIndexResponse only implements ToObjectValue() and Type().

func (SyncIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type SyncIndexResponse_SdkV2 added in v1.62.1

type SyncIndexResponse_SdkV2 struct {
}

func (SyncIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a SyncIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in SyncIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (SyncIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, SyncIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (SyncIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type UpsertDataResult

type UpsertDataResult struct {
	// List of primary keys for rows that failed to process.
	FailedPrimaryKeys types.List `tfsdk:"failed_primary_keys"`
	// Count of successfully processed rows.
	SuccessRowCount types.Int64 `tfsdk:"success_row_count"`
}

Result of the upsert or delete operation.

func (UpsertDataResult) ApplySchemaCustomizations added in v1.63.0

func (c UpsertDataResult) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (UpsertDataResult) GetComplexFieldTypes added in v1.61.0

func (a UpsertDataResult) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in UpsertDataResult. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*UpsertDataResult) GetFailedPrimaryKeys added in v1.61.0

func (o *UpsertDataResult) GetFailedPrimaryKeys(ctx context.Context) ([]types.String, bool)

GetFailedPrimaryKeys returns the value of the FailedPrimaryKeys field in UpsertDataResult as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*UpsertDataResult) SetFailedPrimaryKeys added in v1.61.0

func (o *UpsertDataResult) SetFailedPrimaryKeys(ctx context.Context, v []types.String)

SetFailedPrimaryKeys sets the value of the FailedPrimaryKeys field in UpsertDataResult.

func (*UpsertDataResult) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *UpsertDataResult) SyncEffectiveFieldsDuringCreateOrUpdate(plan UpsertDataResult)

func (*UpsertDataResult) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *UpsertDataResult) SyncEffectiveFieldsDuringRead(existingState UpsertDataResult)

func (UpsertDataResult) ToObjectValue added in v1.61.0

func (o UpsertDataResult) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, UpsertDataResult only implements ToObjectValue() and Type().

func (UpsertDataResult) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type UpsertDataResult_SdkV2 added in v1.62.1

type UpsertDataResult_SdkV2 struct {
	// List of primary keys for rows that failed to process.
	FailedPrimaryKeys types.List `tfsdk:"failed_primary_keys"`
	// Count of successfully processed rows.
	SuccessRowCount types.Int64 `tfsdk:"success_row_count"`
}

Result of the upsert or delete operation.

func (UpsertDataResult_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c UpsertDataResult_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (UpsertDataResult_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a UpsertDataResult_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in UpsertDataResult. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*UpsertDataResult_SdkV2) GetFailedPrimaryKeys added in v1.62.1

func (o *UpsertDataResult_SdkV2) GetFailedPrimaryKeys(ctx context.Context) ([]types.String, bool)

GetFailedPrimaryKeys returns the value of the FailedPrimaryKeys field in UpsertDataResult_SdkV2 as a slice of types.String values. If the field is unknown or null, the boolean return value is false.

func (*UpsertDataResult_SdkV2) SetFailedPrimaryKeys added in v1.62.1

func (o *UpsertDataResult_SdkV2) SetFailedPrimaryKeys(ctx context.Context, v []types.String)

SetFailedPrimaryKeys sets the value of the FailedPrimaryKeys field in UpsertDataResult_SdkV2.

func (*UpsertDataResult_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *UpsertDataResult_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan UpsertDataResult_SdkV2)

func (*UpsertDataResult_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *UpsertDataResult_SdkV2) SyncEffectiveFieldsDuringRead(existingState UpsertDataResult_SdkV2)

func (UpsertDataResult_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, UpsertDataResult_SdkV2 only implements ToObjectValue() and Type().

func (UpsertDataResult_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type UpsertDataVectorIndexRequest

type UpsertDataVectorIndexRequest struct {
	// Name of the vector index where data is to be upserted. Must be a Direct
	// Vector Access Index.
	IndexName types.String `tfsdk:"-"`
	// JSON string representing the data to be upserted.
	InputsJson types.String `tfsdk:"inputs_json"`
}

Request payload for upserting data into a vector index.

func (UpsertDataVectorIndexRequest) ApplySchemaCustomizations added in v1.63.0

func (UpsertDataVectorIndexRequest) GetComplexFieldTypes added in v1.61.0

func (a UpsertDataVectorIndexRequest) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in UpsertDataVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*UpsertDataVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *UpsertDataVectorIndexRequest) SyncEffectiveFieldsDuringCreateOrUpdate(plan UpsertDataVectorIndexRequest)

func (*UpsertDataVectorIndexRequest) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *UpsertDataVectorIndexRequest) SyncEffectiveFieldsDuringRead(existingState UpsertDataVectorIndexRequest)

func (UpsertDataVectorIndexRequest) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, UpsertDataVectorIndexRequest only implements ToObjectValue() and Type().

func (UpsertDataVectorIndexRequest) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type UpsertDataVectorIndexRequest_SdkV2 added in v1.62.1

type UpsertDataVectorIndexRequest_SdkV2 struct {
	// Name of the vector index where data is to be upserted. Must be a Direct
	// Vector Access Index.
	IndexName types.String `tfsdk:"-"`
	// JSON string representing the data to be upserted.
	InputsJson types.String `tfsdk:"inputs_json"`
}

Request payload for upserting data into a vector index.

func (UpsertDataVectorIndexRequest_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (UpsertDataVectorIndexRequest_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a UpsertDataVectorIndexRequest_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in UpsertDataVectorIndexRequest. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*UpsertDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *UpsertDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan UpsertDataVectorIndexRequest_SdkV2)

func (*UpsertDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *UpsertDataVectorIndexRequest_SdkV2) SyncEffectiveFieldsDuringRead(existingState UpsertDataVectorIndexRequest_SdkV2)

func (UpsertDataVectorIndexRequest_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, UpsertDataVectorIndexRequest_SdkV2 only implements ToObjectValue() and Type().

func (UpsertDataVectorIndexRequest_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type UpsertDataVectorIndexResponse

type UpsertDataVectorIndexResponse struct {
	// Result of the upsert or delete operation.
	Result types.Object `tfsdk:"result"`
	// Status of the upsert operation.
	Status types.String `tfsdk:"status"`
}

Response to an upsert data vector index request.

func (UpsertDataVectorIndexResponse) ApplySchemaCustomizations added in v1.63.0

func (UpsertDataVectorIndexResponse) GetComplexFieldTypes added in v1.61.0

func (a UpsertDataVectorIndexResponse) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in UpsertDataVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*UpsertDataVectorIndexResponse) GetResult added in v1.61.0

GetResult returns the value of the Result field in UpsertDataVectorIndexResponse as a UpsertDataResult value. If the field is unknown or null, the boolean return value is false.

func (*UpsertDataVectorIndexResponse) SetResult added in v1.61.0

SetResult sets the value of the Result field in UpsertDataVectorIndexResponse.

func (*UpsertDataVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *UpsertDataVectorIndexResponse) SyncEffectiveFieldsDuringCreateOrUpdate(plan UpsertDataVectorIndexResponse)

func (*UpsertDataVectorIndexResponse) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *UpsertDataVectorIndexResponse) SyncEffectiveFieldsDuringRead(existingState UpsertDataVectorIndexResponse)

func (UpsertDataVectorIndexResponse) ToObjectValue added in v1.61.0

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, UpsertDataVectorIndexResponse only implements ToObjectValue() and Type().

func (UpsertDataVectorIndexResponse) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type UpsertDataVectorIndexResponse_SdkV2 added in v1.62.1

type UpsertDataVectorIndexResponse_SdkV2 struct {
	// Result of the upsert or delete operation.
	Result types.List `tfsdk:"result"`
	// Status of the upsert operation.
	Status types.String `tfsdk:"status"`
}

Response to an upsert data vector index request.

func (UpsertDataVectorIndexResponse_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (UpsertDataVectorIndexResponse_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a UpsertDataVectorIndexResponse_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in UpsertDataVectorIndexResponse. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*UpsertDataVectorIndexResponse_SdkV2) GetResult added in v1.62.1

GetResult returns the value of the Result field in UpsertDataVectorIndexResponse_SdkV2 as a UpsertDataResult_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*UpsertDataVectorIndexResponse_SdkV2) SetResult added in v1.62.1

SetResult sets the value of the Result field in UpsertDataVectorIndexResponse_SdkV2.

func (*UpsertDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *UpsertDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan UpsertDataVectorIndexResponse_SdkV2)

func (*UpsertDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *UpsertDataVectorIndexResponse_SdkV2) SyncEffectiveFieldsDuringRead(existingState UpsertDataVectorIndexResponse_SdkV2)

func (UpsertDataVectorIndexResponse_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, UpsertDataVectorIndexResponse_SdkV2 only implements ToObjectValue() and Type().

func (UpsertDataVectorIndexResponse_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type Value

type Value struct {
	BoolValue types.Bool `tfsdk:"bool_value"`

	ListValue types.Object `tfsdk:"list_value"`

	NullValue types.String `tfsdk:"null_value"`

	NumberValue types.Float64 `tfsdk:"number_value"`

	StringValue types.String `tfsdk:"string_value"`

	StructValue types.Object `tfsdk:"struct_value"`
}

func (Value) ApplySchemaCustomizations added in v1.63.0

func (c Value) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (Value) GetComplexFieldTypes added in v1.61.0

func (a Value) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in Value. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*Value) GetListValue added in v1.61.0

func (o *Value) GetListValue(ctx context.Context) (ListValue, bool)

GetListValue returns the value of the ListValue field in Value as a ListValue value. If the field is unknown or null, the boolean return value is false.

func (*Value) GetStructValue added in v1.61.0

func (o *Value) GetStructValue(ctx context.Context) (Struct, bool)

GetStructValue returns the value of the StructValue field in Value as a Struct value. If the field is unknown or null, the boolean return value is false.

func (*Value) SetListValue added in v1.61.0

func (o *Value) SetListValue(ctx context.Context, v ListValue)

SetListValue sets the value of the ListValue field in Value.

func (*Value) SetStructValue added in v1.61.0

func (o *Value) SetStructValue(ctx context.Context, v Struct)

SetStructValue sets the value of the StructValue field in Value.

func (*Value) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *Value) SyncEffectiveFieldsDuringCreateOrUpdate(plan Value)

func (*Value) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *Value) SyncEffectiveFieldsDuringRead(existingState Value)

func (Value) ToObjectValue added in v1.61.0

func (o Value) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, Value only implements ToObjectValue() and Type().

func (Value) Type added in v1.61.0

func (o Value) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type Value_SdkV2 added in v1.62.1

type Value_SdkV2 struct {
	BoolValue types.Bool `tfsdk:"bool_value"`

	ListValue types.List `tfsdk:"list_value"`

	NullValue types.String `tfsdk:"null_value"`

	NumberValue types.Float64 `tfsdk:"number_value"`

	StringValue types.String `tfsdk:"string_value"`

	StructValue types.List `tfsdk:"struct_value"`
}

func (Value_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c Value_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (Value_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a Value_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in Value. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*Value_SdkV2) GetListValue added in v1.62.1

func (o *Value_SdkV2) GetListValue(ctx context.Context) (ListValue_SdkV2, bool)

GetListValue returns the value of the ListValue field in Value_SdkV2 as a ListValue_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*Value_SdkV2) GetStructValue added in v1.62.1

func (o *Value_SdkV2) GetStructValue(ctx context.Context) (Struct_SdkV2, bool)

GetStructValue returns the value of the StructValue field in Value_SdkV2 as a Struct_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*Value_SdkV2) SetListValue added in v1.62.1

func (o *Value_SdkV2) SetListValue(ctx context.Context, v ListValue_SdkV2)

SetListValue sets the value of the ListValue field in Value_SdkV2.

func (*Value_SdkV2) SetStructValue added in v1.62.1

func (o *Value_SdkV2) SetStructValue(ctx context.Context, v Struct_SdkV2)

SetStructValue sets the value of the StructValue field in Value_SdkV2.

func (*Value_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *Value_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan Value_SdkV2)

func (*Value_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *Value_SdkV2) SyncEffectiveFieldsDuringRead(existingState Value_SdkV2)

func (Value_SdkV2) ToObjectValue added in v1.62.1

func (o Value_SdkV2) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, Value_SdkV2 only implements ToObjectValue() and Type().

func (Value_SdkV2) Type added in v1.62.1

func (o Value_SdkV2) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type VectorIndex

type VectorIndex struct {
	// The user who created the index.
	Creator types.String `tfsdk:"creator"`

	DeltaSyncIndexSpec types.Object `tfsdk:"delta_sync_index_spec"`

	DirectAccessIndexSpec types.Object `tfsdk:"direct_access_index_spec"`
	// Name of the endpoint associated with the index
	EndpointName types.String `tfsdk:"endpoint_name"`
	// There are 2 types of Vector Search indexes:
	//
	// - `DELTA_SYNC`: An index that automatically syncs with a source Delta
	// Table, automatically and incrementally updating the index as the
	// underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index
	// that supports direct read and write of vectors and metadata through our
	// REST and SDK APIs. With this model, the user manages index updates.
	IndexType types.String `tfsdk:"index_type"`
	// Name of the index
	Name types.String `tfsdk:"name"`
	// Primary key of the index
	PrimaryKey types.String `tfsdk:"primary_key"`

	Status types.Object `tfsdk:"status"`
}

func (VectorIndex) ApplySchemaCustomizations added in v1.63.0

func (c VectorIndex) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (VectorIndex) GetComplexFieldTypes added in v1.61.0

func (a VectorIndex) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in VectorIndex. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*VectorIndex) GetDeltaSyncIndexSpec added in v1.61.0

func (o *VectorIndex) GetDeltaSyncIndexSpec(ctx context.Context) (DeltaSyncVectorIndexSpecResponse, bool)

GetDeltaSyncIndexSpec returns the value of the DeltaSyncIndexSpec field in VectorIndex as a DeltaSyncVectorIndexSpecResponse value. If the field is unknown or null, the boolean return value is false.

func (*VectorIndex) GetDirectAccessIndexSpec added in v1.61.0

func (o *VectorIndex) GetDirectAccessIndexSpec(ctx context.Context) (DirectAccessVectorIndexSpec, bool)

GetDirectAccessIndexSpec returns the value of the DirectAccessIndexSpec field in VectorIndex as a DirectAccessVectorIndexSpec value. If the field is unknown or null, the boolean return value is false.

func (*VectorIndex) GetStatus added in v1.61.0

func (o *VectorIndex) GetStatus(ctx context.Context) (VectorIndexStatus, bool)

GetStatus returns the value of the Status field in VectorIndex as a VectorIndexStatus value. If the field is unknown or null, the boolean return value is false.

func (*VectorIndex) SetDeltaSyncIndexSpec added in v1.61.0

func (o *VectorIndex) SetDeltaSyncIndexSpec(ctx context.Context, v DeltaSyncVectorIndexSpecResponse)

SetDeltaSyncIndexSpec sets the value of the DeltaSyncIndexSpec field in VectorIndex.

func (*VectorIndex) SetDirectAccessIndexSpec added in v1.61.0

func (o *VectorIndex) SetDirectAccessIndexSpec(ctx context.Context, v DirectAccessVectorIndexSpec)

SetDirectAccessIndexSpec sets the value of the DirectAccessIndexSpec field in VectorIndex.

func (*VectorIndex) SetStatus added in v1.61.0

func (o *VectorIndex) SetStatus(ctx context.Context, v VectorIndexStatus)

SetStatus sets the value of the Status field in VectorIndex.

func (*VectorIndex) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *VectorIndex) SyncEffectiveFieldsDuringCreateOrUpdate(plan VectorIndex)

func (*VectorIndex) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *VectorIndex) SyncEffectiveFieldsDuringRead(existingState VectorIndex)

func (VectorIndex) ToObjectValue added in v1.61.0

func (o VectorIndex) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, VectorIndex only implements ToObjectValue() and Type().

func (VectorIndex) Type added in v1.61.0

func (o VectorIndex) Type(ctx context.Context) attr.Type

Type implements basetypes.ObjectValuable.

type VectorIndexStatus

type VectorIndexStatus struct {
	// Index API Url to be used to perform operations on the index
	IndexUrl types.String `tfsdk:"index_url"`
	// Number of rows indexed
	IndexedRowCount types.Int64 `tfsdk:"indexed_row_count"`
	// Message associated with the index status
	Message types.String `tfsdk:"message"`
	// Whether the index is ready for search
	Ready types.Bool `tfsdk:"ready"`
}

func (VectorIndexStatus) ApplySchemaCustomizations added in v1.63.0

func (c VectorIndexStatus) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (VectorIndexStatus) GetComplexFieldTypes added in v1.61.0

func (a VectorIndexStatus) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in VectorIndexStatus. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*VectorIndexStatus) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.54.0

func (newState *VectorIndexStatus) SyncEffectiveFieldsDuringCreateOrUpdate(plan VectorIndexStatus)

func (*VectorIndexStatus) SyncEffectiveFieldsDuringRead added in v1.54.0

func (newState *VectorIndexStatus) SyncEffectiveFieldsDuringRead(existingState VectorIndexStatus)

func (VectorIndexStatus) ToObjectValue added in v1.61.0

func (o VectorIndexStatus) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, VectorIndexStatus only implements ToObjectValue() and Type().

func (VectorIndexStatus) Type added in v1.61.0

Type implements basetypes.ObjectValuable.

type VectorIndexStatus_SdkV2 added in v1.62.1

type VectorIndexStatus_SdkV2 struct {
	// Index API Url to be used to perform operations on the index
	IndexUrl types.String `tfsdk:"index_url"`
	// Number of rows indexed
	IndexedRowCount types.Int64 `tfsdk:"indexed_row_count"`
	// Message associated with the index status
	Message types.String `tfsdk:"message"`
	// Whether the index is ready for search
	Ready types.Bool `tfsdk:"ready"`
}

func (VectorIndexStatus_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c VectorIndexStatus_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (VectorIndexStatus_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a VectorIndexStatus_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in VectorIndexStatus. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*VectorIndexStatus_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *VectorIndexStatus_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan VectorIndexStatus_SdkV2)

func (*VectorIndexStatus_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *VectorIndexStatus_SdkV2) SyncEffectiveFieldsDuringRead(existingState VectorIndexStatus_SdkV2)

func (VectorIndexStatus_SdkV2) ToObjectValue added in v1.62.1

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, VectorIndexStatus_SdkV2 only implements ToObjectValue() and Type().

func (VectorIndexStatus_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

type VectorIndex_SdkV2 added in v1.62.1

type VectorIndex_SdkV2 struct {
	// The user who created the index.
	Creator types.String `tfsdk:"creator"`

	DeltaSyncIndexSpec types.List `tfsdk:"delta_sync_index_spec"`

	DirectAccessIndexSpec types.List `tfsdk:"direct_access_index_spec"`
	// Name of the endpoint associated with the index
	EndpointName types.String `tfsdk:"endpoint_name"`
	// There are 2 types of Vector Search indexes:
	//
	// - `DELTA_SYNC`: An index that automatically syncs with a source Delta
	// Table, automatically and incrementally updating the index as the
	// underlying data in the Delta Table changes. - `DIRECT_ACCESS`: An index
	// that supports direct read and write of vectors and metadata through our
	// REST and SDK APIs. With this model, the user manages index updates.
	IndexType types.String `tfsdk:"index_type"`
	// Name of the index
	Name types.String `tfsdk:"name"`
	// Primary key of the index
	PrimaryKey types.String `tfsdk:"primary_key"`

	Status types.List `tfsdk:"status"`
}

func (VectorIndex_SdkV2) ApplySchemaCustomizations added in v1.63.0

func (c VectorIndex_SdkV2) ApplySchemaCustomizations(attrs map[string]tfschema.AttributeBuilder) map[string]tfschema.AttributeBuilder

func (VectorIndex_SdkV2) GetComplexFieldTypes added in v1.62.1

func (a VectorIndex_SdkV2) GetComplexFieldTypes(ctx context.Context) map[string]reflect.Type

GetComplexFieldTypes returns a map of the types of elements in complex fields in VectorIndex. Container types (types.Map, types.List, types.Set) and object types (types.Object) do not carry the type information of their elements in the Go type system. This function provides a way to retrieve the type information of the elements in complex fields at runtime. The values of the map are the reflected types of the contained elements. They must be either primitive values from the plugin framework type system (types.String{}, types.Bool{}, types.Int64{}, types.Float64{}) or TF SDK values.

func (*VectorIndex_SdkV2) GetDeltaSyncIndexSpec added in v1.62.1

GetDeltaSyncIndexSpec returns the value of the DeltaSyncIndexSpec field in VectorIndex_SdkV2 as a DeltaSyncVectorIndexSpecResponse_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*VectorIndex_SdkV2) GetDirectAccessIndexSpec added in v1.62.1

func (o *VectorIndex_SdkV2) GetDirectAccessIndexSpec(ctx context.Context) (DirectAccessVectorIndexSpec_SdkV2, bool)

GetDirectAccessIndexSpec returns the value of the DirectAccessIndexSpec field in VectorIndex_SdkV2 as a DirectAccessVectorIndexSpec_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*VectorIndex_SdkV2) GetStatus added in v1.62.1

GetStatus returns the value of the Status field in VectorIndex_SdkV2 as a VectorIndexStatus_SdkV2 value. If the field is unknown or null, the boolean return value is false.

func (*VectorIndex_SdkV2) SetDeltaSyncIndexSpec added in v1.62.1

SetDeltaSyncIndexSpec sets the value of the DeltaSyncIndexSpec field in VectorIndex_SdkV2.

func (*VectorIndex_SdkV2) SetDirectAccessIndexSpec added in v1.62.1

func (o *VectorIndex_SdkV2) SetDirectAccessIndexSpec(ctx context.Context, v DirectAccessVectorIndexSpec_SdkV2)

SetDirectAccessIndexSpec sets the value of the DirectAccessIndexSpec field in VectorIndex_SdkV2.

func (*VectorIndex_SdkV2) SetStatus added in v1.62.1

SetStatus sets the value of the Status field in VectorIndex_SdkV2.

func (*VectorIndex_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate added in v1.62.1

func (newState *VectorIndex_SdkV2) SyncEffectiveFieldsDuringCreateOrUpdate(plan VectorIndex_SdkV2)

func (*VectorIndex_SdkV2) SyncEffectiveFieldsDuringRead added in v1.62.1

func (newState *VectorIndex_SdkV2) SyncEffectiveFieldsDuringRead(existingState VectorIndex_SdkV2)

func (VectorIndex_SdkV2) ToObjectValue added in v1.62.1

func (o VectorIndex_SdkV2) ToObjectValue(ctx context.Context) basetypes.ObjectValue

TFSDK types cannot implement the ObjectValuable interface directly, as it would otherwise interfere with how the plugin framework retrieves and sets values in state. Thus, VectorIndex_SdkV2 only implements ToObjectValue() and Type().

func (VectorIndex_SdkV2) Type added in v1.62.1

Type implements basetypes.ObjectValuable.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL