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
395 changes: 261 additions & 134 deletions gen/go/qdrant/cloud/platform/v1/platform.pb.go

Large diffs are not rendered by default.

44 changes: 44 additions & 0 deletions gen/go/qdrant/cloud/platform/v1/platform_grpc.pb.go

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

46 changes: 46 additions & 0 deletions gen/openapiv2/qdrant/cloud/platform/v1/platform.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,38 @@
]
}
},
"/api/platform/v1/accounts/{accountId}/cloud-providers/hybrid/regions": {
"get": {
"summary": "Fetch all cloud provider regions in the account identified by hybrid and cloud provider.\nRequired permissions:\n- read:hybrid_cloud_environments",
"operationId": "PlatformService_ListCloudProviderHybridRegions",
"responses": {
"200": {
"description": "A successful response.",
"schema": {
"$ref": "#/definitions/v1ListCloudProviderHybridRegionsResponse"
}
},
"default": {
"description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/rpcStatus"
}
}
},
"parameters": [
{
"name": "accountId",
"description": "The identifier of the account (in GUID format).\nThis is a required field.",
"in": "path",
"required": true,
"type": "string"
}
],
"tags": [
"PlatformService"
]
}
},
"/api/platform/v1/accounts/{accountId}/cloud-providers/{cloudProviderId}/regions": {
"get": {
"summary": "Fetch all cloud provider regions in the account identified by the given ID and cloud provider.\nRequired permissions:\n- None (authenticated only)",
Expand Down Expand Up @@ -228,6 +260,20 @@
},
"description": "CloudProviderRegion represents a cloud provider region."
},
"v1ListCloudProviderHybridRegionsResponse": {
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"$ref": "#/definitions/v1CloudProviderRegion"
},
"description": "The cloud provider regions."
}
},
"description": "ListCloudProviderHybridRegionsResponse is the response from the ListCloudProviderHybridRegions function."
},
"v1ListCloudProviderRegionsResponse": {
"type": "object",
"properties": {
Expand Down
26 changes: 17 additions & 9 deletions gen/python/qdrant/cloud/platform/v1/platform_pb2.py

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

12 changes: 12 additions & 0 deletions gen/python/qdrant/cloud/platform/v1/platform_pb2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,24 @@ class ListCloudProviderRegionsRequest(_message.Message):
cloud_provider_id: str
def __init__(self, account_id: _Optional[str] = ..., cloud_provider_id: _Optional[str] = ...) -> None: ...

class ListCloudProviderHybridRegionsRequest(_message.Message):
__slots__ = ("account_id",)
ACCOUNT_ID_FIELD_NUMBER: _ClassVar[int]
account_id: str
def __init__(self, account_id: _Optional[str] = ...) -> None: ...

class ListCloudProviderRegionsResponse(_message.Message):
__slots__ = ("items",)
ITEMS_FIELD_NUMBER: _ClassVar[int]
items: _containers.RepeatedCompositeFieldContainer[CloudProviderRegion]
def __init__(self, items: _Optional[_Iterable[_Union[CloudProviderRegion, _Mapping]]] = ...) -> None: ...

class ListCloudProviderHybridRegionsResponse(_message.Message):
__slots__ = ("items",)
ITEMS_FIELD_NUMBER: _ClassVar[int]
items: _containers.RepeatedCompositeFieldContainer[CloudProviderRegion]
def __init__(self, items: _Optional[_Iterable[_Union[CloudProviderRegion, _Mapping]]] = ...) -> None: ...

class CloudProvider(_message.Message):
__slots__ = ("id", "name", "free_tier", "available")
ID_FIELD_NUMBER: _ClassVar[int]
Expand Down
Loading
Loading