lightning-sdk 0.1.40__py3-none-any.whl → 0.1.42__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 (82) hide show
  1. lightning_sdk/__init__.py +1 -1
  2. lightning_sdk/ai_hub.py +8 -3
  3. lightning_sdk/api/ai_hub_api.py +3 -3
  4. lightning_sdk/api/deployment_api.py +6 -6
  5. lightning_sdk/api/job_api.py +32 -6
  6. lightning_sdk/api/mmt_api.py +60 -19
  7. lightning_sdk/api/studio_api.py +37 -19
  8. lightning_sdk/api/teamspace_api.py +34 -29
  9. lightning_sdk/api/utils.py +48 -35
  10. lightning_sdk/cli/ai_hub.py +3 -3
  11. lightning_sdk/cli/entrypoint.py +3 -1
  12. lightning_sdk/cli/mmt.py +11 -10
  13. lightning_sdk/cli/run.py +9 -8
  14. lightning_sdk/cli/serve.py +130 -0
  15. lightning_sdk/deployment/deployment.py +18 -12
  16. lightning_sdk/job/base.py +118 -24
  17. lightning_sdk/job/job.py +87 -9
  18. lightning_sdk/job/v1.py +75 -18
  19. lightning_sdk/job/v2.py +51 -15
  20. lightning_sdk/job/work.py +36 -7
  21. lightning_sdk/lightning_cloud/openapi/__init__.py +13 -0
  22. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +215 -5
  23. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +218 -0
  24. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +226 -0
  25. lightning_sdk/lightning_cloud/openapi/api/secret_service_api.py +5 -1
  26. lightning_sdk/lightning_cloud/openapi/api/snowflake_service_api.py +21 -1
  27. lightning_sdk/lightning_cloud/openapi/models/__init__.py +13 -0
  28. lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +27 -1
  29. lightning_sdk/lightning_cloud/openapi/models/deploymenttemplates_id_body.py +27 -1
  30. lightning_sdk/lightning_cloud/openapi/models/id_visibility_body.py +123 -0
  31. lightning_sdk/lightning_cloud/openapi/models/model_id_versions_body.py +29 -3
  32. lightning_sdk/lightning_cloud/openapi/models/project_id_multimachinejobs_body.py +27 -1
  33. lightning_sdk/lightning_cloud/openapi/models/project_id_snowflake_body.py +15 -67
  34. lightning_sdk/lightning_cloud/openapi/models/query_query_id_body.py +17 -69
  35. lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py +29 -81
  36. lightning_sdk/lightning_cloud/openapi/models/snowflake_query_body.py +17 -69
  37. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +27 -1
  38. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_spec.py +27 -1
  39. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_url_response.py +27 -1
  40. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_response.py +17 -17
  41. lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_url_response.py +149 -0
  42. lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +27 -1
  43. lightning_sdk/lightning_cloud/openapi/models/v1_header.py +175 -0
  44. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +27 -1
  45. lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_job_events_response.py +123 -0
  46. lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +29 -3
  47. lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +27 -1
  48. lightning_sdk/lightning_cloud/openapi/models/v1_model_file.py +175 -0
  49. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +27 -1
  50. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event.py +331 -0
  51. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event_type.py +104 -0
  52. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance.py +149 -0
  53. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance_strategy.py +105 -0
  54. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_status.py +27 -1
  55. lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +2 -0
  56. lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +1 -0
  57. lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py +29 -81
  58. lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics.py +29 -3
  59. lightning_sdk/lightning_cloud/openapi/models/v1_trainium_system_metrics.py +175 -0
  60. lightning_sdk/lightning_cloud/openapi/models/v1_update_metrics_stream_visibility_response.py +97 -0
  61. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +41 -67
  62. lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_request.py +149 -0
  63. lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_response.py +97 -0
  64. lightning_sdk/lightning_cloud/rest_client.py +2 -0
  65. lightning_sdk/mmt/__init__.py +3 -0
  66. lightning_sdk/{_mmt → mmt}/base.py +20 -14
  67. lightning_sdk/{_mmt → mmt}/mmt.py +46 -17
  68. lightning_sdk/mmt/v1.py +129 -0
  69. lightning_sdk/{_mmt → mmt}/v2.py +16 -21
  70. lightning_sdk/plugin.py +43 -16
  71. lightning_sdk/services/file_endpoint.py +11 -5
  72. lightning_sdk/studio.py +16 -9
  73. lightning_sdk/teamspace.py +26 -14
  74. lightning_sdk/utils/resolve.py +18 -0
  75. {lightning_sdk-0.1.40.dist-info → lightning_sdk-0.1.42.dist-info}/METADATA +3 -1
  76. {lightning_sdk-0.1.40.dist-info → lightning_sdk-0.1.42.dist-info}/RECORD +80 -66
  77. lightning_sdk/_mmt/__init__.py +0 -3
  78. lightning_sdk/_mmt/v1.py +0 -69
  79. {lightning_sdk-0.1.40.dist-info → lightning_sdk-0.1.42.dist-info}/LICENSE +0 -0
  80. {lightning_sdk-0.1.40.dist-info → lightning_sdk-0.1.42.dist-info}/WHEEL +0 -0
  81. {lightning_sdk-0.1.40.dist-info → lightning_sdk-0.1.42.dist-info}/entry_points.txt +0 -0
  82. {lightning_sdk-0.1.40.dist-info → lightning_sdk-0.1.42.dist-info}/top_level.txt +0 -0
@@ -1009,6 +1009,111 @@ class LitLoggerServiceApi(object):
1009
1009
  _request_timeout=params.get('_request_timeout'),
1010
1010
  collection_formats=collection_formats)
1011
1011
 
1012
+ def lit_logger_service_get_metrics_stream(self, **kwargs) -> 'V1MetricsStream': # noqa: E501
1013
+ """lit_logger_service_get_metrics_stream # noqa: E501
1014
+
1015
+ This method makes a synchronous HTTP request by default. To make an
1016
+ asynchronous HTTP request, please pass async_req=True
1017
+ >>> thread = api.lit_logger_service_get_metrics_stream(async_req=True)
1018
+ >>> result = thread.get()
1019
+
1020
+ :param async_req bool
1021
+ :param str project_name:
1022
+ :param str project_owner_name:
1023
+ :param str name:
1024
+ :param str id:
1025
+ :param int version_number:
1026
+ :return: V1MetricsStream
1027
+ If the method is called asynchronously,
1028
+ returns the request thread.
1029
+ """
1030
+ kwargs['_return_http_data_only'] = True
1031
+ if kwargs.get('async_req'):
1032
+ return self.lit_logger_service_get_metrics_stream_with_http_info(**kwargs) # noqa: E501
1033
+ else:
1034
+ (data) = self.lit_logger_service_get_metrics_stream_with_http_info(**kwargs) # noqa: E501
1035
+ return data
1036
+
1037
+ def lit_logger_service_get_metrics_stream_with_http_info(self, **kwargs) -> 'V1MetricsStream': # noqa: E501
1038
+ """lit_logger_service_get_metrics_stream # noqa: E501
1039
+
1040
+ This method makes a synchronous HTTP request by default. To make an
1041
+ asynchronous HTTP request, please pass async_req=True
1042
+ >>> thread = api.lit_logger_service_get_metrics_stream_with_http_info(async_req=True)
1043
+ >>> result = thread.get()
1044
+
1045
+ :param async_req bool
1046
+ :param str project_name:
1047
+ :param str project_owner_name:
1048
+ :param str name:
1049
+ :param str id:
1050
+ :param int version_number:
1051
+ :return: V1MetricsStream
1052
+ If the method is called asynchronously,
1053
+ returns the request thread.
1054
+ """
1055
+
1056
+ all_params = ['project_name', 'project_owner_name', 'name', 'id', 'version_number'] # noqa: E501
1057
+ all_params.append('async_req')
1058
+ all_params.append('_return_http_data_only')
1059
+ all_params.append('_preload_content')
1060
+ all_params.append('_request_timeout')
1061
+
1062
+ params = locals()
1063
+ for key, val in six.iteritems(params['kwargs']):
1064
+ if key not in all_params:
1065
+ raise TypeError(
1066
+ "Got an unexpected keyword argument '%s'"
1067
+ " to method lit_logger_service_get_metrics_stream" % key
1068
+ )
1069
+ params[key] = val
1070
+ del params['kwargs']
1071
+
1072
+ collection_formats = {}
1073
+
1074
+ path_params = {}
1075
+
1076
+ query_params = []
1077
+ if 'project_name' in params:
1078
+ query_params.append(('projectName', params['project_name'])) # noqa: E501
1079
+ if 'project_owner_name' in params:
1080
+ query_params.append(('projectOwnerName', params['project_owner_name'])) # noqa: E501
1081
+ if 'name' in params:
1082
+ query_params.append(('name', params['name'])) # noqa: E501
1083
+ if 'id' in params:
1084
+ query_params.append(('id', params['id'])) # noqa: E501
1085
+ if 'version_number' in params:
1086
+ query_params.append(('versionNumber', params['version_number'])) # noqa: E501
1087
+
1088
+ header_params = {}
1089
+
1090
+ form_params = []
1091
+ local_var_files = {}
1092
+
1093
+ body_params = None
1094
+ # HTTP header `Accept`
1095
+ header_params['Accept'] = self.api_client.select_header_accept(
1096
+ ['application/json']) # noqa: E501
1097
+
1098
+ # Authentication setting
1099
+ auth_settings = [] # noqa: E501
1100
+
1101
+ return self.api_client.call_api(
1102
+ '/v1/metrics-streams', 'GET',
1103
+ path_params,
1104
+ query_params,
1105
+ header_params,
1106
+ body=body_params,
1107
+ post_params=form_params,
1108
+ files=local_var_files,
1109
+ response_type='V1MetricsStream', # noqa: E501
1110
+ auth_settings=auth_settings,
1111
+ async_req=params.get('async_req'),
1112
+ _return_http_data_only=params.get('_return_http_data_only'),
1113
+ _preload_content=params.get('_preload_content', True),
1114
+ _request_timeout=params.get('_request_timeout'),
1115
+ collection_formats=collection_formats)
1116
+
1012
1117
  def lit_logger_service_get_shared_metrics_stream(self, id: 'str', **kwargs) -> 'V1MetricsStream': # noqa: E501
1013
1118
  """lit_logger_service_get_shared_metrics_stream # noqa: E501
1014
1119
 
@@ -1429,6 +1534,119 @@ class LitLoggerServiceApi(object):
1429
1534
  _request_timeout=params.get('_request_timeout'),
1430
1535
  collection_formats=collection_formats)
1431
1536
 
1537
+ def lit_logger_service_update_metrics_stream_visibility(self, body: 'IdVisibilityBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateMetricsStreamVisibilityResponse': # noqa: E501
1538
+ """lit_logger_service_update_metrics_stream_visibility # noqa: E501
1539
+
1540
+ This method makes a synchronous HTTP request by default. To make an
1541
+ asynchronous HTTP request, please pass async_req=True
1542
+ >>> thread = api.lit_logger_service_update_metrics_stream_visibility(body, project_id, id, async_req=True)
1543
+ >>> result = thread.get()
1544
+
1545
+ :param async_req bool
1546
+ :param IdVisibilityBody body: (required)
1547
+ :param str project_id: (required)
1548
+ :param str id: (required)
1549
+ :return: V1UpdateMetricsStreamVisibilityResponse
1550
+ If the method is called asynchronously,
1551
+ returns the request thread.
1552
+ """
1553
+ kwargs['_return_http_data_only'] = True
1554
+ if kwargs.get('async_req'):
1555
+ return self.lit_logger_service_update_metrics_stream_visibility_with_http_info(body, project_id, id, **kwargs) # noqa: E501
1556
+ else:
1557
+ (data) = self.lit_logger_service_update_metrics_stream_visibility_with_http_info(body, project_id, id, **kwargs) # noqa: E501
1558
+ return data
1559
+
1560
+ def lit_logger_service_update_metrics_stream_visibility_with_http_info(self, body: 'IdVisibilityBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateMetricsStreamVisibilityResponse': # noqa: E501
1561
+ """lit_logger_service_update_metrics_stream_visibility # noqa: E501
1562
+
1563
+ This method makes a synchronous HTTP request by default. To make an
1564
+ asynchronous HTTP request, please pass async_req=True
1565
+ >>> thread = api.lit_logger_service_update_metrics_stream_visibility_with_http_info(body, project_id, id, async_req=True)
1566
+ >>> result = thread.get()
1567
+
1568
+ :param async_req bool
1569
+ :param IdVisibilityBody body: (required)
1570
+ :param str project_id: (required)
1571
+ :param str id: (required)
1572
+ :return: V1UpdateMetricsStreamVisibilityResponse
1573
+ If the method is called asynchronously,
1574
+ returns the request thread.
1575
+ """
1576
+
1577
+ all_params = ['body', 'project_id', 'id'] # noqa: E501
1578
+ all_params.append('async_req')
1579
+ all_params.append('_return_http_data_only')
1580
+ all_params.append('_preload_content')
1581
+ all_params.append('_request_timeout')
1582
+
1583
+ params = locals()
1584
+ for key, val in six.iteritems(params['kwargs']):
1585
+ if key not in all_params:
1586
+ raise TypeError(
1587
+ "Got an unexpected keyword argument '%s'"
1588
+ " to method lit_logger_service_update_metrics_stream_visibility" % key
1589
+ )
1590
+ params[key] = val
1591
+ del params['kwargs']
1592
+ # verify the required parameter 'body' is set
1593
+ if ('body' not in params or
1594
+ params['body'] is None):
1595
+ raise ValueError("Missing the required parameter `body` when calling `lit_logger_service_update_metrics_stream_visibility`") # noqa: E501
1596
+ # verify the required parameter 'project_id' is set
1597
+ if ('project_id' not in params or
1598
+ params['project_id'] is None):
1599
+ raise ValueError("Missing the required parameter `project_id` when calling `lit_logger_service_update_metrics_stream_visibility`") # noqa: E501
1600
+ # verify the required parameter 'id' is set
1601
+ if ('id' not in params or
1602
+ params['id'] is None):
1603
+ raise ValueError("Missing the required parameter `id` when calling `lit_logger_service_update_metrics_stream_visibility`") # noqa: E501
1604
+
1605
+ collection_formats = {}
1606
+
1607
+ path_params = {}
1608
+ if 'project_id' in params:
1609
+ path_params['projectId'] = params['project_id'] # noqa: E501
1610
+ if 'id' in params:
1611
+ path_params['id'] = params['id'] # noqa: E501
1612
+
1613
+ query_params = []
1614
+
1615
+ header_params = {}
1616
+
1617
+ form_params = []
1618
+ local_var_files = {}
1619
+
1620
+ body_params = None
1621
+ if 'body' in params:
1622
+ body_params = params['body']
1623
+ # HTTP header `Accept`
1624
+ header_params['Accept'] = self.api_client.select_header_accept(
1625
+ ['application/json']) # noqa: E501
1626
+
1627
+ # HTTP header `Content-Type`
1628
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
1629
+ ['application/json']) # noqa: E501
1630
+
1631
+ # Authentication setting
1632
+ auth_settings = [] # noqa: E501
1633
+
1634
+ return self.api_client.call_api(
1635
+ '/v1/projects/{projectId}/metrics-streams/{id}/visibility', 'PUT',
1636
+ path_params,
1637
+ query_params,
1638
+ header_params,
1639
+ body=body_params,
1640
+ post_params=form_params,
1641
+ files=local_var_files,
1642
+ response_type='V1UpdateMetricsStreamVisibilityResponse', # noqa: E501
1643
+ auth_settings=auth_settings,
1644
+ async_req=params.get('async_req'),
1645
+ _return_http_data_only=params.get('_return_http_data_only'),
1646
+ _preload_content=params.get('_preload_content', True),
1647
+ _request_timeout=params.get('_request_timeout'),
1648
+ collection_formats=collection_formats)
1649
+
1432
1650
  def lit_logger_service_update_shared_metrics_stream(self, body: 'LitloggermetricsIdBody', id: 'str', **kwargs) -> 'V1UpdateSharedMetricsStreamResponse': # noqa: E501
1433
1651
  """lit_logger_service_update_shared_metrics_stream # noqa: E501
1434
1652
 
@@ -943,6 +943,115 @@ class ModelsStoreApi(object):
943
943
  _request_timeout=params.get('_request_timeout'),
944
944
  collection_formats=collection_formats)
945
945
 
946
+ def models_store_get_model_by_name(self, project_owner_name: 'str', project_name: 'str', model_name: 'str', **kwargs) -> 'V1Model': # noqa: E501
947
+ """models_store_get_model_by_name # noqa: E501
948
+
949
+ This method makes a synchronous HTTP request by default. To make an
950
+ asynchronous HTTP request, please pass async_req=True
951
+ >>> thread = api.models_store_get_model_by_name(project_owner_name, project_name, model_name, async_req=True)
952
+ >>> result = thread.get()
953
+
954
+ :param async_req bool
955
+ :param str project_owner_name: (required)
956
+ :param str project_name: (required)
957
+ :param str model_name: (required)
958
+ :return: V1Model
959
+ If the method is called asynchronously,
960
+ returns the request thread.
961
+ """
962
+ kwargs['_return_http_data_only'] = True
963
+ if kwargs.get('async_req'):
964
+ return self.models_store_get_model_by_name_with_http_info(project_owner_name, project_name, model_name, **kwargs) # noqa: E501
965
+ else:
966
+ (data) = self.models_store_get_model_by_name_with_http_info(project_owner_name, project_name, model_name, **kwargs) # noqa: E501
967
+ return data
968
+
969
+ def models_store_get_model_by_name_with_http_info(self, project_owner_name: 'str', project_name: 'str', model_name: 'str', **kwargs) -> 'V1Model': # noqa: E501
970
+ """models_store_get_model_by_name # noqa: E501
971
+
972
+ This method makes a synchronous HTTP request by default. To make an
973
+ asynchronous HTTP request, please pass async_req=True
974
+ >>> thread = api.models_store_get_model_by_name_with_http_info(project_owner_name, project_name, model_name, async_req=True)
975
+ >>> result = thread.get()
976
+
977
+ :param async_req bool
978
+ :param str project_owner_name: (required)
979
+ :param str project_name: (required)
980
+ :param str model_name: (required)
981
+ :return: V1Model
982
+ If the method is called asynchronously,
983
+ returns the request thread.
984
+ """
985
+
986
+ all_params = ['project_owner_name', 'project_name', 'model_name'] # noqa: E501
987
+ all_params.append('async_req')
988
+ all_params.append('_return_http_data_only')
989
+ all_params.append('_preload_content')
990
+ all_params.append('_request_timeout')
991
+
992
+ params = locals()
993
+ for key, val in six.iteritems(params['kwargs']):
994
+ if key not in all_params:
995
+ raise TypeError(
996
+ "Got an unexpected keyword argument '%s'"
997
+ " to method models_store_get_model_by_name" % key
998
+ )
999
+ params[key] = val
1000
+ del params['kwargs']
1001
+ # verify the required parameter 'project_owner_name' is set
1002
+ if ('project_owner_name' not in params or
1003
+ params['project_owner_name'] is None):
1004
+ raise ValueError("Missing the required parameter `project_owner_name` when calling `models_store_get_model_by_name`") # noqa: E501
1005
+ # verify the required parameter 'project_name' is set
1006
+ if ('project_name' not in params or
1007
+ params['project_name'] is None):
1008
+ raise ValueError("Missing the required parameter `project_name` when calling `models_store_get_model_by_name`") # noqa: E501
1009
+ # verify the required parameter 'model_name' is set
1010
+ if ('model_name' not in params or
1011
+ params['model_name'] is None):
1012
+ raise ValueError("Missing the required parameter `model_name` when calling `models_store_get_model_by_name`") # noqa: E501
1013
+
1014
+ collection_formats = {}
1015
+
1016
+ path_params = {}
1017
+ if 'project_owner_name' in params:
1018
+ path_params['projectOwnerName'] = params['project_owner_name'] # noqa: E501
1019
+ if 'project_name' in params:
1020
+ path_params['projectName'] = params['project_name'] # noqa: E501
1021
+ if 'model_name' in params:
1022
+ path_params['modelName'] = params['model_name'] # noqa: E501
1023
+
1024
+ query_params = []
1025
+
1026
+ header_params = {}
1027
+
1028
+ form_params = []
1029
+ local_var_files = {}
1030
+
1031
+ body_params = None
1032
+ # HTTP header `Accept`
1033
+ header_params['Accept'] = self.api_client.select_header_accept(
1034
+ ['application/json']) # noqa: E501
1035
+
1036
+ # Authentication setting
1037
+ auth_settings = [] # noqa: E501
1038
+
1039
+ return self.api_client.call_api(
1040
+ '/v1/projects/{projectOwnerName}/{projectName}/models/{modelName}', 'GET',
1041
+ path_params,
1042
+ query_params,
1043
+ header_params,
1044
+ body=body_params,
1045
+ post_params=form_params,
1046
+ files=local_var_files,
1047
+ response_type='V1Model', # noqa: E501
1048
+ auth_settings=auth_settings,
1049
+ async_req=params.get('async_req'),
1050
+ _return_http_data_only=params.get('_return_http_data_only'),
1051
+ _preload_content=params.get('_preload_content', True),
1052
+ _request_timeout=params.get('_request_timeout'),
1053
+ collection_formats=collection_formats)
1054
+
946
1055
  def models_store_get_model_file_upload_urls(self, body: 'UploadIdPartsBody', project_id: 'str', model_id: 'str', version: 'str', upload_id: 'str', **kwargs) -> 'V1GetModelFileUploadUrlsResponse': # noqa: E501
947
1056
  """GetModelFileUploadUrls requests pre-signed URLs for a given number of file parts. # noqa: E501
948
1057
 
@@ -1294,6 +1403,123 @@ class ModelsStoreApi(object):
1294
1403
  _request_timeout=params.get('_request_timeout'),
1295
1404
  collection_formats=collection_formats)
1296
1405
 
1406
+ def models_store_get_model_files_url(self, project_id: 'str', model_id: 'str', version: 'str', **kwargs) -> 'V1GetModelFilesUrlResponse': # noqa: E501
1407
+ """GetModelFileUrl responds with a pre-signed url for a given file # noqa: E501
1408
+
1409
+ This method makes a synchronous HTTP request by default. To make an
1410
+ asynchronous HTTP request, please pass async_req=True
1411
+ >>> thread = api.models_store_get_model_files_url(project_id, model_id, version, async_req=True)
1412
+ >>> result = thread.get()
1413
+
1414
+ :param async_req bool
1415
+ :param str project_id: (required)
1416
+ :param str model_id: (required)
1417
+ :param str version: (required)
1418
+ :param str page_size:
1419
+ :param str offset:
1420
+ :return: V1GetModelFilesUrlResponse
1421
+ If the method is called asynchronously,
1422
+ returns the request thread.
1423
+ """
1424
+ kwargs['_return_http_data_only'] = True
1425
+ if kwargs.get('async_req'):
1426
+ return self.models_store_get_model_files_url_with_http_info(project_id, model_id, version, **kwargs) # noqa: E501
1427
+ else:
1428
+ (data) = self.models_store_get_model_files_url_with_http_info(project_id, model_id, version, **kwargs) # noqa: E501
1429
+ return data
1430
+
1431
+ def models_store_get_model_files_url_with_http_info(self, project_id: 'str', model_id: 'str', version: 'str', **kwargs) -> 'V1GetModelFilesUrlResponse': # noqa: E501
1432
+ """GetModelFileUrl responds with a pre-signed url for a given file # noqa: E501
1433
+
1434
+ This method makes a synchronous HTTP request by default. To make an
1435
+ asynchronous HTTP request, please pass async_req=True
1436
+ >>> thread = api.models_store_get_model_files_url_with_http_info(project_id, model_id, version, async_req=True)
1437
+ >>> result = thread.get()
1438
+
1439
+ :param async_req bool
1440
+ :param str project_id: (required)
1441
+ :param str model_id: (required)
1442
+ :param str version: (required)
1443
+ :param str page_size:
1444
+ :param str offset:
1445
+ :return: V1GetModelFilesUrlResponse
1446
+ If the method is called asynchronously,
1447
+ returns the request thread.
1448
+ """
1449
+
1450
+ all_params = ['project_id', 'model_id', 'version', 'page_size', 'offset'] # noqa: E501
1451
+ all_params.append('async_req')
1452
+ all_params.append('_return_http_data_only')
1453
+ all_params.append('_preload_content')
1454
+ all_params.append('_request_timeout')
1455
+
1456
+ params = locals()
1457
+ for key, val in six.iteritems(params['kwargs']):
1458
+ if key not in all_params:
1459
+ raise TypeError(
1460
+ "Got an unexpected keyword argument '%s'"
1461
+ " to method models_store_get_model_files_url" % key
1462
+ )
1463
+ params[key] = val
1464
+ del params['kwargs']
1465
+ # verify the required parameter 'project_id' is set
1466
+ if ('project_id' not in params or
1467
+ params['project_id'] is None):
1468
+ raise ValueError("Missing the required parameter `project_id` when calling `models_store_get_model_files_url`") # noqa: E501
1469
+ # verify the required parameter 'model_id' is set
1470
+ if ('model_id' not in params or
1471
+ params['model_id'] is None):
1472
+ raise ValueError("Missing the required parameter `model_id` when calling `models_store_get_model_files_url`") # noqa: E501
1473
+ # verify the required parameter 'version' is set
1474
+ if ('version' not in params or
1475
+ params['version'] is None):
1476
+ raise ValueError("Missing the required parameter `version` when calling `models_store_get_model_files_url`") # noqa: E501
1477
+
1478
+ collection_formats = {}
1479
+
1480
+ path_params = {}
1481
+ if 'project_id' in params:
1482
+ path_params['projectId'] = params['project_id'] # noqa: E501
1483
+ if 'model_id' in params:
1484
+ path_params['modelId'] = params['model_id'] # noqa: E501
1485
+ if 'version' in params:
1486
+ path_params['version'] = params['version'] # noqa: E501
1487
+
1488
+ query_params = []
1489
+ if 'page_size' in params:
1490
+ query_params.append(('pageSize', params['page_size'])) # noqa: E501
1491
+ if 'offset' in params:
1492
+ query_params.append(('offset', params['offset'])) # noqa: E501
1493
+
1494
+ header_params = {}
1495
+
1496
+ form_params = []
1497
+ local_var_files = {}
1498
+
1499
+ body_params = None
1500
+ # HTTP header `Accept`
1501
+ header_params['Accept'] = self.api_client.select_header_accept(
1502
+ ['application/json']) # noqa: E501
1503
+
1504
+ # Authentication setting
1505
+ auth_settings = [] # noqa: E501
1506
+
1507
+ return self.api_client.call_api(
1508
+ '/v1/projects/{projectId}/models/{modelId}/versions/{version}/files', 'GET',
1509
+ path_params,
1510
+ query_params,
1511
+ header_params,
1512
+ body=body_params,
1513
+ post_params=form_params,
1514
+ files=local_var_files,
1515
+ response_type='V1GetModelFilesUrlResponse', # noqa: E501
1516
+ auth_settings=auth_settings,
1517
+ async_req=params.get('async_req'),
1518
+ _return_http_data_only=params.get('_return_http_data_only'),
1519
+ _preload_content=params.get('_preload_content', True),
1520
+ _request_timeout=params.get('_request_timeout'),
1521
+ collection_formats=collection_formats)
1522
+
1297
1523
  def models_store_get_model_version(self, project_id: 'str', model_id: 'str', version: 'str', **kwargs) -> 'V1ModelVersionArchive': # noqa: E501
1298
1524
  """GetModelVersion used to get specific model version details # noqa: E501
1299
1525
 
@@ -643,6 +643,7 @@ class SecretServiceApi(object):
643
643
 
644
644
  :param async_req bool
645
645
  :param str project_id: (required)
646
+ :param str type:
646
647
  :return: V1ListSecretsResponse
647
648
  If the method is called asynchronously,
648
649
  returns the request thread.
@@ -664,12 +665,13 @@ class SecretServiceApi(object):
664
665
 
665
666
  :param async_req bool
666
667
  :param str project_id: (required)
668
+ :param str type:
667
669
  :return: V1ListSecretsResponse
668
670
  If the method is called asynchronously,
669
671
  returns the request thread.
670
672
  """
671
673
 
672
- all_params = ['project_id'] # noqa: E501
674
+ all_params = ['project_id', 'type'] # noqa: E501
673
675
  all_params.append('async_req')
674
676
  all_params.append('_return_http_data_only')
675
677
  all_params.append('_preload_content')
@@ -696,6 +698,8 @@ class SecretServiceApi(object):
696
698
  path_params['projectId'] = params['project_id'] # noqa: E501
697
699
 
698
700
  query_params = []
701
+ if 'type' in params:
702
+ query_params.append(('type', params['type'])) # noqa: E501
699
703
 
700
704
  header_params = {}
701
705
 
@@ -53,6 +53,11 @@ class SnowflakeServiceApi(object):
53
53
 
54
54
  :param async_req bool
55
55
  :param str project_id: (required)
56
+ :param str username:
57
+ :param str password:
58
+ :param str account:
59
+ :param str private_key_file:
60
+ :param str private_key_password:
56
61
  :return: V1CheckSnowflakeConnectionResponse
57
62
  If the method is called asynchronously,
58
63
  returns the request thread.
@@ -74,12 +79,17 @@ class SnowflakeServiceApi(object):
74
79
 
75
80
  :param async_req bool
76
81
  :param str project_id: (required)
82
+ :param str username:
83
+ :param str password:
84
+ :param str account:
85
+ :param str private_key_file:
86
+ :param str private_key_password:
77
87
  :return: V1CheckSnowflakeConnectionResponse
78
88
  If the method is called asynchronously,
79
89
  returns the request thread.
80
90
  """
81
91
 
82
- all_params = ['project_id'] # noqa: E501
92
+ all_params = ['project_id', 'username', 'password', 'account', 'private_key_file', 'private_key_password'] # noqa: E501
83
93
  all_params.append('async_req')
84
94
  all_params.append('_return_http_data_only')
85
95
  all_params.append('_preload_content')
@@ -106,6 +116,16 @@ class SnowflakeServiceApi(object):
106
116
  path_params['projectId'] = params['project_id'] # noqa: E501
107
117
 
108
118
  query_params = []
119
+ if 'username' in params:
120
+ query_params.append(('username', params['username'])) # noqa: E501
121
+ if 'password' in params:
122
+ query_params.append(('password', params['password'])) # noqa: E501
123
+ if 'account' in params:
124
+ query_params.append(('account', params['account'])) # noqa: E501
125
+ if 'private_key_file' in params:
126
+ query_params.append(('privateKeyFile', params['private_key_file'])) # noqa: E501
127
+ if 'private_key_password' in params:
128
+ query_params.append(('privateKeyPassword', params['private_key_password'])) # noqa: E501
109
129
 
110
130
  header_params = {}
111
131
 
@@ -89,6 +89,7 @@ from lightning_sdk.lightning_cloud.openapi.models.id_start_body import IdStartBo
89
89
  from lightning_sdk.lightning_cloud.openapi.models.id_storage_body import IdStorageBody
90
90
  from lightning_sdk.lightning_cloud.openapi.models.id_uploads_body import IdUploadsBody
91
91
  from lightning_sdk.lightning_cloud.openapi.models.id_uploads_body1 import IdUploadsBody1
92
+ from lightning_sdk.lightning_cloud.openapi.models.id_visibility_body import IdVisibilityBody
92
93
  from lightning_sdk.lightning_cloud.openapi.models.jobs_id_body import JobsIdBody
93
94
  from lightning_sdk.lightning_cloud.openapi.models.jobs_id_body1 import JobsIdBody1
94
95
  from lightning_sdk.lightning_cloud.openapi.models.jobs_id_body2 import JobsIdBody2
@@ -409,6 +410,7 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_get_long_running_command_in
409
410
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_model_file_upload_urls_response import V1GetModelFileUploadUrlsResponse
410
411
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_model_file_url_response import V1GetModelFileUrlResponse
411
412
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_model_files_response import V1GetModelFilesResponse
413
+ from lightning_sdk.lightning_cloud.openapi.models.v1_get_model_files_url_response import V1GetModelFilesUrlResponse
412
414
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_project_artifact_response import V1GetProjectArtifactResponse
413
415
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_project_balance_response import V1GetProjectBalanceResponse
414
416
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_project_compute_usage_response import V1GetProjectComputeUsageResponse
@@ -424,6 +426,7 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_get_user_storage_breakdown_
424
426
  from lightning_sdk.lightning_cloud.openapi.models.v1_get_user_storage_response import V1GetUserStorageResponse
425
427
  from lightning_sdk.lightning_cloud.openapi.models.v1_google_cloud_direct_v1 import V1GoogleCloudDirectV1
426
428
  from lightning_sdk.lightning_cloud.openapi.models.v1_google_cloud_direct_v1_status import V1GoogleCloudDirectV1Status
429
+ from lightning_sdk.lightning_cloud.openapi.models.v1_header import V1Header
427
430
  from lightning_sdk.lightning_cloud.openapi.models.v1_health_check_exec import V1HealthCheckExec
428
431
  from lightning_sdk.lightning_cloud.openapi.models.v1_health_check_http_get import V1HealthCheckHttpGet
429
432
  from lightning_sdk.lightning_cloud.openapi.models.v1_ids_logger_metrics import V1IdsLoggerMetrics
@@ -521,6 +524,7 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_list_memberships_response i
521
524
  from lightning_sdk.lightning_cloud.openapi.models.v1_list_metrics_streams_response import V1ListMetricsStreamsResponse
522
525
  from lightning_sdk.lightning_cloud.openapi.models.v1_list_model_versions_response import V1ListModelVersionsResponse
523
526
  from lightning_sdk.lightning_cloud.openapi.models.v1_list_models_response import V1ListModelsResponse
527
+ from lightning_sdk.lightning_cloud.openapi.models.v1_list_multi_machine_job_events_response import V1ListMultiMachineJobEventsResponse
524
528
  from lightning_sdk.lightning_cloud.openapi.models.v1_list_multi_machine_jobs_response import V1ListMultiMachineJobsResponse
525
529
  from lightning_sdk.lightning_cloud.openapi.models.v1_list_new_features_for_user_response import V1ListNewFeaturesForUserResponse
526
530
  from lightning_sdk.lightning_cloud.openapi.models.v1_list_org_members_response import V1ListOrgMembersResponse
@@ -575,9 +579,14 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_metrics_stream import V1Met
575
579
  from lightning_sdk.lightning_cloud.openapi.models.v1_metrics_tags import V1MetricsTags
576
580
  from lightning_sdk.lightning_cloud.openapi.models.v1_metrics_tracker import V1MetricsTracker
577
581
  from lightning_sdk.lightning_cloud.openapi.models.v1_model import V1Model
582
+ from lightning_sdk.lightning_cloud.openapi.models.v1_model_file import V1ModelFile
578
583
  from lightning_sdk.lightning_cloud.openapi.models.v1_model_version_archive import V1ModelVersionArchive
579
584
  from lightning_sdk.lightning_cloud.openapi.models.v1_mount_target import V1MountTarget
580
585
  from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job import V1MultiMachineJob
586
+ from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job_event import V1MultiMachineJobEvent
587
+ from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job_event_type import V1MultiMachineJobEventType
588
+ from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job_fault_tolerance import V1MultiMachineJobFaultTolerance
589
+ from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job_fault_tolerance_strategy import V1MultiMachineJobFaultToleranceStrategy
581
590
  from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job_state import V1MultiMachineJobState
582
591
  from lightning_sdk.lightning_cloud.openapi.models.v1_multi_machine_job_status import V1MultiMachineJobStatus
583
592
  from lightning_sdk.lightning_cloud.openapi.models.v1_named_get_logger_metrics import V1NamedGetLoggerMetrics
@@ -687,6 +696,7 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_system_metrics import V1Sys
687
696
  from lightning_sdk.lightning_cloud.openapi.models.v1_system_metrics_list import V1SystemMetricsList
688
697
  from lightning_sdk.lightning_cloud.openapi.models.v1_telemetry import V1Telemetry
689
698
  from lightning_sdk.lightning_cloud.openapi.models.v1_timestamp_code_telemetry import V1TimestampCodeTelemetry
699
+ from lightning_sdk.lightning_cloud.openapi.models.v1_trainium_system_metrics import V1TrainiumSystemMetrics
690
700
  from lightning_sdk.lightning_cloud.openapi.models.v1_transaction import V1Transaction
691
701
  from lightning_sdk.lightning_cloud.openapi.models.v1_transfer_org_balance_response import V1TransferOrgBalanceResponse
692
702
  from lightning_sdk.lightning_cloud.openapi.models.v1_transfer_project_balance_response import V1TransferProjectBalanceResponse
@@ -703,6 +713,7 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_update_cluster_accelerators
703
713
  from lightning_sdk.lightning_cloud.openapi.models.v1_update_cluster_availability_request import V1UpdateClusterAvailabilityRequest
704
714
  from lightning_sdk.lightning_cloud.openapi.models.v1_update_index_response import V1UpdateIndexResponse
705
715
  from lightning_sdk.lightning_cloud.openapi.models.v1_update_lit_page_response import V1UpdateLitPageResponse
716
+ from lightning_sdk.lightning_cloud.openapi.models.v1_update_metrics_stream_visibility_response import V1UpdateMetricsStreamVisibilityResponse
706
717
  from lightning_sdk.lightning_cloud.openapi.models.v1_update_model_visibility_response import V1UpdateModelVisibilityResponse
707
718
  from lightning_sdk.lightning_cloud.openapi.models.v1_update_project_cluster_accelerators_response import V1UpdateProjectClusterAcceleratorsResponse
708
719
  from lightning_sdk.lightning_cloud.openapi.models.v1_update_shared_metrics_stream_response import V1UpdateSharedMetricsStreamResponse
@@ -732,6 +743,8 @@ from lightning_sdk.lightning_cloud.openapi.models.v1_user_slurm_job_action_respo
732
743
  from lightning_sdk.lightning_cloud.openapi.models.v1_validate_assistant_status_response import V1ValidateAssistantStatusResponse
733
744
  from lightning_sdk.lightning_cloud.openapi.models.v1_validate_auto_join_domain_response import V1ValidateAutoJoinDomainResponse
734
745
  from lightning_sdk.lightning_cloud.openapi.models.v1_validate_data_connection_response import V1ValidateDataConnectionResponse
746
+ from lightning_sdk.lightning_cloud.openapi.models.v1_validate_deployment_image_request import V1ValidateDeploymentImageRequest
747
+ from lightning_sdk.lightning_cloud.openapi.models.v1_validate_deployment_image_response import V1ValidateDeploymentImageResponse
735
748
  from lightning_sdk.lightning_cloud.openapi.models.v1_validate_managed_endpoint_request import V1ValidateManagedEndpointRequest
736
749
  from lightning_sdk.lightning_cloud.openapi.models.v1_validate_managed_endpoint_response import V1ValidateManagedEndpointResponse
737
750
  from lightning_sdk.lightning_cloud.openapi.models.v1_validate_managed_model_response import V1ValidateManagedModelResponse