scope-client 1.4.991__py3-none-any.whl → 1.4.993__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scope_client/api_bindings/__init__.py +2 -0
- scope_client/api_bindings/api/data_plane_associations_v1_api.py +34 -0
- scope_client/api_bindings/api/data_planes_v1_api.py +18 -1
- scope_client/api_bindings/models/__init__.py +2 -0
- scope_client/api_bindings/models/data_plane.py +8 -2
- scope_client/api_bindings/models/data_plane_capabilities.py +87 -0
- scope_client/api_bindings/models/patch_data_plane.py +15 -4
- scope_client/api_bindings/models/patch_data_plane_capabilities.py +92 -0
- scope_client/api_bindings/models/post_data_plane.py +9 -3
- scope_client/api_bindings/models/sensitive_data_plane.py +7 -1
- {scope_client-1.4.991.dist-info → scope_client-1.4.993.dist-info}/METADATA +1 -1
- {scope_client-1.4.991.dist-info → scope_client-1.4.993.dist-info}/RECORD +14 -12
- {scope_client-1.4.991.dist-info → scope_client-1.4.993.dist-info}/WHEEL +1 -1
- {scope_client-1.4.991.dist-info → scope_client-1.4.993.dist-info}/top_level.txt +0 -0
|
@@ -98,6 +98,7 @@ from scope_client.api_bindings.models.d_type import DType
|
|
|
98
98
|
from scope_client.api_bindings.models.data_plane import DataPlane
|
|
99
99
|
from scope_client.api_bindings.models.data_plane_association import DataPlaneAssociation
|
|
100
100
|
from scope_client.api_bindings.models.data_plane_association_sort import DataPlaneAssociationSort
|
|
101
|
+
from scope_client.api_bindings.models.data_plane_capabilities import DataPlaneCapabilities
|
|
101
102
|
from scope_client.api_bindings.models.data_plane_sort import DataPlaneSort
|
|
102
103
|
from scope_client.api_bindings.models.data_result_filter import DataResultFilter
|
|
103
104
|
from scope_client.api_bindings.models.data_result_filter_op import DataResultFilterOp
|
|
@@ -193,6 +194,7 @@ from scope_client.api_bindings.models.pagination import Pagination
|
|
|
193
194
|
from scope_client.api_bindings.models.patch_alert_rule import PatchAlertRule
|
|
194
195
|
from scope_client.api_bindings.models.patch_connector_spec import PatchConnectorSpec
|
|
195
196
|
from scope_client.api_bindings.models.patch_data_plane import PatchDataPlane
|
|
197
|
+
from scope_client.api_bindings.models.patch_data_plane_capabilities import PatchDataPlaneCapabilities
|
|
196
198
|
from scope_client.api_bindings.models.patch_dataset import PatchDataset
|
|
197
199
|
from scope_client.api_bindings.models.patch_dataset_locator import PatchDatasetLocator
|
|
198
200
|
from scope_client.api_bindings.models.patch_group import PatchGroup
|
|
@@ -660,6 +660,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
660
660
|
project_id: StrictStr,
|
|
661
661
|
sort: Annotated[Optional[DataPlaneAssociationSort], Field(description="Override the field used for sorting the returned list. Optional.")] = None,
|
|
662
662
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
663
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
663
664
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
664
665
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
665
666
|
_request_timeout: Union[
|
|
@@ -685,6 +686,8 @@ class DataPlaneAssociationsV1Api:
|
|
|
685
686
|
:type sort: DataPlaneAssociationSort
|
|
686
687
|
:param order: Override the sort order used. Optional.
|
|
687
688
|
:type order: SortOrder
|
|
689
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
690
|
+
:type gen_ai_enabled: bool
|
|
688
691
|
:param page: The page to return starting from 1 up to total_pages.
|
|
689
692
|
:type page: int
|
|
690
693
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -715,6 +718,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
715
718
|
project_id=project_id,
|
|
716
719
|
sort=sort,
|
|
717
720
|
order=order,
|
|
721
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
718
722
|
page=page,
|
|
719
723
|
page_size=page_size,
|
|
720
724
|
_request_auth=_request_auth,
|
|
@@ -746,6 +750,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
746
750
|
project_id: StrictStr,
|
|
747
751
|
sort: Annotated[Optional[DataPlaneAssociationSort], Field(description="Override the field used for sorting the returned list. Optional.")] = None,
|
|
748
752
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
753
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
749
754
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
750
755
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
751
756
|
_request_timeout: Union[
|
|
@@ -771,6 +776,8 @@ class DataPlaneAssociationsV1Api:
|
|
|
771
776
|
:type sort: DataPlaneAssociationSort
|
|
772
777
|
:param order: Override the sort order used. Optional.
|
|
773
778
|
:type order: SortOrder
|
|
779
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
780
|
+
:type gen_ai_enabled: bool
|
|
774
781
|
:param page: The page to return starting from 1 up to total_pages.
|
|
775
782
|
:type page: int
|
|
776
783
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -801,6 +808,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
801
808
|
project_id=project_id,
|
|
802
809
|
sort=sort,
|
|
803
810
|
order=order,
|
|
811
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
804
812
|
page=page,
|
|
805
813
|
page_size=page_size,
|
|
806
814
|
_request_auth=_request_auth,
|
|
@@ -832,6 +840,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
832
840
|
project_id: StrictStr,
|
|
833
841
|
sort: Annotated[Optional[DataPlaneAssociationSort], Field(description="Override the field used for sorting the returned list. Optional.")] = None,
|
|
834
842
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
843
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
835
844
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
836
845
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
837
846
|
_request_timeout: Union[
|
|
@@ -857,6 +866,8 @@ class DataPlaneAssociationsV1Api:
|
|
|
857
866
|
:type sort: DataPlaneAssociationSort
|
|
858
867
|
:param order: Override the sort order used. Optional.
|
|
859
868
|
:type order: SortOrder
|
|
869
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
870
|
+
:type gen_ai_enabled: bool
|
|
860
871
|
:param page: The page to return starting from 1 up to total_pages.
|
|
861
872
|
:type page: int
|
|
862
873
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -887,6 +898,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
887
898
|
project_id=project_id,
|
|
888
899
|
sort=sort,
|
|
889
900
|
order=order,
|
|
901
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
890
902
|
page=page,
|
|
891
903
|
page_size=page_size,
|
|
892
904
|
_request_auth=_request_auth,
|
|
@@ -913,6 +925,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
913
925
|
project_id,
|
|
914
926
|
sort,
|
|
915
927
|
order,
|
|
928
|
+
gen_ai_enabled,
|
|
916
929
|
page,
|
|
917
930
|
page_size,
|
|
918
931
|
_request_auth,
|
|
@@ -947,6 +960,10 @@ class DataPlaneAssociationsV1Api:
|
|
|
947
960
|
|
|
948
961
|
_query_params.append(('order', order.value))
|
|
949
962
|
|
|
963
|
+
if gen_ai_enabled is not None:
|
|
964
|
+
|
|
965
|
+
_query_params.append(('gen_ai_enabled', gen_ai_enabled))
|
|
966
|
+
|
|
950
967
|
if page is not None:
|
|
951
968
|
|
|
952
969
|
_query_params.append(('page', page))
|
|
@@ -1000,6 +1017,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1000
1017
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
1001
1018
|
include_projects: Annotated[Optional[StrictBool], Field(description="Include project details in the response. Defaults to false.")] = None,
|
|
1002
1019
|
include_data_planes: Annotated[Optional[StrictBool], Field(description="Include data plane details in the response. Defaults to false.")] = None,
|
|
1020
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
1003
1021
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
1004
1022
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
1005
1023
|
_request_timeout: Union[
|
|
@@ -1029,6 +1047,8 @@ class DataPlaneAssociationsV1Api:
|
|
|
1029
1047
|
:type include_projects: bool
|
|
1030
1048
|
:param include_data_planes: Include data plane details in the response. Defaults to false.
|
|
1031
1049
|
:type include_data_planes: bool
|
|
1050
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
1051
|
+
:type gen_ai_enabled: bool
|
|
1032
1052
|
:param page: The page to return starting from 1 up to total_pages.
|
|
1033
1053
|
:type page: int
|
|
1034
1054
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -1061,6 +1081,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1061
1081
|
order=order,
|
|
1062
1082
|
include_projects=include_projects,
|
|
1063
1083
|
include_data_planes=include_data_planes,
|
|
1084
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
1064
1085
|
page=page,
|
|
1065
1086
|
page_size=page_size,
|
|
1066
1087
|
_request_auth=_request_auth,
|
|
@@ -1094,6 +1115,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1094
1115
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
1095
1116
|
include_projects: Annotated[Optional[StrictBool], Field(description="Include project details in the response. Defaults to false.")] = None,
|
|
1096
1117
|
include_data_planes: Annotated[Optional[StrictBool], Field(description="Include data plane details in the response. Defaults to false.")] = None,
|
|
1118
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
1097
1119
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
1098
1120
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
1099
1121
|
_request_timeout: Union[
|
|
@@ -1123,6 +1145,8 @@ class DataPlaneAssociationsV1Api:
|
|
|
1123
1145
|
:type include_projects: bool
|
|
1124
1146
|
:param include_data_planes: Include data plane details in the response. Defaults to false.
|
|
1125
1147
|
:type include_data_planes: bool
|
|
1148
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
1149
|
+
:type gen_ai_enabled: bool
|
|
1126
1150
|
:param page: The page to return starting from 1 up to total_pages.
|
|
1127
1151
|
:type page: int
|
|
1128
1152
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -1155,6 +1179,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1155
1179
|
order=order,
|
|
1156
1180
|
include_projects=include_projects,
|
|
1157
1181
|
include_data_planes=include_data_planes,
|
|
1182
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
1158
1183
|
page=page,
|
|
1159
1184
|
page_size=page_size,
|
|
1160
1185
|
_request_auth=_request_auth,
|
|
@@ -1188,6 +1213,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1188
1213
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
1189
1214
|
include_projects: Annotated[Optional[StrictBool], Field(description="Include project details in the response. Defaults to false.")] = None,
|
|
1190
1215
|
include_data_planes: Annotated[Optional[StrictBool], Field(description="Include data plane details in the response. Defaults to false.")] = None,
|
|
1216
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
1191
1217
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
1192
1218
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
1193
1219
|
_request_timeout: Union[
|
|
@@ -1217,6 +1243,8 @@ class DataPlaneAssociationsV1Api:
|
|
|
1217
1243
|
:type include_projects: bool
|
|
1218
1244
|
:param include_data_planes: Include data plane details in the response. Defaults to false.
|
|
1219
1245
|
:type include_data_planes: bool
|
|
1246
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
1247
|
+
:type gen_ai_enabled: bool
|
|
1220
1248
|
:param page: The page to return starting from 1 up to total_pages.
|
|
1221
1249
|
:type page: int
|
|
1222
1250
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -1249,6 +1277,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1249
1277
|
order=order,
|
|
1250
1278
|
include_projects=include_projects,
|
|
1251
1279
|
include_data_planes=include_data_planes,
|
|
1280
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
1252
1281
|
page=page,
|
|
1253
1282
|
page_size=page_size,
|
|
1254
1283
|
_request_auth=_request_auth,
|
|
@@ -1277,6 +1306,7 @@ class DataPlaneAssociationsV1Api:
|
|
|
1277
1306
|
order,
|
|
1278
1307
|
include_projects,
|
|
1279
1308
|
include_data_planes,
|
|
1309
|
+
gen_ai_enabled,
|
|
1280
1310
|
page,
|
|
1281
1311
|
page_size,
|
|
1282
1312
|
_request_auth,
|
|
@@ -1319,6 +1349,10 @@ class DataPlaneAssociationsV1Api:
|
|
|
1319
1349
|
|
|
1320
1350
|
_query_params.append(('include_data_planes', include_data_planes))
|
|
1321
1351
|
|
|
1352
|
+
if gen_ai_enabled is not None:
|
|
1353
|
+
|
|
1354
|
+
_query_params.append(('gen_ai_enabled', gen_ai_enabled))
|
|
1355
|
+
|
|
1322
1356
|
if page is not None:
|
|
1323
1357
|
|
|
1324
1358
|
_query_params.append(('page', page))
|
|
@@ -16,7 +16,7 @@ from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
|
16
16
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
17
|
from typing_extensions import Annotated
|
|
18
18
|
|
|
19
|
-
from pydantic import Field, StrictStr
|
|
19
|
+
from pydantic import Field, StrictBool, StrictStr
|
|
20
20
|
from typing import Optional
|
|
21
21
|
from typing_extensions import Annotated
|
|
22
22
|
from scope_client.api_bindings.models.data_plane import DataPlane
|
|
@@ -595,6 +595,7 @@ class DataPlanesV1Api:
|
|
|
595
595
|
sort: Annotated[Optional[DataPlaneSort], Field(description="Override the field used for sorting the returned list. Optional.")] = None,
|
|
596
596
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
597
597
|
name: Annotated[Optional[StrictStr], Field(description="Search term to filter workspaces by name.")] = None,
|
|
598
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
598
599
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
599
600
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
600
601
|
_request_timeout: Union[
|
|
@@ -622,6 +623,8 @@ class DataPlanesV1Api:
|
|
|
622
623
|
:type order: SortOrder
|
|
623
624
|
:param name: Search term to filter workspaces by name.
|
|
624
625
|
:type name: str
|
|
626
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
627
|
+
:type gen_ai_enabled: bool
|
|
625
628
|
:param page: The page to return starting from 1 up to total_pages.
|
|
626
629
|
:type page: int
|
|
627
630
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -653,6 +656,7 @@ class DataPlanesV1Api:
|
|
|
653
656
|
sort=sort,
|
|
654
657
|
order=order,
|
|
655
658
|
name=name,
|
|
659
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
656
660
|
page=page,
|
|
657
661
|
page_size=page_size,
|
|
658
662
|
_request_auth=_request_auth,
|
|
@@ -685,6 +689,7 @@ class DataPlanesV1Api:
|
|
|
685
689
|
sort: Annotated[Optional[DataPlaneSort], Field(description="Override the field used for sorting the returned list. Optional.")] = None,
|
|
686
690
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
687
691
|
name: Annotated[Optional[StrictStr], Field(description="Search term to filter workspaces by name.")] = None,
|
|
692
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
688
693
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
689
694
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
690
695
|
_request_timeout: Union[
|
|
@@ -712,6 +717,8 @@ class DataPlanesV1Api:
|
|
|
712
717
|
:type order: SortOrder
|
|
713
718
|
:param name: Search term to filter workspaces by name.
|
|
714
719
|
:type name: str
|
|
720
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
721
|
+
:type gen_ai_enabled: bool
|
|
715
722
|
:param page: The page to return starting from 1 up to total_pages.
|
|
716
723
|
:type page: int
|
|
717
724
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -743,6 +750,7 @@ class DataPlanesV1Api:
|
|
|
743
750
|
sort=sort,
|
|
744
751
|
order=order,
|
|
745
752
|
name=name,
|
|
753
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
746
754
|
page=page,
|
|
747
755
|
page_size=page_size,
|
|
748
756
|
_request_auth=_request_auth,
|
|
@@ -775,6 +783,7 @@ class DataPlanesV1Api:
|
|
|
775
783
|
sort: Annotated[Optional[DataPlaneSort], Field(description="Override the field used for sorting the returned list. Optional.")] = None,
|
|
776
784
|
order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
|
|
777
785
|
name: Annotated[Optional[StrictStr], Field(description="Search term to filter workspaces by name.")] = None,
|
|
786
|
+
gen_ai_enabled: Annotated[Optional[StrictBool], Field(description="Filter to only return engines enabled with the GenAI capability")] = None,
|
|
778
787
|
page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
|
|
779
788
|
page_size: Annotated[Optional[Annotated[int, Field(le=1000, strict=True, ge=1)]], Field(description="The number of records per page. The max is 1000.")] = None,
|
|
780
789
|
_request_timeout: Union[
|
|
@@ -802,6 +811,8 @@ class DataPlanesV1Api:
|
|
|
802
811
|
:type order: SortOrder
|
|
803
812
|
:param name: Search term to filter workspaces by name.
|
|
804
813
|
:type name: str
|
|
814
|
+
:param gen_ai_enabled: Filter to only return engines enabled with the GenAI capability
|
|
815
|
+
:type gen_ai_enabled: bool
|
|
805
816
|
:param page: The page to return starting from 1 up to total_pages.
|
|
806
817
|
:type page: int
|
|
807
818
|
:param page_size: The number of records per page. The max is 1000.
|
|
@@ -833,6 +844,7 @@ class DataPlanesV1Api:
|
|
|
833
844
|
sort=sort,
|
|
834
845
|
order=order,
|
|
835
846
|
name=name,
|
|
847
|
+
gen_ai_enabled=gen_ai_enabled,
|
|
836
848
|
page=page,
|
|
837
849
|
page_size=page_size,
|
|
838
850
|
_request_auth=_request_auth,
|
|
@@ -860,6 +872,7 @@ class DataPlanesV1Api:
|
|
|
860
872
|
sort,
|
|
861
873
|
order,
|
|
862
874
|
name,
|
|
875
|
+
gen_ai_enabled,
|
|
863
876
|
page,
|
|
864
877
|
page_size,
|
|
865
878
|
_request_auth,
|
|
@@ -898,6 +911,10 @@ class DataPlanesV1Api:
|
|
|
898
911
|
|
|
899
912
|
_query_params.append(('name', name))
|
|
900
913
|
|
|
914
|
+
if gen_ai_enabled is not None:
|
|
915
|
+
|
|
916
|
+
_query_params.append(('gen_ai_enabled', gen_ai_enabled))
|
|
917
|
+
|
|
901
918
|
if page is not None:
|
|
902
919
|
|
|
903
920
|
_query_params.append(('page', page))
|
|
@@ -56,6 +56,7 @@ from scope_client.api_bindings.models.d_type import DType
|
|
|
56
56
|
from scope_client.api_bindings.models.data_plane import DataPlane
|
|
57
57
|
from scope_client.api_bindings.models.data_plane_association import DataPlaneAssociation
|
|
58
58
|
from scope_client.api_bindings.models.data_plane_association_sort import DataPlaneAssociationSort
|
|
59
|
+
from scope_client.api_bindings.models.data_plane_capabilities import DataPlaneCapabilities
|
|
59
60
|
from scope_client.api_bindings.models.data_plane_sort import DataPlaneSort
|
|
60
61
|
from scope_client.api_bindings.models.data_result_filter import DataResultFilter
|
|
61
62
|
from scope_client.api_bindings.models.data_result_filter_op import DataResultFilterOp
|
|
@@ -151,6 +152,7 @@ from scope_client.api_bindings.models.pagination import Pagination
|
|
|
151
152
|
from scope_client.api_bindings.models.patch_alert_rule import PatchAlertRule
|
|
152
153
|
from scope_client.api_bindings.models.patch_connector_spec import PatchConnectorSpec
|
|
153
154
|
from scope_client.api_bindings.models.patch_data_plane import PatchDataPlane
|
|
155
|
+
from scope_client.api_bindings.models.patch_data_plane_capabilities import PatchDataPlaneCapabilities
|
|
154
156
|
from scope_client.api_bindings.models.patch_dataset import PatchDataset
|
|
155
157
|
from scope_client.api_bindings.models.patch_dataset_locator import PatchDatasetLocator
|
|
156
158
|
from scope_client.api_bindings.models.patch_group import PatchGroup
|
|
@@ -20,6 +20,7 @@ import json
|
|
|
20
20
|
from datetime import datetime
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from scope_client.api_bindings.models.data_plane_capabilities import DataPlaneCapabilities
|
|
23
24
|
from typing import Optional, Set
|
|
24
25
|
from typing_extensions import Self
|
|
25
26
|
|
|
@@ -35,7 +36,8 @@ class DataPlane(BaseModel):
|
|
|
35
36
|
description: StrictStr = Field(description="Description of data plane.")
|
|
36
37
|
user_id: StrictStr = Field(description="ID of the data plane's underlying user.")
|
|
37
38
|
last_check_in_time: Optional[datetime]
|
|
38
|
-
|
|
39
|
+
capabilities: DataPlaneCapabilities = Field(description="Capabilities for this data plane.")
|
|
40
|
+
__properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "name", "workspace_id", "description", "user_id", "last_check_in_time", "capabilities"]
|
|
39
41
|
|
|
40
42
|
model_config = ConfigDict(
|
|
41
43
|
populate_by_name=True,
|
|
@@ -76,6 +78,9 @@ class DataPlane(BaseModel):
|
|
|
76
78
|
exclude=excluded_fields,
|
|
77
79
|
exclude_none=True,
|
|
78
80
|
)
|
|
81
|
+
# override the default output from pydantic by calling `to_dict()` of capabilities
|
|
82
|
+
if self.capabilities:
|
|
83
|
+
_dict['capabilities'] = self.capabilities.to_dict()
|
|
79
84
|
# set to None if last_check_in_time (nullable) is None
|
|
80
85
|
# and model_fields_set contains the field
|
|
81
86
|
if self.last_check_in_time is None and "last_check_in_time" in self.model_fields_set:
|
|
@@ -100,7 +105,8 @@ class DataPlane(BaseModel):
|
|
|
100
105
|
"workspace_id": obj.get("workspace_id"),
|
|
101
106
|
"description": obj.get("description"),
|
|
102
107
|
"user_id": obj.get("user_id"),
|
|
103
|
-
"last_check_in_time": obj.get("last_check_in_time")
|
|
108
|
+
"last_check_in_time": obj.get("last_check_in_time"),
|
|
109
|
+
"capabilities": DataPlaneCapabilities.from_dict(obj["capabilities"]) if obj.get("capabilities") is not None else None
|
|
104
110
|
})
|
|
105
111
|
return _obj
|
|
106
112
|
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Arthur Scope
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class DataPlaneCapabilities(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
DataPlaneCapabilities
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
gen_ai_enabled: Optional[StrictBool] = Field(default=False, description="Field that records if the engine was installed with GenAI capabilities.")
|
|
30
|
+
__properties: ClassVar[List[str]] = ["gen_ai_enabled"]
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(
|
|
33
|
+
populate_by_name=True,
|
|
34
|
+
validate_assignment=True,
|
|
35
|
+
protected_namespaces=(),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of DataPlaneCapabilities from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([
|
|
64
|
+
])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of DataPlaneCapabilities from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({
|
|
83
|
+
"gen_ai_enabled": obj.get("gen_ai_enabled") if obj.get("gen_ai_enabled") is not None else False
|
|
84
|
+
})
|
|
85
|
+
return _obj
|
|
86
|
+
|
|
87
|
+
|
|
@@ -19,6 +19,7 @@ import json
|
|
|
19
19
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from scope_client.api_bindings.models.patch_data_plane_capabilities import PatchDataPlaneCapabilities
|
|
22
23
|
from typing import Optional, Set
|
|
23
24
|
from typing_extensions import Self
|
|
24
25
|
|
|
@@ -26,9 +27,10 @@ class PatchDataPlane(BaseModel):
|
|
|
26
27
|
"""
|
|
27
28
|
PatchDataPlane
|
|
28
29
|
""" # noqa: E501
|
|
29
|
-
name: Optional[StrictStr]
|
|
30
|
-
description: Optional[StrictStr]
|
|
31
|
-
|
|
30
|
+
name: Optional[StrictStr] = None
|
|
31
|
+
description: Optional[StrictStr] = None
|
|
32
|
+
capabilities: Optional[PatchDataPlaneCapabilities] = None
|
|
33
|
+
__properties: ClassVar[List[str]] = ["name", "description", "capabilities"]
|
|
32
34
|
|
|
33
35
|
model_config = ConfigDict(
|
|
34
36
|
populate_by_name=True,
|
|
@@ -69,6 +71,9 @@ class PatchDataPlane(BaseModel):
|
|
|
69
71
|
exclude=excluded_fields,
|
|
70
72
|
exclude_none=True,
|
|
71
73
|
)
|
|
74
|
+
# override the default output from pydantic by calling `to_dict()` of capabilities
|
|
75
|
+
if self.capabilities:
|
|
76
|
+
_dict['capabilities'] = self.capabilities.to_dict()
|
|
72
77
|
# set to None if name (nullable) is None
|
|
73
78
|
# and model_fields_set contains the field
|
|
74
79
|
if self.name is None and "name" in self.model_fields_set:
|
|
@@ -79,6 +84,11 @@ class PatchDataPlane(BaseModel):
|
|
|
79
84
|
if self.description is None and "description" in self.model_fields_set:
|
|
80
85
|
_dict['description'] = None
|
|
81
86
|
|
|
87
|
+
# set to None if capabilities (nullable) is None
|
|
88
|
+
# and model_fields_set contains the field
|
|
89
|
+
if self.capabilities is None and "capabilities" in self.model_fields_set:
|
|
90
|
+
_dict['capabilities'] = None
|
|
91
|
+
|
|
82
92
|
return _dict
|
|
83
93
|
|
|
84
94
|
@classmethod
|
|
@@ -92,7 +102,8 @@ class PatchDataPlane(BaseModel):
|
|
|
92
102
|
|
|
93
103
|
_obj = cls.model_validate({
|
|
94
104
|
"name": obj.get("name"),
|
|
95
|
-
"description": obj.get("description")
|
|
105
|
+
"description": obj.get("description"),
|
|
106
|
+
"capabilities": PatchDataPlaneCapabilities.from_dict(obj["capabilities"]) if obj.get("capabilities") is not None else None
|
|
96
107
|
})
|
|
97
108
|
return _obj
|
|
98
109
|
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Arthur Scope
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 0.1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, StrictBool
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class PatchDataPlaneCapabilities(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
PatchDataPlaneCapabilities
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
gen_ai_enabled: Optional[StrictBool] = None
|
|
30
|
+
__properties: ClassVar[List[str]] = ["gen_ai_enabled"]
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(
|
|
33
|
+
populate_by_name=True,
|
|
34
|
+
validate_assignment=True,
|
|
35
|
+
protected_namespaces=(),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of PatchDataPlaneCapabilities from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([
|
|
64
|
+
])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
# set to None if gen_ai_enabled (nullable) is None
|
|
72
|
+
# and model_fields_set contains the field
|
|
73
|
+
if self.gen_ai_enabled is None and "gen_ai_enabled" in self.model_fields_set:
|
|
74
|
+
_dict['gen_ai_enabled'] = None
|
|
75
|
+
|
|
76
|
+
return _dict
|
|
77
|
+
|
|
78
|
+
@classmethod
|
|
79
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
80
|
+
"""Create an instance of PatchDataPlaneCapabilities from a dict"""
|
|
81
|
+
if obj is None:
|
|
82
|
+
return None
|
|
83
|
+
|
|
84
|
+
if not isinstance(obj, dict):
|
|
85
|
+
return cls.model_validate(obj)
|
|
86
|
+
|
|
87
|
+
_obj = cls.model_validate({
|
|
88
|
+
"gen_ai_enabled": obj.get("gen_ai_enabled")
|
|
89
|
+
})
|
|
90
|
+
return _obj
|
|
91
|
+
|
|
92
|
+
|
|
@@ -18,7 +18,8 @@ import re # noqa: F401
|
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
20
|
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
-
from typing import Any, ClassVar, Dict, List
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from scope_client.api_bindings.models.data_plane_capabilities import DataPlaneCapabilities
|
|
22
23
|
from typing import Optional, Set
|
|
23
24
|
from typing_extensions import Self
|
|
24
25
|
|
|
@@ -28,7 +29,8 @@ class PostDataPlane(BaseModel):
|
|
|
28
29
|
""" # noqa: E501
|
|
29
30
|
name: StrictStr = Field(description="Name of data plane.")
|
|
30
31
|
description: StrictStr = Field(description="Description of data plane.")
|
|
31
|
-
|
|
32
|
+
capabilities: Optional[DataPlaneCapabilities] = Field(default=None, description="Capabilities for this data plane.")
|
|
33
|
+
__properties: ClassVar[List[str]] = ["name", "description", "capabilities"]
|
|
32
34
|
|
|
33
35
|
model_config = ConfigDict(
|
|
34
36
|
populate_by_name=True,
|
|
@@ -69,6 +71,9 @@ class PostDataPlane(BaseModel):
|
|
|
69
71
|
exclude=excluded_fields,
|
|
70
72
|
exclude_none=True,
|
|
71
73
|
)
|
|
74
|
+
# override the default output from pydantic by calling `to_dict()` of capabilities
|
|
75
|
+
if self.capabilities:
|
|
76
|
+
_dict['capabilities'] = self.capabilities.to_dict()
|
|
72
77
|
return _dict
|
|
73
78
|
|
|
74
79
|
@classmethod
|
|
@@ -82,7 +87,8 @@ class PostDataPlane(BaseModel):
|
|
|
82
87
|
|
|
83
88
|
_obj = cls.model_validate({
|
|
84
89
|
"name": obj.get("name"),
|
|
85
|
-
"description": obj.get("description")
|
|
90
|
+
"description": obj.get("description"),
|
|
91
|
+
"capabilities": DataPlaneCapabilities.from_dict(obj["capabilities"]) if obj.get("capabilities") is not None else None
|
|
86
92
|
})
|
|
87
93
|
return _obj
|
|
88
94
|
|
|
@@ -20,6 +20,7 @@ import json
|
|
|
20
20
|
from datetime import datetime
|
|
21
21
|
from pydantic import BaseModel, ConfigDict, Field, SecretStr, StrictStr
|
|
22
22
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
23
|
+
from scope_client.api_bindings.models.data_plane_capabilities import DataPlaneCapabilities
|
|
23
24
|
from typing import Optional, Set
|
|
24
25
|
from typing_extensions import Self
|
|
25
26
|
|
|
@@ -35,9 +36,10 @@ class SensitiveDataPlane(BaseModel):
|
|
|
35
36
|
description: StrictStr = Field(description="Description of data plane.")
|
|
36
37
|
user_id: StrictStr = Field(description="ID of the data plane's underlying user.")
|
|
37
38
|
last_check_in_time: Optional[datetime]
|
|
39
|
+
capabilities: DataPlaneCapabilities = Field(description="Capabilities for this data plane.")
|
|
38
40
|
client_id: SecretStr = Field(description="ID of the auth client.")
|
|
39
41
|
client_secret: SecretStr = Field(description="Auth client secret.")
|
|
40
|
-
__properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "name", "workspace_id", "description", "user_id", "last_check_in_time", "client_id", "client_secret"]
|
|
42
|
+
__properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "name", "workspace_id", "description", "user_id", "last_check_in_time", "capabilities", "client_id", "client_secret"]
|
|
41
43
|
|
|
42
44
|
model_config = ConfigDict(
|
|
43
45
|
populate_by_name=True,
|
|
@@ -78,6 +80,9 @@ class SensitiveDataPlane(BaseModel):
|
|
|
78
80
|
exclude=excluded_fields,
|
|
79
81
|
exclude_none=True,
|
|
80
82
|
)
|
|
83
|
+
# override the default output from pydantic by calling `to_dict()` of capabilities
|
|
84
|
+
if self.capabilities:
|
|
85
|
+
_dict['capabilities'] = self.capabilities.to_dict()
|
|
81
86
|
# set to None if last_check_in_time (nullable) is None
|
|
82
87
|
# and model_fields_set contains the field
|
|
83
88
|
if self.last_check_in_time is None and "last_check_in_time" in self.model_fields_set:
|
|
@@ -103,6 +108,7 @@ class SensitiveDataPlane(BaseModel):
|
|
|
103
108
|
"description": obj.get("description"),
|
|
104
109
|
"user_id": obj.get("user_id"),
|
|
105
110
|
"last_check_in_time": obj.get("last_check_in_time"),
|
|
111
|
+
"capabilities": DataPlaneCapabilities.from_dict(obj["capabilities"]) if obj.get("capabilities") is not None else None,
|
|
106
112
|
"client_id": obj.get("client_id"),
|
|
107
113
|
"client_secret": obj.get("client_secret")
|
|
108
114
|
})
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
scope_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
scope_client/api_bindings/__init__.py,sha256=
|
|
2
|
+
scope_client/api_bindings/__init__.py,sha256=Pv9ifClsGZKAHgYXJqZmrUighPauQfRbHNCKd3uuCYA,24427
|
|
3
3
|
scope_client/api_bindings/api_client.py,sha256=nkt88XDyPiuURu94lnI4MtOfMeYXd_jazGUde0T4xVU,27538
|
|
4
4
|
scope_client/api_bindings/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
5
5
|
scope_client/api_bindings/configuration.py,sha256=a0o2OhNYo7GdZscfNtFKW2kfgoln1mcWE-8E_UeiWv8,15338
|
|
@@ -11,8 +11,8 @@ scope_client/api_bindings/api/alerts_v1_api.py,sha256=hAyljzNdtm3ruaN1C5qyTCZJF5
|
|
|
11
11
|
scope_client/api_bindings/api/authorization_v1_api.py,sha256=0hHddXMvsw87SV-VE87mTp1afVyb8AB2pcCIjie4emg,168384
|
|
12
12
|
scope_client/api_bindings/api/connector_schemas_v1_api.py,sha256=-lkx0uSc0hw4lzdlfiRcZVI-d2dlsq4CbtJ1sdyiu2U,21812
|
|
13
13
|
scope_client/api_bindings/api/connectors_v1_api.py,sha256=DGxBpwqnTo4NYqGG6SERfRq7SUuHt54d-KVS95RexgQ,87522
|
|
14
|
-
scope_client/api_bindings/api/data_plane_associations_v1_api.py,sha256=
|
|
15
|
-
scope_client/api_bindings/api/data_planes_v1_api.py,sha256=
|
|
14
|
+
scope_client/api_bindings/api/data_plane_associations_v1_api.py,sha256=fGUbJC752d45GeSV0ALAeiUOutG9wBw3Q_F2ak4Fuf0,72604
|
|
15
|
+
scope_client/api_bindings/api/data_planes_v1_api.py,sha256=IWbA_RKxpg28ihPAKsIa4y6xCuvZCIoqQo4ntPVmbPg,72059
|
|
16
16
|
scope_client/api_bindings/api/data_retrieval_v1_api.py,sha256=o8yKv-rw3E0KVa2nyePR8jR83FYpPUxqQTq00cCDVyM,97313
|
|
17
17
|
scope_client/api_bindings/api/datasets_v1_api.py,sha256=xV-6MfwUiPo8wp0VOCxOBXrG91LVYrQuHiWMF25Fx54,173726
|
|
18
18
|
scope_client/api_bindings/api/default_api.py,sha256=N2kYEK0fkvWQVIUYyFgRfsdUvpK0lI3G3Yl3Iz4R2oM,10588
|
|
@@ -32,7 +32,7 @@ scope_client/api_bindings/api/upsolve_v1_api.py,sha256=Vdep9x-_lIJq_kOwtsGqYqkss
|
|
|
32
32
|
scope_client/api_bindings/api/users_v1_api.py,sha256=wo-yZd1da0O8NgAuBCo8784NY1vTo4H8J7pf7sFavCc,114570
|
|
33
33
|
scope_client/api_bindings/api/webhooks_v1_api.py,sha256=86tRi7pgwICshf8WVyYA1WrJggThpnsTaON9Mx8R-0M,71286
|
|
34
34
|
scope_client/api_bindings/api/workspaces_v1_api.py,sha256=OjMc-pJe2JAGgv5ZGTD8_TkQxw82vz2e381-5m37vJ4,58653
|
|
35
|
-
scope_client/api_bindings/models/__init__.py,sha256=
|
|
35
|
+
scope_client/api_bindings/models/__init__.py,sha256=BZ8bkeM8X9CD-BLVNo_9h1hT9v6zqGI78OX-rO-5tCY,21840
|
|
36
36
|
scope_client/api_bindings/models/aggregation_metric_type.py,sha256=USKpDqhX4TQ4lqIoHOp3q70mydsf1u_zc1EKus9QhYo,783
|
|
37
37
|
scope_client/api_bindings/models/aggregation_spec.py,sha256=gWFTgLqxNdiIw4iXwbNqKAnAwDpbcgeoFfQ_7VxtKOQ,4109
|
|
38
38
|
scope_client/api_bindings/models/aggregation_spec_schema.py,sha256=MHGlB9eF8NfOasOHiqj1ZzYiBaIl8y8J2SmQysoSWVU,4624
|
|
@@ -72,9 +72,10 @@ scope_client/api_bindings/models/create_model_task_job_spec.py,sha256=WqQPt8I5nA
|
|
|
72
72
|
scope_client/api_bindings/models/created_alerts.py,sha256=HEU8jGJvowCbwZgU7wUn410lNiJAAox5SYRyDd2uglw,3949
|
|
73
73
|
scope_client/api_bindings/models/credentials.py,sha256=z1kk6SelBNpHCC78wW0-feiY6I0Q9sxFD3Bo3C0j_zI,5118
|
|
74
74
|
scope_client/api_bindings/models/d_type.py,sha256=sg1LfWA05rBStEo9VIEgimHRpk8sCcrx63c8WUDCj6Y,869
|
|
75
|
-
scope_client/api_bindings/models/data_plane.py,sha256=
|
|
75
|
+
scope_client/api_bindings/models/data_plane.py,sha256=zpTmidWWq7nQZn6TY3ziOSoZUqC9iKY0hECtNjFcJlw,4260
|
|
76
76
|
scope_client/api_bindings/models/data_plane_association.py,sha256=GyoPxgFDsHuy8La73VqFl-rtcanteE53fkOlzav0ElY,4373
|
|
77
77
|
scope_client/api_bindings/models/data_plane_association_sort.py,sha256=PaRZV90wjsWum3SDKgWxd-QEJ458Ik-cD9w_fNNoSMo,806
|
|
78
|
+
scope_client/api_bindings/models/data_plane_capabilities.py,sha256=LRRvcAob0be6wDGnwr1vLAzCubeVyOY5AE01t6X_y6U,2736
|
|
78
79
|
scope_client/api_bindings/models/data_plane_sort.py,sha256=UreUIWvBGIDC0yC5Hb4-IvcgE0skQpV_V-pxr92oRw4,791
|
|
79
80
|
scope_client/api_bindings/models/data_result_filter.py,sha256=Q3SQ4Zu40ThylVgYgxEr4iJLKCVQp8JpYz2N-pqyfVc,3187
|
|
80
81
|
scope_client/api_bindings/models/data_result_filter_op.py,sha256=TXBfPsCLA8ErXRf8W5uDxlXPtz13xHEu1NBnro5mcZo,976
|
|
@@ -168,7 +169,8 @@ scope_client/api_bindings/models/organization.py,sha256=BQJHXIGcrmcGQrxD4JhIEBla
|
|
|
168
169
|
scope_client/api_bindings/models/pagination.py,sha256=XWpYUWgFJIYmtJ3bMOqGlu6ganeK4wUxpZ8mCPC1d1Q,3118
|
|
169
170
|
scope_client/api_bindings/models/patch_alert_rule.py,sha256=nAWWly90eTCnFDwuSdxRKmcg4hhMM5zvvnU98_OpPvg,4843
|
|
170
171
|
scope_client/api_bindings/models/patch_connector_spec.py,sha256=EzW-KkOwk0B0hnr5fzsfLcH6ZF5c2sFBoVA9er8o_yk,3754
|
|
171
|
-
scope_client/api_bindings/models/patch_data_plane.py,sha256=
|
|
172
|
+
scope_client/api_bindings/models/patch_data_plane.py,sha256=ZvRlyD4aZlNThEeaZ1MMNPpUXyw6ZypDTPP4Y6Bz2_Q,3772
|
|
173
|
+
scope_client/api_bindings/models/patch_data_plane_capabilities.py,sha256=MVLSPbKUO7kDAJpR6HIrso7rJYofeXjGMsq66OtU7Gk,2833
|
|
172
174
|
scope_client/api_bindings/models/patch_dataset.py,sha256=CTDLrg5BU6T3Zovji-DRufrHp6hMEDFwpOksVRVIezs,3918
|
|
173
175
|
scope_client/api_bindings/models/patch_dataset_locator.py,sha256=Mo1AnQfzup1mXNVgCK2wuKkMNjerKCE9ocl19zROSSM,3244
|
|
174
176
|
scope_client/api_bindings/models/patch_group.py,sha256=q8rDHJsJko5n1zbK--Y4iA1xcSi_cvIaYNGPsz6Oa88,3024
|
|
@@ -192,7 +194,7 @@ scope_client/api_bindings/models/post_alert.py,sha256=DYsLeD_zDPpcjROUPThBQn9I8p
|
|
|
192
194
|
scope_client/api_bindings/models/post_alert_rule.py,sha256=V2jGigltR2X58JbwTcyVmy9RV9YBEklK71KBK_0vLzg,3847
|
|
193
195
|
scope_client/api_bindings/models/post_alerts.py,sha256=6Jd3p9Pi04BK9tq8DR4o8TZ0e8I1hfRQUV7gJ5wANEE,3065
|
|
194
196
|
scope_client/api_bindings/models/post_connector_spec.py,sha256=tCtEBCLSXXLse7x-kD3OWrkCpD0_TuHx2LNDEc8VysU,3917
|
|
195
|
-
scope_client/api_bindings/models/post_data_plane.py,sha256=
|
|
197
|
+
scope_client/api_bindings/models/post_data_plane.py,sha256=Y7fobPHVqYRuXM4f69jBKVYjGDG9O-UujG0UAVv4V0Y,3220
|
|
196
198
|
scope_client/api_bindings/models/post_data_plane_association.py,sha256=mEdP-ff6nLfCkj80jW0YGW0RWKJXOySnQRPJTbydX9g,2736
|
|
197
199
|
scope_client/api_bindings/models/post_data_retrieval_operation.py,sha256=3qMB06e4YT73X5v38DkAWUlpWZbnTIVXrPHLFzJSZF0,4305
|
|
198
200
|
scope_client/api_bindings/models/post_dataset.py,sha256=dbPxCV2Cexl9lOpHKlkYNSr8-5Y30bKGDtwy2MdXdWE,5185
|
|
@@ -269,7 +271,7 @@ scope_client/api_bindings/models/scalar_type.py,sha256=S5BiTsMG-oM2GC-EmlX7OdY2l
|
|
|
269
271
|
scope_client/api_bindings/models/schedule_jobs_job_spec.py,sha256=S75JHtQV3VvJ58TPEUoBtfQ68odSCySONyJ2Io5CYpA,3335
|
|
270
272
|
scope_client/api_bindings/models/schema_inspection_job_spec.py,sha256=yKpGEstb0ze_F-jajJd8V9Dfulr4wv5BDUoZ19gnNBk,3352
|
|
271
273
|
scope_client/api_bindings/models/scope_schema_tag.py,sha256=xvPNpX1reIQxcMPPzKZMbJIKRBTjgsTBI3soRfRazHs,982
|
|
272
|
-
scope_client/api_bindings/models/sensitive_data_plane.py,sha256=
|
|
274
|
+
scope_client/api_bindings/models/sensitive_data_plane.py,sha256=R6-8wwLOm_HGYLdsj475kdYTIEOOiurl3NzAupTqsiI,4582
|
|
273
275
|
scope_client/api_bindings/models/sensitive_user.py,sha256=jBBMTZaktUrF0tCjEybOFSD5zBILwfnQBou7yg1g9SM,5526
|
|
274
276
|
scope_client/api_bindings/models/service_account_credentials.py,sha256=jjnqsr-YyTFyOwi8jMx1ygyE1uzvyO83FZSe_5iA8R8,2772
|
|
275
277
|
scope_client/api_bindings/models/sketch_metric.py,sha256=-V2OOnIKS36ucSdAWZQLD3Q3fMUAx5EnLaYFmYHm3P0,3262
|
|
@@ -301,7 +303,7 @@ scope_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD9
|
|
|
301
303
|
scope_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
|
|
302
304
|
scope_client/auth/oauth_api_config.py,sha256=wcEslusOFKr0oTzW0Ku2MhM1mvc-nm4BEJU8LHo1uXA,1347
|
|
303
305
|
scope_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
|
|
304
|
-
scope_client-1.4.
|
|
305
|
-
scope_client-1.4.
|
|
306
|
-
scope_client-1.4.
|
|
307
|
-
scope_client-1.4.
|
|
306
|
+
scope_client-1.4.993.dist-info/METADATA,sha256=y5xy4nd4f8ABeo_5Pyp1vmb7EZZEpoIVn3Wk-2rK0qk,1776
|
|
307
|
+
scope_client-1.4.993.dist-info/WHEEL,sha256=SmOxYU7pzNKBqASvQJ7DjX3XGUF92lrGhMb3R6_iiqI,91
|
|
308
|
+
scope_client-1.4.993.dist-info/top_level.txt,sha256=x6MngS09hi-TUDoUGb3SLzmnf8_cf8IVAVNPSqtTzAY,13
|
|
309
|
+
scope_client-1.4.993.dist-info/RECORD,,
|
|
File without changes
|