Spaces:
Running
Running
File size: 14,210 Bytes
2a0bc63 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 |
# Copyright DataStax, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
from typing import Any, Dict, List, Optional
from dataclasses import dataclass
@dataclass
class DatabaseInfo:
"""
Represents the identifying information for a database,
including the region the connection is established to.
Attributes:
id: the database ID.
region: the ID of the region through which the connection to DB is done.
namespace: the namespace this DB is set to work with.
name: the database name. Not necessarily unique: there can be multiple
databases with the same name.
environment: a label, whose value is one of Environment.PROD, Environment.DEV
or Environment.TEST.
raw_info: the full response from the DevOPS API call to get this info.
Note:
The `raw_info` dictionary usually has a `region` key describing
the default region as configured in the database, which does not
necessarily (for multi-region databases) match the region through
which the connection is established: the latter is the one specified
by the "api endpoint" used for connecting. In other words, for multi-region
databases it is possible that
database_info.region != database_info.raw_info["region"]
Conversely, in case of a DatabaseInfo not obtained through a
connected database, such as when calling `Admin.list_databases()`,
all fields except `environment` (e.g. namespace, region, etc)
are set as found on the DevOps API response directly.
"""
id: str
region: str
namespace: str
name: str
environment: str
raw_info: Optional[Dict[str, Any]]
@dataclass
class AdminDatabaseInfo:
"""
Represents the full response from the DevOps API about a database info.
Most attributes just contain the corresponding part of the raw response:
for this reason, please consult the DevOps API documentation for details.
Attributes:
info: a DatabaseInfo instance for the underlying database.
The DatabaseInfo is a subset of the information described by
AdminDatabaseInfo - in terms of the DevOps API response,
it corresponds to just its "info" subdictionary.
available_actions: the "availableActions" value in the full API response.
cost: the "cost" value in the full API response.
cqlsh_url: the "cqlshUrl" value in the full API response.
creation_time: the "creationTime" value in the full API response.
data_endpoint_url: the "dataEndpointUrl" value in the full API response.
grafana_url: the "grafanaUrl" value in the full API response.
graphql_url: the "graphqlUrl" value in the full API response.
id: the "id" value in the full API response.
last_usage_time: the "lastUsageTime" value in the full API response.
metrics: the "metrics" value in the full API response.
observed_status: the "observedStatus" value in the full API response.
org_id: the "orgId" value in the full API response.
owner_id: the "ownerId" value in the full API response.
status: the "status" value in the full API response.
storage: the "storage" value in the full API response.
termination_time: the "terminationTime" value in the full API response.
raw_info: the full raw response from the DevOps API.
"""
info: DatabaseInfo
available_actions: Optional[List[str]]
cost: Dict[str, Any]
cqlsh_url: str
creation_time: str
data_endpoint_url: str
grafana_url: str
graphql_url: str
id: str
last_usage_time: str
metrics: Dict[str, Any]
observed_status: str
org_id: str
owner_id: str
status: str
storage: Dict[str, Any]
termination_time: str
raw_info: Optional[Dict[str, Any]]
@dataclass
class CollectionInfo:
"""
Represents the identifying information for a collection,
including the information about the database the collection belongs to.
Attributes:
database_info: a DatabaseInfo instance for the underlying database.
namespace: the namespace where the collection is located.
name: collection name. Unique within a namespace.
full_name: identifier for the collection within the database,
in the form "namespace.collection_name".
"""
database_info: DatabaseInfo
namespace: str
name: str
full_name: str
@dataclass
class CollectionDefaultIDOptions:
"""
The "defaultId" component of the collection options.
See the Data API specifications for allowed values.
Attributes:
default_id_type: string such as `objectId`, `uuid6` and so on.
"""
default_id_type: str
def as_dict(self) -> Dict[str, Any]:
"""Recast this object into a dictionary."""
return {"type": self.default_id_type}
@staticmethod
def from_dict(
raw_dict: Optional[Dict[str, Any]]
) -> Optional[CollectionDefaultIDOptions]:
"""
Create an instance of CollectionDefaultIDOptions from a dictionary
such as one from the Data API.
"""
if raw_dict is not None:
return CollectionDefaultIDOptions(default_id_type=raw_dict["type"])
else:
return None
@dataclass
class CollectionVectorServiceOptions:
"""
The "vector.service" component of the collection options.
See the Data API specifications for allowed values.
NOTE: This feature is under current development.
Attributes:
provider: the name of a service provider for embedding calculation.
model_name: the name of a specific model for use by the service.
"""
provider: Optional[str]
model_name: Optional[str]
def as_dict(self) -> Dict[str, Any]:
"""Recast this object into a dictionary."""
return {
k: v
for k, v in {
"provider": self.provider,
"modelName": self.model_name,
}.items()
if v is not None
}
@staticmethod
def from_dict(
raw_dict: Optional[Dict[str, Any]]
) -> Optional[CollectionVectorServiceOptions]:
"""
Create an instance of CollectionVectorServiceOptions from a dictionary
such as one from the Data API.
"""
if raw_dict is not None:
return CollectionVectorServiceOptions(
provider=raw_dict.get("provider"),
model_name=raw_dict.get("modelName"),
)
else:
return None
@dataclass
class CollectionVectorOptions:
"""
The "vector" component of the collection options.
See the Data API specifications for allowed values.
Attributes:
dimension: an optional positive integer, the dimensionality of the vector space.
metric: an optional metric among `VectorMetric.DOT_PRODUCT`,
`VectorMetric.EUCLIDEAN` and `VectorMetric.COSINE`.
service: an optional X object in case a service is configured for the collection.
NOTE: This feature is under current development.
"""
dimension: Optional[int]
metric: Optional[str]
service: Optional[CollectionVectorServiceOptions]
def as_dict(self) -> Dict[str, Any]:
"""Recast this object into a dictionary."""
return {
k: v
for k, v in {
"dimension": self.dimension,
"metric": self.metric,
"service": None if self.service is None else self.service.as_dict(),
}.items()
if v is not None
}
@staticmethod
def from_dict(
raw_dict: Optional[Dict[str, Any]]
) -> Optional[CollectionVectorOptions]:
"""
Create an instance of CollectionVectorOptions from a dictionary
such as one from the Data API.
"""
if raw_dict is not None:
return CollectionVectorOptions(
dimension=raw_dict.get("dimension"),
metric=raw_dict.get("metric"),
service=CollectionVectorServiceOptions.from_dict(
raw_dict.get("service")
),
)
else:
return None
@dataclass
class CollectionOptions:
"""
A structure expressing the options of a collection.
See the Data API specifications for detailed specification and allowed values.
Attributes:
vector: an optional CollectionVectorOptions object.
indexing: an optional dictionary with the "indexing" collection properties.
default_id: an optional CollectionDefaultIDOptions object.
raw_options: the raw response from the Data API for the collection configuration.
"""
vector: Optional[CollectionVectorOptions]
indexing: Optional[Dict[str, Any]]
default_id: Optional[CollectionDefaultIDOptions]
raw_options: Optional[Dict[str, Any]]
def __repr__(self) -> str:
not_null_pieces = [
pc
for pc in [
None if self.vector is None else f"vector={self.vector.__repr__()}",
(
None
if self.indexing is None
else f"indexing={self.indexing.__repr__()}"
),
(
None
if self.default_id is None
else f"default_id={self.default_id.__repr__()}"
),
]
if pc is not None
]
return f"{self.__class__.__name__}({', '.join(not_null_pieces)})"
def as_dict(self) -> Dict[str, Any]:
"""Recast this object into a dictionary."""
return {
k: v
for k, v in {
"vector": None if self.vector is None else self.vector.as_dict(),
"indexing": self.indexing,
"defaultId": (
None if self.default_id is None else self.default_id.as_dict()
),
}.items()
if v is not None
}
def flatten(self) -> Dict[str, Any]:
"""
Recast this object as a flat key-value pair suitable for
use as kwargs in a create_collection method call (including recasts).
"""
_dimension: Optional[int]
_metric: Optional[str]
_indexing: Optional[Dict[str, Any]]
_service: Optional[Dict[str, Any]]
_default_id_type: Optional[str]
if self.vector is not None:
_dimension = self.vector.dimension
_metric = self.vector.metric
if self.vector.service is None:
_service = None
else:
_service = self.vector.service.as_dict()
else:
_dimension = None
_metric = None
_service = None
_indexing = self.indexing
if self.default_id is not None:
_default_id_type = self.default_id.default_id_type
else:
_default_id_type = None
return {
k: v
for k, v in {
"dimension": _dimension,
"metric": _metric,
"service": _service,
"indexing": _indexing,
"default_id_type": _default_id_type,
}.items()
if v is not None
}
@staticmethod
def from_dict(raw_dict: Dict[str, Any]) -> CollectionOptions:
"""
Create an instance of CollectionOptions from a dictionary
such as one from the Data API.
"""
return CollectionOptions(
vector=CollectionVectorOptions.from_dict(raw_dict.get("vector")),
indexing=raw_dict.get("indexing"),
default_id=CollectionDefaultIDOptions.from_dict(raw_dict.get("defaultId")),
raw_options=raw_dict,
)
@dataclass
class CollectionDescriptor:
"""
A structure expressing full description of a collection as the Data API
returns it, i.e. its name and its `options` sub-structure.
Attributes:
name: the name of the collection.
options: a CollectionOptions instance.
raw_descriptor: the raw response from the Data API.
"""
name: str
options: CollectionOptions
raw_descriptor: Optional[Dict[str, Any]]
def __repr__(self) -> str:
return (
f"{self.__class__.__name__}("
f"name={self.name.__repr__()}, "
f"options={self.options.__repr__()})"
)
def as_dict(self) -> Dict[str, Any]:
"""
Recast this object into a dictionary.
Empty `options` will not be returned at all.
"""
return {
k: v
for k, v in {
"name": self.name,
"options": self.options.as_dict(),
}.items()
if v
}
def flatten(self) -> Dict[str, Any]:
"""
Recast this object as a flat key-value pair suitable for
use as kwargs in a create_collection method call (including recasts).
"""
return {
**(self.options.flatten()),
**{"name": self.name},
}
@staticmethod
def from_dict(raw_dict: Dict[str, Any]) -> CollectionDescriptor:
"""
Create an instance of CollectionDescriptor from a dictionary
such as one from the Data API.
"""
return CollectionDescriptor(
name=raw_dict["name"],
options=CollectionOptions.from_dict(raw_dict.get("options") or {}),
raw_descriptor=raw_dict,
)
|