scope-client 1.4.1154__py3-none-any.whl → 1.4.1156__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.
@@ -169,8 +169,8 @@ from scope_client.api_bindings.models.list_type import ListType
169
169
  from scope_client.api_bindings.models.metrics_arg_spec import MetricsArgSpec
170
170
  from scope_client.api_bindings.models.metrics_calculation_job_spec import MetricsCalculationJobSpec
171
171
  from scope_client.api_bindings.models.metrics_column_list_parameter_schema import MetricsColumnListParameterSchema
172
+ from scope_client.api_bindings.models.metrics_column_list_parameter_schema_allowed_column_types_inner import MetricsColumnListParameterSchemaAllowedColumnTypesInner
172
173
  from scope_client.api_bindings.models.metrics_column_parameter_schema import MetricsColumnParameterSchema
173
- from scope_client.api_bindings.models.metrics_column_parameter_schema_allowed_column_types_inner import MetricsColumnParameterSchemaAllowedColumnTypesInner
174
174
  from scope_client.api_bindings.models.metrics_dataset_parameter_schema import MetricsDatasetParameterSchema
175
175
  from scope_client.api_bindings.models.metrics_literal_parameter_schema import MetricsLiteralParameterSchema
176
176
  from scope_client.api_bindings.models.metrics_query_result import MetricsQueryResult
@@ -127,8 +127,8 @@ from scope_client.api_bindings.models.list_type import ListType
127
127
  from scope_client.api_bindings.models.metrics_arg_spec import MetricsArgSpec
128
128
  from scope_client.api_bindings.models.metrics_calculation_job_spec import MetricsCalculationJobSpec
129
129
  from scope_client.api_bindings.models.metrics_column_list_parameter_schema import MetricsColumnListParameterSchema
130
+ from scope_client.api_bindings.models.metrics_column_list_parameter_schema_allowed_column_types_inner import MetricsColumnListParameterSchemaAllowedColumnTypesInner
130
131
  from scope_client.api_bindings.models.metrics_column_parameter_schema import MetricsColumnParameterSchema
131
- from scope_client.api_bindings.models.metrics_column_parameter_schema_allowed_column_types_inner import MetricsColumnParameterSchemaAllowedColumnTypesInner
132
132
  from scope_client.api_bindings.models.metrics_dataset_parameter_schema import MetricsDatasetParameterSchema
133
133
  from scope_client.api_bindings.models.metrics_literal_parameter_schema import MetricsLiteralParameterSchema
134
134
  from scope_client.api_bindings.models.metrics_query_result import MetricsQueryResult
@@ -35,6 +35,7 @@ class DType(str, Enum):
35
35
  TIMESTAMP = 'timestamp'
36
36
  DATE = 'date'
37
37
  JSON = 'json'
38
+ IMAGE = 'image'
38
39
 
39
40
  @classmethod
40
41
  def from_json(cls, json_str: str) -> Self:
@@ -19,6 +19,8 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr, field_validator
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
+ from scope_client.api_bindings.models.metrics_column_list_parameter_schema_allowed_column_types_inner import MetricsColumnListParameterSchemaAllowedColumnTypesInner
23
+ from scope_client.api_bindings.models.scope_schema_tag import ScopeSchemaTag
22
24
  from typing import Optional, Set
23
25
  from typing_extensions import Self
24
26
 
@@ -31,7 +33,11 @@ class MetricsColumnListParameterSchema(BaseModel):
31
33
  friendly_name: StrictStr = Field(description="User facing name of the parameter.")
32
34
  description: StrictStr = Field(description="Description of the parameter.")
33
35
  parameter_type: Optional[StrictStr] = 'column_list'
34
- __properties: ClassVar[List[str]] = ["parameter_key", "optional", "friendly_name", "description", "parameter_type"]
36
+ tag_hints: Optional[List[ScopeSchemaTag]] = Field(default=None, description="List of tags that are applicable to this parameter. Datasets with columns that have matching tags can be inferred this way.")
37
+ source_dataset_parameter_key: StrictStr = Field(description="Name of the parameter that provides the dataset to be used for this column.")
38
+ allowed_column_types: Optional[List[MetricsColumnListParameterSchemaAllowedColumnTypesInner]] = None
39
+ allow_any_column_type: Optional[StrictBool] = Field(default=False, description="Indicates if this metric parameter can accept any column type.")
40
+ __properties: ClassVar[List[str]] = ["parameter_key", "optional", "friendly_name", "description", "parameter_type", "tag_hints", "source_dataset_parameter_key", "allowed_column_types", "allow_any_column_type"]
35
41
 
36
42
  @field_validator('parameter_type')
37
43
  def parameter_type_validate_enum(cls, value):
@@ -82,6 +88,18 @@ class MetricsColumnListParameterSchema(BaseModel):
82
88
  exclude=excluded_fields,
83
89
  exclude_none=True,
84
90
  )
91
+ # override the default output from pydantic by calling `to_dict()` of each item in allowed_column_types (list)
92
+ _items = []
93
+ if self.allowed_column_types:
94
+ for _item_allowed_column_types in self.allowed_column_types:
95
+ if _item_allowed_column_types:
96
+ _items.append(_item_allowed_column_types.to_dict())
97
+ _dict['allowed_column_types'] = _items
98
+ # set to None if allowed_column_types (nullable) is None
99
+ # and model_fields_set contains the field
100
+ if self.allowed_column_types is None and "allowed_column_types" in self.model_fields_set:
101
+ _dict['allowed_column_types'] = None
102
+
85
103
  return _dict
86
104
 
87
105
  @classmethod
@@ -98,7 +116,11 @@ class MetricsColumnListParameterSchema(BaseModel):
98
116
  "optional": obj.get("optional") if obj.get("optional") is not None else False,
99
117
  "friendly_name": obj.get("friendly_name"),
100
118
  "description": obj.get("description"),
101
- "parameter_type": obj.get("parameter_type") if obj.get("parameter_type") is not None else 'column_list'
119
+ "parameter_type": obj.get("parameter_type") if obj.get("parameter_type") is not None else 'column_list',
120
+ "tag_hints": obj.get("tag_hints"),
121
+ "source_dataset_parameter_key": obj.get("source_dataset_parameter_key"),
122
+ "allowed_column_types": [MetricsColumnListParameterSchemaAllowedColumnTypesInner.from_dict(_item) for _item in obj["allowed_column_types"]] if obj.get("allowed_column_types") is not None else None,
123
+ "allow_any_column_type": obj.get("allow_any_column_type") if obj.get("allow_any_column_type") is not None else False
102
124
  })
103
125
  return _obj
104
126
 
@@ -24,11 +24,11 @@ from typing import Union, Any, List, Set, TYPE_CHECKING, Optional, Dict
24
24
  from typing_extensions import Literal, Self
25
25
  from pydantic import Field
26
26
 
27
- METRICSCOLUMNPARAMETERSCHEMAALLOWEDCOLUMNTYPESINNER_ANY_OF_SCHEMAS = ["ListType", "ObjectType", "ScalarType"]
27
+ METRICSCOLUMNLISTPARAMETERSCHEMAALLOWEDCOLUMNTYPESINNER_ANY_OF_SCHEMAS = ["ListType", "ObjectType", "ScalarType"]
28
28
 
29
- class MetricsColumnParameterSchemaAllowedColumnTypesInner(BaseModel):
29
+ class MetricsColumnListParameterSchemaAllowedColumnTypesInner(BaseModel):
30
30
  """
31
- MetricsColumnParameterSchemaAllowedColumnTypesInner
31
+ MetricsColumnListParameterSchemaAllowedColumnTypesInner
32
32
  """
33
33
 
34
34
  # data type: ScalarType
@@ -60,7 +60,7 @@ class MetricsColumnParameterSchemaAllowedColumnTypesInner(BaseModel):
60
60
 
61
61
  @field_validator('actual_instance')
62
62
  def actual_instance_must_validate_anyof(cls, v):
63
- instance = MetricsColumnParameterSchemaAllowedColumnTypesInner.model_construct()
63
+ instance = MetricsColumnListParameterSchemaAllowedColumnTypesInner.model_construct()
64
64
  error_messages = []
65
65
  # validate data type: ScalarType
66
66
  if not isinstance(v, ScalarType):
@@ -82,7 +82,7 @@ class MetricsColumnParameterSchemaAllowedColumnTypesInner(BaseModel):
82
82
 
83
83
  if error_messages:
84
84
  # no match
85
- raise ValueError("No match found when setting the actual_instance in MetricsColumnParameterSchemaAllowedColumnTypesInner with anyOf schemas: ListType, ObjectType, ScalarType. Details: " + ", ".join(error_messages))
85
+ raise ValueError("No match found when setting the actual_instance in MetricsColumnListParameterSchemaAllowedColumnTypesInner with anyOf schemas: ListType, ObjectType, ScalarType. Details: " + ", ".join(error_messages))
86
86
  else:
87
87
  return v
88
88
 
@@ -116,7 +116,7 @@ class MetricsColumnParameterSchemaAllowedColumnTypesInner(BaseModel):
116
116
 
117
117
  if error_messages:
118
118
  # no match
119
- raise ValueError("No match found when deserializing the JSON string into MetricsColumnParameterSchemaAllowedColumnTypesInner with anyOf schemas: ListType, ObjectType, ScalarType. Details: " + ", ".join(error_messages))
119
+ raise ValueError("No match found when deserializing the JSON string into MetricsColumnListParameterSchemaAllowedColumnTypesInner with anyOf schemas: ListType, ObjectType, ScalarType. Details: " + ", ".join(error_messages))
120
120
  else:
121
121
  return instance
122
122
 
@@ -147,5 +147,5 @@ class MetricsColumnParameterSchemaAllowedColumnTypesInner(BaseModel):
147
147
  from scope_client.api_bindings.models.list_type import ListType
148
148
  from scope_client.api_bindings.models.object_type import ObjectType
149
149
  # TODO: Rewrite to not use raise_errors
150
- MetricsColumnParameterSchemaAllowedColumnTypesInner.model_rebuild(raise_errors=False)
150
+ MetricsColumnListParameterSchemaAllowedColumnTypesInner.model_rebuild(raise_errors=False)
151
151
 
@@ -19,7 +19,7 @@ import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr, field_validator
21
21
  from typing import Any, ClassVar, Dict, List, Optional
22
- from scope_client.api_bindings.models.metrics_column_parameter_schema_allowed_column_types_inner import MetricsColumnParameterSchemaAllowedColumnTypesInner
22
+ from scope_client.api_bindings.models.metrics_column_list_parameter_schema_allowed_column_types_inner import MetricsColumnListParameterSchemaAllowedColumnTypesInner
23
23
  from scope_client.api_bindings.models.scope_schema_tag import ScopeSchemaTag
24
24
  from typing import Optional, Set
25
25
  from typing_extensions import Self
@@ -35,7 +35,7 @@ class MetricsColumnParameterSchema(BaseModel):
35
35
  parameter_type: Optional[StrictStr] = 'column'
36
36
  tag_hints: Optional[List[ScopeSchemaTag]] = Field(default=None, description="List of tags that are applicable to this parameter. Datasets with columns that have matching tags can be inferred this way.")
37
37
  source_dataset_parameter_key: StrictStr = Field(description="Name of the parameter that provides the dataset to be used for this column.")
38
- allowed_column_types: Optional[List[MetricsColumnParameterSchemaAllowedColumnTypesInner]] = None
38
+ allowed_column_types: Optional[List[MetricsColumnListParameterSchemaAllowedColumnTypesInner]] = None
39
39
  allow_any_column_type: Optional[StrictBool] = Field(default=False, description="Indicates if this metric parameter can accept any column type.")
40
40
  __properties: ClassVar[List[str]] = ["parameter_key", "optional", "friendly_name", "description", "parameter_type", "tag_hints", "source_dataset_parameter_key", "allowed_column_types", "allow_any_column_type"]
41
41
 
@@ -119,7 +119,7 @@ class MetricsColumnParameterSchema(BaseModel):
119
119
  "parameter_type": obj.get("parameter_type") if obj.get("parameter_type") is not None else 'column',
120
120
  "tag_hints": obj.get("tag_hints"),
121
121
  "source_dataset_parameter_key": obj.get("source_dataset_parameter_key"),
122
- "allowed_column_types": [MetricsColumnParameterSchemaAllowedColumnTypesInner.from_dict(_item) for _item in obj["allowed_column_types"]] if obj.get("allowed_column_types") is not None else None,
122
+ "allowed_column_types": [MetricsColumnListParameterSchemaAllowedColumnTypesInner.from_dict(_item) for _item in obj["allowed_column_types"]] if obj.get("allowed_column_types") is not None else None,
123
123
  "allow_any_column_type": obj.get("allow_any_column_type") if obj.get("allow_any_column_type") is not None else False
124
124
  })
125
125
  return _obj
@@ -26,7 +26,7 @@ class ObjectType(BaseModel):
26
26
  """
27
27
  ObjectType
28
28
  """ # noqa: E501
29
- object: Dict[str, MetricsColumnParameterSchemaAllowedColumnTypesInner]
29
+ object: Dict[str, MetricsColumnListParameterSchemaAllowedColumnTypesInner]
30
30
  __properties: ClassVar[List[str]] = ["object"]
31
31
 
32
32
  model_config = ConfigDict(
@@ -88,7 +88,7 @@ class ObjectType(BaseModel):
88
88
 
89
89
  _obj = cls.model_validate({
90
90
  "object": dict(
91
- (_k, MetricsColumnParameterSchemaAllowedColumnTypesInner.from_dict(_v))
91
+ (_k, MetricsColumnListParameterSchemaAllowedColumnTypesInner.from_dict(_v))
92
92
  for _k, _v in obj["object"].items()
93
93
  )
94
94
  if obj.get("object") is not None
@@ -96,7 +96,7 @@ class ObjectType(BaseModel):
96
96
  })
97
97
  return _obj
98
98
 
99
- from scope_client.api_bindings.models.metrics_column_parameter_schema_allowed_column_types_inner import MetricsColumnParameterSchemaAllowedColumnTypesInner
99
+ from scope_client.api_bindings.models.metrics_column_list_parameter_schema_allowed_column_types_inner import MetricsColumnListParameterSchemaAllowedColumnTypesInner
100
100
  # TODO: Rewrite to not use raise_errors
101
101
  ObjectType.model_rebuild(raise_errors=False)
102
102
 
@@ -34,6 +34,7 @@ class ScopeSchemaTag(str, Enum):
34
34
  CONTINUOUS = 'continuous'
35
35
  PREDICTION = 'prediction'
36
36
  GROUND_TRUTH = 'ground_truth'
37
+ PIN_IN_DEEP_DIVE = 'pin_in_deep_dive'
37
38
 
38
39
  @classmethod
39
40
  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.1154
3
+ Version: 1.4.1156
4
4
  Summary: Arthur Python API Client Library
5
5
  Author-email: Arthur <info@arthur.ai>
6
6
  License: MIT
@@ -1,5 +1,5 @@
1
1
  scope_client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- scope_client/api_bindings/__init__.py,sha256=AR_fvd0G_47KW3t6gCHp99owHZhYJsrBHYJtRhledWY,25589
2
+ scope_client/api_bindings/__init__.py,sha256=FuU71Qm7uPn6sI6vI5Qr5qPQAd9I7x74LIHpY6rpQPM,25598
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
@@ -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=3DpuXoHuWZvN8hU409AuyltBBwfK1PEBTeF5kKnlaek,114510
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=NzN5zS0bKT2QzKESGXOBLDIIKtaLutTmf3katGMty30,23002
35
+ scope_client/api_bindings/models/__init__.py,sha256=o7yVqps1kihxX4813446p1NeiX4POCXamwyGbTXYQsA,23011
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
@@ -74,7 +74,7 @@ scope_client/api_bindings/models/create_model_link_task_job_spec.py,sha256=i3zJ5
74
74
  scope_client/api_bindings/models/create_model_task_job_spec.py,sha256=NJFYYgk6XNTa0ssT5Lg8ALFkdQj2Zvlrs-0y8iXrS-E,4427
75
75
  scope_client/api_bindings/models/created_alerts.py,sha256=HEU8jGJvowCbwZgU7wUn410lNiJAAox5SYRyDd2uglw,3949
76
76
  scope_client/api_bindings/models/credentials.py,sha256=z1kk6SelBNpHCC78wW0-feiY6I0Q9sxFD3Bo3C0j_zI,5118
77
- scope_client/api_bindings/models/d_type.py,sha256=sg1LfWA05rBStEo9VIEgimHRpk8sCcrx63c8WUDCj6Y,869
77
+ scope_client/api_bindings/models/d_type.py,sha256=DkkurJHk6BAYxilYGXvr3Okw59-jMiFd6BqREi0fi4E,889
78
78
  scope_client/api_bindings/models/data_plane.py,sha256=zpTmidWWq7nQZn6TY3ziOSoZUqC9iKY0hECtNjFcJlw,4260
79
79
  scope_client/api_bindings/models/data_plane_association.py,sha256=GyoPxgFDsHuy8La73VqFl-rtcanteE53fkOlzav0ElY,4373
80
80
  scope_client/api_bindings/models/data_plane_association_sort.py,sha256=PaRZV90wjsWum3SDKgWxd-QEJ458Ik-cD9w_fNNoSMo,806
@@ -145,9 +145,9 @@ scope_client/api_bindings/models/list_datasets_job_spec.py,sha256=d9LF0Os3ysWWs_
145
145
  scope_client/api_bindings/models/list_type.py,sha256=1e2kkbSeng8L_-kbRnO7aEVvATVwze9RXAqRagsXwjA,2798
146
146
  scope_client/api_bindings/models/metrics_arg_spec.py,sha256=wbR1Wnzq3gqhbEhmh3JYdUr_MBpFO7dfdvINNODLPhg,2859
147
147
  scope_client/api_bindings/models/metrics_calculation_job_spec.py,sha256=MyFAelowMrhjTUm23x98GRvCZjlDbr38jak4S4rth-Y,3532
148
- scope_client/api_bindings/models/metrics_column_list_parameter_schema.py,sha256=BdJyCZ6P5w9Rc-fNg0c9I0IVStKtrLslq3opiDX-tVA,3713
149
- scope_client/api_bindings/models/metrics_column_parameter_schema.py,sha256=1kSgwr_lEpU25hvVSZNU8XfWNX2-Vn5ySFZTJT7IQAU,5755
150
- scope_client/api_bindings/models/metrics_column_parameter_schema_allowed_column_types_inner.py,sha256=PiyXfLNDPdg782xwYPkCdVp81cRz1HmYCvJBQbVmgE8,5849
148
+ scope_client/api_bindings/models/metrics_column_list_parameter_schema.py,sha256=Sk-0FVSEyUJuNHEJsmJ3ihVmyo4i5x5vvO0TxZrKxL8,5808
149
+ scope_client/api_bindings/models/metrics_column_list_parameter_schema_allowed_column_types_inner.py,sha256=1zy1b2aH-4M0vgcOukKVRxPjKsXI9XJ8nLP1pKabOZo,5877
150
+ scope_client/api_bindings/models/metrics_column_parameter_schema.py,sha256=gnVukdzNqrSl2VjTtQh2j1Ty9nIUj9Y_aXTe9R80UO0,5772
151
151
  scope_client/api_bindings/models/metrics_dataset_parameter_schema.py,sha256=l6n0oWjYJGvqD6MYhsvqwLL8C9LtQ44ejevWIgVl-0w,4166
152
152
  scope_client/api_bindings/models/metrics_literal_parameter_schema.py,sha256=_9gYI1Tx7FE_vyD1NFQentxWAQjEMilBtpPZhQco038,3899
153
153
  scope_client/api_bindings/models/metrics_query_result.py,sha256=xnfYYBocFqpeRMOVqlrbRyvcd1NJREotAI-iFOFYoEo,2585
@@ -167,7 +167,7 @@ scope_client/api_bindings/models/not_found_error.py,sha256=n-XQUZEqEkKm32MJ-m3oM
167
167
  scope_client/api_bindings/models/numeric_metric.py,sha256=a6F4QZizE5hFth50Zp6Q7j3a6ANdvZTI1qfPTWhxLh8,3277
168
168
  scope_client/api_bindings/models/numeric_point.py,sha256=rKsENbmx9V5ELANWr2oEeybTr22IrfirJ_kCR0LSl2g,2815
169
169
  scope_client/api_bindings/models/numeric_time_series.py,sha256=DbDByoYRastxFyfyQ3xw0AOmKcYXqTHOGC6hvtkoD9c,3782
170
- scope_client/api_bindings/models/object_type.py,sha256=L58VjaX1mD5MRlxmABO6R4_rBIRkrfSqlcLH88iUJlo,3329
170
+ scope_client/api_bindings/models/object_type.py,sha256=PqEBuvp9EZjiJIMKJBjRRFVrYGISM9Lr_c0w2zUXPAE,3346
171
171
  scope_client/api_bindings/models/object_value.py,sha256=4KpiwJjt00Xp10s38VHdld8HfTFpX5-1r00APnfkAuI,5887
172
172
  scope_client/api_bindings/models/organization.py,sha256=BQJHXIGcrmcGQrxD4JhIEBlaaazysZ5nYdPZM9W1N_o,2991
173
173
  scope_client/api_bindings/models/pagination.py,sha256=XWpYUWgFJIYmtJ3bMOqGlu6ganeK4wUxpZ8mCPC1d1Q,3118
@@ -278,7 +278,7 @@ scope_client/api_bindings/models/rule_type.py,sha256=uzSIk0G9q--MBKfda7N0Ooju_IB
278
278
  scope_client/api_bindings/models/scalar_type.py,sha256=S5BiTsMG-oM2GC-EmlX7OdY2l9dISlathXja4XCkjMM,2508
279
279
  scope_client/api_bindings/models/schedule_jobs_job_spec.py,sha256=S75JHtQV3VvJ58TPEUoBtfQ68odSCySONyJ2Io5CYpA,3335
280
280
  scope_client/api_bindings/models/schema_inspection_job_spec.py,sha256=yKpGEstb0ze_F-jajJd8V9Dfulr4wv5BDUoZ19gnNBk,3352
281
- scope_client/api_bindings/models/scope_schema_tag.py,sha256=xvPNpX1reIQxcMPPzKZMbJIKRBTjgsTBI3soRfRazHs,982
281
+ scope_client/api_bindings/models/scope_schema_tag.py,sha256=nX8UlFlwoFyxV7cBviTCzPEjhrfx1ool8faqfXT0CzA,1024
282
282
  scope_client/api_bindings/models/sensitive_data_plane.py,sha256=R6-8wwLOm_HGYLdsj475kdYTIEOOiurl3NzAupTqsiI,4582
283
283
  scope_client/api_bindings/models/sensitive_user.py,sha256=jBBMTZaktUrF0tCjEybOFSD5zBILwfnQBou7yg1g9SM,5526
284
284
  scope_client/api_bindings/models/service_account_credentials.py,sha256=jjnqsr-YyTFyOwi8jMx1ygyE1uzvyO83FZSe_5iA8R8,2772
@@ -315,7 +315,7 @@ scope_client/auth/device_authorizer.py,sha256=bJMIZRjkwQwoSWTLEp7OoXM2MytO3ADSD9
315
315
  scope_client/auth/discovery.py,sha256=hR0MglzRWHdwyi72If5hTnjO50fDJhquP_DD7OzjIQQ,1188
316
316
  scope_client/auth/oauth_api_config.py,sha256=wcEslusOFKr0oTzW0Ku2MhM1mvc-nm4BEJU8LHo1uXA,1347
317
317
  scope_client/auth/session.py,sha256=wCriib5ajfm1e1WTL_QXVCJmEOrGwQg_0v91e5qrC6g,2649
318
- scope_client-1.4.1154.dist-info/METADATA,sha256=9nTtMqe_-j3R_kLeE49-4_X1OagcdS-ksnyC-8p6PmA,1777
319
- scope_client-1.4.1154.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
320
- scope_client-1.4.1154.dist-info/top_level.txt,sha256=x6MngS09hi-TUDoUGb3SLzmnf8_cf8IVAVNPSqtTzAY,13
321
- scope_client-1.4.1154.dist-info/RECORD,,
318
+ scope_client-1.4.1156.dist-info/METADATA,sha256=lfSEuY7y0dayeudLV7nhQ_gG78f83b3iRB_l8x6XZ6o,1777
319
+ scope_client-1.4.1156.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
320
+ scope_client-1.4.1156.dist-info/top_level.txt,sha256=x6MngS09hi-TUDoUGb3SLzmnf8_cf8IVAVNPSqtTzAY,13
321
+ scope_client-1.4.1156.dist-info/RECORD,,