Weaviate · Schema
ReplicationReplicateForceDeleteRequest
Specifies the parameters available when force deleting replication operations.
Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The unique identifier (ID) of the replication operation to be forcefully deleted. |
| collection | string | The name of the collection to which the shard being replicated belongs. |
| shard | string | The identifier of the shard involved in the replication operations. |
| node | string | The name of the target node where the replication operations are registered. |
| dryRun | boolean | If true, the operation will not actually delete anything but will return the expected outcome of the deletion. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReplicationReplicateForceDeleteRequest",
"title": "ReplicationReplicateForceDeleteRequest",
"type": "object",
"description": "Specifies the parameters available when force deleting replication operations.",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"description": "The unique identifier (ID) of the replication operation to be forcefully deleted."
},
"collection": {
"type": "string",
"description": "The name of the collection to which the shard being replicated belongs."
},
"shard": {
"type": "string",
"description": "The identifier of the shard involved in the replication operations."
},
"node": {
"type": "string",
"description": "The name of the target node where the replication operations are registered."
},
"dryRun": {
"type": "boolean",
"description": "If true, the operation will not actually delete anything but will return the expected outcome of the deletion.",
"default": false
}
}
}