Documentation
¶
Index ¶
- Constants
- type AuditLog
- type AuditLogAction
- type AuditLogActor
- type AuditLogActorType
- type AuditLogOwner
- type AuditLogResource
- type CloudflareTunnel
- type CloudflareTunnelConnection
- type CloudflareTunnelTunType
- type CreateIndex
- type Error
- type ErrorData
- type IndexDeleteByIDsParams
- type IndexDeleteByIDsResponseEnvelope
- type IndexDeleteByIDsResponseEnvelopeSuccess
- type IndexDeleteResponseEnvelope
- type IndexDeleteResponseEnvelopeSuccess
- type IndexDeleteResponseUnion
- type IndexDeleteVectorsByID
- type IndexDimensionConfiguration
- type IndexDimensionConfigurationMetric
- type IndexDimensionConfigurationParam
- type IndexGetByIDsParams
- type IndexGetByIDsResponse
- type IndexGetByIDsResponseEnvelope
- type IndexGetByIDsResponseEnvelopeSuccess
- type IndexGetResponseEnvelope
- type IndexGetResponseEnvelopeSuccess
- type IndexInsert
- type IndexInsertParams
- type IndexInsertResponseEnvelope
- type IndexInsertResponseEnvelopeSuccess
- type IndexNewParams
- type IndexNewParamsConfig
- type IndexNewParamsConfigMetric
- type IndexNewParamsConfigPreset
- type IndexNewParamsConfigUnion
- type IndexNewParamsConfigVectorizeIndexPresetConfiguration
- type IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset
- type IndexNewResponseEnvelope
- type IndexNewResponseEnvelopeSuccess
- type IndexQuery
- type IndexQueryMatch
- type IndexQueryParams
- type IndexQueryResponseEnvelope
- type IndexQueryResponseEnvelopeSuccess
- type IndexService
- func (r *IndexService) Delete(ctx context.Context, accountIdentifier string, indexName string, ...) (res *IndexDeleteResponseUnion, err error)
- func (r *IndexService) DeleteByIDs(ctx context.Context, accountIdentifier string, indexName string, ...) (res *IndexDeleteVectorsByID, err error)
- func (r *IndexService) Get(ctx context.Context, accountIdentifier string, indexName string, ...) (res *CreateIndex, err error)
- func (r *IndexService) GetByIDs(ctx context.Context, accountIdentifier string, indexName string, ...) (res *IndexGetByIDsResponse, err error)
- func (r *IndexService) Insert(ctx context.Context, accountIdentifier string, indexName string, ...) (res *IndexInsert, err error)
- func (r *IndexService) List(ctx context.Context, accountIdentifier string, opts ...option.RequestOption) (res *pagination.SinglePage[CreateIndex], err error)
- func (r *IndexService) ListAutoPaging(ctx context.Context, accountIdentifier string, opts ...option.RequestOption) *pagination.SinglePageAutoPager[CreateIndex]
- func (r *IndexService) New(ctx context.Context, accountIdentifier string, body IndexNewParams, ...) (res *CreateIndex, err error)
- func (r *IndexService) Query(ctx context.Context, accountIdentifier string, indexName string, ...) (res *IndexQuery, err error)
- func (r *IndexService) Update(ctx context.Context, accountIdentifier string, indexName string, ...) (res *CreateIndex, err error)
- func (r *IndexService) Upsert(ctx context.Context, accountIdentifier string, indexName string, ...) (res *IndexUpsert, err error)
- type IndexUpdateParams
- type IndexUpdateResponseEnvelope
- type IndexUpdateResponseEnvelopeSuccess
- type IndexUpsert
- type IndexUpsertParams
- type IndexUpsertResponseEnvelope
- type IndexUpsertResponseEnvelopeSuccess
- type Permission
- type PermissionGrant
- type PermissionGrantParam
- type ResponseInfo
- type Role
- type User
- type UserParam
- type UserRole
- type UserRoleParam
- type UserRolesPermissions
- type UserRolesPermissionsParam
- type UserUser
- type UserUserParam
- type VectorizeService
Constants ¶
const AuditLogActorTypeAdmin = shared.AuditLogActorTypeAdmin
This is an alias to an internal value.
const AuditLogActorTypeCloudflare = shared.AuditLogActorTypeCloudflare
This is an alias to an internal value.
const AuditLogActorTypeUser = shared.AuditLogActorTypeUser
This is an alias to an internal value.
const CloudflareTunnelTunTypeCNI = shared.CloudflareTunnelTunTypeCNI
This is an alias to an internal value.
const CloudflareTunnelTunTypeCfdTunnel = shared.CloudflareTunnelTunTypeCfdTunnel
This is an alias to an internal value.
const CloudflareTunnelTunTypeGRE = shared.CloudflareTunnelTunTypeGRE
This is an alias to an internal value.
const CloudflareTunnelTunTypeIPSec = shared.CloudflareTunnelTunTypeIPSec
This is an alias to an internal value.
const CloudflareTunnelTunTypeWARPConnector = shared.CloudflareTunnelTunTypeWARPConnector
This is an alias to an internal value.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AuditLogAction ¶
type AuditLogAction = shared.AuditLogAction
This is an alias to an internal type.
type AuditLogActor ¶
type AuditLogActor = shared.AuditLogActor
This is an alias to an internal type.
type AuditLogActorType ¶
type AuditLogActorType = shared.AuditLogActorType
The type of actor, whether a User, Cloudflare Admin, or an Automated System.
This is an alias to an internal type.
type AuditLogOwner ¶
type AuditLogOwner = shared.AuditLogOwner
This is an alias to an internal type.
type AuditLogResource ¶
type AuditLogResource = shared.AuditLogResource
This is an alias to an internal type.
type CloudflareTunnel ¶
type CloudflareTunnel = shared.CloudflareTunnel
A Cloudflare Tunnel that connects your origin to Cloudflare's edge.
This is an alias to an internal type.
type CloudflareTunnelConnection ¶
type CloudflareTunnelConnection = shared.CloudflareTunnelConnection
This is an alias to an internal type.
type CloudflareTunnelTunType ¶
type CloudflareTunnelTunType = shared.CloudflareTunnelTunType
The type of tunnel.
This is an alias to an internal type.
type CreateIndex ¶
type CreateIndex struct {
Config IndexDimensionConfiguration `json:"config"`
// Specifies the timestamp the resource was created as an ISO8601 string.
CreatedOn string `json:"created_on"`
// Specifies the description of the index.
Description string `json:"description"`
// Specifies the timestamp the resource was modified as an ISO8601 string.
ModifiedOn string `json:"modified_on"`
Name string `json:"name"`
JSON createIndexJSON `json:"-"`
}
func (*CreateIndex) UnmarshalJSON ¶
func (r *CreateIndex) UnmarshalJSON(data []byte) (err error)
type IndexDeleteByIDsParams ¶
type IndexDeleteByIDsParams struct {
// A list of vector identifiers to delete from the index indicated by the path.
IDs param.Field[[]string] `json:"ids"`
}
func (IndexDeleteByIDsParams) MarshalJSON ¶
func (r IndexDeleteByIDsParams) MarshalJSON() (data []byte, err error)
type IndexDeleteByIDsResponseEnvelope ¶
type IndexDeleteByIDsResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result IndexDeleteVectorsByID `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexDeleteByIDsResponseEnvelopeSuccess `json:"success,required"`
JSON indexDeleteByIDsResponseEnvelopeJSON `json:"-"`
}
func (*IndexDeleteByIDsResponseEnvelope) UnmarshalJSON ¶
func (r *IndexDeleteByIDsResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexDeleteByIDsResponseEnvelopeSuccess ¶
type IndexDeleteByIDsResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexDeleteByIDsResponseEnvelopeSuccessTrue IndexDeleteByIDsResponseEnvelopeSuccess = true
)
func (IndexDeleteByIDsResponseEnvelopeSuccess) IsKnown ¶
func (r IndexDeleteByIDsResponseEnvelopeSuccess) IsKnown() bool
type IndexDeleteResponseEnvelope ¶
type IndexDeleteResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result IndexDeleteResponseUnion `json:"result,required"`
// Whether the API call was successful
Success IndexDeleteResponseEnvelopeSuccess `json:"success,required"`
JSON indexDeleteResponseEnvelopeJSON `json:"-"`
}
func (*IndexDeleteResponseEnvelope) UnmarshalJSON ¶
func (r *IndexDeleteResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexDeleteResponseEnvelopeSuccess ¶
type IndexDeleteResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexDeleteResponseEnvelopeSuccessTrue IndexDeleteResponseEnvelopeSuccess = true
)
func (IndexDeleteResponseEnvelopeSuccess) IsKnown ¶
func (r IndexDeleteResponseEnvelopeSuccess) IsKnown() bool
type IndexDeleteResponseUnion ¶
type IndexDeleteResponseUnion interface {
ImplementsVectorizeIndexDeleteResponseUnion()
}
Union satisfied by vectorize.IndexDeleteResponseUnknown or shared.UnionString.
type IndexDeleteVectorsByID ¶
type IndexDeleteVectorsByID struct {
// The count of the vectors successfully deleted.
Count int64 `json:"count"`
// Array of vector identifiers of the vectors that were successfully processed for
// deletion.
IDs []string `json:"ids"`
JSON indexDeleteVectorsByIDJSON `json:"-"`
}
func (*IndexDeleteVectorsByID) UnmarshalJSON ¶
func (r *IndexDeleteVectorsByID) UnmarshalJSON(data []byte) (err error)
type IndexDimensionConfiguration ¶
type IndexDimensionConfiguration struct {
// Specifies the number of dimensions for the index
Dimensions int64 `json:"dimensions,required"`
// Specifies the type of metric to use calculating distance.
Metric IndexDimensionConfigurationMetric `json:"metric,required"`
JSON indexDimensionConfigurationJSON `json:"-"`
}
func (*IndexDimensionConfiguration) UnmarshalJSON ¶
func (r *IndexDimensionConfiguration) UnmarshalJSON(data []byte) (err error)
type IndexDimensionConfigurationMetric ¶
type IndexDimensionConfigurationMetric string
Specifies the type of metric to use calculating distance.
const ( IndexDimensionConfigurationMetricCosine IndexDimensionConfigurationMetric = "cosine" IndexDimensionConfigurationMetricEuclidean IndexDimensionConfigurationMetric = "euclidean" IndexDimensionConfigurationMetricDotProduct IndexDimensionConfigurationMetric = "dot-product" )
func (IndexDimensionConfigurationMetric) IsKnown ¶
func (r IndexDimensionConfigurationMetric) IsKnown() bool
type IndexDimensionConfigurationParam ¶
type IndexDimensionConfigurationParam struct {
// Specifies the number of dimensions for the index
Dimensions param.Field[int64] `json:"dimensions,required"`
// Specifies the type of metric to use calculating distance.
Metric param.Field[IndexDimensionConfigurationMetric] `json:"metric,required"`
}
func (IndexDimensionConfigurationParam) MarshalJSON ¶
func (r IndexDimensionConfigurationParam) MarshalJSON() (data []byte, err error)
type IndexGetByIDsParams ¶
type IndexGetByIDsParams struct {
// A list of vector identifiers to retrieve from the index indicated by the path.
IDs param.Field[[]string] `json:"ids"`
}
func (IndexGetByIDsParams) MarshalJSON ¶
func (r IndexGetByIDsParams) MarshalJSON() (data []byte, err error)
type IndexGetByIDsResponse ¶
type IndexGetByIDsResponse = interface{}
type IndexGetByIDsResponseEnvelope ¶
type IndexGetByIDsResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
// Array of vectors with matching ids.
Result IndexGetByIDsResponse `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexGetByIDsResponseEnvelopeSuccess `json:"success,required"`
JSON indexGetByIDsResponseEnvelopeJSON `json:"-"`
}
func (*IndexGetByIDsResponseEnvelope) UnmarshalJSON ¶
func (r *IndexGetByIDsResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexGetByIDsResponseEnvelopeSuccess ¶
type IndexGetByIDsResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexGetByIDsResponseEnvelopeSuccessTrue IndexGetByIDsResponseEnvelopeSuccess = true
)
func (IndexGetByIDsResponseEnvelopeSuccess) IsKnown ¶
func (r IndexGetByIDsResponseEnvelopeSuccess) IsKnown() bool
type IndexGetResponseEnvelope ¶
type IndexGetResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result CreateIndex `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexGetResponseEnvelopeSuccess `json:"success,required"`
JSON indexGetResponseEnvelopeJSON `json:"-"`
}
func (*IndexGetResponseEnvelope) UnmarshalJSON ¶
func (r *IndexGetResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexGetResponseEnvelopeSuccess ¶
type IndexGetResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexGetResponseEnvelopeSuccessTrue IndexGetResponseEnvelopeSuccess = true
)
func (IndexGetResponseEnvelopeSuccess) IsKnown ¶
func (r IndexGetResponseEnvelopeSuccess) IsKnown() bool
type IndexInsert ¶
type IndexInsert struct {
// Specifies the count of the vectors successfully inserted.
Count int64 `json:"count"`
// Array of vector identifiers of the vectors successfully inserted.
IDs []string `json:"ids"`
JSON indexInsertJSON `json:"-"`
}
func (*IndexInsert) UnmarshalJSON ¶
func (r *IndexInsert) UnmarshalJSON(data []byte) (err error)
type IndexInsertParams ¶
type IndexInsertParams struct {
Body interface{} `json:"body,required"`
}
func (IndexInsertParams) MarshalJSON ¶
func (r IndexInsertParams) MarshalJSON() (data []byte, err error)
type IndexInsertResponseEnvelope ¶
type IndexInsertResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result IndexInsert `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexInsertResponseEnvelopeSuccess `json:"success,required"`
JSON indexInsertResponseEnvelopeJSON `json:"-"`
}
func (*IndexInsertResponseEnvelope) UnmarshalJSON ¶
func (r *IndexInsertResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexInsertResponseEnvelopeSuccess ¶
type IndexInsertResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexInsertResponseEnvelopeSuccessTrue IndexInsertResponseEnvelopeSuccess = true
)
func (IndexInsertResponseEnvelopeSuccess) IsKnown ¶
func (r IndexInsertResponseEnvelopeSuccess) IsKnown() bool
type IndexNewParams ¶
type IndexNewParams struct {
// Specifies the type of configuration to use for the index.
Config param.Field[IndexNewParamsConfigUnion] `json:"config,required"`
Name param.Field[string] `json:"name,required"`
// Specifies the description of the index.
Description param.Field[string] `json:"description"`
}
func (IndexNewParams) MarshalJSON ¶
func (r IndexNewParams) MarshalJSON() (data []byte, err error)
type IndexNewParamsConfig ¶
type IndexNewParamsConfig struct {
// Specifies the preset to use for the index.
Preset param.Field[IndexNewParamsConfigPreset] `json:"preset"`
// Specifies the number of dimensions for the index
Dimensions param.Field[int64] `json:"dimensions"`
// Specifies the type of metric to use calculating distance.
Metric param.Field[IndexNewParamsConfigMetric] `json:"metric"`
}
Specifies the type of configuration to use for the index.
func (IndexNewParamsConfig) MarshalJSON ¶
func (r IndexNewParamsConfig) MarshalJSON() (data []byte, err error)
type IndexNewParamsConfigMetric ¶
type IndexNewParamsConfigMetric string
Specifies the type of metric to use calculating distance.
const ( IndexNewParamsConfigMetricCosine IndexNewParamsConfigMetric = "cosine" IndexNewParamsConfigMetricEuclidean IndexNewParamsConfigMetric = "euclidean" IndexNewParamsConfigMetricDotProduct IndexNewParamsConfigMetric = "dot-product" )
func (IndexNewParamsConfigMetric) IsKnown ¶
func (r IndexNewParamsConfigMetric) IsKnown() bool
type IndexNewParamsConfigPreset ¶
type IndexNewParamsConfigPreset string
Specifies the preset to use for the index.
const ( IndexNewParamsConfigPresetCfBaaiBgeSmallEnV1_5 IndexNewParamsConfigPreset = "@cf/baai/bge-small-en-v1.5" IndexNewParamsConfigPresetCfBaaiBgeBaseEnV1_5 IndexNewParamsConfigPreset = "@cf/baai/bge-base-en-v1.5" IndexNewParamsConfigPresetCfBaaiBgeLargeEnV1_5 IndexNewParamsConfigPreset = "@cf/baai/bge-large-en-v1.5" IndexNewParamsConfigPresetOpenAITextEmbeddingAda002 IndexNewParamsConfigPreset = "openai/text-embedding-ada-002" IndexNewParamsConfigPresetCohereEmbedMultilingualV2_0 IndexNewParamsConfigPreset = "cohere/embed-multilingual-v2.0" )
func (IndexNewParamsConfigPreset) IsKnown ¶
func (r IndexNewParamsConfigPreset) IsKnown() bool
type IndexNewParamsConfigUnion ¶
type IndexNewParamsConfigUnion interface {
// contains filtered or unexported methods
}
Specifies the type of configuration to use for the index.
Satisfied by vectorize.IndexNewParamsConfigVectorizeIndexPresetConfiguration, vectorize.IndexDimensionConfigurationParam, IndexNewParamsConfig.
type IndexNewParamsConfigVectorizeIndexPresetConfiguration ¶
type IndexNewParamsConfigVectorizeIndexPresetConfiguration struct {
// Specifies the preset to use for the index.
Preset param.Field[IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset] `json:"preset,required"`
}
func (IndexNewParamsConfigVectorizeIndexPresetConfiguration) MarshalJSON ¶
func (r IndexNewParamsConfigVectorizeIndexPresetConfiguration) MarshalJSON() (data []byte, err error)
type IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset ¶
type IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset string
Specifies the preset to use for the index.
const ( IndexNewParamsConfigVectorizeIndexPresetConfigurationPresetCfBaaiBgeSmallEnV1_5 IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset = "@cf/baai/bge-small-en-v1.5" IndexNewParamsConfigVectorizeIndexPresetConfigurationPresetCfBaaiBgeBaseEnV1_5 IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset = "@cf/baai/bge-base-en-v1.5" IndexNewParamsConfigVectorizeIndexPresetConfigurationPresetCfBaaiBgeLargeEnV1_5 IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset = "@cf/baai/bge-large-en-v1.5" IndexNewParamsConfigVectorizeIndexPresetConfigurationPresetOpenAITextEmbeddingAda002 IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset = "openai/text-embedding-ada-002" IndexNewParamsConfigVectorizeIndexPresetConfigurationPresetCohereEmbedMultilingualV2_0 IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset = "cohere/embed-multilingual-v2.0" )
func (IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset) IsKnown ¶
func (r IndexNewParamsConfigVectorizeIndexPresetConfigurationPreset) IsKnown() bool
type IndexNewResponseEnvelope ¶
type IndexNewResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result CreateIndex `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexNewResponseEnvelopeSuccess `json:"success,required"`
JSON indexNewResponseEnvelopeJSON `json:"-"`
}
func (*IndexNewResponseEnvelope) UnmarshalJSON ¶
func (r *IndexNewResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexNewResponseEnvelopeSuccess ¶
type IndexNewResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexNewResponseEnvelopeSuccessTrue IndexNewResponseEnvelopeSuccess = true
)
func (IndexNewResponseEnvelopeSuccess) IsKnown ¶
func (r IndexNewResponseEnvelopeSuccess) IsKnown() bool
type IndexQuery ¶
type IndexQuery struct {
// Specifies the count of vectors returned by the search
Count int64 `json:"count"`
// Array of vectors matched by the search
Matches []IndexQueryMatch `json:"matches"`
JSON indexQueryJSON `json:"-"`
}
func (*IndexQuery) UnmarshalJSON ¶
func (r *IndexQuery) UnmarshalJSON(data []byte) (err error)
type IndexQueryMatch ¶
type IndexQueryMatch struct {
// Identifier
ID string `json:"id"`
Metadata interface{} `json:"metadata"`
// The score of the vector according to the index's distance metric
Score float64 `json:"score"`
Values []float64 `json:"values"`
JSON indexQueryMatchJSON `json:"-"`
}
func (*IndexQueryMatch) UnmarshalJSON ¶
func (r *IndexQueryMatch) UnmarshalJSON(data []byte) (err error)
type IndexQueryParams ¶
type IndexQueryParams struct {
// Whether to return the metadata associated with the closest vectors.
ReturnMetadata param.Field[bool] `json:"returnMetadata"`
// Whether to return the values associated with the closest vectors.
ReturnValues param.Field[bool] `json:"returnValues"`
// The number of nearest neighbors to find.
TopK param.Field[float64] `json:"topK"`
// The search vector that will be used to find the nearest neighbors.
Vector param.Field[[]float64] `json:"vector"`
}
func (IndexQueryParams) MarshalJSON ¶
func (r IndexQueryParams) MarshalJSON() (data []byte, err error)
type IndexQueryResponseEnvelope ¶
type IndexQueryResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result IndexQuery `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexQueryResponseEnvelopeSuccess `json:"success,required"`
JSON indexQueryResponseEnvelopeJSON `json:"-"`
}
func (*IndexQueryResponseEnvelope) UnmarshalJSON ¶
func (r *IndexQueryResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexQueryResponseEnvelopeSuccess ¶
type IndexQueryResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexQueryResponseEnvelopeSuccessTrue IndexQueryResponseEnvelopeSuccess = true
)
func (IndexQueryResponseEnvelopeSuccess) IsKnown ¶
func (r IndexQueryResponseEnvelopeSuccess) IsKnown() bool
type IndexService ¶
type IndexService struct {
Options []option.RequestOption
}
IndexService contains methods and other services that help with interacting with the cloudflare API. Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewIndexService method instead.
func NewIndexService ¶
func NewIndexService(opts ...option.RequestOption) (r *IndexService)
NewIndexService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.
func (*IndexService) Delete ¶
func (r *IndexService) Delete(ctx context.Context, accountIdentifier string, indexName string, opts ...option.RequestOption) (res *IndexDeleteResponseUnion, err error)
Deletes the specified Vectorize Index.
func (*IndexService) DeleteByIDs ¶
func (r *IndexService) DeleteByIDs(ctx context.Context, accountIdentifier string, indexName string, body IndexDeleteByIDsParams, opts ...option.RequestOption) (res *IndexDeleteVectorsByID, err error)
Delete a set of vectors from an index by their vector identifiers.
func (*IndexService) Get ¶
func (r *IndexService) Get(ctx context.Context, accountIdentifier string, indexName string, opts ...option.RequestOption) (res *CreateIndex, err error)
Returns the specified Vectorize Index.
func (*IndexService) GetByIDs ¶
func (r *IndexService) GetByIDs(ctx context.Context, accountIdentifier string, indexName string, body IndexGetByIDsParams, opts ...option.RequestOption) (res *IndexGetByIDsResponse, err error)
Get a set of vectors from an index by their vector identifiers.
func (*IndexService) Insert ¶
func (r *IndexService) Insert(ctx context.Context, accountIdentifier string, indexName string, body IndexInsertParams, opts ...option.RequestOption) (res *IndexInsert, err error)
Inserts vectors into the specified index and returns the count of the vectors successfully inserted.
func (*IndexService) List ¶
func (r *IndexService) List(ctx context.Context, accountIdentifier string, opts ...option.RequestOption) (res *pagination.SinglePage[CreateIndex], err error)
Returns a list of Vectorize Indexes
func (*IndexService) ListAutoPaging ¶
func (r *IndexService) ListAutoPaging(ctx context.Context, accountIdentifier string, opts ...option.RequestOption) *pagination.SinglePageAutoPager[CreateIndex]
Returns a list of Vectorize Indexes
func (*IndexService) New ¶
func (r *IndexService) New(ctx context.Context, accountIdentifier string, body IndexNewParams, opts ...option.RequestOption) (res *CreateIndex, err error)
Creates and returns a new Vectorize Index.
func (*IndexService) Query ¶
func (r *IndexService) Query(ctx context.Context, accountIdentifier string, indexName string, body IndexQueryParams, opts ...option.RequestOption) (res *IndexQuery, err error)
Finds vectors closest to a given vector in an index.
func (*IndexService) Update ¶
func (r *IndexService) Update(ctx context.Context, accountIdentifier string, indexName string, body IndexUpdateParams, opts ...option.RequestOption) (res *CreateIndex, err error)
Updates and returns the specified Vectorize Index.
func (*IndexService) Upsert ¶
func (r *IndexService) Upsert(ctx context.Context, accountIdentifier string, indexName string, body IndexUpsertParams, opts ...option.RequestOption) (res *IndexUpsert, err error)
Upserts vectors into the specified index, creating them if they do not exist and returns the count of values and ids successfully inserted.
type IndexUpdateParams ¶
type IndexUpdateParams struct {
// Specifies the description of the index.
Description param.Field[string] `json:"description,required"`
}
func (IndexUpdateParams) MarshalJSON ¶
func (r IndexUpdateParams) MarshalJSON() (data []byte, err error)
type IndexUpdateResponseEnvelope ¶
type IndexUpdateResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result CreateIndex `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexUpdateResponseEnvelopeSuccess `json:"success,required"`
JSON indexUpdateResponseEnvelopeJSON `json:"-"`
}
func (*IndexUpdateResponseEnvelope) UnmarshalJSON ¶
func (r *IndexUpdateResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexUpdateResponseEnvelopeSuccess ¶
type IndexUpdateResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexUpdateResponseEnvelopeSuccessTrue IndexUpdateResponseEnvelopeSuccess = true
)
func (IndexUpdateResponseEnvelopeSuccess) IsKnown ¶
func (r IndexUpdateResponseEnvelopeSuccess) IsKnown() bool
type IndexUpsert ¶
type IndexUpsert struct {
// Specifies the count of the vectors successfully inserted.
Count int64 `json:"count"`
// Array of vector identifiers of the vectors successfully inserted.
IDs []string `json:"ids"`
JSON indexUpsertJSON `json:"-"`
}
func (*IndexUpsert) UnmarshalJSON ¶
func (r *IndexUpsert) UnmarshalJSON(data []byte) (err error)
type IndexUpsertParams ¶
type IndexUpsertParams struct {
Body interface{} `json:"body,required"`
}
func (IndexUpsertParams) MarshalJSON ¶
func (r IndexUpsertParams) MarshalJSON() (data []byte, err error)
type IndexUpsertResponseEnvelope ¶
type IndexUpsertResponseEnvelope struct {
Errors []shared.ResponseInfo `json:"errors,required"`
Messages []shared.ResponseInfo `json:"messages,required"`
Result IndexUpsert `json:"result,required,nullable"`
// Whether the API call was successful
Success IndexUpsertResponseEnvelopeSuccess `json:"success,required"`
JSON indexUpsertResponseEnvelopeJSON `json:"-"`
}
func (*IndexUpsertResponseEnvelope) UnmarshalJSON ¶
func (r *IndexUpsertResponseEnvelope) UnmarshalJSON(data []byte) (err error)
type IndexUpsertResponseEnvelopeSuccess ¶
type IndexUpsertResponseEnvelopeSuccess bool
Whether the API call was successful
const (
IndexUpsertResponseEnvelopeSuccessTrue IndexUpsertResponseEnvelopeSuccess = true
)
func (IndexUpsertResponseEnvelopeSuccess) IsKnown ¶
func (r IndexUpsertResponseEnvelopeSuccess) IsKnown() bool
type PermissionGrant ¶
type PermissionGrant = shared.PermissionGrant
This is an alias to an internal type.
type PermissionGrantParam ¶
type PermissionGrantParam = shared.PermissionGrantParam
This is an alias to an internal type.
type UserRoleParam ¶
type UserRoleParam = shared.UserRoleParam
This is an alias to an internal type.
type UserRolesPermissions ¶
type UserRolesPermissions = shared.UserRolesPermissions
This is an alias to an internal type.
type UserRolesPermissionsParam ¶
type UserRolesPermissionsParam = shared.UserRolesPermissionsParam
This is an alias to an internal type.
type UserUserParam ¶
type UserUserParam = shared.UserUserParam
This is an alias to an internal type.
type VectorizeService ¶
type VectorizeService struct {
Options []option.RequestOption
Indexes *IndexService
}
VectorizeService contains methods and other services that help with interacting with the cloudflare API. Note, unlike clients, this service does not read variables from the environment automatically. You should not instantiate this service directly, and instead use the NewVectorizeService method instead.
func NewVectorizeService ¶
func NewVectorizeService(opts ...option.RequestOption) (r *VectorizeService)
NewVectorizeService generates a new service that applies the given options to each request. These options are applied after the parent client's options (if there is one), and before any request-specific options.