lightning-sdk 0.2.18__py3-none-any.whl → 0.2.20__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.
- lightning_sdk/__init__.py +1 -1
- lightning_sdk/api/deployment_api.py +2 -0
- lightning_sdk/api/license_api.py +28 -6
- lightning_sdk/cli/deploy/_auth.py +11 -19
- lightning_sdk/cli/entrypoint.py +20 -2
- lightning_sdk/deployment/deployment.py +2 -0
- lightning_sdk/lightning_cloud/login.py +2 -2
- lightning_sdk/lightning_cloud/openapi/__init__.py +10 -2
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
- lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +533 -0
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +113 -0
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +121 -0
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +9 -2
- lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/blogposts_id_body.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/id_transfer_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +157 -157
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/update.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_state.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_blog_post_request.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_daily_usage.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_blog_post_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +237 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_list_blog_posts_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +261 -157
- lightning_sdk/lightning_cloud/openapi/models/v1_product_license.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +199 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +4 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_transfer_cloud_space_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +105 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +249 -145
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +499 -31
- lightning_sdk/lightning_cloud/rest_client.py +13 -11
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
- lightning_sdk/serve.py +1 -0
- lightning_sdk/services/license.py +148 -27
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/METADATA +1 -1
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/RECORD +66 -58
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_reservation_billing_session.py +0 -279
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/WHEEL +0 -0
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.2.18.dist-info → lightning_sdk-0.2.20.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
external/v1/auth_service.proto
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: version not set
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
|
|
12
|
+
NOTE
|
|
13
|
+
----
|
|
14
|
+
standard swagger-codegen-cli for this python client has been modified
|
|
15
|
+
by custom templates. The purpose of these templates is to include
|
|
16
|
+
typing information in the API and Model code. Please refer to the
|
|
17
|
+
main grid repository for more info
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
import pprint
|
|
21
|
+
import re # noqa: F401
|
|
22
|
+
|
|
23
|
+
from typing import TYPE_CHECKING
|
|
24
|
+
|
|
25
|
+
import six
|
|
26
|
+
|
|
27
|
+
if TYPE_CHECKING:
|
|
28
|
+
from datetime import datetime
|
|
29
|
+
from lightning_sdk.lightning_cloud.openapi.models import *
|
|
30
|
+
|
|
31
|
+
class V1Author(object):
|
|
32
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
33
|
+
|
|
34
|
+
Do not edit the class manually.
|
|
35
|
+
"""
|
|
36
|
+
"""
|
|
37
|
+
Attributes:
|
|
38
|
+
swagger_types (dict): The key is attribute name
|
|
39
|
+
and the value is attribute type.
|
|
40
|
+
attribute_map (dict): The key is attribute name
|
|
41
|
+
and the value is json key in definition.
|
|
42
|
+
"""
|
|
43
|
+
swagger_types = {
|
|
44
|
+
'first_name': 'str',
|
|
45
|
+
'id': 'str',
|
|
46
|
+
'last_name': 'str',
|
|
47
|
+
'username': 'str'
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
attribute_map = {
|
|
51
|
+
'first_name': 'firstName',
|
|
52
|
+
'id': 'id',
|
|
53
|
+
'last_name': 'lastName',
|
|
54
|
+
'username': 'username'
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
def __init__(self, first_name: 'str' =None, id: 'str' =None, last_name: 'str' =None, username: 'str' =None): # noqa: E501
|
|
58
|
+
"""V1Author - a model defined in Swagger""" # noqa: E501
|
|
59
|
+
self._first_name = None
|
|
60
|
+
self._id = None
|
|
61
|
+
self._last_name = None
|
|
62
|
+
self._username = None
|
|
63
|
+
self.discriminator = None
|
|
64
|
+
if first_name is not None:
|
|
65
|
+
self.first_name = first_name
|
|
66
|
+
if id is not None:
|
|
67
|
+
self.id = id
|
|
68
|
+
if last_name is not None:
|
|
69
|
+
self.last_name = last_name
|
|
70
|
+
if username is not None:
|
|
71
|
+
self.username = username
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
def first_name(self) -> 'str':
|
|
75
|
+
"""Gets the first_name of this V1Author. # noqa: E501
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
:return: The first_name of this V1Author. # noqa: E501
|
|
79
|
+
:rtype: str
|
|
80
|
+
"""
|
|
81
|
+
return self._first_name
|
|
82
|
+
|
|
83
|
+
@first_name.setter
|
|
84
|
+
def first_name(self, first_name: 'str'):
|
|
85
|
+
"""Sets the first_name of this V1Author.
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
:param first_name: The first_name of this V1Author. # noqa: E501
|
|
89
|
+
:type: str
|
|
90
|
+
"""
|
|
91
|
+
|
|
92
|
+
self._first_name = first_name
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
def id(self) -> 'str':
|
|
96
|
+
"""Gets the id of this V1Author. # noqa: E501
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
:return: The id of this V1Author. # noqa: E501
|
|
100
|
+
:rtype: str
|
|
101
|
+
"""
|
|
102
|
+
return self._id
|
|
103
|
+
|
|
104
|
+
@id.setter
|
|
105
|
+
def id(self, id: 'str'):
|
|
106
|
+
"""Sets the id of this V1Author.
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
:param id: The id of this V1Author. # noqa: E501
|
|
110
|
+
:type: str
|
|
111
|
+
"""
|
|
112
|
+
|
|
113
|
+
self._id = id
|
|
114
|
+
|
|
115
|
+
@property
|
|
116
|
+
def last_name(self) -> 'str':
|
|
117
|
+
"""Gets the last_name of this V1Author. # noqa: E501
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
:return: The last_name of this V1Author. # noqa: E501
|
|
121
|
+
:rtype: str
|
|
122
|
+
"""
|
|
123
|
+
return self._last_name
|
|
124
|
+
|
|
125
|
+
@last_name.setter
|
|
126
|
+
def last_name(self, last_name: 'str'):
|
|
127
|
+
"""Sets the last_name of this V1Author.
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
:param last_name: The last_name of this V1Author. # noqa: E501
|
|
131
|
+
:type: str
|
|
132
|
+
"""
|
|
133
|
+
|
|
134
|
+
self._last_name = last_name
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
def username(self) -> 'str':
|
|
138
|
+
"""Gets the username of this V1Author. # noqa: E501
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
:return: The username of this V1Author. # noqa: E501
|
|
142
|
+
:rtype: str
|
|
143
|
+
"""
|
|
144
|
+
return self._username
|
|
145
|
+
|
|
146
|
+
@username.setter
|
|
147
|
+
def username(self, username: 'str'):
|
|
148
|
+
"""Sets the username of this V1Author.
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
:param username: The username of this V1Author. # noqa: E501
|
|
152
|
+
:type: str
|
|
153
|
+
"""
|
|
154
|
+
|
|
155
|
+
self._username = username
|
|
156
|
+
|
|
157
|
+
def to_dict(self) -> dict:
|
|
158
|
+
"""Returns the model properties as a dict"""
|
|
159
|
+
result = {}
|
|
160
|
+
|
|
161
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
162
|
+
value = getattr(self, attr)
|
|
163
|
+
if isinstance(value, list):
|
|
164
|
+
result[attr] = list(map(
|
|
165
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
166
|
+
value
|
|
167
|
+
))
|
|
168
|
+
elif hasattr(value, "to_dict"):
|
|
169
|
+
result[attr] = value.to_dict()
|
|
170
|
+
elif isinstance(value, dict):
|
|
171
|
+
result[attr] = dict(map(
|
|
172
|
+
lambda item: (item[0], item[1].to_dict())
|
|
173
|
+
if hasattr(item[1], "to_dict") else item,
|
|
174
|
+
value.items()
|
|
175
|
+
))
|
|
176
|
+
else:
|
|
177
|
+
result[attr] = value
|
|
178
|
+
if issubclass(V1Author, dict):
|
|
179
|
+
for key, value in self.items():
|
|
180
|
+
result[key] = value
|
|
181
|
+
|
|
182
|
+
return result
|
|
183
|
+
|
|
184
|
+
def to_str(self) -> str:
|
|
185
|
+
"""Returns the string representation of the model"""
|
|
186
|
+
return pprint.pformat(self.to_dict())
|
|
187
|
+
|
|
188
|
+
def __repr__(self) -> str:
|
|
189
|
+
"""For `print` and `pprint`"""
|
|
190
|
+
return self.to_str()
|
|
191
|
+
|
|
192
|
+
def __eq__(self, other: 'V1Author') -> bool:
|
|
193
|
+
"""Returns true if both objects are equal"""
|
|
194
|
+
if not isinstance(other, V1Author):
|
|
195
|
+
return False
|
|
196
|
+
|
|
197
|
+
return self.__dict__ == other.__dict__
|
|
198
|
+
|
|
199
|
+
def __ne__(self, other: 'V1Author') -> bool:
|
|
200
|
+
"""Returns true if both objects are not equal"""
|
|
201
|
+
return not self == other
|
|
@@ -0,0 +1,383 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
external/v1/auth_service.proto
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: version not set
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
|
|
12
|
+
NOTE
|
|
13
|
+
----
|
|
14
|
+
standard swagger-codegen-cli for this python client has been modified
|
|
15
|
+
by custom templates. The purpose of these templates is to include
|
|
16
|
+
typing information in the API and Model code. Please refer to the
|
|
17
|
+
main grid repository for more info
|
|
18
|
+
"""
|
|
19
|
+
|
|
20
|
+
import pprint
|
|
21
|
+
import re # noqa: F401
|
|
22
|
+
|
|
23
|
+
from typing import TYPE_CHECKING
|
|
24
|
+
|
|
25
|
+
import six
|
|
26
|
+
|
|
27
|
+
if TYPE_CHECKING:
|
|
28
|
+
from datetime import datetime
|
|
29
|
+
from lightning_sdk.lightning_cloud.openapi.models import *
|
|
30
|
+
|
|
31
|
+
class V1BlogPost(object):
|
|
32
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
33
|
+
|
|
34
|
+
Do not edit the class manually.
|
|
35
|
+
"""
|
|
36
|
+
"""
|
|
37
|
+
Attributes:
|
|
38
|
+
swagger_types (dict): The key is attribute name
|
|
39
|
+
and the value is attribute type.
|
|
40
|
+
attribute_map (dict): The key is attribute name
|
|
41
|
+
and the value is json key in definition.
|
|
42
|
+
"""
|
|
43
|
+
swagger_types = {
|
|
44
|
+
'author': 'V1Author',
|
|
45
|
+
'author_id': 'str',
|
|
46
|
+
'category': 'str',
|
|
47
|
+
'created_at': 'datetime',
|
|
48
|
+
'description': 'str',
|
|
49
|
+
'id': 'str',
|
|
50
|
+
'image_url': 'str',
|
|
51
|
+
'lit_page': 'V1LitPage',
|
|
52
|
+
'lit_page_id': 'str',
|
|
53
|
+
'title': 'str',
|
|
54
|
+
'updated_at': 'datetime'
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
attribute_map = {
|
|
58
|
+
'author': 'author',
|
|
59
|
+
'author_id': 'authorId',
|
|
60
|
+
'category': 'category',
|
|
61
|
+
'created_at': 'createdAt',
|
|
62
|
+
'description': 'description',
|
|
63
|
+
'id': 'id',
|
|
64
|
+
'image_url': 'imageUrl',
|
|
65
|
+
'lit_page': 'litPage',
|
|
66
|
+
'lit_page_id': 'litPageId',
|
|
67
|
+
'title': 'title',
|
|
68
|
+
'updated_at': 'updatedAt'
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
def __init__(self, author: 'V1Author' =None, author_id: 'str' =None, category: 'str' =None, created_at: 'datetime' =None, description: 'str' =None, id: 'str' =None, image_url: 'str' =None, lit_page: 'V1LitPage' =None, lit_page_id: 'str' =None, title: 'str' =None, updated_at: 'datetime' =None): # noqa: E501
|
|
72
|
+
"""V1BlogPost - a model defined in Swagger""" # noqa: E501
|
|
73
|
+
self._author = None
|
|
74
|
+
self._author_id = None
|
|
75
|
+
self._category = None
|
|
76
|
+
self._created_at = None
|
|
77
|
+
self._description = None
|
|
78
|
+
self._id = None
|
|
79
|
+
self._image_url = None
|
|
80
|
+
self._lit_page = None
|
|
81
|
+
self._lit_page_id = None
|
|
82
|
+
self._title = None
|
|
83
|
+
self._updated_at = None
|
|
84
|
+
self.discriminator = None
|
|
85
|
+
if author is not None:
|
|
86
|
+
self.author = author
|
|
87
|
+
if author_id is not None:
|
|
88
|
+
self.author_id = author_id
|
|
89
|
+
if category is not None:
|
|
90
|
+
self.category = category
|
|
91
|
+
if created_at is not None:
|
|
92
|
+
self.created_at = created_at
|
|
93
|
+
if description is not None:
|
|
94
|
+
self.description = description
|
|
95
|
+
if id is not None:
|
|
96
|
+
self.id = id
|
|
97
|
+
if image_url is not None:
|
|
98
|
+
self.image_url = image_url
|
|
99
|
+
if lit_page is not None:
|
|
100
|
+
self.lit_page = lit_page
|
|
101
|
+
if lit_page_id is not None:
|
|
102
|
+
self.lit_page_id = lit_page_id
|
|
103
|
+
if title is not None:
|
|
104
|
+
self.title = title
|
|
105
|
+
if updated_at is not None:
|
|
106
|
+
self.updated_at = updated_at
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
def author(self) -> 'V1Author':
|
|
110
|
+
"""Gets the author of this V1BlogPost. # noqa: E501
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
:return: The author of this V1BlogPost. # noqa: E501
|
|
114
|
+
:rtype: V1Author
|
|
115
|
+
"""
|
|
116
|
+
return self._author
|
|
117
|
+
|
|
118
|
+
@author.setter
|
|
119
|
+
def author(self, author: 'V1Author'):
|
|
120
|
+
"""Sets the author of this V1BlogPost.
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
:param author: The author of this V1BlogPost. # noqa: E501
|
|
124
|
+
:type: V1Author
|
|
125
|
+
"""
|
|
126
|
+
|
|
127
|
+
self._author = author
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
def author_id(self) -> 'str':
|
|
131
|
+
"""Gets the author_id of this V1BlogPost. # noqa: E501
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
:return: The author_id of this V1BlogPost. # noqa: E501
|
|
135
|
+
:rtype: str
|
|
136
|
+
"""
|
|
137
|
+
return self._author_id
|
|
138
|
+
|
|
139
|
+
@author_id.setter
|
|
140
|
+
def author_id(self, author_id: 'str'):
|
|
141
|
+
"""Sets the author_id of this V1BlogPost.
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
:param author_id: The author_id of this V1BlogPost. # noqa: E501
|
|
145
|
+
:type: str
|
|
146
|
+
"""
|
|
147
|
+
|
|
148
|
+
self._author_id = author_id
|
|
149
|
+
|
|
150
|
+
@property
|
|
151
|
+
def category(self) -> 'str':
|
|
152
|
+
"""Gets the category of this V1BlogPost. # noqa: E501
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
:return: The category of this V1BlogPost. # noqa: E501
|
|
156
|
+
:rtype: str
|
|
157
|
+
"""
|
|
158
|
+
return self._category
|
|
159
|
+
|
|
160
|
+
@category.setter
|
|
161
|
+
def category(self, category: 'str'):
|
|
162
|
+
"""Sets the category of this V1BlogPost.
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
:param category: The category of this V1BlogPost. # noqa: E501
|
|
166
|
+
:type: str
|
|
167
|
+
"""
|
|
168
|
+
|
|
169
|
+
self._category = category
|
|
170
|
+
|
|
171
|
+
@property
|
|
172
|
+
def created_at(self) -> 'datetime':
|
|
173
|
+
"""Gets the created_at of this V1BlogPost. # noqa: E501
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
:return: The created_at of this V1BlogPost. # noqa: E501
|
|
177
|
+
:rtype: datetime
|
|
178
|
+
"""
|
|
179
|
+
return self._created_at
|
|
180
|
+
|
|
181
|
+
@created_at.setter
|
|
182
|
+
def created_at(self, created_at: 'datetime'):
|
|
183
|
+
"""Sets the created_at of this V1BlogPost.
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
:param created_at: The created_at of this V1BlogPost. # noqa: E501
|
|
187
|
+
:type: datetime
|
|
188
|
+
"""
|
|
189
|
+
|
|
190
|
+
self._created_at = created_at
|
|
191
|
+
|
|
192
|
+
@property
|
|
193
|
+
def description(self) -> 'str':
|
|
194
|
+
"""Gets the description of this V1BlogPost. # noqa: E501
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
:return: The description of this V1BlogPost. # noqa: E501
|
|
198
|
+
:rtype: str
|
|
199
|
+
"""
|
|
200
|
+
return self._description
|
|
201
|
+
|
|
202
|
+
@description.setter
|
|
203
|
+
def description(self, description: 'str'):
|
|
204
|
+
"""Sets the description of this V1BlogPost.
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
:param description: The description of this V1BlogPost. # noqa: E501
|
|
208
|
+
:type: str
|
|
209
|
+
"""
|
|
210
|
+
|
|
211
|
+
self._description = description
|
|
212
|
+
|
|
213
|
+
@property
|
|
214
|
+
def id(self) -> 'str':
|
|
215
|
+
"""Gets the id of this V1BlogPost. # noqa: E501
|
|
216
|
+
|
|
217
|
+
|
|
218
|
+
:return: The id of this V1BlogPost. # noqa: E501
|
|
219
|
+
:rtype: str
|
|
220
|
+
"""
|
|
221
|
+
return self._id
|
|
222
|
+
|
|
223
|
+
@id.setter
|
|
224
|
+
def id(self, id: 'str'):
|
|
225
|
+
"""Sets the id of this V1BlogPost.
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
:param id: The id of this V1BlogPost. # noqa: E501
|
|
229
|
+
:type: str
|
|
230
|
+
"""
|
|
231
|
+
|
|
232
|
+
self._id = id
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
def image_url(self) -> 'str':
|
|
236
|
+
"""Gets the image_url of this V1BlogPost. # noqa: E501
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
:return: The image_url of this V1BlogPost. # noqa: E501
|
|
240
|
+
:rtype: str
|
|
241
|
+
"""
|
|
242
|
+
return self._image_url
|
|
243
|
+
|
|
244
|
+
@image_url.setter
|
|
245
|
+
def image_url(self, image_url: 'str'):
|
|
246
|
+
"""Sets the image_url of this V1BlogPost.
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
:param image_url: The image_url of this V1BlogPost. # noqa: E501
|
|
250
|
+
:type: str
|
|
251
|
+
"""
|
|
252
|
+
|
|
253
|
+
self._image_url = image_url
|
|
254
|
+
|
|
255
|
+
@property
|
|
256
|
+
def lit_page(self) -> 'V1LitPage':
|
|
257
|
+
"""Gets the lit_page of this V1BlogPost. # noqa: E501
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
:return: The lit_page of this V1BlogPost. # noqa: E501
|
|
261
|
+
:rtype: V1LitPage
|
|
262
|
+
"""
|
|
263
|
+
return self._lit_page
|
|
264
|
+
|
|
265
|
+
@lit_page.setter
|
|
266
|
+
def lit_page(self, lit_page: 'V1LitPage'):
|
|
267
|
+
"""Sets the lit_page of this V1BlogPost.
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
:param lit_page: The lit_page of this V1BlogPost. # noqa: E501
|
|
271
|
+
:type: V1LitPage
|
|
272
|
+
"""
|
|
273
|
+
|
|
274
|
+
self._lit_page = lit_page
|
|
275
|
+
|
|
276
|
+
@property
|
|
277
|
+
def lit_page_id(self) -> 'str':
|
|
278
|
+
"""Gets the lit_page_id of this V1BlogPost. # noqa: E501
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
:return: The lit_page_id of this V1BlogPost. # noqa: E501
|
|
282
|
+
:rtype: str
|
|
283
|
+
"""
|
|
284
|
+
return self._lit_page_id
|
|
285
|
+
|
|
286
|
+
@lit_page_id.setter
|
|
287
|
+
def lit_page_id(self, lit_page_id: 'str'):
|
|
288
|
+
"""Sets the lit_page_id of this V1BlogPost.
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
:param lit_page_id: The lit_page_id of this V1BlogPost. # noqa: E501
|
|
292
|
+
:type: str
|
|
293
|
+
"""
|
|
294
|
+
|
|
295
|
+
self._lit_page_id = lit_page_id
|
|
296
|
+
|
|
297
|
+
@property
|
|
298
|
+
def title(self) -> 'str':
|
|
299
|
+
"""Gets the title of this V1BlogPost. # noqa: E501
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
:return: The title of this V1BlogPost. # noqa: E501
|
|
303
|
+
:rtype: str
|
|
304
|
+
"""
|
|
305
|
+
return self._title
|
|
306
|
+
|
|
307
|
+
@title.setter
|
|
308
|
+
def title(self, title: 'str'):
|
|
309
|
+
"""Sets the title of this V1BlogPost.
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
:param title: The title of this V1BlogPost. # noqa: E501
|
|
313
|
+
:type: str
|
|
314
|
+
"""
|
|
315
|
+
|
|
316
|
+
self._title = title
|
|
317
|
+
|
|
318
|
+
@property
|
|
319
|
+
def updated_at(self) -> 'datetime':
|
|
320
|
+
"""Gets the updated_at of this V1BlogPost. # noqa: E501
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
:return: The updated_at of this V1BlogPost. # noqa: E501
|
|
324
|
+
:rtype: datetime
|
|
325
|
+
"""
|
|
326
|
+
return self._updated_at
|
|
327
|
+
|
|
328
|
+
@updated_at.setter
|
|
329
|
+
def updated_at(self, updated_at: 'datetime'):
|
|
330
|
+
"""Sets the updated_at of this V1BlogPost.
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
:param updated_at: The updated_at of this V1BlogPost. # noqa: E501
|
|
334
|
+
:type: datetime
|
|
335
|
+
"""
|
|
336
|
+
|
|
337
|
+
self._updated_at = updated_at
|
|
338
|
+
|
|
339
|
+
def to_dict(self) -> dict:
|
|
340
|
+
"""Returns the model properties as a dict"""
|
|
341
|
+
result = {}
|
|
342
|
+
|
|
343
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
344
|
+
value = getattr(self, attr)
|
|
345
|
+
if isinstance(value, list):
|
|
346
|
+
result[attr] = list(map(
|
|
347
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
348
|
+
value
|
|
349
|
+
))
|
|
350
|
+
elif hasattr(value, "to_dict"):
|
|
351
|
+
result[attr] = value.to_dict()
|
|
352
|
+
elif isinstance(value, dict):
|
|
353
|
+
result[attr] = dict(map(
|
|
354
|
+
lambda item: (item[0], item[1].to_dict())
|
|
355
|
+
if hasattr(item[1], "to_dict") else item,
|
|
356
|
+
value.items()
|
|
357
|
+
))
|
|
358
|
+
else:
|
|
359
|
+
result[attr] = value
|
|
360
|
+
if issubclass(V1BlogPost, dict):
|
|
361
|
+
for key, value in self.items():
|
|
362
|
+
result[key] = value
|
|
363
|
+
|
|
364
|
+
return result
|
|
365
|
+
|
|
366
|
+
def to_str(self) -> str:
|
|
367
|
+
"""Returns the string representation of the model"""
|
|
368
|
+
return pprint.pformat(self.to_dict())
|
|
369
|
+
|
|
370
|
+
def __repr__(self) -> str:
|
|
371
|
+
"""For `print` and `pprint`"""
|
|
372
|
+
return self.to_str()
|
|
373
|
+
|
|
374
|
+
def __eq__(self, other: 'V1BlogPost') -> bool:
|
|
375
|
+
"""Returns true if both objects are equal"""
|
|
376
|
+
if not isinstance(other, V1BlogPost):
|
|
377
|
+
return False
|
|
378
|
+
|
|
379
|
+
return self.__dict__ == other.__dict__
|
|
380
|
+
|
|
381
|
+
def __ne__(self, other: 'V1BlogPost') -> bool:
|
|
382
|
+
"""Returns true if both objects are not equal"""
|
|
383
|
+
return not self == other
|
|
@@ -78,6 +78,7 @@ class V1CloudSpace(object):
|
|
|
78
78
|
'paper_org': 'str',
|
|
79
79
|
'paper_org_avatar_url': 'str',
|
|
80
80
|
'paper_url': 'str',
|
|
81
|
+
'persistent_disk_id': 'str',
|
|
81
82
|
'project_id': 'str',
|
|
82
83
|
'publications': 'list[V1CloudSpaceVersionPublication]',
|
|
83
84
|
'published_at': 'datetime',
|
|
@@ -135,6 +136,7 @@ class V1CloudSpace(object):
|
|
|
135
136
|
'paper_org': 'paperOrg',
|
|
136
137
|
'paper_org_avatar_url': 'paperOrgAvatarUrl',
|
|
137
138
|
'paper_url': 'paperUrl',
|
|
139
|
+
'persistent_disk_id': 'persistentDiskId',
|
|
138
140
|
'project_id': 'projectId',
|
|
139
141
|
'publications': 'publications',
|
|
140
142
|
'published_at': 'publishedAt',
|
|
@@ -154,7 +156,7 @@ class V1CloudSpace(object):
|
|
|
154
156
|
'web_path': 'webPath'
|
|
155
157
|
}
|
|
156
158
|
|
|
157
|
-
def __init__(self, auto_switch_machine: 'bool' =None, cache_data_connection_id: 'str' =None, can_download_source_code: 'bool' =None, cluster_id: 'str' =None, code_config: 'V1CloudSpaceInstanceConfig' =None, code_status: 'V1GetCloudSpaceInstanceStatusResponse' =None, code_url: 'str' =None, created_at: 'datetime' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, description: 'str' =None, display_name: 'str' =None, engagement_counts: 'dict(str, str)' =None, env: 'list[V1EnvVar]' =None, environment_config: 'V1CloudSpaceEnvironmentConfig' =None, environment_template_id: 'str' =None, featured: 'bool' =None, hide_files: 'bool' =None, id: 'str' =None, image_status: 'V1ImageState' =None, is_cloudspace_private: 'bool' =None, is_code_private: 'bool' =None, is_favorite: 'bool' =None, is_published: 'bool' =None, license: 'str' =None, license_url: 'str' =None, lock_out: 'bool' =None, machine_image_version: 'str' =None, max_run_duration: 'str' =None, message: 'str' =None, multi_user_edit: 'bool' =None, name: 'str' =None, number_of_files: 'str' =None, operating_cost: 'str' =None, paper_authors: 'str' =None, paper_org: 'str' =None, paper_org_avatar_url: 'str' =None, paper_url: 'str' =None, project_id: 'str' =None, publications: 'list[V1CloudSpaceVersionPublication]' =None, published_at: 'datetime' =None, published_to_org_at: 'datetime' =None, state: 'V1CloudSpaceState' =None, switch_to_default_machine_on_idle: 'bool' =None, sync_duration: 'str' =None, sync_percentage: 'str' =None, tags: 'list[V1ResourceTag]' =None, thumbnail_file_type: 'str' =None, thumbnail_updated_at: 'datetime' =None, thumbnail_url: 'str' =None, total_size_bytes: 'str' =None, updated_at: 'datetime' =None, user_id: 'str' =None, user_metadata: 'str' =None, web_path: 'str' =None): # noqa: E501
|
|
159
|
+
def __init__(self, auto_switch_machine: 'bool' =None, cache_data_connection_id: 'str' =None, can_download_source_code: 'bool' =None, cluster_id: 'str' =None, code_config: 'V1CloudSpaceInstanceConfig' =None, code_status: 'V1GetCloudSpaceInstanceStatusResponse' =None, code_url: 'str' =None, created_at: 'datetime' =None, data_connection_mounts: 'list[V1DataConnectionMount]' =None, description: 'str' =None, display_name: 'str' =None, engagement_counts: 'dict(str, str)' =None, env: 'list[V1EnvVar]' =None, environment_config: 'V1CloudSpaceEnvironmentConfig' =None, environment_template_id: 'str' =None, featured: 'bool' =None, hide_files: 'bool' =None, id: 'str' =None, image_status: 'V1ImageState' =None, is_cloudspace_private: 'bool' =None, is_code_private: 'bool' =None, is_favorite: 'bool' =None, is_published: 'bool' =None, license: 'str' =None, license_url: 'str' =None, lock_out: 'bool' =None, machine_image_version: 'str' =None, max_run_duration: 'str' =None, message: 'str' =None, multi_user_edit: 'bool' =None, name: 'str' =None, number_of_files: 'str' =None, operating_cost: 'str' =None, paper_authors: 'str' =None, paper_org: 'str' =None, paper_org_avatar_url: 'str' =None, paper_url: 'str' =None, persistent_disk_id: 'str' =None, project_id: 'str' =None, publications: 'list[V1CloudSpaceVersionPublication]' =None, published_at: 'datetime' =None, published_to_org_at: 'datetime' =None, state: 'V1CloudSpaceState' =None, switch_to_default_machine_on_idle: 'bool' =None, sync_duration: 'str' =None, sync_percentage: 'str' =None, tags: 'list[V1ResourceTag]' =None, thumbnail_file_type: 'str' =None, thumbnail_updated_at: 'datetime' =None, thumbnail_url: 'str' =None, total_size_bytes: 'str' =None, updated_at: 'datetime' =None, user_id: 'str' =None, user_metadata: 'str' =None, web_path: 'str' =None): # noqa: E501
|
|
158
160
|
"""V1CloudSpace - a model defined in Swagger""" # noqa: E501
|
|
159
161
|
self._auto_switch_machine = None
|
|
160
162
|
self._cache_data_connection_id = None
|
|
@@ -193,6 +195,7 @@ class V1CloudSpace(object):
|
|
|
193
195
|
self._paper_org = None
|
|
194
196
|
self._paper_org_avatar_url = None
|
|
195
197
|
self._paper_url = None
|
|
198
|
+
self._persistent_disk_id = None
|
|
196
199
|
self._project_id = None
|
|
197
200
|
self._publications = None
|
|
198
201
|
self._published_at = None
|
|
@@ -285,6 +288,8 @@ class V1CloudSpace(object):
|
|
|
285
288
|
self.paper_org_avatar_url = paper_org_avatar_url
|
|
286
289
|
if paper_url is not None:
|
|
287
290
|
self.paper_url = paper_url
|
|
291
|
+
if persistent_disk_id is not None:
|
|
292
|
+
self.persistent_disk_id = persistent_disk_id
|
|
288
293
|
if project_id is not None:
|
|
289
294
|
self.project_id = project_id
|
|
290
295
|
if publications is not None:
|
|
@@ -1097,6 +1102,27 @@ class V1CloudSpace(object):
|
|
|
1097
1102
|
|
|
1098
1103
|
self._paper_url = paper_url
|
|
1099
1104
|
|
|
1105
|
+
@property
|
|
1106
|
+
def persistent_disk_id(self) -> 'str':
|
|
1107
|
+
"""Gets the persistent_disk_id of this V1CloudSpace. # noqa: E501
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
:return: The persistent_disk_id of this V1CloudSpace. # noqa: E501
|
|
1111
|
+
:rtype: str
|
|
1112
|
+
"""
|
|
1113
|
+
return self._persistent_disk_id
|
|
1114
|
+
|
|
1115
|
+
@persistent_disk_id.setter
|
|
1116
|
+
def persistent_disk_id(self, persistent_disk_id: 'str'):
|
|
1117
|
+
"""Sets the persistent_disk_id of this V1CloudSpace.
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
:param persistent_disk_id: The persistent_disk_id of this V1CloudSpace. # noqa: E501
|
|
1121
|
+
:type: str
|
|
1122
|
+
"""
|
|
1123
|
+
|
|
1124
|
+
self._persistent_disk_id = persistent_disk_id
|
|
1125
|
+
|
|
1100
1126
|
@property
|
|
1101
1127
|
def project_id(self) -> 'str':
|
|
1102
1128
|
"""Gets the project_id of this V1CloudSpace. # noqa: E501
|