anyscale 0.26.57__py3-none-any.whl → 0.26.59__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 (74) hide show
  1. anyscale/_private/anyscale_client/common.py +1 -1
  2. anyscale/client/README.md +60 -0
  3. anyscale/client/openapi_client/__init__.py +42 -0
  4. anyscale/client/openapi_client/api/default_api.py +2541 -303
  5. anyscale/client/openapi_client/models/__init__.py +42 -0
  6. anyscale/client/openapi_client/models/apply_production_service_v2_model.py +31 -3
  7. anyscale/client/openapi_client/models/baseimagesenum.py +76 -1
  8. anyscale/client/openapi_client/models/create_experimental_workspace.py +29 -1
  9. anyscale/client/openapi_client/models/create_internal_production_job.py +31 -3
  10. anyscale/client/openapi_client/models/create_job_queue_requests.py +31 -3
  11. anyscale/client/openapi_client/models/create_workspace_template.py +404 -0
  12. anyscale/client/openapi_client/models/create_workspace_template_version.py +178 -0
  13. anyscale/client/openapi_client/models/delete_resource_tags_request.py +175 -0
  14. anyscale/client/openapi_client/models/deleted_count.py +121 -0
  15. anyscale/client/openapi_client/models/deletedcount_response.py +121 -0
  16. anyscale/client/openapi_client/models/email_verification_request.py +175 -0
  17. anyscale/client/openapi_client/models/email_verification_response.py +120 -0
  18. anyscale/client/openapi_client/models/emailverificationresponse_response.py +121 -0
  19. anyscale/client/openapi_client/models/global_workspace_template.py +465 -0
  20. anyscale/client/openapi_client/models/globalworkspacetemplate_list_response.py +147 -0
  21. anyscale/client/openapi_client/models/job_queues_query.py +31 -3
  22. anyscale/client/openapi_client/models/operator_event.py +256 -0
  23. anyscale/client/openapi_client/models/operator_event_response.py +148 -0
  24. anyscale/client/openapi_client/models/operator_event_type.py +101 -0
  25. anyscale/client/openapi_client/models/published_filter.py +101 -0
  26. anyscale/client/openapi_client/models/resource_tag_record.py +310 -0
  27. anyscale/client/openapi_client/models/resource_tag_resource_type.py +102 -0
  28. anyscale/client/openapi_client/models/resource_tags_list.py +121 -0
  29. anyscale/client/openapi_client/models/resourcetagslist_response.py +121 -0
  30. anyscale/client/openapi_client/models/supportedbaseimagesenum.py +76 -1
  31. anyscale/client/openapi_client/models/tag_key.py +121 -0
  32. anyscale/client/openapi_client/models/tag_key_value.py +148 -0
  33. anyscale/client/openapi_client/models/tag_search_in.py +101 -0
  34. anyscale/client/openapi_client/models/tag_value.py +121 -0
  35. anyscale/client/openapi_client/models/tagkey_list_response.py +147 -0
  36. anyscale/client/openapi_client/models/tagkeyvalue_list_response.py +147 -0
  37. anyscale/client/openapi_client/models/tagvalue_list_response.py +147 -0
  38. anyscale/client/openapi_client/models/task_attempts.py +101 -0
  39. anyscale/client/openapi_client/models/task_table_config.py +29 -3
  40. anyscale/client/openapi_client/models/update_job_queue_request.py +31 -3
  41. anyscale/client/openapi_client/models/upsert_resource_tags_request.py +175 -0
  42. anyscale/client/openapi_client/models/use_work_os_response.py +121 -0
  43. anyscale/client/openapi_client/models/useworkosresponse_response.py +121 -0
  44. anyscale/client/openapi_client/models/work_os_authorize_url_response.py +120 -0
  45. anyscale/client/openapi_client/models/workosauthorizeurlresponse_response.py +121 -0
  46. anyscale/client/openapi_client/models/workspace_system_artifacts.py +234 -0
  47. anyscale/client/openapi_client/models/workspace_template.py +343 -204
  48. anyscale/client/openapi_client/models/workspace_template_category.py +100 -0
  49. anyscale/client/openapi_client/models/workspace_template_complexity.py +101 -0
  50. anyscale/client/openapi_client/models/workspace_template_icon_background_color.py +105 -0
  51. anyscale/client/openapi_client/models/workspace_template_icon_type.py +108 -0
  52. anyscale/client/openapi_client/models/workspace_template_version.py +323 -0
  53. anyscale/client/openapi_client/models/workspace_template_version_data_object.py +323 -0
  54. anyscale/client/openapi_client/models/workspace_templates_sort_field.py +101 -0
  55. anyscale/client/openapi_client/models/workspacetemplate_response.py +121 -0
  56. anyscale/client/openapi_client/models/workspacetemplateversion_list_response.py +147 -0
  57. anyscale/client/openapi_client/models/workspacetemplateversion_response.py +121 -0
  58. anyscale/commands/cloud_commands.py +15 -3
  59. anyscale/commands/command_examples.py +2 -2
  60. anyscale/controllers/cloud_controller.py +7 -3
  61. anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +31 -3
  62. anyscale/sdk/anyscale_client/models/apply_service_model.py +31 -3
  63. anyscale/sdk/anyscale_client/models/baseimagesenum.py +76 -1
  64. anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +76 -1
  65. anyscale/shared_anyscale_utils/latest_ray_version.py +1 -1
  66. anyscale/shared_anyscale_utils/utils/id_gen.py +3 -0
  67. anyscale/version.py +1 -1
  68. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/METADATA +1 -1
  69. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/RECORD +74 -32
  70. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/WHEEL +0 -0
  71. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/entry_points.txt +0 -0
  72. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/licenses/LICENSE +0 -0
  73. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/licenses/NOTICE +0 -0
  74. {anyscale-0.26.57.dist-info → anyscale-0.26.59.dist-info}/top_level.txt +0 -0
@@ -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 TaskAttempts(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
+ ALL = "ALL"
32
+ RETRIED_TRUE = "RETRIED_TRUE"
33
+ RETRIED_FALSE = "RETRIED_FALSE"
34
+
35
+ allowable_values = [ALL, RETRIED_TRUE, RETRIED_FALSE] # 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
+ """TaskAttempts - 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, TaskAttempts):
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, TaskAttempts):
99
+ return True
100
+
101
+ return self.to_dict() != other.to_dict()
@@ -38,7 +38,8 @@ class TaskTableConfig(object):
38
38
  'current_state': 'list[TaskState]',
39
39
  'text': 'str',
40
40
  'job_id': 'str',
41
- 'exception_type': 'str'
41
+ 'exception_type': 'str',
42
+ 'attempts': 'TaskAttempts'
42
43
  }
43
44
 
44
45
  attribute_map = {
@@ -47,10 +48,11 @@ class TaskTableConfig(object):
47
48
  'current_state': 'current_state',
48
49
  'text': 'text',
49
50
  'job_id': 'job_id',
50
- 'exception_type': 'exception_type'
51
+ 'exception_type': 'exception_type',
52
+ 'attempts': 'attempts'
51
53
  }
52
54
 
53
- def __init__(self, task_id=None, function_name=None, current_state=None, text=None, job_id=None, exception_type=None, local_vars_configuration=None): # noqa: E501
55
+ def __init__(self, task_id=None, function_name=None, current_state=None, text=None, job_id=None, exception_type=None, attempts=None, local_vars_configuration=None): # noqa: E501
54
56
  """TaskTableConfig - a model defined in OpenAPI""" # noqa: E501
55
57
  if local_vars_configuration is None:
56
58
  local_vars_configuration = Configuration()
@@ -62,6 +64,7 @@ class TaskTableConfig(object):
62
64
  self._text = None
63
65
  self._job_id = None
64
66
  self._exception_type = None
67
+ self._attempts = None
65
68
  self.discriminator = None
66
69
 
67
70
  if task_id is not None:
@@ -76,6 +79,8 @@ class TaskTableConfig(object):
76
79
  self.job_id = job_id
77
80
  if exception_type is not None:
78
81
  self.exception_type = exception_type
82
+ if attempts is not None:
83
+ self.attempts = attempts
79
84
 
80
85
  @property
81
86
  def task_id(self):
@@ -203,6 +208,27 @@ class TaskTableConfig(object):
203
208
 
204
209
  self._exception_type = exception_type
205
210
 
211
+ @property
212
+ def attempts(self):
213
+ """Gets the attempts of this TaskTableConfig. # noqa: E501
214
+
215
+
216
+ :return: The attempts of this TaskTableConfig. # noqa: E501
217
+ :rtype: TaskAttempts
218
+ """
219
+ return self._attempts
220
+
221
+ @attempts.setter
222
+ def attempts(self, attempts):
223
+ """Sets the attempts of this TaskTableConfig.
224
+
225
+
226
+ :param attempts: The attempts of this TaskTableConfig. # noqa: E501
227
+ :type: TaskAttempts
228
+ """
229
+
230
+ self._attempts = attempts
231
+
206
232
  def to_dict(self):
207
233
  """Returns the model properties as a dict"""
208
234
  result = {}
@@ -34,15 +34,17 @@ class UpdateJobQueueRequest(object):
34
34
  """
35
35
  openapi_types = {
36
36
  'idle_timeout_sec': 'int',
37
- 'max_concurrency': 'int'
37
+ 'max_concurrency': 'int',
38
+ 'tags': 'dict(str, str)'
38
39
  }
39
40
 
40
41
  attribute_map = {
41
42
  'idle_timeout_sec': 'idle_timeout_sec',
42
- 'max_concurrency': 'max_concurrency'
43
+ 'max_concurrency': 'max_concurrency',
44
+ 'tags': 'tags'
43
45
  }
44
46
 
45
- def __init__(self, idle_timeout_sec=None, max_concurrency=None, local_vars_configuration=None): # noqa: E501
47
+ def __init__(self, idle_timeout_sec=None, max_concurrency=None, tags=None, local_vars_configuration=None): # noqa: E501
46
48
  """UpdateJobQueueRequest - a model defined in OpenAPI""" # noqa: E501
47
49
  if local_vars_configuration is None:
48
50
  local_vars_configuration = Configuration()
@@ -50,12 +52,15 @@ class UpdateJobQueueRequest(object):
50
52
 
51
53
  self._idle_timeout_sec = None
52
54
  self._max_concurrency = None
55
+ self._tags = None
53
56
  self.discriminator = None
54
57
 
55
58
  if idle_timeout_sec is not None:
56
59
  self.idle_timeout_sec = idle_timeout_sec
57
60
  if max_concurrency is not None:
58
61
  self.max_concurrency = max_concurrency
62
+ if tags is not None:
63
+ self.tags = tags
59
64
 
60
65
  @property
61
66
  def idle_timeout_sec(self):
@@ -103,6 +108,29 @@ class UpdateJobQueueRequest(object):
103
108
 
104
109
  self._max_concurrency = max_concurrency
105
110
 
111
+ @property
112
+ def tags(self):
113
+ """Gets the tags of this UpdateJobQueueRequest. # noqa: E501
114
+
115
+ Tags to associate with the job queue # noqa: E501
116
+
117
+ :return: The tags of this UpdateJobQueueRequest. # noqa: E501
118
+ :rtype: dict(str, str)
119
+ """
120
+ return self._tags
121
+
122
+ @tags.setter
123
+ def tags(self, tags):
124
+ """Sets the tags of this UpdateJobQueueRequest.
125
+
126
+ Tags to associate with the job queue # noqa: E501
127
+
128
+ :param tags: The tags of this UpdateJobQueueRequest. # noqa: E501
129
+ :type: dict(str, str)
130
+ """
131
+
132
+ self._tags = tags
133
+
106
134
  def to_dict(self):
107
135
  """Returns the model properties as a dict"""
108
136
  result = {}
@@ -0,0 +1,175 @@
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 UpsertResourceTagsRequest(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
+ 'resource_type': 'ResourceTagResourceType',
37
+ 'resource_id': 'str',
38
+ 'tags': 'dict(str, str)'
39
+ }
40
+
41
+ attribute_map = {
42
+ 'resource_type': 'resource_type',
43
+ 'resource_id': 'resource_id',
44
+ 'tags': 'tags'
45
+ }
46
+
47
+ def __init__(self, resource_type=None, resource_id=None, tags=None, local_vars_configuration=None): # noqa: E501
48
+ """UpsertResourceTagsRequest - a model defined in OpenAPI""" # noqa: E501
49
+ if local_vars_configuration is None:
50
+ local_vars_configuration = Configuration()
51
+ self.local_vars_configuration = local_vars_configuration
52
+
53
+ self._resource_type = None
54
+ self._resource_id = None
55
+ self._tags = None
56
+ self.discriminator = None
57
+
58
+ self.resource_type = resource_type
59
+ self.resource_id = resource_id
60
+ self.tags = tags
61
+
62
+ @property
63
+ def resource_type(self):
64
+ """Gets the resource_type of this UpsertResourceTagsRequest. # noqa: E501
65
+
66
+
67
+ :return: The resource_type of this UpsertResourceTagsRequest. # noqa: E501
68
+ :rtype: ResourceTagResourceType
69
+ """
70
+ return self._resource_type
71
+
72
+ @resource_type.setter
73
+ def resource_type(self, resource_type):
74
+ """Sets the resource_type of this UpsertResourceTagsRequest.
75
+
76
+
77
+ :param resource_type: The resource_type of this UpsertResourceTagsRequest. # noqa: E501
78
+ :type: ResourceTagResourceType
79
+ """
80
+ if self.local_vars_configuration.client_side_validation and resource_type is None: # noqa: E501
81
+ raise ValueError("Invalid value for `resource_type`, must not be `None`") # noqa: E501
82
+
83
+ self._resource_type = resource_type
84
+
85
+ @property
86
+ def resource_id(self):
87
+ """Gets the resource_id of this UpsertResourceTagsRequest. # noqa: E501
88
+
89
+
90
+ :return: The resource_id of this UpsertResourceTagsRequest. # noqa: E501
91
+ :rtype: str
92
+ """
93
+ return self._resource_id
94
+
95
+ @resource_id.setter
96
+ def resource_id(self, resource_id):
97
+ """Sets the resource_id of this UpsertResourceTagsRequest.
98
+
99
+
100
+ :param resource_id: The resource_id of this UpsertResourceTagsRequest. # noqa: E501
101
+ :type: str
102
+ """
103
+ if self.local_vars_configuration.client_side_validation and resource_id is None: # noqa: E501
104
+ raise ValueError("Invalid value for `resource_id`, must not be `None`") # noqa: E501
105
+
106
+ self._resource_id = resource_id
107
+
108
+ @property
109
+ def tags(self):
110
+ """Gets the tags of this UpsertResourceTagsRequest. # noqa: E501
111
+
112
+
113
+ :return: The tags of this UpsertResourceTagsRequest. # noqa: E501
114
+ :rtype: dict(str, str)
115
+ """
116
+ return self._tags
117
+
118
+ @tags.setter
119
+ def tags(self, tags):
120
+ """Sets the tags of this UpsertResourceTagsRequest.
121
+
122
+
123
+ :param tags: The tags of this UpsertResourceTagsRequest. # noqa: E501
124
+ :type: dict(str, str)
125
+ """
126
+ if self.local_vars_configuration.client_side_validation and tags is None: # noqa: E501
127
+ raise ValueError("Invalid value for `tags`, must not be `None`") # noqa: E501
128
+
129
+ self._tags = tags
130
+
131
+ def to_dict(self):
132
+ """Returns the model properties as a dict"""
133
+ result = {}
134
+
135
+ for attr, _ in six.iteritems(self.openapi_types):
136
+ value = getattr(self, attr)
137
+ if isinstance(value, list):
138
+ result[attr] = list(map(
139
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
140
+ value
141
+ ))
142
+ elif hasattr(value, "to_dict"):
143
+ result[attr] = value.to_dict()
144
+ elif isinstance(value, dict):
145
+ result[attr] = dict(map(
146
+ lambda item: (item[0], item[1].to_dict())
147
+ if hasattr(item[1], "to_dict") else item,
148
+ value.items()
149
+ ))
150
+ else:
151
+ result[attr] = value
152
+
153
+ return result
154
+
155
+ def to_str(self):
156
+ """Returns the string representation of the model"""
157
+ return pprint.pformat(self.to_dict())
158
+
159
+ def __repr__(self):
160
+ """For `print` and `pprint`"""
161
+ return self.to_str()
162
+
163
+ def __eq__(self, other):
164
+ """Returns true if both objects are equal"""
165
+ if not isinstance(other, UpsertResourceTagsRequest):
166
+ return False
167
+
168
+ return self.to_dict() == other.to_dict()
169
+
170
+ def __ne__(self, other):
171
+ """Returns true if both objects are not equal"""
172
+ if not isinstance(other, UpsertResourceTagsRequest):
173
+ return True
174
+
175
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,121 @@
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 UseWorkOSResponse(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
+ 'use_workos': 'bool'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'use_workos': 'use_workos'
41
+ }
42
+
43
+ def __init__(self, use_workos=None, local_vars_configuration=None): # noqa: E501
44
+ """UseWorkOSResponse - 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._use_workos = None
50
+ self.discriminator = None
51
+
52
+ self.use_workos = use_workos
53
+
54
+ @property
55
+ def use_workos(self):
56
+ """Gets the use_workos of this UseWorkOSResponse. # noqa: E501
57
+
58
+
59
+ :return: The use_workos of this UseWorkOSResponse. # noqa: E501
60
+ :rtype: bool
61
+ """
62
+ return self._use_workos
63
+
64
+ @use_workos.setter
65
+ def use_workos(self, use_workos):
66
+ """Sets the use_workos of this UseWorkOSResponse.
67
+
68
+
69
+ :param use_workos: The use_workos of this UseWorkOSResponse. # noqa: E501
70
+ :type: bool
71
+ """
72
+ if self.local_vars_configuration.client_side_validation and use_workos is None: # noqa: E501
73
+ raise ValueError("Invalid value for `use_workos`, must not be `None`") # noqa: E501
74
+
75
+ self._use_workos = use_workos
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, UseWorkOSResponse):
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, UseWorkOSResponse):
119
+ return True
120
+
121
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,121 @@
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 UseworkosresponseResponse(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': 'UseWorkOSResponse'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'result': 'result'
41
+ }
42
+
43
+ def __init__(self, result=None, local_vars_configuration=None): # noqa: E501
44
+ """UseworkosresponseResponse - 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 UseworkosresponseResponse. # noqa: E501
57
+
58
+
59
+ :return: The result of this UseworkosresponseResponse. # noqa: E501
60
+ :rtype: UseWorkOSResponse
61
+ """
62
+ return self._result
63
+
64
+ @result.setter
65
+ def result(self, result):
66
+ """Sets the result of this UseworkosresponseResponse.
67
+
68
+
69
+ :param result: The result of this UseworkosresponseResponse. # noqa: E501
70
+ :type: UseWorkOSResponse
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, UseworkosresponseResponse):
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, UseworkosresponseResponse):
119
+ return True
120
+
121
+ return self.to_dict() != other.to_dict()