anyscale 0.26.7__py3-none-any.whl → 0.26.9__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.
Files changed (50) hide show
  1. anyscale/_private/anyscale_client/anyscale_client.py +17 -1
  2. anyscale/_private/anyscale_client/common.py +12 -2
  3. anyscale/_private/anyscale_client/fake_anyscale_client.py +20 -3
  4. anyscale/_private/docgen/__main__.py +4 -0
  5. anyscale/_private/docgen/models.md +11 -2
  6. anyscale/client/README.md +7 -23
  7. anyscale/client/openapi_client/__init__.py +5 -15
  8. anyscale/client/openapi_client/api/default_api.py +410 -1091
  9. anyscale/client/openapi_client/models/__init__.py +5 -15
  10. anyscale/client/openapi_client/models/baseimagesenum.py +135 -1
  11. anyscale/client/openapi_client/models/{jobslogs_response.py → cluster_state.py} +21 -34
  12. anyscale/client/openapi_client/models/describe_system_workload_response.py +226 -0
  13. anyscale/client/openapi_client/models/{interactivesessionlogs_response.py → describesystemworkloadresponse_response.py} +11 -11
  14. anyscale/client/openapi_client/models/job_details.py +27 -1
  15. anyscale/client/openapi_client/models/metric.py +29 -3
  16. anyscale/client/openapi_client/models/{timestampedlogsoutput_response.py → operator_metric_id.py} +49 -22
  17. anyscale/client/openapi_client/models/operator_metrics.py +83 -3
  18. anyscale/client/openapi_client/models/supportedbaseimagesenum.py +135 -1
  19. anyscale/client/openapi_client/models/{job_submissions_sort_field.py → system_workload_name.py} +6 -8
  20. anyscale/commands/command_examples.py +4 -0
  21. anyscale/commands/service_commands.py +62 -27
  22. anyscale/job/_private/job_sdk.py +1 -3
  23. anyscale/sdk/anyscale_client/__init__.py +1 -0
  24. anyscale/sdk/anyscale_client/models/__init__.py +1 -0
  25. anyscale/sdk/anyscale_client/models/baseimagesenum.py +135 -1
  26. anyscale/sdk/anyscale_client/models/cluster.py +60 -3
  27. anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +135 -1
  28. anyscale/{client/openapi_client/models/job_status.py → sdk/anyscale_client/models/system_workload_name.py} +8 -14
  29. anyscale/service/__init__.py +19 -0
  30. anyscale/service/_private/service_sdk.py +26 -2
  31. anyscale/service/commands.py +48 -9
  32. anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
  33. anyscale/version.py +1 -1
  34. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/METADATA +1 -1
  35. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/RECORD +40 -49
  36. anyscale/client/openapi_client/models/decorated_job_submission.py +0 -547
  37. anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -147
  38. anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -121
  39. anyscale/client/openapi_client/models/interactive_session_logs.py +0 -152
  40. anyscale/client/openapi_client/models/jobs_logs.py +0 -152
  41. anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -181
  42. anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -121
  43. anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -152
  44. anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -121
  45. anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -148
  46. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/LICENSE +0 -0
  47. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/NOTICE +0 -0
  48. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/WHEEL +0 -0
  49. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/entry_points.txt +0 -0
  50. {anyscale-0.26.7.dist-info → anyscale-0.26.9.dist-info}/top_level.txt +0 -0
@@ -1,121 +0,0 @@
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 JobslogsqueryinfoResponse(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
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'result': 'JobsLogsQueryInfo'
37
- }
38
-
39
- attribute_map = {
40
- 'result': 'result'
41
- }
42
-
43
- def __init__(self, result=None, local_vars_configuration=None): # noqa: E501
44
- """JobslogsqueryinfoResponse - a model defined in OpenAPI""" # noqa: E501
45
- if local_vars_configuration is None:
46
- local_vars_configuration = Configuration()
47
- self.local_vars_configuration = local_vars_configuration
48
-
49
- self._result = None
50
- self.discriminator = None
51
-
52
- self.result = result
53
-
54
- @property
55
- def result(self):
56
- """Gets the result of this JobslogsqueryinfoResponse. # noqa: E501
57
-
58
-
59
- :return: The result of this JobslogsqueryinfoResponse. # noqa: E501
60
- :rtype: JobsLogsQueryInfo
61
- """
62
- return self._result
63
-
64
- @result.setter
65
- def result(self, result):
66
- """Sets the result of this JobslogsqueryinfoResponse.
67
-
68
-
69
- :param result: The result of this JobslogsqueryinfoResponse. # noqa: E501
70
- :type: JobsLogsQueryInfo
71
- """
72
- if self.local_vars_configuration.client_side_validation and result is None: # noqa: E501
73
- raise ValueError("Invalid value for `result`, must not be `None`") # noqa: E501
74
-
75
- self._result = result
76
-
77
- def to_dict(self):
78
- """Returns the model properties as a dict"""
79
- result = {}
80
-
81
- for attr, _ in six.iteritems(self.openapi_types):
82
- value = getattr(self, attr)
83
- if isinstance(value, list):
84
- result[attr] = list(map(
85
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
86
- value
87
- ))
88
- elif hasattr(value, "to_dict"):
89
- result[attr] = value.to_dict()
90
- elif isinstance(value, dict):
91
- result[attr] = dict(map(
92
- lambda item: (item[0], item[1].to_dict())
93
- if hasattr(item[1], "to_dict") else item,
94
- value.items()
95
- ))
96
- else:
97
- result[attr] = value
98
-
99
- return result
100
-
101
- def to_str(self):
102
- """Returns the string representation of the model"""
103
- return pprint.pformat(self.to_dict())
104
-
105
- def __repr__(self):
106
- """For `print` and `pprint`"""
107
- return self.to_str()
108
-
109
- def __eq__(self, other):
110
- """Returns true if both objects are equal"""
111
- if not isinstance(other, JobslogsqueryinfoResponse):
112
- return False
113
-
114
- return self.to_dict() == other.to_dict()
115
-
116
- def __ne__(self, other):
117
- """Returns true if both objects are not equal"""
118
- if not isinstance(other, JobslogsqueryinfoResponse):
119
- return True
120
-
121
- return self.to_dict() != other.to_dict()
@@ -1,152 +0,0 @@
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 ServeDeploymentLogs(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
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'logs': 'str',
37
- 'ready': 'bool'
38
- }
39
-
40
- attribute_map = {
41
- 'logs': 'logs',
42
- 'ready': 'ready'
43
- }
44
-
45
- def __init__(self, logs=None, ready=None, local_vars_configuration=None): # noqa: E501
46
- """ServeDeploymentLogs - a model defined in OpenAPI""" # noqa: E501
47
- if local_vars_configuration is None:
48
- local_vars_configuration = Configuration()
49
- self.local_vars_configuration = local_vars_configuration
50
-
51
- self._logs = None
52
- self._ready = None
53
- self.discriminator = None
54
-
55
- self.logs = logs
56
- self.ready = ready
57
-
58
- @property
59
- def logs(self):
60
- """Gets the logs of this ServeDeploymentLogs. # noqa: E501
61
-
62
- Logs of this entity # noqa: E501
63
-
64
- :return: The logs of this ServeDeploymentLogs. # noqa: E501
65
- :rtype: str
66
- """
67
- return self._logs
68
-
69
- @logs.setter
70
- def logs(self, logs):
71
- """Sets the logs of this ServeDeploymentLogs.
72
-
73
- Logs of this entity # noqa: E501
74
-
75
- :param logs: The logs of this ServeDeploymentLogs. # noqa: E501
76
- :type: str
77
- """
78
- if self.local_vars_configuration.client_side_validation and logs is None: # noqa: E501
79
- raise ValueError("Invalid value for `logs`, must not be `None`") # noqa: E501
80
-
81
- self._logs = logs
82
-
83
- @property
84
- def ready(self):
85
- """Gets the ready of this ServeDeploymentLogs. # noqa: E501
86
-
87
- Indicates if underlying logs service is ready to use. If false, clients will need to request for logs until this field is True. # noqa: E501
88
-
89
- :return: The ready of this ServeDeploymentLogs. # noqa: E501
90
- :rtype: bool
91
- """
92
- return self._ready
93
-
94
- @ready.setter
95
- def ready(self, ready):
96
- """Sets the ready of this ServeDeploymentLogs.
97
-
98
- Indicates if underlying logs service is ready to use. If false, clients will need to request for logs until this field is True. # noqa: E501
99
-
100
- :param ready: The ready of this ServeDeploymentLogs. # noqa: E501
101
- :type: bool
102
- """
103
- if self.local_vars_configuration.client_side_validation and ready is None: # noqa: E501
104
- raise ValueError("Invalid value for `ready`, must not be `None`") # noqa: E501
105
-
106
- self._ready = ready
107
-
108
- def to_dict(self):
109
- """Returns the model properties as a dict"""
110
- result = {}
111
-
112
- for attr, _ in six.iteritems(self.openapi_types):
113
- value = getattr(self, attr)
114
- if isinstance(value, list):
115
- result[attr] = list(map(
116
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
117
- value
118
- ))
119
- elif hasattr(value, "to_dict"):
120
- result[attr] = value.to_dict()
121
- elif isinstance(value, dict):
122
- result[attr] = dict(map(
123
- lambda item: (item[0], item[1].to_dict())
124
- if hasattr(item[1], "to_dict") else item,
125
- value.items()
126
- ))
127
- else:
128
- result[attr] = value
129
-
130
- return result
131
-
132
- def to_str(self):
133
- """Returns the string representation of the model"""
134
- return pprint.pformat(self.to_dict())
135
-
136
- def __repr__(self):
137
- """For `print` and `pprint`"""
138
- return self.to_str()
139
-
140
- def __eq__(self, other):
141
- """Returns true if both objects are equal"""
142
- if not isinstance(other, ServeDeploymentLogs):
143
- return False
144
-
145
- return self.to_dict() == other.to_dict()
146
-
147
- def __ne__(self, other):
148
- """Returns true if both objects are not equal"""
149
- if not isinstance(other, ServeDeploymentLogs):
150
- return True
151
-
152
- return self.to_dict() != other.to_dict()
@@ -1,121 +0,0 @@
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 ServedeploymentlogsResponse(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
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'result': 'ServeDeploymentLogs'
37
- }
38
-
39
- attribute_map = {
40
- 'result': 'result'
41
- }
42
-
43
- def __init__(self, result=None, local_vars_configuration=None): # noqa: E501
44
- """ServedeploymentlogsResponse - a model defined in OpenAPI""" # noqa: E501
45
- if local_vars_configuration is None:
46
- local_vars_configuration = Configuration()
47
- self.local_vars_configuration = local_vars_configuration
48
-
49
- self._result = None
50
- self.discriminator = None
51
-
52
- self.result = result
53
-
54
- @property
55
- def result(self):
56
- """Gets the result of this ServedeploymentlogsResponse. # noqa: E501
57
-
58
-
59
- :return: The result of this ServedeploymentlogsResponse. # noqa: E501
60
- :rtype: ServeDeploymentLogs
61
- """
62
- return self._result
63
-
64
- @result.setter
65
- def result(self, result):
66
- """Sets the result of this ServedeploymentlogsResponse.
67
-
68
-
69
- :param result: The result of this ServedeploymentlogsResponse. # noqa: E501
70
- :type: ServeDeploymentLogs
71
- """
72
- if self.local_vars_configuration.client_side_validation and result is None: # noqa: E501
73
- raise ValueError("Invalid value for `result`, must not be `None`") # noqa: E501
74
-
75
- self._result = result
76
-
77
- def to_dict(self):
78
- """Returns the model properties as a dict"""
79
- result = {}
80
-
81
- for attr, _ in six.iteritems(self.openapi_types):
82
- value = getattr(self, attr)
83
- if isinstance(value, list):
84
- result[attr] = list(map(
85
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
86
- value
87
- ))
88
- elif hasattr(value, "to_dict"):
89
- result[attr] = value.to_dict()
90
- elif isinstance(value, dict):
91
- result[attr] = dict(map(
92
- lambda item: (item[0], item[1].to_dict())
93
- if hasattr(item[1], "to_dict") else item,
94
- value.items()
95
- ))
96
- else:
97
- result[attr] = value
98
-
99
- return result
100
-
101
- def to_str(self):
102
- """Returns the string representation of the model"""
103
- return pprint.pformat(self.to_dict())
104
-
105
- def __repr__(self):
106
- """For `print` and `pprint`"""
107
- return self.to_str()
108
-
109
- def __eq__(self, other):
110
- """Returns true if both objects are equal"""
111
- if not isinstance(other, ServedeploymentlogsResponse):
112
- return False
113
-
114
- return self.to_dict() == other.to_dict()
115
-
116
- def __ne__(self, other):
117
- """Returns true if both objects are not equal"""
118
- if not isinstance(other, ServedeploymentlogsResponse):
119
- return True
120
-
121
- return self.to_dict() != other.to_dict()
@@ -1,148 +0,0 @@
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 TimestampedLogsOutput(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
- Attributes:
30
- openapi_types (dict): The key is attribute name
31
- and the value is attribute type.
32
- attribute_map (dict): The key is attribute name
33
- and the value is json key in definition.
34
- """
35
- openapi_types = {
36
- 'lines': 'list[str]',
37
- 'last_timestamp_ns': 'int'
38
- }
39
-
40
- attribute_map = {
41
- 'lines': 'lines',
42
- 'last_timestamp_ns': 'last_timestamp_ns'
43
- }
44
-
45
- def __init__(self, lines=None, last_timestamp_ns=None, local_vars_configuration=None): # noqa: E501
46
- """TimestampedLogsOutput - a model defined in OpenAPI""" # noqa: E501
47
- if local_vars_configuration is None:
48
- local_vars_configuration = Configuration()
49
- self.local_vars_configuration = local_vars_configuration
50
-
51
- self._lines = None
52
- self._last_timestamp_ns = None
53
- self.discriminator = None
54
-
55
- self.lines = lines
56
- self.last_timestamp_ns = last_timestamp_ns
57
-
58
- @property
59
- def lines(self):
60
- """Gets the lines of this TimestampedLogsOutput. # noqa: E501
61
-
62
-
63
- :return: The lines of this TimestampedLogsOutput. # noqa: E501
64
- :rtype: list[str]
65
- """
66
- return self._lines
67
-
68
- @lines.setter
69
- def lines(self, lines):
70
- """Sets the lines of this TimestampedLogsOutput.
71
-
72
-
73
- :param lines: The lines of this TimestampedLogsOutput. # noqa: E501
74
- :type: list[str]
75
- """
76
- if self.local_vars_configuration.client_side_validation and lines is None: # noqa: E501
77
- raise ValueError("Invalid value for `lines`, must not be `None`") # noqa: E501
78
-
79
- self._lines = lines
80
-
81
- @property
82
- def last_timestamp_ns(self):
83
- """Gets the last_timestamp_ns of this TimestampedLogsOutput. # noqa: E501
84
-
85
-
86
- :return: The last_timestamp_ns of this TimestampedLogsOutput. # noqa: E501
87
- :rtype: int
88
- """
89
- return self._last_timestamp_ns
90
-
91
- @last_timestamp_ns.setter
92
- def last_timestamp_ns(self, last_timestamp_ns):
93
- """Sets the last_timestamp_ns of this TimestampedLogsOutput.
94
-
95
-
96
- :param last_timestamp_ns: The last_timestamp_ns of this TimestampedLogsOutput. # noqa: E501
97
- :type: int
98
- """
99
- if self.local_vars_configuration.client_side_validation and last_timestamp_ns is None: # noqa: E501
100
- raise ValueError("Invalid value for `last_timestamp_ns`, must not be `None`") # noqa: E501
101
-
102
- self._last_timestamp_ns = last_timestamp_ns
103
-
104
- def to_dict(self):
105
- """Returns the model properties as a dict"""
106
- result = {}
107
-
108
- for attr, _ in six.iteritems(self.openapi_types):
109
- value = getattr(self, attr)
110
- if isinstance(value, list):
111
- result[attr] = list(map(
112
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
113
- value
114
- ))
115
- elif hasattr(value, "to_dict"):
116
- result[attr] = value.to_dict()
117
- elif isinstance(value, dict):
118
- result[attr] = dict(map(
119
- lambda item: (item[0], item[1].to_dict())
120
- if hasattr(item[1], "to_dict") else item,
121
- value.items()
122
- ))
123
- else:
124
- result[attr] = value
125
-
126
- return result
127
-
128
- def to_str(self):
129
- """Returns the string representation of the model"""
130
- return pprint.pformat(self.to_dict())
131
-
132
- def __repr__(self):
133
- """For `print` and `pprint`"""
134
- return self.to_str()
135
-
136
- def __eq__(self, other):
137
- """Returns true if both objects are equal"""
138
- if not isinstance(other, TimestampedLogsOutput):
139
- return False
140
-
141
- return self.to_dict() == other.to_dict()
142
-
143
- def __ne__(self, other):
144
- """Returns true if both objects are not equal"""
145
- if not isinstance(other, TimestampedLogsOutput):
146
- return True
147
-
148
- return self.to_dict() != other.to_dict()