Spaces:
Running
Running
File size: 46,165 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 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 |
# 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
import logging
from typing import Any, cast, Dict, Optional, TypedDict
import httpx
from astrapy.core.api import (
APIRequestError,
api_request,
async_api_request,
raw_api_request,
async_raw_api_request,
)
from astrapy.core.utils import (
http_methods,
to_httpx_timeout,
TimeoutInfoWideType,
)
from astrapy.core.defaults import (
DEFAULT_DEV_OPS_AUTH_HEADER,
DEFAULT_DEV_OPS_API_VERSION,
DEFAULT_DEV_OPS_URL,
)
from astrapy.core.core_types import API_RESPONSE, OPS_API_RESPONSE
logger = logging.getLogger(__name__)
class AstraDBOpsConstructorParams(TypedDict):
token: str
dev_ops_url: Optional[str]
dev_ops_api_version: Optional[str]
caller_name: Optional[str]
caller_version: Optional[str]
class AstraDBOps:
# Initialize the shared httpx clients as class attributes
client = httpx.Client()
async_client = httpx.AsyncClient()
def __init__(
self,
token: str,
dev_ops_url: Optional[str] = None,
dev_ops_api_version: Optional[str] = None,
caller_name: Optional[str] = None,
caller_version: Optional[str] = None,
) -> None:
self.caller_name = caller_name
self.caller_version = caller_version
# constructor params (for the copy() method):
self.constructor_params: AstraDBOpsConstructorParams = {
"token": token,
"dev_ops_url": dev_ops_url,
"dev_ops_api_version": dev_ops_api_version,
"caller_name": caller_name,
"caller_version": caller_version,
}
#
dev_ops_url = (dev_ops_url or DEFAULT_DEV_OPS_URL).strip("/")
dev_ops_api_version = (
dev_ops_api_version or DEFAULT_DEV_OPS_API_VERSION
).strip("/")
self.token = "Bearer " + token
self.base_url = f"{dev_ops_url}/{dev_ops_api_version}"
def __eq__(self, other: Any) -> bool:
if isinstance(other, AstraDBOps):
# work on the "normalized" quantities (stripped, etc)
return all(
[
self.token == other.token,
self.base_url == other.base_url,
self.caller_name == other.caller_name,
self.caller_version == other.caller_version,
]
)
else:
return False
def copy(
self,
*,
token: Optional[str] = None,
dev_ops_url: Optional[str] = None,
dev_ops_api_version: Optional[str] = None,
caller_name: Optional[str] = None,
caller_version: Optional[str] = None,
) -> AstraDBOps:
return AstraDBOps(
token=token or self.constructor_params["token"],
dev_ops_url=dev_ops_url or self.constructor_params["dev_ops_url"],
dev_ops_api_version=dev_ops_api_version
or self.constructor_params["dev_ops_api_version"],
caller_name=caller_name or self.caller_name,
caller_version=caller_version or self.caller_version,
)
def set_caller(
self,
caller_name: Optional[str] = None,
caller_version: Optional[str] = None,
) -> None:
self.caller_name = caller_name
self.caller_version = caller_version
def _ops_request(
self,
method: str,
path: str,
options: Optional[Dict[str, Any]] = None,
json_data: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> httpx.Response:
_options = {} if options is None else options
raw_response = raw_api_request(
client=self.client,
base_url=self.base_url,
auth_header=DEFAULT_DEV_OPS_AUTH_HEADER,
token=self.token,
method=method,
json_data=json_data,
url_params=_options,
path=path,
caller_name=self.caller_name,
caller_version=self.caller_version,
timeout=to_httpx_timeout(timeout_info),
)
return raw_response
async def _async_ops_request(
self,
method: str,
path: str,
options: Optional[Dict[str, Any]] = None,
json_data: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> httpx.Response:
_options = {} if options is None else options
raw_response = await async_raw_api_request(
client=self.async_client,
base_url=self.base_url,
auth_header=DEFAULT_DEV_OPS_AUTH_HEADER,
token=self.token,
method=method,
json_data=json_data,
url_params=_options,
path=path,
caller_name=self.caller_name,
caller_version=self.caller_version,
timeout=to_httpx_timeout(timeout_info),
)
return raw_response
def _json_ops_request(
self,
method: str,
path: str,
options: Optional[Dict[str, Any]] = None,
json_data: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
_options = {} if options is None else options
response = api_request(
client=self.client,
base_url=self.base_url,
auth_header="Authorization",
token=self.token,
method=method,
json_data=json_data,
url_params=_options,
path=path,
skip_error_check=False,
caller_name=None,
caller_version=None,
timeout=to_httpx_timeout(timeout_info),
)
return response
async def _async_json_ops_request(
self,
method: str,
path: str,
options: Optional[Dict[str, Any]] = None,
json_data: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
_options = {} if options is None else options
response = await async_api_request(
client=self.async_client,
base_url=self.base_url,
auth_header="Authorization",
token=self.token,
method=method,
json_data=json_data,
url_params=_options,
path=path,
skip_error_check=False,
caller_name=None,
caller_version=None,
timeout=to_httpx_timeout(timeout_info),
)
return response
def get_databases(
self,
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Retrieve a list of databases.
Args:
options (dict, optional): Additional options for the request.
Returns:
list: a JSON list of dictionaries, one per database.
"""
response = self._json_ops_request(
method=http_methods.GET,
path="/databases",
options=options,
timeout_info=timeout_info,
)
return response
async def async_get_databases(
self,
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Retrieve a list of databases - async version of the method.
Args:
options (dict, optional): Additional options for the request.
Returns:
list: a JSON list of dictionaries, one per database.
"""
response = await self._async_json_ops_request(
method=http_methods.GET,
path="/databases",
options=options,
timeout_info=timeout_info,
)
return response
def create_database(
self,
database_definition: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> Dict[str, str]:
"""
Create a new database.
Args:
database_definition (dict, optional): A dictionary defining the properties of the database to be created.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
dict: A dictionary such as: {"id": the ID of the created database}
Raises an error if not successful.
"""
r = self._ops_request(
method=http_methods.POST,
path="/databases",
json_data=database_definition,
timeout_info=timeout_info,
)
if r.status_code == 201:
return {"id": r.headers["Location"]}
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=database_definition)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
async def async_create_database(
self,
database_definition: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> Dict[str, str]:
"""
Create a new database - async version of the method.
Args:
database_definition (dict, optional): A dictionary defining the properties of the database to be created.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
dict: A dictionary such as: {"id": the ID of the created database}
Raises an error if not successful.
"""
r = await self._async_ops_request(
method=http_methods.POST,
path="/databases",
json_data=database_definition,
timeout_info=timeout_info,
)
if r.status_code == 201:
return {"id": r.headers["Location"]}
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=database_definition)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
def terminate_database(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> str:
"""
Terminate an existing database.
Args:
database (str): The identifier of the database to terminate.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
str: The identifier of the terminated database, or None if termination was unsuccessful.
"""
r = self._ops_request(
method=http_methods.POST,
path=f"/databases/{database}/terminate",
timeout_info=timeout_info,
)
if r.status_code == 202:
return database
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=None)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
return None
async def async_terminate_database(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> str:
"""
Terminate an existing database - async version of the method.
Args:
database (str): The identifier of the database to terminate.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
str: The identifier of the terminated database, or None if termination was unsuccessful.
"""
r = await self._async_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/terminate",
timeout_info=timeout_info,
)
if r.status_code == 202:
return database
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=None)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
return None
def get_database(
self,
database: str = "",
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> API_RESPONSE:
"""
Retrieve details of a specific database.
Args:
database (str): The identifier of the database to retrieve.
options (dict, optional): Additional options for the request.
Returns:
dict: A JSON response containing the details of the specified database.
"""
return cast(
API_RESPONSE,
self._json_ops_request(
method=http_methods.GET,
path=f"/databases/{database}",
options=options,
timeout_info=timeout_info,
),
)
async def async_get_database(
self,
database: str = "",
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> API_RESPONSE:
"""
Retrieve details of a specific database - async version of the method.
Args:
database (str): The identifier of the database to retrieve.
options (dict, optional): Additional options for the request.
Returns:
dict: A JSON response containing the details of the specified database.
"""
return cast(
API_RESPONSE,
await self._async_json_ops_request(
method=http_methods.GET,
path=f"/databases/{database}",
options=options,
timeout_info=timeout_info,
),
)
def create_keyspace(
self,
database: str = "",
keyspace: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> Dict[str, str]:
"""
Create a keyspace in a specified database.
Args:
database (str): The identifier of the database where the keyspace will be created.
keyspace (str): The name of the keyspace to create.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
{"ok": 1} if successful. Raises errors otherwise.
"""
r = self._ops_request(
method=http_methods.POST,
path=f"/databases/{database}/keyspaces/{keyspace}",
timeout_info=timeout_info,
)
if r.status_code == 201:
return {"name": keyspace}
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=None)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
async def async_create_keyspace(
self,
database: str = "",
keyspace: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> Dict[str, str]:
"""
Create a keyspace in a specified database - async version of the method.
Args:
database (str): The identifier of the database where the keyspace will be created.
keyspace (str): The name of the keyspace to create.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
{"ok": 1} if successful. Raises errors otherwise.
"""
r = await self._async_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/keyspaces/{keyspace}",
timeout_info=timeout_info,
)
if r.status_code == 201:
return {"name": keyspace}
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=None)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
def delete_keyspace(
self,
database: str = "",
keyspace: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> str:
"""
Delete a keyspace from a database
Args:
database (str): The identifier of the database to terminate.
keyspace (str): The name of the keyspace to create.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
str: The identifier of the deleted keyspace. Otherwise raises an error.
"""
r = self._ops_request(
method=http_methods.DELETE,
path=f"/databases/{database}/keyspaces/{keyspace}",
timeout_info=timeout_info,
)
if r.status_code == 202:
return keyspace
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=None)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
async def async_delete_keyspace(
self,
database: str = "",
keyspace: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> str:
"""
Delete a keyspace from a database - async version of the method.
Args:
database (str): The identifier of the database to terminate.
keyspace (str): The name of the keyspace to create.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
str: The identifier of the deleted keyspace. Otherwise raises an error.
"""
r = await self._async_ops_request(
method=http_methods.DELETE,
path=f"/databases/{database}/keyspaces/{keyspace}",
timeout_info=timeout_info,
)
if r.status_code == 202:
return keyspace
elif r.status_code >= 400 and r.status_code < 500:
raise APIRequestError(r, payload=None)
else:
raise ValueError(f"[HTTP {r.status_code}] {r.text}")
def park_database(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Park a specific database, making it inactive.
Args:
database (str): The identifier of the database to park.
Returns:
dict: The response from the server after parking the database.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/park",
timeout_info=timeout_info,
)
def unpark_database(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Unpark a specific database, making it active again.
Args:
database (str): The identifier of the database to unpark.
Returns:
dict: The response from the server after unparking the database.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/unpark",
timeout_info=timeout_info,
)
def resize_database(
self,
database: str = "",
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Resize a specific database according to provided options.
Args:
database (str): The identifier of the database to resize.
options (dict, optional): The specifications for the resize operation.
Returns:
dict: The response from the server after the resize operation.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/resize",
json_data=options,
timeout_info=timeout_info,
)
def reset_database_password(
self,
database: str = "",
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Reset the password for a specific database.
Args:
database (str): The identifier of the database for which to reset the password.
options (dict, optional): Additional options for the password reset.
Returns:
dict: The response from the server after resetting the password.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/resetPassword",
json_data=options,
timeout_info=timeout_info,
)
def get_secure_bundle(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a secure bundle URL for a specific database.
Args:
database (str): The identifier of the database for which to get the secure bundle.
Returns:
dict: The secure bundle URL and related information.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/secureBundleURL",
timeout_info=timeout_info,
)
def get_datacenters(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Get a list of datacenters associated with a specific database.
Args:
database (str): The identifier of the database for which to list datacenters.
Returns:
dict: A list of datacenters and their details.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/databases/{database}/datacenters",
timeout_info=timeout_info,
)
def create_datacenter(
self,
database: str = "",
options: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Create a new datacenter for a specific database.
Args:
database (str): The identifier of the database for which to create the datacenter.
options (dict, optional): Specifications for the new datacenter.
Returns:
dict: The response from the server after creating the datacenter.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/datacenters",
json_data=options,
timeout_info=timeout_info,
)
def terminate_datacenter(
self,
database: str = "",
datacenter: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Terminate a specific datacenter in a database.
Args:
database (str): The identifier of the database containing the datacenter.
datacenter (str): The identifier of the datacenter to terminate.
Returns:
dict: The response from the server after terminating the datacenter.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/datacenters/{datacenter}/terminate",
timeout_info=timeout_info,
)
def get_access_list(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve the access list for a specific database.
Args:
database (str): The identifier of the database for which to get the access list.
Returns:
dict: The current access list for the database.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/databases/{database}/access-list",
timeout_info=timeout_info,
)
def replace_access_list(
self,
database: str = "",
access_list: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Replace the entire access list for a specific database.
Args:
database (str): The identifier of the database for which to replace the access list.
access_list (dict): The new access list to be set.
Returns:
dict: The response from the server after replacing the access list.
"""
return self._json_ops_request(
method=http_methods.PUT,
path=f"/databases/{database}/access-list",
json_data=access_list,
timeout_info=timeout_info,
)
def update_access_list(
self,
database: str = "",
access_list: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Update the access list for a specific database.
Args:
database (str): The identifier of the database for which to update the access list.
access_list (dict): The updates to be applied to the access list.
Returns:
dict: The response from the server after updating the access list.
"""
return self._json_ops_request(
method=http_methods.PATCH,
path=f"/databases/{database}/access-list",
json_data=access_list,
timeout_info=timeout_info,
)
def add_access_list_address(
self,
database: str = "",
address: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Add a new address to the access list for a specific database.
Args:
database (str): The identifier of the database for which to add the address.
address (dict): The address details to add to the access list.
Returns:
dict: The response from the server after adding the address.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/databases/{database}/access-list",
json_data=address,
timeout_info=timeout_info,
)
def delete_access_list(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Delete the access list for a specific database.
Args:
database (str): The identifier of the database for which to delete the access list.
Returns:
dict: The response from the server after deleting the access list.
"""
return self._json_ops_request(
method=http_methods.DELETE,
path=f"/databases/{database}/access-list",
timeout_info=timeout_info,
)
def get_private_link(
self, database: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve the private link information for a specified database.
Args:
database (str): The identifier of the database.
Returns:
dict: The private link information for the database.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/organizations/clusters/{database}/private-link",
timeout_info=timeout_info,
)
def get_datacenter_private_link(
self,
database: str = "",
datacenter: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Retrieve the private link information for a specific datacenter in a database.
Args:
database (str): The identifier of the database.
datacenter (str): The identifier of the datacenter.
Returns:
dict: The private link information for the specified datacenter.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/organizations/clusters/{database}/datacenters/{datacenter}/private-link",
timeout_info=timeout_info,
)
def create_datacenter_private_link(
self,
database: str = "",
datacenter: str = "",
private_link: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Create a private link for a specific datacenter in a database.
Args:
database (str): The identifier of the database.
datacenter (str): The identifier of the datacenter.
private_link (dict): The private link configuration details.
Returns:
dict: The response from the server after creating the private link.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/organizations/clusters/{database}/datacenters/{datacenter}/private-link",
json_data=private_link,
timeout_info=timeout_info,
)
def create_datacenter_endpoint(
self,
database: str = "",
datacenter: str = "",
endpoint: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Create an endpoint for a specific datacenter in a database.
Args:
database (str): The identifier of the database.
datacenter (str): The identifier of the datacenter.
endpoint (dict): The endpoint configuration details.
Returns:
dict: The response from the server after creating the endpoint.
"""
return self._json_ops_request(
method=http_methods.POST,
path=f"/organizations/clusters/{database}/datacenters/{datacenter}/endpoint",
json_data=endpoint,
timeout_info=timeout_info,
)
def update_datacenter_endpoint(
self,
database: str = "",
datacenter: str = "",
endpoint: Dict[str, Any] = {},
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Update an existing endpoint for a specific datacenter in a database.
Args:
database (str): The identifier of the database.
datacenter (str): The identifier of the datacenter.
endpoint (dict): The updated endpoint configuration details.
Returns:
dict: The response from the server after updating the endpoint.
"""
return self._json_ops_request(
method=http_methods.PUT,
path=f"/organizations/clusters/{database}/datacenters/{datacenter}/endpoints/{endpoint['id']}",
json_data=endpoint,
timeout_info=timeout_info,
)
def get_datacenter_endpoint(
self,
database: str = "",
datacenter: str = "",
endpoint: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Retrieve information about a specific endpoint in a datacenter of a database.
Args:
database (str): The identifier of the database.
datacenter (str): The identifier of the datacenter.
endpoint (str): The identifier of the endpoint.
Returns:
dict: The endpoint information for the specified datacenter.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/organizations/clusters/{database}/datacenters/{datacenter}/endpoints/{endpoint}",
timeout_info=timeout_info,
)
def delete_datacenter_endpoint(
self,
database: str = "",
datacenter: str = "",
endpoint: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Delete a specific endpoint in a datacenter of a database.
Args:
database (str): The identifier of the database.
datacenter (str): The identifier of the datacenter.
endpoint (str): The identifier of the endpoint to delete.
Returns:
dict: The response from the server after deleting the endpoint.
"""
return self._json_ops_request(
method=http_methods.DELETE,
path=f"/organizations/clusters/{database}/datacenters/{datacenter}/endpoints/{endpoint}",
timeout_info=timeout_info,
)
def get_available_classic_regions(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a list of available classic regions.
Returns:
dict: A list of available classic regions.
"""
return self._json_ops_request(
method=http_methods.GET, path="/availableRegions", timeout_info=timeout_info
)
def get_available_regions(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a list of available regions for serverless deployment.
Returns:
dict: A list of available regions for serverless deployment.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/regions/serverless",
timeout_info=timeout_info,
)
def get_roles(self, timeout_info: TimeoutInfoWideType = None) -> OPS_API_RESPONSE:
"""
Retrieve a list of roles within the organization.
Returns:
dict: A list of roles within the organization.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/organizations/roles",
timeout_info=timeout_info,
)
def create_role(
self,
role_definition: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Create a new role within the organization.
Args:
role_definition (dict, optional): The definition of the role to be created.
Returns:
dict: The response from the server after creating the role.
"""
return self._json_ops_request(
method=http_methods.POST,
path="/organizations/roles",
json_data=role_definition,
timeout_info=timeout_info,
)
def get_role(
self, role: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve details of a specific role within the organization.
Args:
role (str): The identifier of the role.
Returns:
dict: The details of the specified role.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/organizations/roles/{role}",
timeout_info=timeout_info,
)
def update_role(
self,
role: str = "",
role_definition: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Update the definition of an existing role within the organization.
Args:
role (str): The identifier of the role to update.
role_definition (dict, optional): The new definition of the role.
Returns:
dict: The response from the server after updating the role.
"""
return self._json_ops_request(
method=http_methods.PUT,
path=f"/organizations/roles/{role}",
json_data=role_definition,
timeout_info=timeout_info,
)
def delete_role(
self, role: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Delete a specific role from the organization.
Args:
role (str): The identifier of the role to delete.
Returns:
dict: The response from the server after deleting the role.
"""
return self._json_ops_request(
method=http_methods.DELETE,
path=f"/organizations/roles/{role}",
timeout_info=timeout_info,
)
def invite_user(
self,
user_definition: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Invite a new user to the organization.
Args:
user_definition (dict, optional): The definition of the user to be invited.
Returns:
dict: The response from the server after inviting the user.
"""
return self._json_ops_request(
method=http_methods.PUT,
path="/organizations/users",
json_data=user_definition,
timeout_info=timeout_info,
)
def get_users(self, timeout_info: TimeoutInfoWideType = None) -> OPS_API_RESPONSE:
"""
Retrieve a list of users within the organization.
Returns:
dict: A list of users within the organization.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/organizations/users",
timeout_info=timeout_info,
)
def get_user(
self, user: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve details of a specific user within the organization.
Args:
user (str): The identifier of the user.
Returns:
dict: The details of the specified user.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/organizations/users/{user}",
timeout_info=timeout_info,
)
def remove_user(
self, user: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Remove a user from the organization.
Args:
user (str): The identifier of the user to remove.
Returns:
dict: The response from the server after removing the user.
"""
return self._json_ops_request(
method=http_methods.DELETE,
path=f"/organizations/users/{user}",
timeout_info=timeout_info,
)
def update_user_roles(
self,
user: str = "",
roles: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Update the roles assigned to a specific user within the organization.
Args:
user (str): The identifier of the user.
roles (list, optional): The list of new roles to assign to the user.
Returns:
dict: The response from the server after updating the user's roles.
"""
return self._json_ops_request(
method=http_methods.PUT,
path=f"/organizations/users/{user}/roles",
json_data=roles,
timeout_info=timeout_info,
)
def get_clients(self, timeout_info: TimeoutInfoWideType = None) -> OPS_API_RESPONSE:
"""
Retrieve a list of client IDs and secrets associated with the organization.
Returns:
dict: A list of client IDs and their associated secrets.
"""
return self._json_ops_request(
method=http_methods.GET, path="/clientIdSecrets", timeout_info=timeout_info
)
def create_token(
self,
roles: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Create a new token with specific roles.
Args:
roles (dict, optional): The roles to associate with the token:
{"roles": ["<roleId>"]}
Returns:
dict: The response from the server after creating the token.
"""
return self._json_ops_request(
method=http_methods.POST,
path="/clientIdSecrets",
json_data=roles,
timeout_info=timeout_info,
)
def delete_token(
self, token: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Delete a specific token.
Args:
token (str): The identifier of the token to delete.
Returns:
dict: The response from the server after deleting the token.
"""
return self._json_ops_request(
method=http_methods.DELETE,
path=f"/clientIdSecret/{token}",
timeout_info=timeout_info,
)
def get_organization(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve details of the current organization.
Returns:
dict: The details of the organization.
"""
return self._json_ops_request(
method=http_methods.GET, path="/currentOrg", timeout_info=timeout_info
)
def get_access_lists(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a list of access lists for the organization.
Returns:
dict: A list of access lists.
"""
return self._json_ops_request(
method=http_methods.GET, path="/access-lists", timeout_info=timeout_info
)
def get_access_list_template(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a template for creating an access list.
Returns:
dict: An access list template.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/access-list/template",
timeout_info=timeout_info,
)
def validate_access_list(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Validate the configuration of the access list.
Returns:
dict: The validation result of the access list configuration.
"""
return self._json_ops_request(
method=http_methods.POST,
path="/access-list/validate",
timeout_info=timeout_info,
)
def get_private_links(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a list of private link connections for the organization.
Returns:
dict: A list of private link connections.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/organizations/private-link",
timeout_info=timeout_info,
)
def get_streaming_providers(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a list of streaming service providers.
Returns:
dict: A list of available streaming service providers.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/streaming/providers",
timeout_info=timeout_info,
)
def get_streaming_tenants(
self, timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve a list of streaming tenants.
Returns:
dict: A list of streaming tenants and their details.
"""
return self._json_ops_request(
method=http_methods.GET,
path="/streaming/tenants",
timeout_info=timeout_info,
)
def create_streaming_tenant(
self,
tenant: Optional[Dict[str, Any]] = None,
timeout_info: TimeoutInfoWideType = None,
) -> OPS_API_RESPONSE:
"""
Create a new streaming tenant.
Args:
tenant (dict, optional): The configuration details for the new streaming tenant.
Returns:
dict: The response from the server after creating the streaming tenant.
"""
return self._json_ops_request(
method=http_methods.POST,
path="/streaming/tenants",
json_data=tenant,
timeout_info=timeout_info,
)
def delete_streaming_tenant(
self,
tenant: str = "",
cluster: str = "",
timeout_info: TimeoutInfoWideType = None,
) -> None:
"""
Delete a specific streaming tenant from a cluster.
Args:
tenant (str): The identifier of the tenant to delete.
cluster (str): The identifier of the cluster from which the tenant is to be deleted.
timeout_info: either a float (seconds) or a TimeoutInfo dict (see)
Returns:
dict: The response from the server after deleting the streaming tenant.
"""
r = self._ops_request(
method=http_methods.DELETE,
path=f"/streaming/tenants/{tenant}/clusters/{cluster}",
timeout_info=timeout_info,
)
if r.status_code == 202: # 'Accepted'
return None
else:
raise ValueError(r.text)
def get_streaming_tenant(
self, tenant: str = "", timeout_info: TimeoutInfoWideType = None
) -> OPS_API_RESPONSE:
"""
Retrieve information about the limits and usage of a specific streaming tenant.
Args:
tenant (str): The identifier of the streaming tenant.
Returns:
dict: Details of the specified streaming tenant, including limits and current usage.
"""
return self._json_ops_request(
method=http_methods.GET,
path=f"/streaming/tenants/{tenant}/limits",
timeout_info=timeout_info,
)
|