lightning-sdk 0.1.34__py3-none-any.whl → 0.1.35__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 (23) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/ai_hub.py +57 -3
  3. lightning_sdk/api/ai_hub_api.py +11 -0
  4. lightning_sdk/cli/ai_hub.py +11 -0
  5. lightning_sdk/cli/download.py +3 -3
  6. lightning_sdk/lightning_cloud/login.py +5 -2
  7. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +5 -1
  8. lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +27 -1
  9. lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +27 -1
  10. lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py +27 -1
  11. lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +27 -1
  12. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version.py +53 -1
  13. lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +27 -1
  14. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +27 -1
  15. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +27 -1
  16. lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +27 -1
  17. lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py +27 -1
  18. {lightning_sdk-0.1.34.dist-info → lightning_sdk-0.1.35.dist-info}/METADATA +1 -1
  19. {lightning_sdk-0.1.34.dist-info → lightning_sdk-0.1.35.dist-info}/RECORD +23 -23
  20. {lightning_sdk-0.1.34.dist-info → lightning_sdk-0.1.35.dist-info}/LICENSE +0 -0
  21. {lightning_sdk-0.1.34.dist-info → lightning_sdk-0.1.35.dist-info}/WHEEL +0 -0
  22. {lightning_sdk-0.1.34.dist-info → lightning_sdk-0.1.35.dist-info}/entry_points.txt +0 -0
  23. {lightning_sdk-0.1.34.dist-info → lightning_sdk-0.1.35.dist-info}/top_level.txt +0 -0
lightning_sdk/__init__.py CHANGED
@@ -27,5 +27,5 @@ __all__ = [
27
27
  "AIHub",
28
28
  ]
29
29
 
30
- __version__ = "0.1.34"
30
+ __version__ = "0.1.35"
31
31
  _check_version_and_prompt_upgrade(__version__)
lightning_sdk/ai_hub.py CHANGED
@@ -23,12 +23,66 @@ class AIHub:
23
23
  self._api = AIHubApi()
24
24
  self._auth = None
25
25
 
26
+ def api_info(self, api_id: str) -> dict:
27
+ """Get full API template info such as input details.
28
+
29
+ Example:
30
+ ai_hub = AIHub()
31
+ api_info = ai_hub.api_info("api_12345")
32
+
33
+ Args:
34
+ api_id: The ID of the API for which information is requested.
35
+
36
+ Returns:
37
+ A dictionary containing detailed information about the API,
38
+ including its name, description, creation and update timestamps,
39
+ parameters, tags, job specifications, and autoscaling settings.
40
+ """
41
+ template = self._api.api_info(api_id)
42
+
43
+ api_arguments = [
44
+ {
45
+ "name": param.name,
46
+ "short_description": param.short_description,
47
+ "required": param.required,
48
+ "default": param.input.default_value,
49
+ }
50
+ for param in template.parameter_spec.parameters
51
+ ]
52
+
53
+ return {
54
+ "name": template.name,
55
+ "description": template.description,
56
+ "created_at": template.created_at,
57
+ "updated_at": template.updated_at,
58
+ "api_arguments": api_arguments,
59
+ "tags": [tag.name for tag in template.tags],
60
+ "job": {
61
+ "image": template.spec_v2.job.image,
62
+ "interruptible": template.spec_v2.job.spot,
63
+ "instance_type": template.spec_v2.job.instance_type,
64
+ "resources": template.spec_v2.job.resources,
65
+ },
66
+ "autoscaling": {
67
+ "enabled": template.spec_v2.autoscaling.enabled,
68
+ "min_replicas": template.spec_v2.autoscaling.min_replicas,
69
+ "max_replicas": template.spec_v2.autoscaling.max_replicas,
70
+ },
71
+ }
72
+
26
73
  def list_apis(self, search: Optional[str] = None) -> List[Dict[str, str]]:
27
74
  """Get a list of AI Hub API templates.
28
75
 
29
76
  Example:
30
- api_hub = AIHub()
31
- api_list = api_hub.list_apis(search="Llama")
77
+ ai_hub = AIHub()
78
+ api_list = ai_hub.list_apis(search="Llama")
79
+
80
+ Args:
81
+ search: A search query to filter the list of APIs. Defaults to None.
82
+
83
+ Returns:
84
+ A list of dictionaries, each containing information about an API,
85
+ such as its ID, name, description, creator's username, and creation timestamp.
32
86
  """
33
87
  search_query = search or ""
34
88
  api_templates = self._api.list_apis(search_query=search_query)
@@ -84,7 +138,7 @@ class AIHub:
84
138
 
85
139
  Args:
86
140
  api_id: The ID of the API you want to deploy.
87
- cluster: The cluster where you want to deploy the API, such as "lightning-public-prod".
141
+ cluster: The cluster where you want to deploy the API, such as "lightning-public-prod". Defaults to None.
88
142
  name: Name for the deployed API. Defaults to None.
89
143
  teamspace: The team or group for deployment. Defaults to None.
90
144
  org: The organization for deployment. Defaults to None.
@@ -1,4 +1,5 @@
1
1
  import re
2
+ import traceback
2
3
  from typing import List, Optional
3
4
 
4
5
  import backoff
@@ -6,6 +7,7 @@ import backoff
6
7
  from lightning_sdk.lightning_cloud.openapi.models import (
7
8
  CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs,
8
9
  V1Deployment,
10
+ V1DeploymentTemplate,
9
11
  V1ParameterizationSpec,
10
12
  )
11
13
  from lightning_sdk.lightning_cloud.openapi.models.v1_deployment_template_gallery_response import (
@@ -18,6 +20,15 @@ class AIHubApi:
18
20
  def __init__(self) -> None:
19
21
  self._client = LightningClient(max_tries=3)
20
22
 
23
+ def api_info(self, api_id: str) -> "V1DeploymentTemplate":
24
+ try:
25
+ return self._client.deployment_templates_service_get_deployment_template(api_id)
26
+ except Exception as e:
27
+ stack_trace = traceback.format_exc()
28
+ if "record not found" in stack_trace:
29
+ raise ValueError(f"api_id={api_id} not found.") from None
30
+ raise e
31
+
21
32
  @backoff.on_predicate(backoff.expo, lambda x: not x, max_tries=5)
22
33
  def list_apis(self, search_query: str) -> List[V1DeploymentTemplateGalleryResponse]:
23
34
  kwargs = {"show_globally_visible": True}
@@ -10,6 +10,17 @@ class _AIHub(_StudiosMenu):
10
10
  def __init__(self) -> None:
11
11
  self._hub = AIHub()
12
12
 
13
+ def api_info(self, api_id: str) -> dict:
14
+ """Get full API template info such as input details.
15
+
16
+ Example:
17
+ lightning aihub api_info [API_ID]
18
+
19
+ Args:
20
+ api_id: The ID of the API for which information is requested.
21
+ """
22
+ return self._hub.api_info(api_id)
23
+
13
24
  def list_apis(self, search: Optional[str] = None) -> List[dict]:
14
25
  """List API templates available in the AI Hub.
15
26
 
@@ -13,19 +13,19 @@ from lightning_sdk.utils.resolve import _get_authed_user, skip_studio_init
13
13
  class _Downloads(_StudiosMenu):
14
14
  """Download files and folders from Lightning AI."""
15
15
 
16
- def model(self, name: str, path: Optional[str] = None) -> None:
16
+ def model(self, name: str, download_dir: str = ".") -> None:
17
17
  """Download a Model.
18
18
 
19
19
  Args:
20
20
  name: The name of the Model you want to download.
21
21
  This should have the format <ORGANIZATION-NAME>/<TEAMSPACE-NAME>/<MODEL-NAME>.
22
- path: The path to the directory where the Model should be downloaded.
22
+ download_dir: The directory where the Model should be downloaded.
23
23
  """
24
24
  org_name, teamspace_name, model_name = _parse_model_name(name)
25
25
  teamspace = _get_teamspace(name=teamspace_name, organization=org_name)
26
26
  teamspace.download_model(
27
27
  name=model_name,
28
- download_dir=path or ".",
28
+ download_dir=download_dir,
29
29
  progress_bar=True,
30
30
  )
31
31
 
@@ -8,7 +8,7 @@ from dataclasses import dataclass
8
8
  from typing import Optional
9
9
  from urllib.parse import urlencode
10
10
 
11
- import click
11
+ import webbrowser
12
12
 
13
13
  import requests
14
14
  import uvicorn
@@ -165,7 +165,10 @@ class AuthServer:
165
165
  )
166
166
 
167
167
  logger.info(f"login started for lightning.ai, opening {url}")
168
- click.launch(url)
168
+ ok = webbrowser.open(url)
169
+ if not ok:
170
+ # can't open a browser, authentication failed
171
+ raise RuntimeError("Failed to authenticate to Lightning. When running without access to a browser, `LIGHTNING_USER_ID` and `LIGHTNING_API_KEY` should be exported.")
169
172
 
170
173
  @app.get("/login-complete")
171
174
  async def save_token(request: Request,
@@ -5610,6 +5610,7 @@ class CloudSpaceServiceApi(object):
5610
5610
  :param str cloud_space_id: (required)
5611
5611
  :param bool draft:
5612
5612
  :param str limit:
5613
+ :param bool include_publications:
5613
5614
  :return: V1ListCloudSpaceVersionsResponse
5614
5615
  If the method is called asynchronously,
5615
5616
  returns the request thread.
@@ -5634,12 +5635,13 @@ class CloudSpaceServiceApi(object):
5634
5635
  :param str cloud_space_id: (required)
5635
5636
  :param bool draft:
5636
5637
  :param str limit:
5638
+ :param bool include_publications:
5637
5639
  :return: V1ListCloudSpaceVersionsResponse
5638
5640
  If the method is called asynchronously,
5639
5641
  returns the request thread.
5640
5642
  """
5641
5643
 
5642
- all_params = ['project_id', 'cloud_space_id', 'draft', 'limit'] # noqa: E501
5644
+ all_params = ['project_id', 'cloud_space_id', 'draft', 'limit', 'include_publications'] # noqa: E501
5643
5645
  all_params.append('async_req')
5644
5646
  all_params.append('_return_http_data_only')
5645
5647
  all_params.append('_preload_content')
@@ -5676,6 +5678,8 @@ class CloudSpaceServiceApi(object):
5676
5678
  query_params.append(('draft', params['draft'])) # noqa: E501
5677
5679
  if 'limit' in params:
5678
5680
  query_params.append(('limit', params['limit'])) # noqa: E501
5681
+ if 'include_publications' in params:
5682
+ query_params.append(('includePublications', params['include_publications'])) # noqa: E501
5679
5683
 
5680
5684
  header_params = {}
5681
5685
 
@@ -42,6 +42,7 @@ class CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs(o
42
42
  """
43
43
  swagger_types = {
44
44
  'autoscaling': 'V1AutoscalingSpec',
45
+ 'cloudspace_id': 'str',
45
46
  'cluster_id': 'str',
46
47
  'endpoint': 'V1Endpoint',
47
48
  'name': 'str',
@@ -53,6 +54,7 @@ class CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs(o
53
54
 
54
55
  attribute_map = {
55
56
  'autoscaling': 'autoscaling',
57
+ 'cloudspace_id': 'cloudspaceId',
56
58
  'cluster_id': 'clusterId',
57
59
  'endpoint': 'endpoint',
58
60
  'name': 'name',
@@ -62,9 +64,10 @@ class CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs(o
62
64
  'strategy': 'strategy'
63
65
  }
64
66
 
65
- def __init__(self, autoscaling: 'V1AutoscalingSpec' =None, cluster_id: 'str' =None, endpoint: 'V1Endpoint' =None, name: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, replicas: 'int' =None, spec: 'V1JobSpec' =None, strategy: 'V1DeploymentStrategy' =None): # noqa: E501
67
+ def __init__(self, autoscaling: 'V1AutoscalingSpec' =None, cloudspace_id: 'str' =None, cluster_id: 'str' =None, endpoint: 'V1Endpoint' =None, name: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, replicas: 'int' =None, spec: 'V1JobSpec' =None, strategy: 'V1DeploymentStrategy' =None): # noqa: E501
66
68
  """CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs - a model defined in Swagger""" # noqa: E501
67
69
  self._autoscaling = None
70
+ self._cloudspace_id = None
68
71
  self._cluster_id = None
69
72
  self._endpoint = None
70
73
  self._name = None
@@ -75,6 +78,8 @@ class CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs(o
75
78
  self.discriminator = None
76
79
  if autoscaling is not None:
77
80
  self.autoscaling = autoscaling
81
+ if cloudspace_id is not None:
82
+ self.cloudspace_id = cloudspace_id
78
83
  if cluster_id is not None:
79
84
  self.cluster_id = cluster_id
80
85
  if endpoint is not None:
@@ -111,6 +116,27 @@ class CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs(o
111
116
 
112
117
  self._autoscaling = autoscaling
113
118
 
119
+ @property
120
+ def cloudspace_id(self) -> 'str':
121
+ """Gets the cloudspace_id of this CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs. # noqa: E501
122
+
123
+
124
+ :return: The cloudspace_id of this CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs. # noqa: E501
125
+ :rtype: str
126
+ """
127
+ return self._cloudspace_id
128
+
129
+ @cloudspace_id.setter
130
+ def cloudspace_id(self, cloudspace_id: 'str'):
131
+ """Sets the cloudspace_id of this CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs.
132
+
133
+
134
+ :param cloudspace_id: The cloudspace_id of this CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs. # noqa: E501
135
+ :type: str
136
+ """
137
+
138
+ self._cloudspace_id = cloudspace_id
139
+
114
140
  @property
115
141
  def cluster_id(self) -> 'str':
116
142
  """Gets the cluster_id of this CreateDeploymentRequestDefinesASpecForTheJobThatAllowsForAutoscalingJobs. # noqa: E501
@@ -42,6 +42,7 @@ class DeploymentsIdBody(object):
42
42
  """
43
43
  swagger_types = {
44
44
  'autoscaling': 'V1AutoscalingSpec',
45
+ 'cloudspace_id': 'str',
45
46
  'created_at': 'datetime',
46
47
  'desired_state': 'V1DeploymentState',
47
48
  'endpoint': 'V1Endpoint',
@@ -59,6 +60,7 @@ class DeploymentsIdBody(object):
59
60
 
60
61
  attribute_map = {
61
62
  'autoscaling': 'autoscaling',
63
+ 'cloudspace_id': 'cloudspaceId',
62
64
  'created_at': 'createdAt',
63
65
  'desired_state': 'desiredState',
64
66
  'endpoint': 'endpoint',
@@ -74,9 +76,10 @@ class DeploymentsIdBody(object):
74
76
  'user_id': 'userId'
75
77
  }
76
78
 
77
- def __init__(self, autoscaling: 'V1AutoscalingSpec' =None, created_at: 'datetime' =None, desired_state: 'V1DeploymentState' =None, endpoint: 'V1Endpoint' =None, is_published: 'bool' =None, name: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, release_id: 'str' =None, replicas: 'int' =None, spec: 'V1JobSpec' =None, status: 'V1DeploymentStatus' =None, strategy: 'V1DeploymentStrategy' =None, updated_at: 'datetime' =None, user_id: 'str' =None): # noqa: E501
79
+ def __init__(self, autoscaling: 'V1AutoscalingSpec' =None, cloudspace_id: 'str' =None, created_at: 'datetime' =None, desired_state: 'V1DeploymentState' =None, endpoint: 'V1Endpoint' =None, is_published: 'bool' =None, name: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, release_id: 'str' =None, replicas: 'int' =None, spec: 'V1JobSpec' =None, status: 'V1DeploymentStatus' =None, strategy: 'V1DeploymentStrategy' =None, updated_at: 'datetime' =None, user_id: 'str' =None): # noqa: E501
78
80
  """DeploymentsIdBody - a model defined in Swagger""" # noqa: E501
79
81
  self._autoscaling = None
82
+ self._cloudspace_id = None
80
83
  self._created_at = None
81
84
  self._desired_state = None
82
85
  self._endpoint = None
@@ -93,6 +96,8 @@ class DeploymentsIdBody(object):
93
96
  self.discriminator = None
94
97
  if autoscaling is not None:
95
98
  self.autoscaling = autoscaling
99
+ if cloudspace_id is not None:
100
+ self.cloudspace_id = cloudspace_id
96
101
  if created_at is not None:
97
102
  self.created_at = created_at
98
103
  if desired_state is not None:
@@ -141,6 +146,27 @@ class DeploymentsIdBody(object):
141
146
 
142
147
  self._autoscaling = autoscaling
143
148
 
149
+ @property
150
+ def cloudspace_id(self) -> 'str':
151
+ """Gets the cloudspace_id of this DeploymentsIdBody. # noqa: E501
152
+
153
+
154
+ :return: The cloudspace_id of this DeploymentsIdBody. # noqa: E501
155
+ :rtype: str
156
+ """
157
+ return self._cloudspace_id
158
+
159
+ @cloudspace_id.setter
160
+ def cloudspace_id(self, cloudspace_id: 'str'):
161
+ """Sets the cloudspace_id of this DeploymentsIdBody.
162
+
163
+
164
+ :param cloudspace_id: The cloudspace_id of this DeploymentsIdBody. # noqa: E501
165
+ :type: str
166
+ """
167
+
168
+ self._cloudspace_id = cloudspace_id
169
+
144
170
  @property
145
171
  def created_at(self) -> 'datetime':
146
172
  """Gets the created_at of this DeploymentsIdBody. # noqa: E501
@@ -46,6 +46,7 @@ class SnowflakeExportBody(object):
46
46
  'compress': 'bool',
47
47
  'connection_id': 'str',
48
48
  'format': 'str',
49
+ 'include_header': 'bool',
49
50
  'password': 'str',
50
51
  'query': 'str',
51
52
  'query_name': 'str',
@@ -58,19 +59,21 @@ class SnowflakeExportBody(object):
58
59
  'compress': 'compress',
59
60
  'connection_id': 'connectionId',
60
61
  'format': 'format',
62
+ 'include_header': 'includeHeader',
61
63
  'password': 'password',
62
64
  'query': 'query',
63
65
  'query_name': 'queryName',
64
66
  'username': 'username'
65
67
  }
66
68
 
67
- def __init__(self, account: 'str' =None, cluster_id: 'str' =None, compress: 'bool' =None, connection_id: 'str' =None, format: 'str' =None, password: 'str' =None, query: 'str' =None, query_name: 'str' =None, username: 'str' =None): # noqa: E501
69
+ def __init__(self, account: 'str' =None, cluster_id: 'str' =None, compress: 'bool' =None, connection_id: 'str' =None, format: 'str' =None, include_header: 'bool' =None, password: 'str' =None, query: 'str' =None, query_name: 'str' =None, username: 'str' =None): # noqa: E501
68
70
  """SnowflakeExportBody - a model defined in Swagger""" # noqa: E501
69
71
  self._account = None
70
72
  self._cluster_id = None
71
73
  self._compress = None
72
74
  self._connection_id = None
73
75
  self._format = None
76
+ self._include_header = None
74
77
  self._password = None
75
78
  self._query = None
76
79
  self._query_name = None
@@ -86,6 +89,8 @@ class SnowflakeExportBody(object):
86
89
  self.connection_id = connection_id
87
90
  if format is not None:
88
91
  self.format = format
92
+ if include_header is not None:
93
+ self.include_header = include_header
89
94
  if password is not None:
90
95
  self.password = password
91
96
  if query is not None:
@@ -200,6 +205,27 @@ class SnowflakeExportBody(object):
200
205
 
201
206
  self._format = format
202
207
 
208
+ @property
209
+ def include_header(self) -> 'bool':
210
+ """Gets the include_header of this SnowflakeExportBody. # noqa: E501
211
+
212
+
213
+ :return: The include_header of this SnowflakeExportBody. # noqa: E501
214
+ :rtype: bool
215
+ """
216
+ return self._include_header
217
+
218
+ @include_header.setter
219
+ def include_header(self, include_header: 'bool'):
220
+ """Sets the include_header of this SnowflakeExportBody.
221
+
222
+
223
+ :param include_header: The include_header of this SnowflakeExportBody. # noqa: E501
224
+ :type: bool
225
+ """
226
+
227
+ self._include_header = include_header
228
+
203
229
  @property
204
230
  def password(self) -> 'str':
205
231
  """Gets the password of this SnowflakeExportBody. # noqa: E501
@@ -48,6 +48,7 @@ class V1CapacityBlockOffering(object):
48
48
  'fee': 'float',
49
49
  'instance_count': 'int',
50
50
  'instance_type': 'str',
51
+ 'provider_fee': 'float',
51
52
  'region': 'str',
52
53
  'start_date': 'datetime',
53
54
  'upfront_fee': 'float'
@@ -61,12 +62,13 @@ class V1CapacityBlockOffering(object):
61
62
  'fee': 'fee',
62
63
  'instance_count': 'instanceCount',
63
64
  'instance_type': 'instanceType',
65
+ 'provider_fee': 'providerFee',
64
66
  'region': 'region',
65
67
  'start_date': 'startDate',
66
68
  'upfront_fee': 'upfrontFee'
67
69
  }
68
70
 
69
- def __init__(self, capacity_block_duration_hours: 'int' =None, capacity_block_offering_id: 'str' =None, currency_code: 'str' =None, end_date: 'datetime' =None, fee: 'float' =None, instance_count: 'int' =None, instance_type: 'str' =None, region: 'str' =None, start_date: 'datetime' =None, upfront_fee: 'float' =None): # noqa: E501
71
+ def __init__(self, capacity_block_duration_hours: 'int' =None, capacity_block_offering_id: 'str' =None, currency_code: 'str' =None, end_date: 'datetime' =None, fee: 'float' =None, instance_count: 'int' =None, instance_type: 'str' =None, provider_fee: 'float' =None, region: 'str' =None, start_date: 'datetime' =None, upfront_fee: 'float' =None): # noqa: E501
70
72
  """V1CapacityBlockOffering - a model defined in Swagger""" # noqa: E501
71
73
  self._capacity_block_duration_hours = None
72
74
  self._capacity_block_offering_id = None
@@ -75,6 +77,7 @@ class V1CapacityBlockOffering(object):
75
77
  self._fee = None
76
78
  self._instance_count = None
77
79
  self._instance_type = None
80
+ self._provider_fee = None
78
81
  self._region = None
79
82
  self._start_date = None
80
83
  self._upfront_fee = None
@@ -93,6 +96,8 @@ class V1CapacityBlockOffering(object):
93
96
  self.instance_count = instance_count
94
97
  if instance_type is not None:
95
98
  self.instance_type = instance_type
99
+ if provider_fee is not None:
100
+ self.provider_fee = provider_fee
96
101
  if region is not None:
97
102
  self.region = region
98
103
  if start_date is not None:
@@ -247,6 +252,27 @@ class V1CapacityBlockOffering(object):
247
252
 
248
253
  self._instance_type = instance_type
249
254
 
255
+ @property
256
+ def provider_fee(self) -> 'float':
257
+ """Gets the provider_fee of this V1CapacityBlockOffering. # noqa: E501
258
+
259
+
260
+ :return: The provider_fee of this V1CapacityBlockOffering. # noqa: E501
261
+ :rtype: float
262
+ """
263
+ return self._provider_fee
264
+
265
+ @provider_fee.setter
266
+ def provider_fee(self, provider_fee: 'float'):
267
+ """Sets the provider_fee of this V1CapacityBlockOffering.
268
+
269
+
270
+ :param provider_fee: The provider_fee of this V1CapacityBlockOffering. # noqa: E501
271
+ :type: float
272
+ """
273
+
274
+ self._provider_fee = provider_fee
275
+
250
276
  @property
251
277
  def region(self) -> 'str':
252
278
  """Gets the region of this V1CapacityBlockOffering. # noqa: E501
@@ -49,6 +49,7 @@ class V1CloudSpaceVersion(object):
49
49
  'created_at': 'datetime',
50
50
  'description': 'str',
51
51
  'draft': 'bool',
52
+ 'globally_visible': 'bool',
52
53
  'hide_files': 'bool',
53
54
  'id': 'str',
54
55
  'license': 'str',
@@ -58,6 +59,7 @@ class V1CloudSpaceVersion(object):
58
59
  'paper_org_avatar_url': 'str',
59
60
  'paper_url': 'str',
60
61
  'project_id': 'str',
62
+ 'unpublished': 'bool',
61
63
  'updated_at': 'datetime',
62
64
  'user_id': 'str',
63
65
  'version_name': 'str'
@@ -72,6 +74,7 @@ class V1CloudSpaceVersion(object):
72
74
  'created_at': 'createdAt',
73
75
  'description': 'description',
74
76
  'draft': 'draft',
77
+ 'globally_visible': 'globallyVisible',
75
78
  'hide_files': 'hideFiles',
76
79
  'id': 'id',
77
80
  'license': 'license',
@@ -81,12 +84,13 @@ class V1CloudSpaceVersion(object):
81
84
  'paper_org_avatar_url': 'paperOrgAvatarUrl',
82
85
  'paper_url': 'paperUrl',
83
86
  'project_id': 'projectId',
87
+ 'unpublished': 'unpublished',
84
88
  'updated_at': 'updatedAt',
85
89
  'user_id': 'userId',
86
90
  'version_name': 'versionName'
87
91
  }
88
92
 
89
- def __init__(self, about_page_content: 'str' =None, about_page_id: 'str' =None, cloud_space_id: 'str' =None, code_url: 'str' =None, code_version: 'V1CloudSpaceCodeVersion' =None, created_at: 'datetime' =None, description: 'str' =None, draft: 'bool' =None, hide_files: 'bool' =None, id: 'str' =None, license: '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, updated_at: 'datetime' =None, user_id: 'str' =None, version_name: 'str' =None): # noqa: E501
93
+ def __init__(self, about_page_content: 'str' =None, about_page_id: 'str' =None, cloud_space_id: 'str' =None, code_url: 'str' =None, code_version: 'V1CloudSpaceCodeVersion' =None, created_at: 'datetime' =None, description: 'str' =None, draft: 'bool' =None, globally_visible: 'bool' =None, hide_files: 'bool' =None, id: 'str' =None, license: '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, unpublished: 'bool' =None, updated_at: 'datetime' =None, user_id: 'str' =None, version_name: 'str' =None): # noqa: E501
90
94
  """V1CloudSpaceVersion - a model defined in Swagger""" # noqa: E501
91
95
  self._about_page_content = None
92
96
  self._about_page_id = None
@@ -96,6 +100,7 @@ class V1CloudSpaceVersion(object):
96
100
  self._created_at = None
97
101
  self._description = None
98
102
  self._draft = None
103
+ self._globally_visible = None
99
104
  self._hide_files = None
100
105
  self._id = None
101
106
  self._license = None
@@ -105,6 +110,7 @@ class V1CloudSpaceVersion(object):
105
110
  self._paper_org_avatar_url = None
106
111
  self._paper_url = None
107
112
  self._project_id = None
113
+ self._unpublished = None
108
114
  self._updated_at = None
109
115
  self._user_id = None
110
116
  self._version_name = None
@@ -125,6 +131,8 @@ class V1CloudSpaceVersion(object):
125
131
  self.description = description
126
132
  if draft is not None:
127
133
  self.draft = draft
134
+ if globally_visible is not None:
135
+ self.globally_visible = globally_visible
128
136
  if hide_files is not None:
129
137
  self.hide_files = hide_files
130
138
  if id is not None:
@@ -143,6 +151,8 @@ class V1CloudSpaceVersion(object):
143
151
  self.paper_url = paper_url
144
152
  if project_id is not None:
145
153
  self.project_id = project_id
154
+ if unpublished is not None:
155
+ self.unpublished = unpublished
146
156
  if updated_at is not None:
147
157
  self.updated_at = updated_at
148
158
  if user_id is not None:
@@ -318,6 +328,27 @@ class V1CloudSpaceVersion(object):
318
328
 
319
329
  self._draft = draft
320
330
 
331
+ @property
332
+ def globally_visible(self) -> 'bool':
333
+ """Gets the globally_visible of this V1CloudSpaceVersion. # noqa: E501
334
+
335
+
336
+ :return: The globally_visible of this V1CloudSpaceVersion. # noqa: E501
337
+ :rtype: bool
338
+ """
339
+ return self._globally_visible
340
+
341
+ @globally_visible.setter
342
+ def globally_visible(self, globally_visible: 'bool'):
343
+ """Sets the globally_visible of this V1CloudSpaceVersion.
344
+
345
+
346
+ :param globally_visible: The globally_visible of this V1CloudSpaceVersion. # noqa: E501
347
+ :type: bool
348
+ """
349
+
350
+ self._globally_visible = globally_visible
351
+
321
352
  @property
322
353
  def hide_files(self) -> 'bool':
323
354
  """Gets the hide_files of this V1CloudSpaceVersion. # noqa: E501
@@ -507,6 +538,27 @@ class V1CloudSpaceVersion(object):
507
538
 
508
539
  self._project_id = project_id
509
540
 
541
+ @property
542
+ def unpublished(self) -> 'bool':
543
+ """Gets the unpublished of this V1CloudSpaceVersion. # noqa: E501
544
+
545
+
546
+ :return: The unpublished of this V1CloudSpaceVersion. # noqa: E501
547
+ :rtype: bool
548
+ """
549
+ return self._unpublished
550
+
551
+ @unpublished.setter
552
+ def unpublished(self, unpublished: 'bool'):
553
+ """Sets the unpublished of this V1CloudSpaceVersion.
554
+
555
+
556
+ :param unpublished: The unpublished of this V1CloudSpaceVersion. # noqa: E501
557
+ :type: bool
558
+ """
559
+
560
+ self._unpublished = unpublished
561
+
510
562
  @property
511
563
  def updated_at(self) -> 'datetime':
512
564
  """Gets the updated_at of this V1CloudSpaceVersion. # noqa: E501
@@ -56,6 +56,7 @@ class V1ClusterAccelerator(object):
56
56
  'device_card': 'str',
57
57
  'device_info': 'str',
58
58
  'display_name': 'str',
59
+ 'dws_only': 'bool',
59
60
  'enabled': 'bool',
60
61
  'family': 'str',
61
62
  'instance_id': 'str',
@@ -95,6 +96,7 @@ class V1ClusterAccelerator(object):
95
96
  'device_card': 'deviceCard',
96
97
  'device_info': 'deviceInfo',
97
98
  'display_name': 'displayName',
99
+ 'dws_only': 'dwsOnly',
98
100
  'enabled': 'enabled',
99
101
  'family': 'family',
100
102
  'instance_id': 'instanceId',
@@ -118,7 +120,7 @@ class V1ClusterAccelerator(object):
118
120
  'spot_price': 'spotPrice'
119
121
  }
120
122
 
121
- def __init__(self, accelerator_type: 'str' =None, allowed_resources: 'list[str]' =None, available_in_seconds: 'str' =None, available_in_seconds_spot: 'str' =None, available_zones: 'list[str]' =None, byoc_only: 'bool' =None, capacity_block_only: 'bool' =None, capacity_block_price: 'float' =None, capacity_blocks_available: 'list[V1ClusterCapacityReservation]' =None, cluster_id: 'str' =None, cost: 'float' =None, detailed_quotas_info: 'list[V1AcceleratorQuotaInfo]' =None, device_card: 'str' =None, device_info: 'str' =None, display_name: 'str' =None, enabled: 'bool' =None, family: 'str' =None, instance_id: 'str' =None, is_custom: 'bool' =None, is_tier_restricted: 'bool' =None, local_disk_size: 'str' =None, local_disk_supported: 'bool' =None, max_available_quota: 'str' =None, non_spot: 'bool' =None, quota_checked_at: 'datetime' =None, quota_code: 'str' =None, quota_name: 'str' =None, quota_page_url: 'str' =None, quota_service_code: 'str' =None, quota_utilization: 'str' =None, quota_value: 'str' =None, reservable: 'bool' =None, reservation_available_zones: 'list[str]' =None, resources: 'V1Resources' =None, slug: 'str' =None, spot_price: 'float' =None): # noqa: E501
123
+ def __init__(self, accelerator_type: 'str' =None, allowed_resources: 'list[str]' =None, available_in_seconds: 'str' =None, available_in_seconds_spot: 'str' =None, available_zones: 'list[str]' =None, byoc_only: 'bool' =None, capacity_block_only: 'bool' =None, capacity_block_price: 'float' =None, capacity_blocks_available: 'list[V1ClusterCapacityReservation]' =None, cluster_id: 'str' =None, cost: 'float' =None, detailed_quotas_info: 'list[V1AcceleratorQuotaInfo]' =None, device_card: 'str' =None, device_info: 'str' =None, display_name: 'str' =None, dws_only: 'bool' =None, enabled: 'bool' =None, family: 'str' =None, instance_id: 'str' =None, is_custom: 'bool' =None, is_tier_restricted: 'bool' =None, local_disk_size: 'str' =None, local_disk_supported: 'bool' =None, max_available_quota: 'str' =None, non_spot: 'bool' =None, quota_checked_at: 'datetime' =None, quota_code: 'str' =None, quota_name: 'str' =None, quota_page_url: 'str' =None, quota_service_code: 'str' =None, quota_utilization: 'str' =None, quota_value: 'str' =None, reservable: 'bool' =None, reservation_available_zones: 'list[str]' =None, resources: 'V1Resources' =None, slug: 'str' =None, spot_price: 'float' =None): # noqa: E501
122
124
  """V1ClusterAccelerator - a model defined in Swagger""" # noqa: E501
123
125
  self._accelerator_type = None
124
126
  self._allowed_resources = None
@@ -135,6 +137,7 @@ class V1ClusterAccelerator(object):
135
137
  self._device_card = None
136
138
  self._device_info = None
137
139
  self._display_name = None
140
+ self._dws_only = None
138
141
  self._enabled = None
139
142
  self._family = None
140
143
  self._instance_id = None
@@ -187,6 +190,8 @@ class V1ClusterAccelerator(object):
187
190
  self.device_info = device_info
188
191
  if display_name is not None:
189
192
  self.display_name = display_name
193
+ if dws_only is not None:
194
+ self.dws_only = dws_only
190
195
  if enabled is not None:
191
196
  self.enabled = enabled
192
197
  if family is not None:
@@ -545,6 +550,27 @@ class V1ClusterAccelerator(object):
545
550
 
546
551
  self._display_name = display_name
547
552
 
553
+ @property
554
+ def dws_only(self) -> 'bool':
555
+ """Gets the dws_only of this V1ClusterAccelerator. # noqa: E501
556
+
557
+
558
+ :return: The dws_only of this V1ClusterAccelerator. # noqa: E501
559
+ :rtype: bool
560
+ """
561
+ return self._dws_only
562
+
563
+ @dws_only.setter
564
+ def dws_only(self, dws_only: 'bool'):
565
+ """Sets the dws_only of this V1ClusterAccelerator.
566
+
567
+
568
+ :param dws_only: The dws_only of this V1ClusterAccelerator. # noqa: E501
569
+ :type: bool
570
+ """
571
+
572
+ self._dws_only = dws_only
573
+
548
574
  @property
549
575
  def enabled(self) -> 'bool':
550
576
  """Gets the enabled of this V1ClusterAccelerator. # noqa: E501
@@ -42,6 +42,7 @@ class V1Deployment(object):
42
42
  """
43
43
  swagger_types = {
44
44
  'autoscaling': 'V1AutoscalingSpec',
45
+ 'cloudspace_id': 'str',
45
46
  'created_at': 'datetime',
46
47
  'desired_state': 'V1DeploymentState',
47
48
  'endpoint': 'V1Endpoint',
@@ -61,6 +62,7 @@ class V1Deployment(object):
61
62
 
62
63
  attribute_map = {
63
64
  'autoscaling': 'autoscaling',
65
+ 'cloudspace_id': 'cloudspaceId',
64
66
  'created_at': 'createdAt',
65
67
  'desired_state': 'desiredState',
66
68
  'endpoint': 'endpoint',
@@ -78,9 +80,10 @@ class V1Deployment(object):
78
80
  'user_id': 'userId'
79
81
  }
80
82
 
81
- def __init__(self, autoscaling: 'V1AutoscalingSpec' =None, created_at: 'datetime' =None, desired_state: 'V1DeploymentState' =None, endpoint: 'V1Endpoint' =None, id: 'str' =None, is_published: 'bool' =None, name: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, project_id: 'str' =None, release_id: 'str' =None, replicas: 'int' =None, spec: 'V1JobSpec' =None, status: 'V1DeploymentStatus' =None, strategy: 'V1DeploymentStrategy' =None, updated_at: 'datetime' =None, user_id: 'str' =None): # noqa: E501
83
+ def __init__(self, autoscaling: 'V1AutoscalingSpec' =None, cloudspace_id: 'str' =None, created_at: 'datetime' =None, desired_state: 'V1DeploymentState' =None, endpoint: 'V1Endpoint' =None, id: 'str' =None, is_published: 'bool' =None, name: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, project_id: 'str' =None, release_id: 'str' =None, replicas: 'int' =None, spec: 'V1JobSpec' =None, status: 'V1DeploymentStatus' =None, strategy: 'V1DeploymentStrategy' =None, updated_at: 'datetime' =None, user_id: 'str' =None): # noqa: E501
82
84
  """V1Deployment - a model defined in Swagger""" # noqa: E501
83
85
  self._autoscaling = None
86
+ self._cloudspace_id = None
84
87
  self._created_at = None
85
88
  self._desired_state = None
86
89
  self._endpoint = None
@@ -99,6 +102,8 @@ class V1Deployment(object):
99
102
  self.discriminator = None
100
103
  if autoscaling is not None:
101
104
  self.autoscaling = autoscaling
105
+ if cloudspace_id is not None:
106
+ self.cloudspace_id = cloudspace_id
102
107
  if created_at is not None:
103
108
  self.created_at = created_at
104
109
  if desired_state is not None:
@@ -151,6 +156,27 @@ class V1Deployment(object):
151
156
 
152
157
  self._autoscaling = autoscaling
153
158
 
159
+ @property
160
+ def cloudspace_id(self) -> 'str':
161
+ """Gets the cloudspace_id of this V1Deployment. # noqa: E501
162
+
163
+
164
+ :return: The cloudspace_id of this V1Deployment. # noqa: E501
165
+ :rtype: str
166
+ """
167
+ return self._cloudspace_id
168
+
169
+ @cloudspace_id.setter
170
+ def cloudspace_id(self, cloudspace_id: 'str'):
171
+ """Sets the cloudspace_id of this V1Deployment.
172
+
173
+
174
+ :param cloudspace_id: The cloudspace_id of this V1Deployment. # noqa: E501
175
+ :type: str
176
+ """
177
+
178
+ self._cloudspace_id = cloudspace_id
179
+
154
180
  @property
155
181
  def created_at(self) -> 'datetime':
156
182
  """Gets the created_at of this V1Deployment. # noqa: E501
@@ -56,6 +56,7 @@ class V1GetUserResponse(object):
56
56
  'opted_in_marketing_emails': 'bool',
57
57
  'organization': 'str',
58
58
  'organizations': 'list[V1Organization]',
59
+ 'phone_number': 'str',
59
60
  'picture_url': 'str',
60
61
  'preferred_color_scheme': 'str',
61
62
  'preferred_ide': 'str',
@@ -90,6 +91,7 @@ class V1GetUserResponse(object):
90
91
  'opted_in_marketing_emails': 'optedInMarketingEmails',
91
92
  'organization': 'organization',
92
93
  'organizations': 'organizations',
94
+ 'phone_number': 'phoneNumber',
93
95
  'picture_url': 'pictureUrl',
94
96
  'preferred_color_scheme': 'preferredColorScheme',
95
97
  'preferred_ide': 'preferredIde',
@@ -108,7 +110,7 @@ class V1GetUserResponse(object):
108
110
  'website': 'website'
109
111
  }
110
112
 
111
- def __init__(self, agree_to_terms_and_conditions: 'bool' =None, api_key: 'str' =None, country: 'str' =None, email: 'str' =None, features: 'V1UserFeatures' =None, first_name: 'str' =None, general_audience_mode: 'bool' =None, id: 'str' =None, internal_docs_admin: 'bool' =None, is_internal: 'bool' =None, last_name: 'str' =None, non_developer_mode: 'bool' =None, opted_in_marketing_emails: 'bool' =None, organization: 'str' =None, organizations: 'list[V1Organization]' =None, picture_url: 'str' =None, preferred_color_scheme: 'str' =None, preferred_ide: 'str' =None, preferred_shell: 'str' =None, preferred_vscode_marketplace: 'str' =None, role: 'str' =None, saw_create_first_project_dialog: 'bool' =None, saw_forums_login_merge_dialog: 'bool' =None, saw_free_credits_notification: 'bool' =None, sb: 'bool' =None, status: 'Externalv1UserStatus' =None, storage_bytes: 'str' =None, user_metadata: 'str' =None, username: 'str' =None, waitlisted: 'bool' =None, website: 'str' =None): # noqa: E501
113
+ def __init__(self, agree_to_terms_and_conditions: 'bool' =None, api_key: 'str' =None, country: 'str' =None, email: 'str' =None, features: 'V1UserFeatures' =None, first_name: 'str' =None, general_audience_mode: 'bool' =None, id: 'str' =None, internal_docs_admin: 'bool' =None, is_internal: 'bool' =None, last_name: 'str' =None, non_developer_mode: 'bool' =None, opted_in_marketing_emails: 'bool' =None, organization: 'str' =None, organizations: 'list[V1Organization]' =None, phone_number: 'str' =None, picture_url: 'str' =None, preferred_color_scheme: 'str' =None, preferred_ide: 'str' =None, preferred_shell: 'str' =None, preferred_vscode_marketplace: 'str' =None, role: 'str' =None, saw_create_first_project_dialog: 'bool' =None, saw_forums_login_merge_dialog: 'bool' =None, saw_free_credits_notification: 'bool' =None, sb: 'bool' =None, status: 'Externalv1UserStatus' =None, storage_bytes: 'str' =None, user_metadata: 'str' =None, username: 'str' =None, waitlisted: 'bool' =None, website: 'str' =None): # noqa: E501
112
114
  """V1GetUserResponse - a model defined in Swagger""" # noqa: E501
113
115
  self._agree_to_terms_and_conditions = None
114
116
  self._api_key = None
@@ -125,6 +127,7 @@ class V1GetUserResponse(object):
125
127
  self._opted_in_marketing_emails = None
126
128
  self._organization = None
127
129
  self._organizations = None
130
+ self._phone_number = None
128
131
  self._picture_url = None
129
132
  self._preferred_color_scheme = None
130
133
  self._preferred_ide = None
@@ -172,6 +175,8 @@ class V1GetUserResponse(object):
172
175
  self.organization = organization
173
176
  if organizations is not None:
174
177
  self.organizations = organizations
178
+ if phone_number is not None:
179
+ self.phone_number = phone_number
175
180
  if picture_url is not None:
176
181
  self.picture_url = picture_url
177
182
  if preferred_color_scheme is not None:
@@ -520,6 +525,27 @@ class V1GetUserResponse(object):
520
525
 
521
526
  self._organizations = organizations
522
527
 
528
+ @property
529
+ def phone_number(self) -> 'str':
530
+ """Gets the phone_number of this V1GetUserResponse. # noqa: E501
531
+
532
+
533
+ :return: The phone_number of this V1GetUserResponse. # noqa: E501
534
+ :rtype: str
535
+ """
536
+ return self._phone_number
537
+
538
+ @phone_number.setter
539
+ def phone_number(self, phone_number: 'str'):
540
+ """Sets the phone_number of this V1GetUserResponse.
541
+
542
+
543
+ :param phone_number: The phone_number of this V1GetUserResponse. # noqa: E501
544
+ :type: str
545
+ """
546
+
547
+ self._phone_number = phone_number
548
+
523
549
  @property
524
550
  def picture_url(self) -> 'str':
525
551
  """Gets the picture_url of this V1GetUserResponse. # noqa: E501
@@ -44,6 +44,7 @@ class V1GoogleCloudDirectV1(object):
44
44
  'bucket_name': 'str',
45
45
  'credentials_secret_id': 'str',
46
46
  'credentials_service_account_email': 'str',
47
+ 'dws_enabled': 'bool',
47
48
  'primary_region': 'str',
48
49
  'project_id': 'str',
49
50
  'regions': 'list[str]',
@@ -55,6 +56,7 @@ class V1GoogleCloudDirectV1(object):
55
56
  'bucket_name': 'bucketName',
56
57
  'credentials_secret_id': 'credentialsSecretId',
57
58
  'credentials_service_account_email': 'credentialsServiceAccountEmail',
59
+ 'dws_enabled': 'dwsEnabled',
58
60
  'primary_region': 'primaryRegion',
59
61
  'project_id': 'projectId',
60
62
  'regions': 'regions',
@@ -62,11 +64,12 @@ class V1GoogleCloudDirectV1(object):
62
64
  'source_cidr_ips': 'sourceCidrIps'
63
65
  }
64
66
 
65
- def __init__(self, bucket_name: 'str' =None, credentials_secret_id: 'str' =None, credentials_service_account_email: 'str' =None, primary_region: 'str' =None, project_id: 'str' =None, regions: 'list[str]' =None, service_account_email: 'str' =None, source_cidr_ips: 'list[str]' =None): # noqa: E501
67
+ def __init__(self, bucket_name: 'str' =None, credentials_secret_id: 'str' =None, credentials_service_account_email: 'str' =None, dws_enabled: 'bool' =None, primary_region: 'str' =None, project_id: 'str' =None, regions: 'list[str]' =None, service_account_email: 'str' =None, source_cidr_ips: 'list[str]' =None): # noqa: E501
66
68
  """V1GoogleCloudDirectV1 - a model defined in Swagger""" # noqa: E501
67
69
  self._bucket_name = None
68
70
  self._credentials_secret_id = None
69
71
  self._credentials_service_account_email = None
72
+ self._dws_enabled = None
70
73
  self._primary_region = None
71
74
  self._project_id = None
72
75
  self._regions = None
@@ -79,6 +82,8 @@ class V1GoogleCloudDirectV1(object):
79
82
  self.credentials_secret_id = credentials_secret_id
80
83
  if credentials_service_account_email is not None:
81
84
  self.credentials_service_account_email = credentials_service_account_email
85
+ if dws_enabled is not None:
86
+ self.dws_enabled = dws_enabled
82
87
  if primary_region is not None:
83
88
  self.primary_region = primary_region
84
89
  if project_id is not None:
@@ -155,6 +160,27 @@ class V1GoogleCloudDirectV1(object):
155
160
 
156
161
  self._credentials_service_account_email = credentials_service_account_email
157
162
 
163
+ @property
164
+ def dws_enabled(self) -> 'bool':
165
+ """Gets the dws_enabled of this V1GoogleCloudDirectV1. # noqa: E501
166
+
167
+
168
+ :return: The dws_enabled of this V1GoogleCloudDirectV1. # noqa: E501
169
+ :rtype: bool
170
+ """
171
+ return self._dws_enabled
172
+
173
+ @dws_enabled.setter
174
+ def dws_enabled(self, dws_enabled: 'bool'):
175
+ """Sets the dws_enabled of this V1GoogleCloudDirectV1.
176
+
177
+
178
+ :param dws_enabled: The dws_enabled of this V1GoogleCloudDirectV1. # noqa: E501
179
+ :type: bool
180
+ """
181
+
182
+ self._dws_enabled = dws_enabled
183
+
158
184
  @property
159
185
  def primary_region(self) -> 'str':
160
186
  """Gets the primary_region of this V1GoogleCloudDirectV1. # noqa: E501
@@ -44,6 +44,7 @@ class V1SnowflakeDataConnection(object):
44
44
  'bucket_name': 'str',
45
45
  'compress': 'bool',
46
46
  'format': 'str',
47
+ 'include_header': 'bool',
47
48
  'query': 'str',
48
49
  'secret_account': 'str',
49
50
  'secret_password': 'str',
@@ -54,17 +55,19 @@ class V1SnowflakeDataConnection(object):
54
55
  'bucket_name': 'bucketName',
55
56
  'compress': 'compress',
56
57
  'format': 'format',
58
+ 'include_header': 'includeHeader',
57
59
  'query': 'query',
58
60
  'secret_account': 'secretAccount',
59
61
  'secret_password': 'secretPassword',
60
62
  'secret_username': 'secretUsername'
61
63
  }
62
64
 
63
- def __init__(self, bucket_name: 'str' =None, compress: 'bool' =None, format: 'str' =None, query: 'str' =None, secret_account: 'str' =None, secret_password: 'str' =None, secret_username: 'str' =None): # noqa: E501
65
+ def __init__(self, bucket_name: 'str' =None, compress: 'bool' =None, format: 'str' =None, include_header: 'bool' =None, query: 'str' =None, secret_account: 'str' =None, secret_password: 'str' =None, secret_username: 'str' =None): # noqa: E501
64
66
  """V1SnowflakeDataConnection - a model defined in Swagger""" # noqa: E501
65
67
  self._bucket_name = None
66
68
  self._compress = None
67
69
  self._format = None
70
+ self._include_header = None
68
71
  self._query = None
69
72
  self._secret_account = None
70
73
  self._secret_password = None
@@ -76,6 +79,8 @@ class V1SnowflakeDataConnection(object):
76
79
  self.compress = compress
77
80
  if format is not None:
78
81
  self.format = format
82
+ if include_header is not None:
83
+ self.include_header = include_header
79
84
  if query is not None:
80
85
  self.query = query
81
86
  if secret_account is not None:
@@ -148,6 +153,27 @@ class V1SnowflakeDataConnection(object):
148
153
 
149
154
  self._format = format
150
155
 
156
+ @property
157
+ def include_header(self) -> 'bool':
158
+ """Gets the include_header of this V1SnowflakeDataConnection. # noqa: E501
159
+
160
+
161
+ :return: The include_header of this V1SnowflakeDataConnection. # noqa: E501
162
+ :rtype: bool
163
+ """
164
+ return self._include_header
165
+
166
+ @include_header.setter
167
+ def include_header(self, include_header: 'bool'):
168
+ """Sets the include_header of this V1SnowflakeDataConnection.
169
+
170
+
171
+ :param include_header: The include_header of this V1SnowflakeDataConnection. # noqa: E501
172
+ :type: bool
173
+ """
174
+
175
+ self._include_header = include_header
176
+
151
177
  @property
152
178
  def query(self) -> 'str':
153
179
  """Gets the query of this V1SnowflakeDataConnection. # noqa: E501
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lightning_sdk
3
- Version: 0.1.34
3
+ Version: 0.1.35
4
4
  Summary: SDK to develop using Lightning AI Studios
5
5
  Author-email: Lightning-AI <justus@lightning.ai>
6
6
  License: MIT License
@@ -1,7 +1,7 @@
1
1
  docs/source/conf.py,sha256=r8yX20eC-4mHhMTd0SbQb5TlSWHhO6wnJ0VJ_FBFpag,13249
2
- lightning_sdk/__init__.py,sha256=-9FknEmfW5Gc3b-j-SsKaj-QELmPoGpXvD4aNFPqp0E,925
2
+ lightning_sdk/__init__.py,sha256=pHg4y-QNZLtwRTAaU_wY1WLB0GSyAp8iOFClabH419o,925
3
3
  lightning_sdk/agents.py,sha256=ly6Ma1j0ZgGPFyvPvMN28JWiB9dATIstFa5XM8pMi6I,1577
4
- lightning_sdk/ai_hub.py,sha256=iNlRFzTPTuzRdDIT7WhEw1Lp5Srn8g2SMKs-xE4QHDA,4231
4
+ lightning_sdk/ai_hub.py,sha256=aaK40OBdAtWDaHaB50G0s4Ogx18kLRN__B31732vl2o,6292
5
5
  lightning_sdk/constants.py,sha256=ztl1PTUBULnqTf3DyKUSJaV_O20hNtUYT6XvAYIrmIk,749
6
6
  lightning_sdk/helpers.py,sha256=RnQwUquc_YPotjh6YXOoJvZs8krX_QFhd7kGv4U_spQ,1844
7
7
  lightning_sdk/machine.py,sha256=VdFXStR6ilYBEYuxgGWzcAw2TtW-nEQVsh6hz-2aaEw,750
@@ -14,7 +14,7 @@ lightning_sdk/teamspace.py,sha256=T3nxbZG1HtKu40F8gtpapqn-GVqSL6nBv7d32vmB_DY,10
14
14
  lightning_sdk/user.py,sha256=vdn8pZqkAZO0-LoRsBdg0TckRKtd_H3QF4gpiZcl4iY,1130
15
15
  lightning_sdk/api/__init__.py,sha256=Qn2VVRvir_gO7w4yxGLkZY-R3T7kdiTPKgQ57BhIA9k,413
16
16
  lightning_sdk/api/agents_api.py,sha256=G47TbFo9kYqnBMqdw2RW-lfS1VAUBSXDmzs6fpIEMUs,4059
17
- lightning_sdk/api/ai_hub_api.py,sha256=8mDWQpXi0Sud3cRmjPvhlDRghYyJJpCDX8SvK-yY9ek,2565
17
+ lightning_sdk/api/ai_hub_api.py,sha256=W4gF1F_L8h4B-UCg0eJ0DDQCWpnKQjGNnXaY8n-lTsE,3002
18
18
  lightning_sdk/api/deployment_api.py,sha256=9HhOHz7ElmjgX88YkPUtETPgz_jMFkK1nTO18-jUniI,21505
19
19
  lightning_sdk/api/job_api.py,sha256=pdQ3R5x04fyC49UqggWCIuPDLCmLYrnq791Ij-3vMr0,8457
20
20
  lightning_sdk/api/org_api.py,sha256=Ze3z_ATVrukobujV5YdC42DKj45Vuwl7X52q_Vr-o3U,803
@@ -23,8 +23,8 @@ lightning_sdk/api/teamspace_api.py,sha256=o-GBR3KLo298kDxO0myx-qlcCzSZnbR2OhZ73t
23
23
  lightning_sdk/api/user_api.py,sha256=sL7RIjjtmZmvCZWx7BBZslhj1BeNh4Idn-RVcdmf7M0,2598
24
24
  lightning_sdk/api/utils.py,sha256=eHxq0dU_e9Pq5XjPlp7sNJ5_N3d44EtHKpbEiPPMkOQ,20562
25
25
  lightning_sdk/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- lightning_sdk/cli/ai_hub.py,sha256=AiwA-nhtP4arWqdezPRo6CNItTXOw756JmjEk2wTBXM,1306
27
- lightning_sdk/cli/download.py,sha256=b6dpUMLhro6p0y6CleCHxggQnZlZMxCq0bjuf8B6_eA,6191
26
+ lightning_sdk/cli/ai_hub.py,sha256=WMNQ5WPL_KmP3T-qvHZ2O7h1oG8A_N25J7KCNCfmOa8,1616
27
+ lightning_sdk/cli/download.py,sha256=f_pXtLyPXH4r6PVzg7-39O7dd479PTU5iLB0PgTKM7k,6185
28
28
  lightning_sdk/cli/entrypoint.py,sha256=ypNZ13FJlmlX-Osnp5eiZPmABt0xc8Rw2Yi9oDqrXGo,1332
29
29
  lightning_sdk/cli/exceptions.py,sha256=QUF3OMAMZwBikvlusimSHSBjb6ywvHpfAumJBEaodSw,169
30
30
  lightning_sdk/cli/legacy.py,sha256=ocTVNwlsLRS5aMjbMkwFPjT3uEYvS8C40CJ0PeRRv8g,4707
@@ -42,7 +42,7 @@ lightning_sdk/job/work.py,sha256=JNuFp6TaNvO-V-YoO4tDu8e8AFAkHZj3vzt_tqlD6KE,969
42
42
  lightning_sdk/lightning_cloud/__init__.py,sha256=o91SMAlwr4Ke5ESe8fHjqXcj31_h7rT-MlFoXA-n2EI,173
43
43
  lightning_sdk/lightning_cloud/__version__.py,sha256=lOfmWHtjmiuSG28TbKQqd2B3nwmSGOlKVFwhaj_cRJk,23
44
44
  lightning_sdk/lightning_cloud/env.py,sha256=XZXpF4sD9jlB8DY0herTy_8XiUJuDVjxy5APjRD2_aU,1379
45
- lightning_sdk/lightning_cloud/login.py,sha256=8SVZ-RGszjjbJt4cEoeMhFG7RqBZ4xIlT2Remv3l08o,7040
45
+ lightning_sdk/lightning_cloud/login.py,sha256=NSC53eJ24g59dySI9zRDl_-antxiflKDknYKxUNcwzQ,7307
46
46
  lightning_sdk/lightning_cloud/rest_client.py,sha256=oJG8xYf-QIIH4D21s6sq5uIVbc6SGwHtgB9eNGWIgVY,6622
47
47
  lightning_sdk/lightning_cloud/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
48
  lightning_sdk/lightning_cloud/cli/__main__.py,sha256=YqR_GdQTDcA9DEQ1w6mRlX1cd_MrlpdEwzsBV2cZzJc,599
@@ -56,7 +56,7 @@ lightning_sdk/lightning_cloud/openapi/api/analytics_service_api.py,sha256=0BccCX
56
56
  lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py,sha256=s9BG3P1bmSK5Q-uJh1iEX64VYNUO35S0QrzKxcZkiqs,95870
57
57
  lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py,sha256=NtdfsFZtQAltWyj1wYg3HNk0cxT2HWbNhAqQSLvMDgM,30948
58
58
  lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py,sha256=SDJ80TezTWKhE3LR67OI6dhHDHABc4BfG7FjcFX7Ba4,68129
59
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py,sha256=oc6unkOxhBBvBujaVDIAakZgNM1nj0FZ2PMzBa9fmeM,369766
59
+ lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py,sha256=hjCLl9jQC7kVI0TrqR0oEY-yZkK_tFr2Q5siMmh4v7s,370022
60
60
  lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py,sha256=m2JDI2cij2_3lqcKxcnx1UjZQaUAO_r7ZIS4CbM2kqk,145530
61
61
  lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py,sha256=bvoAUiLsdPvyYMEWWvcEDe9oarIfvLzxz_ZMoADDHOM,50181
62
62
  lightning_sdk/lightning_cloud/openapi/api/dataset_service_api.py,sha256=wCrcXOMuVs5rA4PHyrVJqpInO-Vy1hulddjCJUenPJc,23508
@@ -111,10 +111,10 @@ lightning_sdk/lightning_cloud/openapi/models/command_argument_command_argument_t
111
111
  lightning_sdk/lightning_cloud/openapi/models/conversations_id_body.py,sha256=blW66WBRE-qMCkzLCOrx4EqmM1vI42O3MvP9rIlx_tE,3651
112
112
  lightning_sdk/lightning_cloud/openapi/models/create.py,sha256=xrtxd9B0VkqfdszT5GXOmfD5PLmvPrbxTd2Ktjq55eE,14373
113
113
  lightning_sdk/lightning_cloud/openapi/models/create_checkout_session_request_wallet_type.py,sha256=6mUpEXvoZxyrnOvfT9PfF34E3OGvRMzMfLFndUe-jKU,3217
114
- lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py,sha256=tbgFc6advfcyZCmeTiGzPGdASHbOzV9jxUa3DPgaapA,11124
114
+ lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py,sha256=wF_p7KJBvtfsgtKolLYefd0Y2j8LRPLHJURS6l5kKDo,12144
115
115
  lightning_sdk/lightning_cloud/openapi/models/data_connection_mount_data_connection_mount_copy_status.py,sha256=ytC9VwBzQMvpOSZJ78uekfrMmwGRaTOclX5XC3a-dMs,3343
116
116
  lightning_sdk/lightning_cloud/openapi/models/datasets_id_body.py,sha256=OcNzTWEbLGF36eY-yImNCmTwY4ZMX2P8yPuHAvc6KSk,5533
117
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py,sha256=CzAP4ulw4Q7nBFyLU3xHckqDLDKY7TRAB5ZaM64mV8o,13675
117
+ lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py,sha256=LeQdxsea0gFt2ziPSvE8kwcAbu-4LWGzZ1sefPUs04c,14475
118
118
  lightning_sdk/lightning_cloud/openapi/models/deploymenttemplates_id_body.py,sha256=2TNCtt0YINExIsa6GYNNps5ton8QN-PPWSo6juG-oRo,14223
119
119
  lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py,sha256=-Nv94Q8XoAT3tfYVhcjutpihfoNS2b2STbTHJr1gomo,12309
120
120
  lightning_sdk/lightning_cloud/openapi/models/experiment_name_variant_name_body.py,sha256=f-pBOnWAd03BreivwAA0D1P1wEBGq2jaC1nK-GtGxVA,3910
@@ -200,7 +200,7 @@ lightning_sdk/lightning_cloud/openapi/models/service_artifact_artifact_kind.py,s
200
200
  lightning_sdk/lightning_cloud/openapi/models/service_health_service_status.py,sha256=AvLUZ5iHK9ZuqMbJ6O0N-sMSRfryKDU8djk4xaK9g5A,3196
201
201
  lightning_sdk/lightning_cloud/openapi/models/serviceexecution_id_body.py,sha256=_-jU6n4JExbtPpHQwqiLc3iXeSQ7alk-GKUJiVK2dqs,10757
202
202
  lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py,sha256=bhq4Txf2UALD-AabsJpoxgLWXkj8InzgtySKb2hCgOg,9334
203
- lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py,sha256=ZUyB7BpOnFYfmUHL48FYz0iTSZLqE4jnWVl9aFpXrfc,9446
203
+ lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py,sha256=AJPZ5MwsthL1IXljUbpBbaHVoVoba1umhrUibMJlmxg,10280
204
204
  lightning_sdk/lightning_cloud/openapi/models/snowflake_query_body.py,sha256=6IT60t9IvhG21gl5bptnWhd5pj63_zgb0D4LNr57Nf0,6540
205
205
  lightning_sdk/lightning_cloud/openapi/models/spec_lightningapp_instance_id_works_body.py,sha256=dEI8pgLEkjFn1qy85Wb8cssJLWY6q0ERVbWlU4RvoU4,5432
206
206
  lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py,sha256=3OL3VqMUCNhwIvI7Q51-xwpBs4C6pyZYVUPGsaPuiPU,6824
@@ -248,7 +248,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_billing_tier.py,sha256=yYc1ioTtL
248
248
  lightning_sdk/lightning_cloud/openapi/models/v1_build_spec.py,sha256=hqAjFwjZZeW-Jk3xWknetyoBA0J7xSrcUwl8rlkVUCA,6706
249
249
  lightning_sdk/lightning_cloud/openapi/models/v1_cancel_cloud_space_instance_switch_response.py,sha256=b7511arCBmJy8Lp7oWblcifG2r1xyV44q9nSW7yQzzM,3130
250
250
  lightning_sdk/lightning_cloud/openapi/models/v1_cancellation_metadata.py,sha256=JjtaI0vryHiLsmvMVbH4KZ6MHA8GzcWhQg0fkuNx-gM,4402
251
- lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py,sha256=QO9vjLcu5NMTPyXHGEyWmb3sDXV02LLgKPhfwm3iih4,11408
251
+ lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py,sha256=PUlCYKrhcW_5ornWCughL92z_GYx0r1bSbCj4usZfWo,12224
252
252
  lightning_sdk/lightning_cloud/openapi/models/v1_check_external_service_status_response.py,sha256=k1cRcRhrmqavxVtAX7w1ZCU4AtkngJJin65JjBhEHHk,4026
253
253
  lightning_sdk/lightning_cloud/openapi/models/v1_check_snowflake_connection_response.py,sha256=ZwjPdhw9O8bja24on7zgUGOltKKzp6hP3Ym0j_aJ_yU,3887
254
254
  lightning_sdk/lightning_cloud/openapi/models/v1_checkbox.py,sha256=YcD2bdGu_5_9X3pqoSskvOzaVx1_xn8Zkg46vGQV56g,5110
@@ -270,9 +270,9 @@ lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_publication_type.py,
270
270
  lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_seed_file.py,sha256=cKaZ-EgDOrh9SS-6RQwMxPBfrwjHlAW4BBOKdpjSREw,4354
271
271
  lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_session.py,sha256=rIn7s4wJs7m_lsuTkJfHsnYsAk9CyT_ccaMkUWW_Lnw,4909
272
272
  lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_state.py,sha256=yLpcNIGMVO5LGk10PenG4uGNxee34tecmSkP7dw_JfY,3239
273
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version.py,sha256=IEP20Wlmd3UcAqdtJEf0hY47z7cAbqXC7G6ndeZsabw,18433
273
+ lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version.py,sha256=ZQSAgV4qEeByenlyFqX_kZBy51_yVPVqNGhrCUvZ3_g,20082
274
274
  lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version_publication.py,sha256=n1oHRq_UjYSP_kY2lmMjtqhHUu0H-wHQ5XiDJUEvB6s,6386
275
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py,sha256=rbjyuy6IuDSujcxZ76fZhUkY32lIH3zDE2olLZLi_V4,33537
275
+ lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py,sha256=s3yLHyU3h0okcUqs2NwJt-7Kj8Bb2HYtzZ6IE02z6n4,34255
276
276
  lightning_sdk/lightning_cloud/openapi/models/v1_cluster_availability.py,sha256=WrS0UpcTqqCu79ny5yOBJ16RNs5B4AQSXbniWE7iez0,7103
277
277
  lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py,sha256=22jd_N2SYqN_ZZlBltNGdS6jp9zfkIC33qN_IQHY2yg,10949
278
278
  lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py,sha256=GyhAXDpVtfXfaUybBE0aRRvJ6d3DfD7VV3xH_fgQOlE,4859
@@ -386,7 +386,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_delete_studio_job_response.py,sh
386
386
  lightning_sdk/lightning_cloud/openapi/models/v1_delete_user_slurm_job_response.py,sha256=kmy5RJKy63bRzBcWdMk00-vT3m2lVs05cic7jfU1JyQ,3058
387
387
  lightning_sdk/lightning_cloud/openapi/models/v1_dependency_cache_state.py,sha256=VL2MY_XvHWAd8toG-myqZlhuoEwjAIX1cemNSXxqk-k,3210
388
388
  lightning_sdk/lightning_cloud/openapi/models/v1_dependency_file_info.py,sha256=Fyh7eRcxFJ8Y4LHA3uJe_D5F9RhOxT4ChllHph_ryfQ,4571
389
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py,sha256=gcZLLsjCX21_IanX_pmHC2TkDhFoH8feGKAd9sXhbwo,14646
389
+ lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py,sha256=qnxuWlrNFvtVrB7cQ2Yi_OV9sXqJCX8aK6VIyyptPJ0,15426
390
390
  lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event.py,sha256=XDpq8DM8sN2UKCIlBWGEk-vzjGQGNoc0KjyRcCzDqZ4,9994
391
391
  lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event_type.py,sha256=uuogrGRymVVSz-OcYoJ7eZyFj3POXY22EAQJkXpTVm4,3197
392
392
  lightning_sdk/lightning_cloud/openapi/models/v1_deployment_metrics.py,sha256=xHhh0-aPxmyyH3g1Ks2h2oFnEy-CtZjDWH68jjetPEQ,3611
@@ -475,10 +475,10 @@ lightning_sdk/lightning_cloud/openapi/models/v1_get_snowflake_query_response.py,
475
475
  lightning_sdk/lightning_cloud/openapi/models/v1_get_usage_details_response.py,sha256=FBuN_OgpDuk0uvF4hre_1RbfOkH8Nefv7FRwudif6mQ,3853
476
476
  lightning_sdk/lightning_cloud/openapi/models/v1_get_user_balance_response.py,sha256=c38qYUoYTtR5droDQ7oaesHXhFPR0S0lUE26xmO0YP4,6226
477
477
  lightning_sdk/lightning_cloud/openapi/models/v1_get_user_notification_preferences_response.py,sha256=9LzkmmAYYCcMHZX2a55wiwE87QitC_-MiKeyX3uJeDQ,4402
478
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py,sha256=_hYYNjkKYWXIawdh8nOzwUocl5xDxkXPqZTM48NBUsM,28800
478
+ lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py,sha256=3jq4PJGOLFzlf_VGdWocmiL48XSmSkzlyRVQKUWiOvE,29580
479
479
  lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py,sha256=igCbjaeZXEbiPAa9cUjwG4cPUivt-7MiiWYikELHwsw,9983
480
480
  lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py,sha256=0k1scTY1IAeKr3p0r7eV_xWRE7Nx54doTGygiQQPkbM,6879
481
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py,sha256=kZAFa1KG2H323-IgRNa0aYBjkOh0Cej4GXdn4m9mW4E,10906
481
+ lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py,sha256=f2pe3MlcdouyKH6lDbBO4AKUh-gHcxv90VqMEpN865o,11688
482
482
  lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1_status.py,sha256=Md6rMiUCMY4oDVE2IYaALD_I0o2PQIKF-9628IGmTyY,3791
483
483
  lightning_sdk/lightning_cloud/openapi/models/v1_gpu_system_metrics.py,sha256=io_MkTCTYi6qmYw8KqFZf2zHx8jgBsPKsEwqjr2BG0U,7722
484
484
  lightning_sdk/lightning_cloud/openapi/models/v1_health_check_exec.py,sha256=CGhU0XZD-Pbog5aH0rxGzCDwaIvBchRhQPlRTgz8udg,3671
@@ -717,7 +717,7 @@ lightning_sdk/lightning_cloud/openapi/models/v1_slurm_node.py,sha256=6sTWksnYtWb
717
717
  lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py,sha256=fCvSuH3PV0F1Bvy2ySQomwcML3tFKFYsvwP0oFk-2wk,3610
718
718
  lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_job_status.py,sha256=2hr16NFxKl3FVlfThHhG3nsRibUfcZmziS-St1c9Qng,7461
719
719
  lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py,sha256=Is3hBQyd2mW899qZj5jUJaktT58iwZxF5maG_b9PeOM,4368
720
- lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py,sha256=q1PvOXFXTkEqBdBO9aCkZzCjGorEyhwa5qmFjNNzDCE,8531
720
+ lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py,sha256=NnSOlOXsL7BqtDsTgpny9Jt2zkHIEZNCcTUBfkDNWh0,9389
721
721
  lightning_sdk/lightning_cloud/openapi/models/v1_source_type.py,sha256=vfr8Y771DVzERWAp2BaPDid4aH-P7Gx-ak0sWRb-pMk,3073
722
722
  lightning_sdk/lightning_cloud/openapi/models/v1_ssh_key_pair.py,sha256=efa6VNtM3UaSdm2yhpcax9Cxk1JToGSe4e7JLrC23Zg,5582
723
723
  lightning_sdk/lightning_cloud/openapi/models/v1_ssh_public_key.py,sha256=fRXbHIpFYcM5Bif1o0emSBNY6bsnGUbiiW97yaIOdW8,7876
@@ -810,9 +810,9 @@ lightning_sdk/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
810
810
  lightning_sdk/utils/dynamic.py,sha256=glUTO1JC9APtQ6Gr9SO02a3zr56-sPAXM5C3NrTpgyQ,1959
811
811
  lightning_sdk/utils/enum.py,sha256=h2JRzqoBcSlUdanFHmkj_j5DleBHAu1esQYUsdNI-hU,4106
812
812
  lightning_sdk/utils/resolve.py,sha256=gU3MSko9Y7rE4jcnVwstNBaW83OFnSgvM-N44Ibrc_A,5148
813
- lightning_sdk-0.1.34.dist-info/LICENSE,sha256=uFIuZwj5z-4TeF2UuacPZ1o17HkvKObT8fY50qN84sg,1064
814
- lightning_sdk-0.1.34.dist-info/METADATA,sha256=y8KZbcLuafKkE6InZWOws9-jJnrSdonywvPdy8qtuts,3941
815
- lightning_sdk-0.1.34.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
816
- lightning_sdk-0.1.34.dist-info/entry_points.txt,sha256=msB9PJWIJ784dX-OP8by51d4IbKYH3Fj1vCuA9oXjHY,68
817
- lightning_sdk-0.1.34.dist-info/top_level.txt,sha256=ps8doKILFXmN7F1mHncShmnQoTxKBRPIcchC8TpoBw4,19
818
- lightning_sdk-0.1.34.dist-info/RECORD,,
813
+ lightning_sdk-0.1.35.dist-info/LICENSE,sha256=uFIuZwj5z-4TeF2UuacPZ1o17HkvKObT8fY50qN84sg,1064
814
+ lightning_sdk-0.1.35.dist-info/METADATA,sha256=UzHOowX1I7-XsXw_ir--s-ELJJ7nV2OnEkauvEWGDbY,3941
815
+ lightning_sdk-0.1.35.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
816
+ lightning_sdk-0.1.35.dist-info/entry_points.txt,sha256=msB9PJWIJ784dX-OP8by51d4IbKYH3Fj1vCuA9oXjHY,68
817
+ lightning_sdk-0.1.35.dist-info/top_level.txt,sha256=ps8doKILFXmN7F1mHncShmnQoTxKBRPIcchC8TpoBw4,19
818
+ lightning_sdk-0.1.35.dist-info/RECORD,,