Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 12 additions & 8 deletions gen/go/qdrant/cloud/cluster/v1/cluster.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions gen/openapiv2/qdrant/cloud/cluster/v1/cluster.swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

112 changes: 52 additions & 60 deletions gen/python/qdrant/cloud/cluster/v1/cluster_pb2.py

Large diffs are not rendered by default.

37 changes: 7 additions & 30 deletions gen/typescript/qdrant/cloud/cluster/v1/cluster_pb.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gen/typescript/qdrant/cloud/cluster/v1/cluster_pb.js

Large diffs are not rendered by default.

12 changes: 8 additions & 4 deletions proto/qdrant/cloud/cluster/v1/cluster.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1064,7 +1064,8 @@ message ClusterState {
// If enabled, you can generate JWT tokens with fine-grained rules for access control.
bool jwt_rbac = 10;
// Specifies whether some operations are supported by cluster or not.
ClusterCapabilities capabilities = 11 [(buf.validate.field).required = true];
// Optional during rollout; will become required once all producers populate it.
ClusterCapabilities capabilities = 11;
}

// ClusterNodeInfo represents a node in a cluster.
Expand Down Expand Up @@ -1214,12 +1215,15 @@ message ClusterBackupSupportInfo {
message ClusterCapabilities {
// Whether the StorageClass used by the cluster supports disk expansion or not.
// Disk scaling will be enabled or disabled based on this for hybrid cloud clusters.
ClusterDiskExpansionSupportInfo disk_expansion = 1 [(buf.validate.field).required = true];
// Optional during rollout; will become required once all producers populate it.
ClusterDiskExpansionSupportInfo disk_expansion = 1;
// Whether it is possible to take a backup for the cluster or not.
// Backup tab will be shown or hidden based on this for hybrid cloud clusters.
ClusterBackupSupportInfo backup = 2 [(buf.validate.field).required = true];
// Optional during rollout; will become required once all producers populate it.
ClusterBackupSupportInfo backup = 2;
// Whether the cluster can be scaled up or down.
ClusterScalabilityInfo scalability_info = 3 [(buf.validate.field).required = true];
// Optional during rollout; will become required once all producers populate it.
ClusterScalabilityInfo scalability_info = 3;
}

// buf:lint:ignore QDRANT_CLOUD_REQUIRED_ENTITY_FIELDS
Expand Down
Loading