anyscale 0.26.25__py3-none-any.whl → 0.26.27__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.
@@ -1226,6 +1226,7 @@ Name | Type | Description | Notes
1226
1226
  **name** | **str** | Organization's display name. | [default to null]
1227
1227
  **public_identifier** | **str** | Organization's public identifier. | [default to null]
1228
1228
  **sso_required** | **bool** | Require users to log in to your organization using single sign on (SSO). | [optional] [default to false]
1229
+ **sso_mode** | [**SSOMode**](#ssomode) | Mode for use of single sign on (SSO) for your organization. | [optional] [default to null]
1229
1230
 
1230
1231
  ## OrganizationResponse
1231
1232
 
@@ -237,6 +237,7 @@ ANYSCALE_IAM_PERMISSIONS_SERVICE_STEADY_STATE = {
237
237
  "elasticloadbalancing:DescribeTargetGroupAttributes",
238
238
  "elasticloadbalancing:DescribeTargetHealth",
239
239
  "elasticloadbalancing:DescribeListenerCertificates",
240
+ "elasticloadbalancing:DescribeTags",
240
241
  ],
241
242
  "Resource": "*",
242
243
  },
anyscale/client/README.md CHANGED
@@ -810,6 +810,7 @@ Class | Method | HTTP request | Description
810
810
  - [RunStatus](docs/RunStatus.md)
811
811
  - [S3DownloadLocation](docs/S3DownloadLocation.md)
812
812
  - [SSOLoginInfo](docs/SSOLoginInfo.md)
813
+ - [SSOMode](docs/SSOMode.md)
813
814
  - [SUPPORTEDBASEIMAGESENUM](docs/SUPPORTEDBASEIMAGESENUM.md)
814
815
  - [ScheduleConfig](docs/ScheduleConfig.md)
815
816
  - [SchedulerInfo](docs/SchedulerInfo.md)
@@ -473,6 +473,7 @@ from openapi_client.models.run_attempt_status import RunAttemptStatus
473
473
  from openapi_client.models.run_status import RunStatus
474
474
  from openapi_client.models.s3_download_location import S3DownloadLocation
475
475
  from openapi_client.models.sso_login_info import SSOLoginInfo
476
+ from openapi_client.models.sso_mode import SSOMode
476
477
  from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
477
478
  from openapi_client.models.schedule_config import ScheduleConfig
478
479
  from openapi_client.models.scheduler_info import SchedulerInfo
@@ -459,6 +459,7 @@ from openapi_client.models.run_attempt_status import RunAttemptStatus
459
459
  from openapi_client.models.run_status import RunStatus
460
460
  from openapi_client.models.s3_download_location import S3DownloadLocation
461
461
  from openapi_client.models.sso_login_info import SSOLoginInfo
462
+ from openapi_client.models.sso_mode import SSOMode
462
463
  from openapi_client.models.supportedbaseimagesenum import SUPPORTEDBASEIMAGESENUM
463
464
  from openapi_client.models.schedule_config import ScheduleConfig
464
465
  from openapi_client.models.scheduler_info import SchedulerInfo
@@ -104,8 +104,10 @@ class DecoratedJobQueue(object):
104
104
  self.discriminator = None
105
105
 
106
106
  self.id = id
107
- self.user_provided_id = user_provided_id
108
- self.name = name
107
+ if user_provided_id is not None:
108
+ self.user_provided_id = user_provided_id
109
+ if name is not None:
110
+ self.name = name
109
111
  self.current_job_queue_state = current_job_queue_state
110
112
  self.execution_mode = execution_mode
111
113
  self.max_concurrency = max_concurrency
@@ -174,8 +176,6 @@ class DecoratedJobQueue(object):
174
176
  :param user_provided_id: The user_provided_id of this DecoratedJobQueue. # noqa: E501
175
177
  :type: str
176
178
  """
177
- if self.local_vars_configuration.client_side_validation and user_provided_id is None: # noqa: E501
178
- raise ValueError("Invalid value for `user_provided_id`, must not be `None`") # noqa: E501
179
179
 
180
180
  self._user_provided_id = user_provided_id
181
181
 
@@ -199,8 +199,6 @@ class DecoratedJobQueue(object):
199
199
  :param name: The name of this DecoratedJobQueue. # noqa: E501
200
200
  :type: str
201
201
  """
202
- if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
203
- raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
204
202
 
205
203
  self._name = name
206
204
 
@@ -39,6 +39,7 @@ class Organization(object):
39
39
  'default_cloud_id': 'str',
40
40
  'sso_config_id': 'str',
41
41
  'sso_required': 'bool',
42
+ 'sso_mode': 'SSOMode',
42
43
  'is_general_platform_enabled': 'bool',
43
44
  'is_private_endpoints_enabled': 'bool',
44
45
  'is_usage_blocked': 'bool',
@@ -57,6 +58,7 @@ class Organization(object):
57
58
  'default_cloud_id': 'default_cloud_id',
58
59
  'sso_config_id': 'sso_config_id',
59
60
  'sso_required': 'sso_required',
61
+ 'sso_mode': 'sso_mode',
60
62
  'is_general_platform_enabled': 'is_general_platform_enabled',
61
63
  'is_private_endpoints_enabled': 'is_private_endpoints_enabled',
62
64
  'is_usage_blocked': 'is_usage_blocked',
@@ -68,7 +70,7 @@ class Organization(object):
68
70
  'invite_code': 'invite_code'
69
71
  }
70
72
 
71
- def __init__(self, id=None, name=None, public_identifier=None, default_cloud_id=None, sso_config_id=None, sso_required=False, is_general_platform_enabled=None, is_private_endpoints_enabled=None, is_usage_blocked=None, endpoints_user_id=None, endpoints_stripe_customer_id=None, endpoints_metronome_customer_id=None, endpoints_is_free_credit_used_up=None, metronome_customer_id=None, invite_code=None, local_vars_configuration=None): # noqa: E501
73
+ def __init__(self, id=None, name=None, public_identifier=None, default_cloud_id=None, sso_config_id=None, sso_required=False, sso_mode=None, is_general_platform_enabled=None, is_private_endpoints_enabled=None, is_usage_blocked=None, endpoints_user_id=None, endpoints_stripe_customer_id=None, endpoints_metronome_customer_id=None, endpoints_is_free_credit_used_up=None, metronome_customer_id=None, invite_code=None, local_vars_configuration=None): # noqa: E501
72
74
  """Organization - a model defined in OpenAPI""" # noqa: E501
73
75
  if local_vars_configuration is None:
74
76
  local_vars_configuration = Configuration()
@@ -80,6 +82,7 @@ class Organization(object):
80
82
  self._default_cloud_id = None
81
83
  self._sso_config_id = None
82
84
  self._sso_required = None
85
+ self._sso_mode = None
83
86
  self._is_general_platform_enabled = None
84
87
  self._is_private_endpoints_enabled = None
85
88
  self._is_usage_blocked = None
@@ -100,6 +103,8 @@ class Organization(object):
100
103
  self.sso_config_id = sso_config_id
101
104
  if sso_required is not None:
102
105
  self.sso_required = sso_required
106
+ if sso_mode is not None:
107
+ self.sso_mode = sso_mode
103
108
  self.is_general_platform_enabled = is_general_platform_enabled
104
109
  self.is_private_endpoints_enabled = is_private_endpoints_enabled
105
110
  self.is_usage_blocked = is_usage_blocked
@@ -248,6 +253,27 @@ class Organization(object):
248
253
 
249
254
  self._sso_required = sso_required
250
255
 
256
+ @property
257
+ def sso_mode(self):
258
+ """Gets the sso_mode of this Organization. # noqa: E501
259
+
260
+
261
+ :return: The sso_mode of this Organization. # noqa: E501
262
+ :rtype: SSOMode
263
+ """
264
+ return self._sso_mode
265
+
266
+ @sso_mode.setter
267
+ def sso_mode(self, sso_mode):
268
+ """Sets the sso_mode of this Organization.
269
+
270
+
271
+ :param sso_mode: The sso_mode of this Organization. # noqa: E501
272
+ :type: SSOMode
273
+ """
274
+
275
+ self._sso_mode = sso_mode
276
+
251
277
  @property
252
278
  def is_general_platform_enabled(self):
253
279
  """Gets the is_general_platform_enabled of this Organization. # noqa: E501
@@ -0,0 +1,101 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Managed Ray API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from openapi_client.configuration import Configuration
19
+
20
+
21
+ class SSOMode(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ allowed enum values
30
+ """
31
+ OFF = "off"
32
+ OPTIONAL = "optional"
33
+ REQUIRED = "required"
34
+
35
+ allowable_values = [OFF, OPTIONAL, REQUIRED] # noqa: E501
36
+
37
+ """
38
+ Attributes:
39
+ openapi_types (dict): The key is attribute name
40
+ and the value is attribute type.
41
+ attribute_map (dict): The key is attribute name
42
+ and the value is json key in definition.
43
+ """
44
+ openapi_types = {
45
+ }
46
+
47
+ attribute_map = {
48
+ }
49
+
50
+ def __init__(self, local_vars_configuration=None): # noqa: E501
51
+ """SSOMode - a model defined in OpenAPI""" # noqa: E501
52
+ if local_vars_configuration is None:
53
+ local_vars_configuration = Configuration()
54
+ self.local_vars_configuration = local_vars_configuration
55
+ self.discriminator = None
56
+
57
+ def to_dict(self):
58
+ """Returns the model properties as a dict"""
59
+ result = {}
60
+
61
+ for attr, _ in six.iteritems(self.openapi_types):
62
+ value = getattr(self, attr)
63
+ if isinstance(value, list):
64
+ result[attr] = list(map(
65
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
66
+ value
67
+ ))
68
+ elif hasattr(value, "to_dict"):
69
+ result[attr] = value.to_dict()
70
+ elif isinstance(value, dict):
71
+ result[attr] = dict(map(
72
+ lambda item: (item[0], item[1].to_dict())
73
+ if hasattr(item[1], "to_dict") else item,
74
+ value.items()
75
+ ))
76
+ else:
77
+ result[attr] = value
78
+
79
+ return result
80
+
81
+ def to_str(self):
82
+ """Returns the string representation of the model"""
83
+ return pprint.pformat(self.to_dict())
84
+
85
+ def __repr__(self):
86
+ """For `print` and `pprint`"""
87
+ return self.to_str()
88
+
89
+ def __eq__(self, other):
90
+ """Returns true if both objects are equal"""
91
+ if not isinstance(other, SSOMode):
92
+ return False
93
+
94
+ return self.to_dict() == other.to_dict()
95
+
96
+ def __ne__(self, other):
97
+ """Returns true if both objects are not equal"""
98
+ if not isinstance(other, SSOMode):
99
+ return True
100
+
101
+ return self.to_dict() != other.to_dict()
@@ -974,7 +974,14 @@ def terminate(
974
974
  service_config_file=config_file,
975
975
  project_id=project_id,
976
976
  )
977
- service_controller.terminate(service_id)
977
+ try:
978
+ anyscale.service.terminate(service_id)
979
+ log.info(f"Service {service_id} terminate initiated.")
980
+ log.info(
981
+ f'View the service in the UI at {get_endpoint(f"/services/{service_id}")}'
982
+ )
983
+ except Exception as e: # noqa: BLE001
984
+ log.error(f"Error terminating service: {e}")
978
985
 
979
986
 
980
987
  @service_cli.command(
anyscale/job/models.py CHANGED
@@ -73,15 +73,16 @@ job_queue_spec:
73
73
  elif idle_timeout_s < 0:
74
74
  raise ValueError("'idle_timeout_s' should be >= 0")
75
75
 
76
- name: str = field(
76
+ name: Optional[str] = field(
77
+ default=None,
77
78
  metadata={
78
79
  "docstring": "Name of the job queue that can be used to target it when submitting future jobs. "
79
80
  "The name of a job queue must be unique within a project.",
80
81
  },
81
82
  )
82
83
 
83
- def _validate_name(self, name: str):
84
- if not isinstance(name, str):
84
+ def _validate_name(self, name: Optional[str]):
85
+ if name is not None and not isinstance(name, str):
85
86
  raise TypeError(f"'name' must be a string (it is {type(name)}).")
86
87
 
87
88
  execution_mode: JobQueueExecutionMode = field( # type: ignore
@@ -36,17 +36,19 @@ class Organization(object):
36
36
  'id': 'str',
37
37
  'name': 'str',
38
38
  'public_identifier': 'str',
39
- 'sso_required': 'bool'
39
+ 'sso_required': 'bool',
40
+ 'sso_mode': 'SSOMode'
40
41
  }
41
42
 
42
43
  attribute_map = {
43
44
  'id': 'id',
44
45
  'name': 'name',
45
46
  'public_identifier': 'public_identifier',
46
- 'sso_required': 'sso_required'
47
+ 'sso_required': 'sso_required',
48
+ 'sso_mode': 'sso_mode'
47
49
  }
48
50
 
49
- def __init__(self, id=None, name=None, public_identifier=None, sso_required=False, local_vars_configuration=None): # noqa: E501
51
+ def __init__(self, id=None, name=None, public_identifier=None, sso_required=False, sso_mode=None, local_vars_configuration=None): # noqa: E501
50
52
  """Organization - a model defined in OpenAPI""" # noqa: E501
51
53
  if local_vars_configuration is None:
52
54
  local_vars_configuration = Configuration()
@@ -56,6 +58,7 @@ class Organization(object):
56
58
  self._name = None
57
59
  self._public_identifier = None
58
60
  self._sso_required = None
61
+ self._sso_mode = None
59
62
  self.discriminator = None
60
63
 
61
64
  self.id = id
@@ -63,6 +66,8 @@ class Organization(object):
63
66
  self.public_identifier = public_identifier
64
67
  if sso_required is not None:
65
68
  self.sso_required = sso_required
69
+ if sso_mode is not None:
70
+ self.sso_mode = sso_mode
66
71
 
67
72
  @property
68
73
  def id(self):
@@ -162,6 +167,29 @@ class Organization(object):
162
167
 
163
168
  self._sso_required = sso_required
164
169
 
170
+ @property
171
+ def sso_mode(self):
172
+ """Gets the sso_mode of this Organization. # noqa: E501
173
+
174
+ Mode for use of single sign on (SSO) for your organization. # noqa: E501
175
+
176
+ :return: The sso_mode of this Organization. # noqa: E501
177
+ :rtype: SSOMode
178
+ """
179
+ return self._sso_mode
180
+
181
+ @sso_mode.setter
182
+ def sso_mode(self, sso_mode):
183
+ """Sets the sso_mode of this Organization.
184
+
185
+ Mode for use of single sign on (SSO) for your organization. # noqa: E501
186
+
187
+ :param sso_mode: The sso_mode of this Organization. # noqa: E501
188
+ :type: SSOMode
189
+ """
190
+
191
+ self._sso_mode = sso_mode
192
+
165
193
  def to_dict(self):
166
194
  """Returns the model properties as a dict"""
167
195
  result = {}
@@ -411,7 +411,7 @@ class PrivateServiceSDK(WorkloadSDK):
411
411
  tracing_config=tracing_config,
412
412
  )
413
413
 
414
- def deploy(
414
+ def deploy( # noqa: PLR0912
415
415
  self,
416
416
  config: ServiceConfig,
417
417
  *,
@@ -447,6 +447,17 @@ class PrivateServiceSDK(WorkloadSDK):
447
447
  else:
448
448
  self.logger.info(f"Updating existing service '{name}'.")
449
449
 
450
+ # passed canary_percent is ignored when creating or restarting a service
451
+ is_new_or_restarting = (
452
+ existing_service is None
453
+ or existing_service.current_state == ServiceEventCurrentState.TERMINATED
454
+ )
455
+ if canary_percent is not None and is_new_or_restarting:
456
+ canary_percent = None
457
+ self.logger.warning(
458
+ "canary_percent is ignored when creating or restarting a service."
459
+ )
460
+
450
461
  if in_place:
451
462
  model = self._build_apply_service_model_for_in_place_update(
452
463
  name,
anyscale/version.py CHANGED
@@ -1 +1 @@
1
- __version__ = "0.26.25"
1
+ __version__ = "0.26.27"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: anyscale
3
- Version: 0.26.25
3
+ Version: 0.26.27
4
4
  Summary: Command Line Interface for Anyscale
5
5
  Author: Anyscale Inc.
6
6
  License: AS License
@@ -6,7 +6,7 @@ anyscale/anyscale-cloud-setup.yaml,sha256=iXCIL8gydOlRzjG5GPxBx1diLQyAkHVN_fIlSo
6
6
  anyscale/anyscale_schema.json,sha256=pQtFMvsYLZF39HcfhFV-ze15W9oELuWHz16PED7sMSQ,193
7
7
  anyscale/api.py,sha256=JrzEdDUAHCBOKQKu6RFEh6WDUGhm7OEiw97PQqmu4T4,7488
8
8
  anyscale/authenticate.py,sha256=4RiJ1Ruu-JKENwuMkWqq1R19DXxucVPS-GoKlii1fLI,12346
9
- anyscale/aws_iam_policies.py,sha256=U4ObSwsehhfhp4UPGqwzsJXNQrJAQ4CYdJAu_JdeBoY,16619
9
+ anyscale/aws_iam_policies.py,sha256=umUWSDAb4ygfP2-KxlZV0x17-t7RUkx9gR3eqVQ-5HE,16672
10
10
  anyscale/cli_logger.py,sha256=sw-sjcXPIlRWT6LCC0nhHcr53VEJba579P8mbOFTJ6k,12545
11
11
  anyscale/cloud_resource.py,sha256=3JCiiXxsIeUSsRV45C0QQJzPSE1GgXJN1LElo6DmvrA,40368
12
12
  anyscale/cloud_utils.py,sha256=R12leVFphO_DSCK54ZpDPRIcMSYSeWtCXoJbXwvvcug,8138
@@ -27,7 +27,7 @@ anyscale/scripts.py,sha256=2LWIBxPHRhFG8m0La7xJXM2xKOQIG3SvlQobS4op2b0,5624
27
27
  anyscale/snapshot.py,sha256=UGJT5C1s_4xmQxjWODK5DFpGxHRBX5jOCdSCqXESH8E,1685
28
28
  anyscale/tables.py,sha256=TV4F2uLnwehvbkAfaP7iuLlT2wLIo6ORH2LVdRGXW5g,2840
29
29
  anyscale/util.py,sha256=14AHIhl4c4hKAW4gLZIvy5w56-zDjcPmrdWqazsvnHU,41860
30
- anyscale/version.py,sha256=m1DKgVa0hujk3nGC5yyYrBkbbxM9JyB3NWBFe0Hv3xM,24
30
+ anyscale/version.py,sha256=jSrcMyTWvBmPHZ4bL2Xoz9jV9JVagX5mY3Ceu8_Fpfw,24
31
31
  anyscale/workspace_utils.py,sha256=OViE88CnIF5ruVxd3kazQ0Mf2BxqtMq6wx-XQ5A2cp8,1204
32
32
  anyscale/_private/anyscale_client/README.md,sha256=gk8obk7kqg6VWoUHcqDMwJULh35tYKEZFC0UF_dixGA,718
33
33
  anyscale/_private/anyscale_client/__init__.py,sha256=807Blx3RHQeS8BmKZcsOQQ4dYoKlCnpm6Bdsif2CrHg,337
@@ -39,7 +39,7 @@ anyscale/_private/docgen/__main__.py,sha256=W91EVEx6nhSApY03T_VypdVo1dL2GOEGi9Sg
39
39
  anyscale/_private/docgen/api.md,sha256=4SbFnIzpQYcH-aBs0cu15BsVxiNxxnY8-Zb5Dqh4Oxw,30971
40
40
  anyscale/_private/docgen/generator.py,sha256=jAOaprAeU659glRDBATAkAQeYC1nDU14jgdobcILS1s,21737
41
41
  anyscale/_private/docgen/generator_legacy.py,sha256=pss_6ONF55XhARrKGcREDmg0J5plWact6USgb5Tr5mM,3002
42
- anyscale/_private/docgen/models.md,sha256=F-ZjohTneUyhchweVvxopSt-myFvyGehkU8NY1bsoUQ,292228
42
+ anyscale/_private/docgen/models.md,sha256=qbuHQbq5vqUOwYeGMTRXZGJ1Uj9N6soUQvXa5sBgV50,292360
43
43
  anyscale/_private/models/__init__.py,sha256=ZrkdHhJZNeCYiogsHc_po8m7vaVdxEjkNGixNeYdlgs,125
44
44
  anyscale/_private/models/image_uri.py,sha256=CMzHc-MNTBsBXvX0G73bjkiznCbm95DYQusgXJ8drm8,3971
45
45
  anyscale/_private/models/model_base.py,sha256=GJLA4JC0yHT554ctMYS_1es-YoTHQH9oqRHr28vV4R0,11354
@@ -105,7 +105,7 @@ anyscale/background/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
105
105
  anyscale/background/job_runner.py,sha256=LTuv9JOahyv6C9i7DLQAONgQF6--FfYZEmJrKy-sUG8,2687
106
106
  anyscale/client/.gitignore,sha256=JZyvYEtT2DCSK9V5Joi6lQofhMik4PXiJRCWsg7SvqI,807
107
107
  anyscale/client/.openapi-generator-ignore,sha256=pu2PTide7pJtJ-DFLzDy0cTYQJRlrB-8RRH3zGLeUds,1040
108
- anyscale/client/README.md,sha256=gEWo9Uyq1AnLFM-B-m6g-eAZ2RtWA5JAsEAWGI_kIB0,108840
108
+ anyscale/client/README.md,sha256=uyeA8Ss_1PGt7RAL5p8Qc_ZlwIrQ6lDZdlf28cutmRg,108870
109
109
  anyscale/client/git_push.sh,sha256=EDCZOTTiLxbtPHmiU63qC99rGH67B7dhdPZdNUKivF0,1827
110
110
  anyscale/client/requirements.txt,sha256=dkVKYUStC5h_g_87SH7pRdhXCj7ySozAJMGAFEzGgFc,126
111
111
  anyscale/client/setup.cfg,sha256=l7bdKSIedeBhhoDtupsBwx1xPrlBf2yYeTH7a8kMga4,28
@@ -113,14 +113,14 @@ anyscale/client/setup.py,sha256=tSxqw1kAL1B9adnrnOarjnQfSbwGmnTr_kg8ZXhlm5A,1109
113
113
  anyscale/client/test-requirements.txt,sha256=sTjmDTj5W9fh1ZAeo8UT2EBdeGDBNttj_PHiPBXg1D4,111
114
114
  anyscale/client/tox.ini,sha256=M6L3UmvAdvU65LsoAF-Oi7oRjwZlCJZn8I7ofdXn5Ok,156
115
115
  anyscale/client/.openapi-generator/VERSION,sha256=J0RzX-4u4jfin1kviKtmncjUePyjHm2kyvmkobOrt_E,5
116
- anyscale/client/openapi_client/__init__.py,sha256=41Jui-SmVaA4Omj321kjmb4KSbKVntZiVVMVeQALl3U,48751
116
+ anyscale/client/openapi_client/__init__.py,sha256=30HqaFyQ34Unqq1NPFG2QXExcftud7AHLpo1KltXt7w,48802
117
117
  anyscale/client/openapi_client/api_client.py,sha256=d8Un6j2Ny2vlS2qBXPVFj6_ql0k36DFahpWt_28TfCk,25563
118
118
  anyscale/client/openapi_client/configuration.py,sha256=Dd5XrlHwv-wxnf0C35PG_-HBQoY3Yaz6hKrmkZz-m0E,12363
119
119
  anyscale/client/openapi_client/exceptions.py,sha256=3egwsXQG2j_vARbqgBxUO1xSltAhpfiHTYVP7VXTvU0,3792
120
120
  anyscale/client/openapi_client/rest.py,sha256=Ehj37v7GHW6SXV067Hze5HE42ayKaGi6a6ZlkR7u3Lg,12501
121
121
  anyscale/client/openapi_client/api/__init__.py,sha256=i8u7BI2xX1GrXTL3hN0pKpYIlnT-D_uDxH2ElOfYG1I,141
122
122
  anyscale/client/openapi_client/api/default_api.py,sha256=XaroPOz_-m6Ey9LDadOWhQAIJYR82ZyH0nSv_JqZhOU,1749095
123
- anyscale/client/openapi_client/models/__init__.py,sha256=4E8x3RRgdODfgsYZMEyB7wxIn2c9IBOhOQdW2G51Rdo,48261
123
+ anyscale/client/openapi_client/models/__init__.py,sha256=Q0Ajz2zE2uJ-zfW48rgmY2LLfe-Bk2xn6uB0-1U6d9o,48312
124
124
  anyscale/client/openapi_client/models/access_config.py,sha256=b2mA0qtuTA5PFbp6C61Jc_T2zUMaojM1v32IhZo0MfY,3648
125
125
  anyscale/client/openapi_client/models/actor_status.py,sha256=6xyX_aIqURj2raBdY9DmBxsdDACFrqqYvElGiM6YG2E,2813
126
126
  anyscale/client/openapi_client/models/admin_create_user.py,sha256=9DPr8D0lKgoEZ3Z2kGsAd8L7ocFCiP6woOGLVs8SRb8,7251
@@ -310,7 +310,7 @@ anyscale/client/openapi_client/models/decorated_compute_template.py,sha256=7bDVl
310
310
  anyscale/client/openapi_client/models/decorated_compute_template_config.py,sha256=TjiPN3e55YHAQG6W0yVeSfV_-og9qvnsnty5k-L5vhs,21362
311
311
  anyscale/client/openapi_client/models/decorated_interactive_session.py,sha256=S2m6CuKL-yKYPSQFE5wHIZMBX-sNAG-6Wy2JnQ2sfVo,24575
312
312
  anyscale/client/openapi_client/models/decorated_job.py,sha256=J0qHizRSKj-FTbHXJboRuQ2hLkyv8Vt-k3q_DYWyq60,23075
313
- anyscale/client/openapi_client/models/decorated_job_queue.py,sha256=CZ5uH0AwbLv1pTr8kwmMRkDapGMg5w2iXq0TcTfeCik,22295
313
+ anyscale/client/openapi_client/models/decorated_job_queue.py,sha256=DzpcqKoTJ9_6iV5dLj4pwFNGtyCZd8bxPLn6c9-Y5Os,21975
314
314
  anyscale/client/openapi_client/models/decorated_list_service_api_model.py,sha256=T0RzqZDdP44_jVp7oNFJyBdRDWRvEXTUaS-2LMuWozU,24473
315
315
  anyscale/client/openapi_client/models/decorated_production_job.py,sha256=Usa0VXVIE_YZSh_1XeU--Mj9Z1jprp_HWTiLypB_xI8,25794
316
316
  anyscale/client/openapi_client/models/decorated_production_job_state_transition.py,sha256=os2mHhohCHf-QxofQwO-q8d86cn8L0xXq_DmEJofJYo,10741
@@ -494,7 +494,7 @@ anyscale/client/openapi_client/models/object_storage.py,sha256=dO0KqwsA0uv7lvIqW
494
494
  anyscale/client/openapi_client/models/operator_branch.py,sha256=_wl7vipkkcgd_fn2TG6VZp5Z7zme7kVtp6xXimdNBPg,4232
495
495
  anyscale/client/openapi_client/models/operator_id.py,sha256=D1gfzRMkSIl5svx9CuRdyd_WdsBwS135D6mjAUuReVg,3359
496
496
  anyscale/client/openapi_client/models/operator_metrics.py,sha256=p8ksaDFkgG5eHTiErOce3BzCBkmssYVI8W80NIn0Swk,8910
497
- anyscale/client/openapi_client/models/organization.py,sha256=-xGnObI7kkDV66TGskc2uu9kG3z4rX_CkoHt8mdaVvU,16651
497
+ anyscale/client/openapi_client/models/organization.py,sha256=denL5QGkErdMLQkEkGWCIxLt-Wv1EWc5u7REMOTKqrw,17320
498
498
  anyscale/client/openapi_client/models/organization_collaborator.py,sha256=b1EWH9jTsPKPv5aotAnf052kC_v4YQ2FVyIcJ28g5pM,8034
499
499
  anyscale/client/openapi_client/models/organization_configuration.py,sha256=ut6TmxbRFp9dQjQQHJL10vV1DRsZPFtFa3sCiPU2Ae8,8754
500
500
  anyscale/client/openapi_client/models/organization_configuration_response.py,sha256=GNWS6L-_oLt2E6izb70UrqibhhLZjex9aCi3WEyltHo,7568
@@ -608,6 +608,7 @@ anyscale/client/openapi_client/models/show_otp_source_return_api_model.py,sha256
608
608
  anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py,sha256=nQpVssn04QuNZ6zx10SpfEl8G216X9-QenYXqUDkkYA,3715
609
609
  anyscale/client/openapi_client/models/sort_order.py,sha256=nmc0YdVaBIZ7pLPrOnteLDbc2Pu2vPfeOMclZH89VV4,2799
610
610
  anyscale/client/openapi_client/models/sso_login_info.py,sha256=I_l8h9DiWVaOCy4iWn3k5AbYyvsa0_A-66AOEPcgGYA,4515
611
+ anyscale/client/openapi_client/models/sso_mode.py,sha256=rowexQjIbUajbZXI8nJfLUmXkREmMaFocRoTowpm_1Y,2839
611
612
  anyscale/client/openapi_client/models/ssologininfo_response.py,sha256=NprIco_jVOCO1K-6B8wAfRpEefG4cybZUlWw-weLjDU,3550
612
613
  anyscale/client/openapi_client/models/start_session_options.py,sha256=dd_57VoQMiOA0AHPItn3JpVyhGQ6wtQkMQqHhaxZHh4,4204
613
614
  anyscale/client/openapi_client/models/stop_session_options.py,sha256=8ulrBPdfMNEUqwtrtAwJhby8V3MBQf3sVvOX-f9A54k,6939
@@ -735,7 +736,7 @@ anyscale/commands/project_commands.py,sha256=xVm-W5kKzgfbQjAiHSRhnyMIlYgGji1TUfY
735
736
  anyscale/commands/resource_quota_commands.py,sha256=J6r8b6Bo1wMys5pYWieD6F-VsC2OpQZGVLaNFlvAKmI,8536
736
737
  anyscale/commands/schedule_commands.py,sha256=mdwelVght3HnN5YPjtG4Spn0KiEDWmg-UosfaDkQPKE,14485
737
738
  anyscale/commands/service_account_commands.py,sha256=u45N2akHsZxyu5LK03FGEEnZh4dTt4B2Be-dXgbSg3U,3977
738
- anyscale/commands/service_commands.py,sha256=37Obqxvbe1iHOsRZi3lB8_W5p8B0kG3u6SAWxHYSZ7I,33352
739
+ anyscale/commands/service_commands.py,sha256=hpNhlm6oC_It9CgLDFCqC496GVY02HD2-TMa2Ig-I60,33637
739
740
  anyscale/commands/session_commands_hidden.py,sha256=APEypnUB1yV2Rr6wdSFWy1vQbAnn-lOn0rU2enF5JdM,6200
740
741
  anyscale/commands/user_commands.py,sha256=C-i1dGpdhboywN_2XgPS2BekKx2y6LZq8c8gvS0S-tY,1259
741
742
  anyscale/commands/util.py,sha256=N8gkVv9LBr5QypBGm2e_Pw2F2e_tiiR4YNLmn8CtsK0,5124
@@ -787,7 +788,7 @@ anyscale/image/models.py,sha256=xEaZfrMydtkdr-7zYlI-2d9Su2I7al7TgBulwG_plnI,1812
787
788
  anyscale/image/_private/image_sdk.py,sha256=c6ONvbcq1bUP0YbfIMw8QLRFfVbCiiTwULQAniotd04,7311
788
789
  anyscale/job/__init__.py,sha256=_5Nb3a11F4oAHXirTgx5vDdgpVzJ62FdGFmADxxvcPE,5051
789
790
  anyscale/job/commands.py,sha256=je0WDrd3mxt3iuoGqKvE_2TuMWsffXXM_IQ5SRjUKnU,8524
790
- anyscale/job/models.py,sha256=n-tVkvIRznes0QEwHn75i9u_LZ8whisTaN4iltz5JFs,17859
791
+ anyscale/job/models.py,sha256=w2qqm69ccCf9Y6Hwe5cLszqn3asS19s24t4akuZPsUM,17922
791
792
  anyscale/job/_private/job_sdk.py,sha256=6kQ5bDggA3f1MXcrlXAGrFRA7WAOcvKDVi8FXwq7z-E,18871
792
793
  anyscale/llm/__init__.py,sha256=lRp09PWR2gcJF_1Y9ieIIQWirijP5p_l3AQkTir2iN4,76
793
794
  anyscale/llm/sdk.py,sha256=VmA03eegizqikWR3eH2jYNiA8-FY3Qq1GGtvdkgU470,733
@@ -936,7 +937,7 @@ anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py,sha256=RMtqS
936
937
  anyscale/sdk/anyscale_client/models/operation_error.py,sha256=W3gIlCgVC46GjAmH3L-33r-_SMmpRmkhzJBIYQHRz9U,3660
937
938
  anyscale/sdk/anyscale_client/models/operation_progress.py,sha256=5o_vxN23iAJ66TvTxHZYxJ_0PYfqPO8hrE1NHJfkhek,3680
938
939
  anyscale/sdk/anyscale_client/models/operation_result.py,sha256=Un37p33d-WGdBAhi2b6gWQwyXowQ8yCwiZtk7zgO-eg,4362
939
- anyscale/sdk/anyscale_client/models/organization.py,sha256=j4LsxtsTZL2ZTW6LfHvxfbj1uhIVhWby-ILgJQaDUdg,6367
940
+ anyscale/sdk/anyscale_client/models/organization.py,sha256=rZj0_RBuVHZUpwOvBy1JhcBAwIRbO8Pdrnd2zvUjpbQ,7200
940
941
  anyscale/sdk/anyscale_client/models/organization_response.py,sha256=IXNE5_FVs9bPn19gXD_KTHmRI6j5tMG7ebc7oMbjUaM,3548
941
942
  anyscale/sdk/anyscale_client/models/page_query.py,sha256=1ttjaka8K-6HJiZhwyP9FdN1MM8SZnzpoAAvemsu-eA,4583
942
943
  anyscale/sdk/anyscale_client/models/pause_schedule.py,sha256=iq-YgjLtLJ5J--PWYmwG_p_3urs-sUXyKEKrk57VNUU,3659
@@ -1006,7 +1007,7 @@ anyscale/sdk/anyscale_client/models/worker_node_type.py,sha256=bI3sPVPA4t4axjdbj
1006
1007
  anyscale/service/__init__.py,sha256=aH9NjJgnIXErG0uRvhjDxv0RHi0vLTQdlzAGZBUQJwU,7911
1007
1008
  anyscale/service/commands.py,sha256=kbWkHP3hFo0dtz0AgTkG6koqcvd35rzpmAvLZjKY25M,14232
1008
1009
  anyscale/service/models.py,sha256=In9Nn6xYWSpKwjYaMe1zyRWs1gU-g9J-tNt74BQh0js,25985
1009
- anyscale/service/_private/service_sdk.py,sha256=MxN-owkUAKnnX--6xrmPkE3gLHWECWxDZVNFWtCVz6k,34286
1010
+ anyscale/service/_private/service_sdk.py,sha256=z5T0CktOkTndN7VlwHLosA_DOVkgIErCRn-dSEZI_p0,34778
1010
1011
  anyscale/service_account/__init__.py,sha256=jV1OFo_ZTxU3vuPztO1300TuoMz-Ocudm6_84ZtjPQ4,2764
1011
1012
  anyscale/service_account/commands.py,sha256=pkJjZwK8aRKFFVfE5swMTJrm9CTnPcNJETEFdMkPiic,3680
1012
1013
  anyscale/service_account/models.py,sha256=MhY-Fo5AZQ68brqtolTUMW3WQDrkNyL1udtNg70sNAU,2189
@@ -1072,10 +1073,10 @@ anyscale/workspace/__init__.py,sha256=Innbm5ZhCyADEVBiYSo_vbpKwUNcMzVSAfxIGKOYe6
1072
1073
  anyscale/workspace/commands.py,sha256=b1sqNseoPj-1VXznqQOLe0V_a663bOTvJX-TaOMJa1Y,14590
1073
1074
  anyscale/workspace/models.py,sha256=HBvM9ybOdJjqQeViQ30C36gdKT_AwH_JHPoL-DTkESo,9841
1074
1075
  anyscale/workspace/_private/workspace_sdk.py,sha256=2CMeYfJt0UtIFCocDn1ukw1iI5esKHdopLe6duEs-qE,27599
1075
- anyscale-0.26.25.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1076
- anyscale-0.26.25.dist-info/METADATA,sha256=bidN93uPfE00jmRHCYYMfNHcjs16P4ISYAVXsFDQ5cw,3160
1077
- anyscale-0.26.25.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1078
- anyscale-0.26.25.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1079
- anyscale-0.26.25.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1080
- anyscale-0.26.25.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1081
- anyscale-0.26.25.dist-info/RECORD,,
1076
+ anyscale-0.26.27.dist-info/LICENSE,sha256=UOPu974Wzsna6frFv1mu4VrZgNdZT7lbcNPzo5ue3qs,3494
1077
+ anyscale-0.26.27.dist-info/METADATA,sha256=qHY5rm4qi5rVESwJ1ZPh-cHCuiZ62v5AwzUx6BP_Kyo,3160
1078
+ anyscale-0.26.27.dist-info/NOTICE,sha256=gHqDhSnUYlRXX-mDOL5FtE7774oiKyV_HO80qM3r9Xo,196
1079
+ anyscale-0.26.27.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
1080
+ anyscale-0.26.27.dist-info/entry_points.txt,sha256=NqO18sCZn6zG6J0S38itjcN00s7aE3C3v3k5lMAfCLk,51
1081
+ anyscale-0.26.27.dist-info/top_level.txt,sha256=g3NVNS8Oh0NZwbFFgeX696C5MZZkS5dqV2NqcsbDRJE,9
1082
+ anyscale-0.26.27.dist-info/RECORD,,