scope-client 1.4.928__py3-none-any.whl → 1.4.930__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.
@@ -322,7 +322,7 @@ class AlertsV1Api:
322
322
  model_id: StrictStr,
323
323
  sort: Annotated[Optional[AlertSort], Field(description="The field to sort by.")] = None,
324
324
  order: Annotated[Optional[SortOrder], Field(description="The order to sort by.")] = None,
325
- alert_rule_ids: Annotated[Optional[List[StrictStr]], Field(description="The ID of the alert rule to filter by.")] = None,
325
+ alert_rule_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="The ID of the alert rule to filter by.")] = None,
326
326
  bound: Annotated[Optional[AlertBound], Field(description="The bound to filter by.")] = None,
327
327
  time_from: Annotated[Optional[datetime], Field(description="The start timestamp to filter by.")] = None,
328
328
  time_to: Annotated[Optional[datetime], Field(description="The end timestamp to filter by.")] = None,
@@ -352,7 +352,7 @@ class AlertsV1Api:
352
352
  :param order: The order to sort by.
353
353
  :type order: SortOrder
354
354
  :param alert_rule_ids: The ID of the alert rule to filter by.
355
- :type alert_rule_ids: List[str]
355
+ :type alert_rule_ids: List[Optional[str]]
356
356
  :param bound: The bound to filter by.
357
357
  :type bound: AlertBound
358
358
  :param time_from: The start timestamp to filter by.
@@ -424,7 +424,7 @@ class AlertsV1Api:
424
424
  model_id: StrictStr,
425
425
  sort: Annotated[Optional[AlertSort], Field(description="The field to sort by.")] = None,
426
426
  order: Annotated[Optional[SortOrder], Field(description="The order to sort by.")] = None,
427
- alert_rule_ids: Annotated[Optional[List[StrictStr]], Field(description="The ID of the alert rule to filter by.")] = None,
427
+ alert_rule_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="The ID of the alert rule to filter by.")] = None,
428
428
  bound: Annotated[Optional[AlertBound], Field(description="The bound to filter by.")] = None,
429
429
  time_from: Annotated[Optional[datetime], Field(description="The start timestamp to filter by.")] = None,
430
430
  time_to: Annotated[Optional[datetime], Field(description="The end timestamp to filter by.")] = None,
@@ -454,7 +454,7 @@ class AlertsV1Api:
454
454
  :param order: The order to sort by.
455
455
  :type order: SortOrder
456
456
  :param alert_rule_ids: The ID of the alert rule to filter by.
457
- :type alert_rule_ids: List[str]
457
+ :type alert_rule_ids: List[Optional[str]]
458
458
  :param bound: The bound to filter by.
459
459
  :type bound: AlertBound
460
460
  :param time_from: The start timestamp to filter by.
@@ -526,7 +526,7 @@ class AlertsV1Api:
526
526
  model_id: StrictStr,
527
527
  sort: Annotated[Optional[AlertSort], Field(description="The field to sort by.")] = None,
528
528
  order: Annotated[Optional[SortOrder], Field(description="The order to sort by.")] = None,
529
- alert_rule_ids: Annotated[Optional[List[StrictStr]], Field(description="The ID of the alert rule to filter by.")] = None,
529
+ alert_rule_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="The ID of the alert rule to filter by.")] = None,
530
530
  bound: Annotated[Optional[AlertBound], Field(description="The bound to filter by.")] = None,
531
531
  time_from: Annotated[Optional[datetime], Field(description="The start timestamp to filter by.")] = None,
532
532
  time_to: Annotated[Optional[datetime], Field(description="The end timestamp to filter by.")] = None,
@@ -556,7 +556,7 @@ class AlertsV1Api:
556
556
  :param order: The order to sort by.
557
557
  :type order: SortOrder
558
558
  :param alert_rule_ids: The ID of the alert rule to filter by.
559
- :type alert_rule_ids: List[str]
559
+ :type alert_rule_ids: List[Optional[str]]
560
560
  :param bound: The bound to filter by.
561
561
  :type bound: AlertBound
562
562
  :param time_from: The start timestamp to filter by.
@@ -1498,6 +1498,7 @@ class DatasetsV1Api:
1498
1498
  connector_name: Annotated[Optional[StrictStr], Field(description="Filter datasets by connector name.")] = None,
1499
1499
  dataset_name: Annotated[Optional[StrictStr], Field(description="Filter datasets by dataset name.")] = None,
1500
1500
  joined_datasets: Annotated[Optional[StrictBool], Field(description="Filter for joined datasets. Only returns joined datasets if True. Only returns non-joined datasets if False. Not applied if None.")] = None,
1501
+ data_plane_id: Annotated[Optional[StrictStr], Field(description="Filter datasets by the data plane (engine) that backs them.")] = None,
1501
1502
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
1502
1503
  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,
1503
1504
  _request_timeout: Union[
@@ -1535,6 +1536,8 @@ class DatasetsV1Api:
1535
1536
  :type dataset_name: str
1536
1537
  :param joined_datasets: Filter for joined datasets. Only returns joined datasets if True. Only returns non-joined datasets if False. Not applied if None.
1537
1538
  :type joined_datasets: bool
1539
+ :param data_plane_id: Filter datasets by the data plane (engine) that backs them.
1540
+ :type data_plane_id: str
1538
1541
  :param page: The page to return starting from 1 up to total_pages.
1539
1542
  :type page: int
1540
1543
  :param page_size: The number of records per page. The max is 1000.
@@ -1571,6 +1574,7 @@ class DatasetsV1Api:
1571
1574
  connector_name=connector_name,
1572
1575
  dataset_name=dataset_name,
1573
1576
  joined_datasets=joined_datasets,
1577
+ data_plane_id=data_plane_id,
1574
1578
  page=page,
1575
1579
  page_size=page_size,
1576
1580
  _request_auth=_request_auth,
@@ -1608,6 +1612,7 @@ class DatasetsV1Api:
1608
1612
  connector_name: Annotated[Optional[StrictStr], Field(description="Filter datasets by connector name.")] = None,
1609
1613
  dataset_name: Annotated[Optional[StrictStr], Field(description="Filter datasets by dataset name.")] = None,
1610
1614
  joined_datasets: Annotated[Optional[StrictBool], Field(description="Filter for joined datasets. Only returns joined datasets if True. Only returns non-joined datasets if False. Not applied if None.")] = None,
1615
+ data_plane_id: Annotated[Optional[StrictStr], Field(description="Filter datasets by the data plane (engine) that backs them.")] = None,
1611
1616
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
1612
1617
  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,
1613
1618
  _request_timeout: Union[
@@ -1645,6 +1650,8 @@ class DatasetsV1Api:
1645
1650
  :type dataset_name: str
1646
1651
  :param joined_datasets: Filter for joined datasets. Only returns joined datasets if True. Only returns non-joined datasets if False. Not applied if None.
1647
1652
  :type joined_datasets: bool
1653
+ :param data_plane_id: Filter datasets by the data plane (engine) that backs them.
1654
+ :type data_plane_id: str
1648
1655
  :param page: The page to return starting from 1 up to total_pages.
1649
1656
  :type page: int
1650
1657
  :param page_size: The number of records per page. The max is 1000.
@@ -1681,6 +1688,7 @@ class DatasetsV1Api:
1681
1688
  connector_name=connector_name,
1682
1689
  dataset_name=dataset_name,
1683
1690
  joined_datasets=joined_datasets,
1691
+ data_plane_id=data_plane_id,
1684
1692
  page=page,
1685
1693
  page_size=page_size,
1686
1694
  _request_auth=_request_auth,
@@ -1718,6 +1726,7 @@ class DatasetsV1Api:
1718
1726
  connector_name: Annotated[Optional[StrictStr], Field(description="Filter datasets by connector name.")] = None,
1719
1727
  dataset_name: Annotated[Optional[StrictStr], Field(description="Filter datasets by dataset name.")] = None,
1720
1728
  joined_datasets: Annotated[Optional[StrictBool], Field(description="Filter for joined datasets. Only returns joined datasets if True. Only returns non-joined datasets if False. Not applied if None.")] = None,
1729
+ data_plane_id: Annotated[Optional[StrictStr], Field(description="Filter datasets by the data plane (engine) that backs them.")] = None,
1721
1730
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
1722
1731
  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,
1723
1732
  _request_timeout: Union[
@@ -1755,6 +1764,8 @@ class DatasetsV1Api:
1755
1764
  :type dataset_name: str
1756
1765
  :param joined_datasets: Filter for joined datasets. Only returns joined datasets if True. Only returns non-joined datasets if False. Not applied if None.
1757
1766
  :type joined_datasets: bool
1767
+ :param data_plane_id: Filter datasets by the data plane (engine) that backs them.
1768
+ :type data_plane_id: str
1758
1769
  :param page: The page to return starting from 1 up to total_pages.
1759
1770
  :type page: int
1760
1771
  :param page_size: The number of records per page. The max is 1000.
@@ -1791,6 +1802,7 @@ class DatasetsV1Api:
1791
1802
  connector_name=connector_name,
1792
1803
  dataset_name=dataset_name,
1793
1804
  joined_datasets=joined_datasets,
1805
+ data_plane_id=data_plane_id,
1794
1806
  page=page,
1795
1807
  page_size=page_size,
1796
1808
  _request_auth=_request_auth,
@@ -1823,6 +1835,7 @@ class DatasetsV1Api:
1823
1835
  connector_name,
1824
1836
  dataset_name,
1825
1837
  joined_datasets,
1838
+ data_plane_id,
1826
1839
  page,
1827
1840
  page_size,
1828
1841
  _request_auth,
@@ -1882,6 +1895,10 @@ class DatasetsV1Api:
1882
1895
 
1883
1896
  _query_params.append(('joined_datasets', joined_datasets))
1884
1897
 
1898
+ if data_plane_id is not None:
1899
+
1900
+ _query_params.append(('data_plane_id', data_plane_id))
1901
+
1885
1902
  if page is not None:
1886
1903
 
1887
1904
  _query_params.append(('page', page))
@@ -2464,8 +2464,8 @@ class GroupsV1Api:
2464
2464
  @validate_call
2465
2465
  def search_group_memberships(
2466
2466
  self,
2467
- user_ids: Annotated[Optional[List[StrictStr]], Field(description="Filter memberships to select user IDs.")] = None,
2468
- group_ids: Annotated[Optional[List[StrictStr]], Field(description="Filter memberships to select group IDs.")] = None,
2467
+ user_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter memberships to select user IDs.")] = None,
2468
+ group_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter memberships to select group IDs.")] = None,
2469
2469
  group_name: Annotated[Optional[StrictStr], Field(description="Filter memberships by group name. A name matches if it contains the input string case-insensitive.")] = None,
2470
2470
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
2471
2471
  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,
@@ -2487,9 +2487,9 @@ class GroupsV1Api:
2487
2487
  Searches memberships for the intersection of user and group IDs. Requires organization_list_group_memberships permission.
2488
2488
 
2489
2489
  :param user_ids: Filter memberships to select user IDs.
2490
- :type user_ids: List[str]
2490
+ :type user_ids: List[Optional[str]]
2491
2491
  :param group_ids: Filter memberships to select group IDs.
2492
- :type group_ids: List[str]
2492
+ :type group_ids: List[Optional[str]]
2493
2493
  :param group_name: Filter memberships by group name. A name matches if it contains the input string case-insensitive.
2494
2494
  :type group_name: str
2495
2495
  :param page: The page to return starting from 1 up to total_pages.
@@ -2550,8 +2550,8 @@ class GroupsV1Api:
2550
2550
  @validate_call
2551
2551
  def search_group_memberships_with_http_info(
2552
2552
  self,
2553
- user_ids: Annotated[Optional[List[StrictStr]], Field(description="Filter memberships to select user IDs.")] = None,
2554
- group_ids: Annotated[Optional[List[StrictStr]], Field(description="Filter memberships to select group IDs.")] = None,
2553
+ user_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter memberships to select user IDs.")] = None,
2554
+ group_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter memberships to select group IDs.")] = None,
2555
2555
  group_name: Annotated[Optional[StrictStr], Field(description="Filter memberships by group name. A name matches if it contains the input string case-insensitive.")] = None,
2556
2556
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
2557
2557
  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,
@@ -2573,9 +2573,9 @@ class GroupsV1Api:
2573
2573
  Searches memberships for the intersection of user and group IDs. Requires organization_list_group_memberships permission.
2574
2574
 
2575
2575
  :param user_ids: Filter memberships to select user IDs.
2576
- :type user_ids: List[str]
2576
+ :type user_ids: List[Optional[str]]
2577
2577
  :param group_ids: Filter memberships to select group IDs.
2578
- :type group_ids: List[str]
2578
+ :type group_ids: List[Optional[str]]
2579
2579
  :param group_name: Filter memberships by group name. A name matches if it contains the input string case-insensitive.
2580
2580
  :type group_name: str
2581
2581
  :param page: The page to return starting from 1 up to total_pages.
@@ -2636,8 +2636,8 @@ class GroupsV1Api:
2636
2636
  @validate_call
2637
2637
  def search_group_memberships_without_preload_content(
2638
2638
  self,
2639
- user_ids: Annotated[Optional[List[StrictStr]], Field(description="Filter memberships to select user IDs.")] = None,
2640
- group_ids: Annotated[Optional[List[StrictStr]], Field(description="Filter memberships to select group IDs.")] = None,
2639
+ user_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter memberships to select user IDs.")] = None,
2640
+ group_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Filter memberships to select group IDs.")] = None,
2641
2641
  group_name: Annotated[Optional[StrictStr], Field(description="Filter memberships by group name. A name matches if it contains the input string case-insensitive.")] = None,
2642
2642
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
2643
2643
  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,
@@ -2659,9 +2659,9 @@ class GroupsV1Api:
2659
2659
  Searches memberships for the intersection of user and group IDs. Requires organization_list_group_memberships permission.
2660
2660
 
2661
2661
  :param user_ids: Filter memberships to select user IDs.
2662
- :type user_ids: List[str]
2662
+ :type user_ids: List[Optional[str]]
2663
2663
  :param group_ids: Filter memberships to select group IDs.
2664
- :type group_ids: List[str]
2664
+ :type group_ids: List[Optional[str]]
2665
2665
  :param group_name: Filter memberships by group name. A name matches if it contains the input string case-insensitive.
2666
2666
  :type group_name: str
2667
2667
  :param page: The page to return starting from 1 up to total_pages.
@@ -578,7 +578,7 @@ class UsersV1Api:
578
578
  order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
579
579
  user_types: Annotated[Optional[List[UserType]], Field(description="Limits the results to a specific set of user types.")] = None,
580
580
  search: Annotated[Optional[StrictStr], Field(description="Search for users by name or email.")] = None,
581
- user_ids: Annotated[Optional[List[StrictStr]], Field(description="Optional list of user IDs to filter down.")] = None,
581
+ user_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Optional list of user IDs to filter down.")] = None,
582
582
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
583
583
  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,
584
584
  _request_timeout: Union[
@@ -607,7 +607,7 @@ class UsersV1Api:
607
607
  :param search: Search for users by name or email.
608
608
  :type search: str
609
609
  :param user_ids: Optional list of user IDs to filter down.
610
- :type user_ids: List[str]
610
+ :type user_ids: List[Optional[str]]
611
611
  :param page: The page to return starting from 1 up to total_pages.
612
612
  :type page: int
613
613
  :param page_size: The number of records per page. The max is 1000.
@@ -672,7 +672,7 @@ class UsersV1Api:
672
672
  order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
673
673
  user_types: Annotated[Optional[List[UserType]], Field(description="Limits the results to a specific set of user types.")] = None,
674
674
  search: Annotated[Optional[StrictStr], Field(description="Search for users by name or email.")] = None,
675
- user_ids: Annotated[Optional[List[StrictStr]], Field(description="Optional list of user IDs to filter down.")] = None,
675
+ user_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Optional list of user IDs to filter down.")] = None,
676
676
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
677
677
  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,
678
678
  _request_timeout: Union[
@@ -701,7 +701,7 @@ class UsersV1Api:
701
701
  :param search: Search for users by name or email.
702
702
  :type search: str
703
703
  :param user_ids: Optional list of user IDs to filter down.
704
- :type user_ids: List[str]
704
+ :type user_ids: List[Optional[str]]
705
705
  :param page: The page to return starting from 1 up to total_pages.
706
706
  :type page: int
707
707
  :param page_size: The number of records per page. The max is 1000.
@@ -766,7 +766,7 @@ class UsersV1Api:
766
766
  order: Annotated[Optional[SortOrder], Field(description="Override the sort order used. Optional.")] = None,
767
767
  user_types: Annotated[Optional[List[UserType]], Field(description="Limits the results to a specific set of user types.")] = None,
768
768
  search: Annotated[Optional[StrictStr], Field(description="Search for users by name or email.")] = None,
769
- user_ids: Annotated[Optional[List[StrictStr]], Field(description="Optional list of user IDs to filter down.")] = None,
769
+ user_ids: Annotated[Optional[List[Optional[StrictStr]]], Field(description="Optional list of user IDs to filter down.")] = None,
770
770
  page: Annotated[Optional[Annotated[int, Field(strict=True, ge=1)]], Field(description="The page to return starting from 1 up to total_pages.")] = None,
771
771
  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,
772
772
  _request_timeout: Union[
@@ -795,7 +795,7 @@ class UsersV1Api:
795
795
  :param search: Search for users by name or email.
796
796
  :type search: str
797
797
  :param user_ids: Optional list of user IDs to filter down.
798
- :type user_ids: List[str]
798
+ :type user_ids: List[Optional[str]]
799
799
  :param page: The page to return starting from 1 up to total_pages.
800
800
  :type page: int
801
801
  :param page_size: The number of records per page. The max is 1000.
@@ -37,11 +37,12 @@ class AvailableDataset(BaseModel):
37
37
  connector_id: Optional[StrictStr] = None
38
38
  project_id: StrictStr = Field(description="ID of parent project.")
39
39
  name: Optional[StrictStr] = None
40
+ data_plane_id: StrictStr = Field(description="ID of the data plane backing this dataset.")
40
41
  dataset_locator: Optional[DatasetLocator] = None
41
42
  dataset_schema: Optional[DatasetSchema] = None
42
43
  model_problem_type: Optional[ModelProblemType] = None
43
44
  join_spec: Optional[DatasetJoinSpec] = None
44
- __properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "connector_id", "project_id", "name", "dataset_locator", "dataset_schema", "model_problem_type", "join_spec"]
45
+ __properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "connector_id", "project_id", "name", "data_plane_id", "dataset_locator", "dataset_schema", "model_problem_type", "join_spec"]
45
46
 
46
47
  model_config = ConfigDict(
47
48
  populate_by_name=True,
@@ -139,6 +140,7 @@ class AvailableDataset(BaseModel):
139
140
  "connector_id": obj.get("connector_id"),
140
141
  "project_id": obj.get("project_id"),
141
142
  "name": obj.get("name"),
143
+ "data_plane_id": obj.get("data_plane_id"),
142
144
  "dataset_locator": DatasetLocator.from_dict(obj["dataset_locator"]) if obj.get("dataset_locator") is not None else None,
143
145
  "dataset_schema": DatasetSchema.from_dict(obj["dataset_schema"]) if obj.get("dataset_schema") is not None else None,
144
146
  "model_problem_type": obj.get("model_problem_type"),
@@ -38,11 +38,12 @@ class Dataset(BaseModel):
38
38
  name: Optional[StrictStr] = None
39
39
  dataset_locator: Optional[DatasetLocator]
40
40
  dataset_schema: DatasetSchema = Field(description="Schema definition of the dataset.")
41
+ data_plane_id: StrictStr = Field(description="ID of the data plane backing this dataset.")
41
42
  connector: Optional[DatasetConnector] = None
42
43
  project_id: StrictStr = Field(description="ID of parent project.")
43
44
  join_spec: Optional[DatasetJoinSpec] = None
44
45
  model_problem_type: ModelProblemType = Field(description="Model problem type associated with the dataset.")
45
- __properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "name", "dataset_locator", "dataset_schema", "connector", "project_id", "join_spec", "model_problem_type"]
46
+ __properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "name", "dataset_locator", "dataset_schema", "data_plane_id", "connector", "project_id", "join_spec", "model_problem_type"]
46
47
 
47
48
  model_config = ConfigDict(
48
49
  populate_by_name=True,
@@ -133,6 +134,7 @@ class Dataset(BaseModel):
133
134
  "name": obj.get("name"),
134
135
  "dataset_locator": DatasetLocator.from_dict(obj["dataset_locator"]) if obj.get("dataset_locator") is not None else None,
135
136
  "dataset_schema": DatasetSchema.from_dict(obj["dataset_schema"]) if obj.get("dataset_schema") is not None else None,
137
+ "data_plane_id": obj.get("data_plane_id"),
136
138
  "connector": DatasetConnector.from_dict(obj["connector"]) if obj.get("connector") is not None else None,
137
139
  "project_id": obj.get("project_id"),
138
140
  "join_spec": DatasetJoinSpec.from_dict(obj["join_spec"]) if obj.get("join_spec") is not None else None,
@@ -44,7 +44,8 @@ class Model(BaseModel):
44
44
  schedule: Optional[ModelMetricsSchedule] = None
45
45
  model_problem_types: List[ModelProblemType] = Field(description="Unique model problem types of associated datasets.")
46
46
  datasets: List[DatasetReference] = Field(description="Datasets for the model.")
47
- __properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "project_id", "name", "description", "onboarding_identifier", "last_updated_by_user", "metric_config", "schedule", "model_problem_types", "datasets"]
47
+ data_plane_id: StrictStr = Field(description="ID of the data plane backing this model.")
48
+ __properties: ClassVar[List[str]] = ["created_at", "updated_at", "id", "project_id", "name", "description", "onboarding_identifier", "last_updated_by_user", "metric_config", "schedule", "model_problem_types", "datasets", "data_plane_id"]
48
49
 
49
50
  model_config = ConfigDict(
50
51
  populate_by_name=True,
@@ -144,7 +145,8 @@ class Model(BaseModel):
144
145
  "metric_config": ModelMetricSpec.from_dict(obj["metric_config"]) if obj.get("metric_config") is not None else None,
145
146
  "schedule": ModelMetricsSchedule.from_dict(obj["schedule"]) if obj.get("schedule") is not None else None,
146
147
  "model_problem_types": obj.get("model_problem_types"),
147
- "datasets": [DatasetReference.from_dict(_item) for _item in obj["datasets"]] if obj.get("datasets") is not None else None
148
+ "datasets": [DatasetReference.from_dict(_item) for _item in obj["datasets"]] if obj.get("datasets") is not None else None,
149
+ "data_plane_id": obj.get("data_plane_id")
148
150
  })
149
151
  return _obj
150
152
 
@@ -30,6 +30,7 @@ class ModelProblemType(str, Enum):
30
30
  BINARY_CLASSIFICATION = 'binary_classification'
31
31
  ARTHUR_SHIELD = 'arthur_shield'
32
32
  CUSTOM = 'custom'
33
+ MULTICLASS_CLASSIFICATION = 'multiclass_classification'
33
34
 
34
35
  @classmethod
35
36
  def from_json(cls, json_str: str) -> Self:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scope_client
3
- Version: 1.4.928
3
+ Version: 1.4.930
4
4
  Summary: Arthur Python API Client Library
5
5
  Author-email: Arthur <info@arthur.ai>
6
6
  License: MIT
@@ -7,16 +7,16 @@ scope_client/api_bindings/exceptions.py,sha256=yy0Uot-WkcM6-PbNo2KDnrKAUL_PFmeCT
7
7
  scope_client/api_bindings/rest.py,sha256=WjYLgwpOMypfMPuivIUYSaIJLd8YxqIIFx8BTA3RwXA,9428
8
8
  scope_client/api_bindings/api/__init__.py,sha256=WpyjbYyKIGml6DwGc347baVJfXKPwlkPuhBBbPa-gvo,1911
9
9
  scope_client/api_bindings/api/alert_rules_v1_api.py,sha256=9_4RLl8yXbGasjviiAyGDCrUVn3Pz0UeiRcFGfPIEog,64935
10
- scope_client/api_bindings/api/alerts_v1_api.py,sha256=s7PpC39SZ87KTCqKp92TKbbhea4s3sf42DrJZZwKCv4,41221
10
+ scope_client/api_bindings/api/alerts_v1_api.py,sha256=hAyljzNdtm3ruaN1C5qyTCZJF5u0LqmxPraZoACockk,41281
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
14
  scope_client/api_bindings/api/data_plane_associations_v1_api.py,sha256=Y1ow27ypdInRwm2QEV1nOr-7yOcw6BN6va6ZO0Tn3Jc,70350
15
15
  scope_client/api_bindings/api/data_planes_v1_api.py,sha256=NmJTxXGRecT6XNZntWXosWDjyWt7Xq5gPou9ZTkrb54,70920
16
16
  scope_client/api_bindings/api/data_retrieval_v1_api.py,sha256=o8yKv-rw3E0KVa2nyePR8jR83FYpPUxqQTq00cCDVyM,97313
17
- scope_client/api_bindings/api/datasets_v1_api.py,sha256=RqnNMeqo6w_nPiPwHDCM6Xm2Gs87KLumpHPiBgfplck,172648
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
19
- scope_client/api_bindings/api/groups_v1_api.py,sha256=pQhyw03PyGEEWROuqh50ESmWwpFkhpEMytiqaiEXouw,111569
19
+ scope_client/api_bindings/api/groups_v1_api.py,sha256=2c2G1Zd0ML1B4qHsNBBG2J9TsFpRGj1xL_vVQgOwq-4,111689
20
20
  scope_client/api_bindings/api/jobs_v1_api.py,sha256=ZdeRvKJLLRf9E9sBxJouXLwkU3XN4Tvhs6Aqak6zypw,162577
21
21
  scope_client/api_bindings/api/metric_functions_v1_api.py,sha256=45LccTGUq20MocyPk5rzbngTtAFRfyIw_Adck4RSP7s,10836
22
22
  scope_client/api_bindings/api/metrics_v1_api.py,sha256=QumpmMptWgGyCRBhNCUU23IQFLHslg3W3gFL4BMxLMI,52522
@@ -28,7 +28,7 @@ scope_client/api_bindings/api/registration_v1_api.py,sha256=cPmagSOgnne2cZNgYDKm
28
28
  scope_client/api_bindings/api/roles_v1_api.py,sha256=LnlGL0BhhNAsXpIIkCyoBV765rw2bcIwWPz3EsyQi18,11234
29
29
  scope_client/api_bindings/api/tasks_v1_api.py,sha256=9G2YNDXlV0f05yCJPM8aCinmDkDtz_o7Rbn5sQzSl54,68732
30
30
  scope_client/api_bindings/api/upsolve_v1_api.py,sha256=Vdep9x-_lIJq_kOwtsGqYqkssgSaCEy45_WDupKwrgA,12230
31
- scope_client/api_bindings/api/users_v1_api.py,sha256=6fPQbwuRVen_HGBf7vhAedacg8sAugrTDxb8CuqLoU8,102391
31
+ scope_client/api_bindings/api/users_v1_api.py,sha256=MxLtNxP354ftK-IjSQlkdhpL9SmzJw25SrLNMQ-vuhI,102451
32
32
  scope_client/api_bindings/api/webhooks_v1_api.py,sha256=86tRi7pgwICshf8WVyYA1WrJggThpnsTaON9Mx8R-0M,71286
33
33
  scope_client/api_bindings/api/workspaces_v1_api.py,sha256=OjMc-pJe2JAGgv5ZGTD8_TkQxw82vz2e381-5m37vJ4,58653
34
34
  scope_client/api_bindings/models/__init__.py,sha256=xdpJhSaMLcINA4t0FuS4fAHjId1YEecafToPSs9ZbFY,21398
@@ -44,7 +44,7 @@ scope_client/api_bindings/models/alert_rule_notification_webhook.py,sha256=Oi6c_
44
44
  scope_client/api_bindings/models/alert_rule_sort.py,sha256=ewtr9F3cttc4VpoCZcgOLd18zQUanhV18D0D0RLbmaQ,761
45
45
  scope_client/api_bindings/models/alert_sort.py,sha256=4su0uTugb5QPxuLc25VTJDe9rrVK1S2glB_uki-pJYY,759
46
46
  scope_client/api_bindings/models/alert_webhook_called.py,sha256=FnTm6lEDN9r08sSTYq49THxSAwcGpU-y4-iG5nK0LBs,3250
47
- scope_client/api_bindings/models/available_dataset.py,sha256=nGt22SomJZtxdwBXo0y87ccP1gS0KEaMLe5nKNwKqPc,6172
47
+ scope_client/api_bindings/models/available_dataset.py,sha256=Pj6blIss0fgWE8WYupg1uvd8nJdSPaNlA7cwGia7BZc,6339
48
48
  scope_client/api_bindings/models/available_datasets_sort.py,sha256=YtRm774EaUfmA0glgrGvRvRz1sgfx69isoOtH5BdYe8,815
49
49
  scope_client/api_bindings/models/bad_request_error.py,sha256=zcnIjQgRFVe5OQnavEGGwAePfDdQK0zxTWJVXYDgUVM,2577
50
50
  scope_client/api_bindings/models/base_role.py,sha256=ADSbaBWj71pZGMsFMfjXOCKXy6jRU0cWZzfHzL_kX2Q,3009
@@ -80,7 +80,7 @@ scope_client/api_bindings/models/data_result_filter_op.py,sha256=TXBfPsCLA8ErXRf
80
80
  scope_client/api_bindings/models/data_retrieval_data.py,sha256=Iz1xUEHKLm1B_9cy2avq95zFT-SFNUmMc8T0gFeDQeQ,2896
81
81
  scope_client/api_bindings/models/data_retrieval_operation.py,sha256=OjO4dl88iUAPaU5ZQr4LmPLeO2J_a5XvzwGQJRm8Wsw,3560
82
82
  scope_client/api_bindings/models/data_retrieval_status.py,sha256=I9VYbwOcDLs4TLQiJl4TgE_SpEJ-qFTy4-8_3ai4rUQ,811
83
- scope_client/api_bindings/models/dataset.py,sha256=9o2uMxGpz9g0i9haXgZ6uBK_btE4Yyu8XfjsCO0Xwfw,6025
83
+ scope_client/api_bindings/models/dataset.py,sha256=Ge7vNCcnq-QkYKMPslZKsKZrt9EEDwDGwaqJS8Yt8Q8,6192
84
84
  scope_client/api_bindings/models/dataset_column.py,sha256=yO6E1hV_7TFUZPSIAGXA9yA3ZJb7iapNFu4ihroUyjM,3046
85
85
  scope_client/api_bindings/models/dataset_connector.py,sha256=LJxsvUGXnL3j53DfJ1is8CdpIbLBlfGtV2MH3k7oz3U,2934
86
86
  scope_client/api_bindings/models/dataset_join_kind.py,sha256=jHxzGKCkveqMJ8cioaFu59FHjLBo9CAkrGdMqMOqIlM,821
@@ -150,10 +150,10 @@ scope_client/api_bindings/models/metrics_upload_metrics_inner.py,sha256=46eRuiOO
150
150
  scope_client/api_bindings/models/metrics_upload_result.py,sha256=1m4F6hEnfqAuUM0vJ3szIzazssQy5fNDNLR2f9KDRxo,3109
151
151
  scope_client/api_bindings/models/metrics_version.py,sha256=fdMhE-G65uU4oo7puz4WjpfzqEA4i51PjpblvHZ6r5I,3436
152
152
  scope_client/api_bindings/models/metrics_versions_sort.py,sha256=_ICvw8KzKmDhscMVob4_rZCFDEFDGXWSmDYDDQDDWCw,851
153
- scope_client/api_bindings/models/model.py,sha256=u8RIH4RMqEwboT5yRChtr5gGCN2TIdsR1sNywNd8N-Q,6633
153
+ scope_client/api_bindings/models/model.py,sha256=Fr05dC-OaFyt5Sfuamr5uDmq8GEw7gYm7ylaGsmA5hs,6798
154
154
  scope_client/api_bindings/models/model_metric_spec.py,sha256=ToHw_BkX_5AHfuGE6kUJ4Q4keIvy2nsd2bKYXRIwU1o,3313
155
155
  scope_client/api_bindings/models/model_metrics_schedule.py,sha256=XECd_-w6it6yGG8t9gXK_RttPsrNsSLjryutHkiVh_A,3270
156
- scope_client/api_bindings/models/model_problem_type.py,sha256=-0Qy3HAcO4DFAMx5hXoAQcijqBOi9397qVdrYVoCf58,862
156
+ scope_client/api_bindings/models/model_problem_type.py,sha256=p59CYCARClh0T1J5Gv1dxDZYql_TCm6Bw5AKA42_OA4,922
157
157
  scope_client/api_bindings/models/models_sort.py,sha256=iCecXPvDFwrBexZ9XO08xoroHyiDT8qjgYLpxe1oEms,782
158
158
  scope_client/api_bindings/models/new_rule_request.py,sha256=hdttTTCBlG2CKd9QAWSlPSxTNQJYXKA_D2fctWzyL3Y,3770
159
159
  scope_client/api_bindings/models/not_found_error.py,sha256=n-XQUZEqEkKm32MJ-m3oM9GRQPEqVHpLPwgRp2rPrUg,2583
@@ -297,7 +297,7 @@ scope_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD9
297
297
  scope_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
298
298
  scope_client/auth/oauth_api_config.py,sha256=wcEslusOFKr0oTzW0Ku2MhM1mvc-nm4BEJU8LHo1uXA,1347
299
299
  scope_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
300
- scope_client-1.4.928.dist-info/METADATA,sha256=2mYevs6gMJlECTJh4z9p1sGSYb1Nrx1C282P7FoHl_Y,1776
301
- scope_client-1.4.928.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
302
- scope_client-1.4.928.dist-info/top_level.txt,sha256=x6MngS09hi-TUDoUGb3SLzmnf8_cf8IVAVNPSqtTzAY,13
303
- scope_client-1.4.928.dist-info/RECORD,,
300
+ scope_client-1.4.930.dist-info/METADATA,sha256=n93owt_f4qicxLUhJdPMrx2AW_eseuX8fLMhnNKQWKk,1776
301
+ scope_client-1.4.930.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
302
+ scope_client-1.4.930.dist-info/top_level.txt,sha256=x6MngS09hi-TUDoUGb3SLzmnf8_cf8IVAVNPSqtTzAY,13
303
+ scope_client-1.4.930.dist-info/RECORD,,