lightning-sdk 2025.12.9__py3-none-any.whl → 2025.12.17__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 (78) hide show
  1. lightning_sdk/__version__.py +1 -1
  2. lightning_sdk/api/job_api.py +16 -0
  3. lightning_sdk/api/org_api.py +7 -0
  4. lightning_sdk/api/studio_api.py +28 -3
  5. lightning_sdk/api/teamspace_api.py +42 -5
  6. lightning_sdk/api/user_api.py +5 -0
  7. lightning_sdk/cli/legacy/download.py +2 -1
  8. lightning_sdk/cli/legacy/studios_menu.py +8 -1
  9. lightning_sdk/job/base.py +26 -4
  10. lightning_sdk/job/job.py +16 -5
  11. lightning_sdk/job/v1.py +7 -2
  12. lightning_sdk/job/v2.py +41 -1
  13. lightning_sdk/lightning_cloud/openapi/__init__.py +26 -1
  14. lightning_sdk/lightning_cloud/openapi/api/__init__.py +1 -0
  15. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +5 -1
  16. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +517 -0
  17. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +5 -1
  18. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +11 -11
  19. lightning_sdk/lightning_cloud/openapi/api/kubernetes_virtual_machine_service_api.py +557 -0
  20. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +5 -1
  21. lightning_sdk/lightning_cloud/openapi/models/__init__.py +25 -1
  22. lightning_sdk/lightning_cloud/openapi/models/cloud_space_environment_template_service_update_cloud_space_environment_template_body.py +27 -1
  23. lightning_sdk/lightning_cloud/openapi/models/cluster_service_add_container_registry_body.py +123 -0
  24. lightning_sdk/lightning_cloud/openapi/models/cluster_service_create_machine_body.py +27 -1
  25. lightning_sdk/lightning_cloud/openapi/models/cluster_service_refresh_container_registry_credentials_body.py +97 -0
  26. lightning_sdk/lightning_cloud/openapi/models/cluster_service_validate_container_registry_body.py +97 -0
  27. lightning_sdk/lightning_cloud/openapi/models/kubernetes_virtual_machine_service_create_kubernetes_virtual_machine_body.py +513 -0
  28. lightning_sdk/lightning_cloud/openapi/models/kubernetes_virtual_machine_service_update_kubernetes_virtual_machine_body.py +97 -0
  29. lightning_sdk/lightning_cloud/openapi/models/v1_add_container_registry_response.py +123 -0
  30. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +27 -1
  31. lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_specialized_view.py +1 -0
  32. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry.py +253 -0
  33. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_info.py +281 -0
  34. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_integration.py +123 -0
  35. lightning_sdk/lightning_cloud/openapi/models/v1_container_registry_status.py +105 -0
  36. lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +27 -1
  37. lightning_sdk/lightning_cloud/openapi/models/v1_delete_container_registry_response.py +97 -0
  38. lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_virtual_machine_response.py +97 -0
  39. lightning_sdk/lightning_cloud/openapi/models/v1_ecr_registry_config.py +175 -0
  40. lightning_sdk/lightning_cloud/openapi/models/v1_ecr_registry_config_input.py +123 -0
  41. lightning_sdk/lightning_cloud/openapi/models/v1_ecr_registry_details.py +201 -0
  42. lightning_sdk/lightning_cloud/openapi/models/v1_get_artifacts_page_response.py +29 -3
  43. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +27 -1
  44. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +53 -1
  45. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_virtual_machine.py +383 -0
  46. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_config.py +305 -0
  47. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_provider_configuration.py +227 -0
  48. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_vm_configuration.py +149 -0
  49. lightning_sdk/lightning_cloud/openapi/models/v1_kubevirt_vm_resources.py +201 -0
  50. lightning_sdk/lightning_cloud/openapi/models/v1_list_container_registries_response.py +123 -0
  51. lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_virtual_machines_response.py +123 -0
  52. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +27 -1
  53. lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +27 -1
  54. lightning_sdk/lightning_cloud/openapi/models/v1_refresh_container_registry_credentials_response.py +123 -0
  55. lightning_sdk/lightning_cloud/openapi/models/v1_search_user.py +27 -1
  56. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +79 -1
  57. lightning_sdk/lightning_cloud/openapi/models/v1_validate_container_registry_response.py +149 -0
  58. lightning_sdk/lightning_cloud/openapi/rest.py +2 -2
  59. lightning_sdk/machine.py +1 -0
  60. lightning_sdk/mmt/base.py +26 -7
  61. lightning_sdk/mmt/mmt.py +11 -6
  62. lightning_sdk/mmt/v1.py +5 -2
  63. lightning_sdk/mmt/v2.py +5 -2
  64. lightning_sdk/organization.py +10 -1
  65. lightning_sdk/owner.py +4 -0
  66. lightning_sdk/pipeline/steps.py +3 -0
  67. lightning_sdk/plugin.py +2 -2
  68. lightning_sdk/studio.py +33 -2
  69. lightning_sdk/teamspace.py +44 -4
  70. lightning_sdk/user.py +22 -2
  71. lightning_sdk/utils/resolve.py +9 -7
  72. {lightning_sdk-2025.12.9.dist-info → lightning_sdk-2025.12.17.dist-info}/METADATA +1 -1
  73. {lightning_sdk-2025.12.9.dist-info → lightning_sdk-2025.12.17.dist-info}/RECORD +78 -53
  74. /lightning_sdk/lightning_cloud/openapi/models/{v1_list_filesystem_mm_ts_response.py → v1_list_filesystem_mmts_response.py} +0 -0
  75. {lightning_sdk-2025.12.9.dist-info → lightning_sdk-2025.12.17.dist-info}/LICENSE +0 -0
  76. {lightning_sdk-2025.12.9.dist-info → lightning_sdk-2025.12.17.dist-info}/WHEEL +0 -0
  77. {lightning_sdk-2025.12.9.dist-info → lightning_sdk-2025.12.17.dist-info}/entry_points.txt +0 -0
  78. {lightning_sdk-2025.12.9.dist-info → lightning_sdk-2025.12.17.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,97 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ external/v1/auth_service.proto
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: version not set
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ NOTE
13
+ ----
14
+ standard swagger-codegen-cli for this python client has been modified
15
+ by custom templates. The purpose of these templates is to include
16
+ typing information in the API and Model code. Please refer to the
17
+ main grid repository for more info
18
+ """
19
+
20
+ import pprint
21
+ import re # noqa: F401
22
+
23
+ from typing import TYPE_CHECKING
24
+
25
+ import six
26
+
27
+ if TYPE_CHECKING:
28
+ from datetime import datetime
29
+ from lightning_sdk.lightning_cloud.openapi.models import *
30
+
31
+ class V1DeleteKubernetesVirtualMachineResponse(object):
32
+ """NOTE: This class is auto generated by the swagger code generator program.
33
+
34
+ Do not edit the class manually.
35
+ """
36
+ """
37
+ Attributes:
38
+ swagger_types (dict): The key is attribute name
39
+ and the value is attribute type.
40
+ attribute_map (dict): The key is attribute name
41
+ and the value is json key in definition.
42
+ """
43
+ swagger_types = {
44
+ }
45
+
46
+ attribute_map = {
47
+ }
48
+
49
+ def __init__(self): # noqa: E501
50
+ """V1DeleteKubernetesVirtualMachineResponse - a model defined in Swagger""" # noqa: E501
51
+ self.discriminator = None
52
+
53
+ def to_dict(self) -> dict:
54
+ """Returns the model properties as a dict"""
55
+ result = {}
56
+
57
+ for attr, _ in six.iteritems(self.swagger_types):
58
+ value = getattr(self, attr)
59
+ if isinstance(value, list):
60
+ result[attr] = list(map(
61
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
62
+ value
63
+ ))
64
+ elif hasattr(value, "to_dict"):
65
+ result[attr] = value.to_dict()
66
+ elif isinstance(value, dict):
67
+ result[attr] = dict(map(
68
+ lambda item: (item[0], item[1].to_dict())
69
+ if hasattr(item[1], "to_dict") else item,
70
+ value.items()
71
+ ))
72
+ else:
73
+ result[attr] = value
74
+ if issubclass(V1DeleteKubernetesVirtualMachineResponse, dict):
75
+ for key, value in self.items():
76
+ result[key] = value
77
+
78
+ return result
79
+
80
+ def to_str(self) -> str:
81
+ """Returns the string representation of the model"""
82
+ return pprint.pformat(self.to_dict())
83
+
84
+ def __repr__(self) -> str:
85
+ """For `print` and `pprint`"""
86
+ return self.to_str()
87
+
88
+ def __eq__(self, other: 'V1DeleteKubernetesVirtualMachineResponse') -> bool:
89
+ """Returns true if both objects are equal"""
90
+ if not isinstance(other, V1DeleteKubernetesVirtualMachineResponse):
91
+ return False
92
+
93
+ return self.__dict__ == other.__dict__
94
+
95
+ def __ne__(self, other: 'V1DeleteKubernetesVirtualMachineResponse') -> bool:
96
+ """Returns true if both objects are not equal"""
97
+ return not self == other
@@ -0,0 +1,175 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ external/v1/auth_service.proto
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: version not set
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ NOTE
13
+ ----
14
+ standard swagger-codegen-cli for this python client has been modified
15
+ by custom templates. The purpose of these templates is to include
16
+ typing information in the API and Model code. Please refer to the
17
+ main grid repository for more info
18
+ """
19
+
20
+ import pprint
21
+ import re # noqa: F401
22
+
23
+ from typing import TYPE_CHECKING
24
+
25
+ import six
26
+
27
+ if TYPE_CHECKING:
28
+ from datetime import datetime
29
+ from lightning_sdk.lightning_cloud.openapi.models import *
30
+
31
+ class V1ECRRegistryConfig(object):
32
+ """NOTE: This class is auto generated by the swagger code generator program.
33
+
34
+ Do not edit the class manually.
35
+ """
36
+ """
37
+ Attributes:
38
+ swagger_types (dict): The key is attribute name
39
+ and the value is attribute type.
40
+ attribute_map (dict): The key is attribute name
41
+ and the value is json key in definition.
42
+ """
43
+ swagger_types = {
44
+ 'lightning_account_id': 'str',
45
+ 'lightning_role': 'str',
46
+ 'registry_url': 'str'
47
+ }
48
+
49
+ attribute_map = {
50
+ 'lightning_account_id': 'lightningAccountId',
51
+ 'lightning_role': 'lightningRole',
52
+ 'registry_url': 'registryUrl'
53
+ }
54
+
55
+ def __init__(self, lightning_account_id: 'str' =None, lightning_role: 'str' =None, registry_url: 'str' =None): # noqa: E501
56
+ """V1ECRRegistryConfig - a model defined in Swagger""" # noqa: E501
57
+ self._lightning_account_id = None
58
+ self._lightning_role = None
59
+ self._registry_url = None
60
+ self.discriminator = None
61
+ if lightning_account_id is not None:
62
+ self.lightning_account_id = lightning_account_id
63
+ if lightning_role is not None:
64
+ self.lightning_role = lightning_role
65
+ if registry_url is not None:
66
+ self.registry_url = registry_url
67
+
68
+ @property
69
+ def lightning_account_id(self) -> 'str':
70
+ """Gets the lightning_account_id of this V1ECRRegistryConfig. # noqa: E501
71
+
72
+
73
+ :return: The lightning_account_id of this V1ECRRegistryConfig. # noqa: E501
74
+ :rtype: str
75
+ """
76
+ return self._lightning_account_id
77
+
78
+ @lightning_account_id.setter
79
+ def lightning_account_id(self, lightning_account_id: 'str'):
80
+ """Sets the lightning_account_id of this V1ECRRegistryConfig.
81
+
82
+
83
+ :param lightning_account_id: The lightning_account_id of this V1ECRRegistryConfig. # noqa: E501
84
+ :type: str
85
+ """
86
+
87
+ self._lightning_account_id = lightning_account_id
88
+
89
+ @property
90
+ def lightning_role(self) -> 'str':
91
+ """Gets the lightning_role of this V1ECRRegistryConfig. # noqa: E501
92
+
93
+
94
+ :return: The lightning_role of this V1ECRRegistryConfig. # noqa: E501
95
+ :rtype: str
96
+ """
97
+ return self._lightning_role
98
+
99
+ @lightning_role.setter
100
+ def lightning_role(self, lightning_role: 'str'):
101
+ """Sets the lightning_role of this V1ECRRegistryConfig.
102
+
103
+
104
+ :param lightning_role: The lightning_role of this V1ECRRegistryConfig. # noqa: E501
105
+ :type: str
106
+ """
107
+
108
+ self._lightning_role = lightning_role
109
+
110
+ @property
111
+ def registry_url(self) -> 'str':
112
+ """Gets the registry_url of this V1ECRRegistryConfig. # noqa: E501
113
+
114
+
115
+ :return: The registry_url of this V1ECRRegistryConfig. # noqa: E501
116
+ :rtype: str
117
+ """
118
+ return self._registry_url
119
+
120
+ @registry_url.setter
121
+ def registry_url(self, registry_url: 'str'):
122
+ """Sets the registry_url of this V1ECRRegistryConfig.
123
+
124
+
125
+ :param registry_url: The registry_url of this V1ECRRegistryConfig. # noqa: E501
126
+ :type: str
127
+ """
128
+
129
+ self._registry_url = registry_url
130
+
131
+ def to_dict(self) -> dict:
132
+ """Returns the model properties as a dict"""
133
+ result = {}
134
+
135
+ for attr, _ in six.iteritems(self.swagger_types):
136
+ value = getattr(self, attr)
137
+ if isinstance(value, list):
138
+ result[attr] = list(map(
139
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
140
+ value
141
+ ))
142
+ elif hasattr(value, "to_dict"):
143
+ result[attr] = value.to_dict()
144
+ elif isinstance(value, dict):
145
+ result[attr] = dict(map(
146
+ lambda item: (item[0], item[1].to_dict())
147
+ if hasattr(item[1], "to_dict") else item,
148
+ value.items()
149
+ ))
150
+ else:
151
+ result[attr] = value
152
+ if issubclass(V1ECRRegistryConfig, dict):
153
+ for key, value in self.items():
154
+ result[key] = value
155
+
156
+ return result
157
+
158
+ def to_str(self) -> str:
159
+ """Returns the string representation of the model"""
160
+ return pprint.pformat(self.to_dict())
161
+
162
+ def __repr__(self) -> str:
163
+ """For `print` and `pprint`"""
164
+ return self.to_str()
165
+
166
+ def __eq__(self, other: 'V1ECRRegistryConfig') -> bool:
167
+ """Returns true if both objects are equal"""
168
+ if not isinstance(other, V1ECRRegistryConfig):
169
+ return False
170
+
171
+ return self.__dict__ == other.__dict__
172
+
173
+ def __ne__(self, other: 'V1ECRRegistryConfig') -> bool:
174
+ """Returns true if both objects are not equal"""
175
+ return not self == other
@@ -0,0 +1,123 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ external/v1/auth_service.proto
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: version not set
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ NOTE
13
+ ----
14
+ standard swagger-codegen-cli for this python client has been modified
15
+ by custom templates. The purpose of these templates is to include
16
+ typing information in the API and Model code. Please refer to the
17
+ main grid repository for more info
18
+ """
19
+
20
+ import pprint
21
+ import re # noqa: F401
22
+
23
+ from typing import TYPE_CHECKING
24
+
25
+ import six
26
+
27
+ if TYPE_CHECKING:
28
+ from datetime import datetime
29
+ from lightning_sdk.lightning_cloud.openapi.models import *
30
+
31
+ class V1ECRRegistryConfigInput(object):
32
+ """NOTE: This class is auto generated by the swagger code generator program.
33
+
34
+ Do not edit the class manually.
35
+ """
36
+ """
37
+ Attributes:
38
+ swagger_types (dict): The key is attribute name
39
+ and the value is attribute type.
40
+ attribute_map (dict): The key is attribute name
41
+ and the value is json key in definition.
42
+ """
43
+ swagger_types = {
44
+ 'registry_url': 'str'
45
+ }
46
+
47
+ attribute_map = {
48
+ 'registry_url': 'registryUrl'
49
+ }
50
+
51
+ def __init__(self, registry_url: 'str' =None): # noqa: E501
52
+ """V1ECRRegistryConfigInput - a model defined in Swagger""" # noqa: E501
53
+ self._registry_url = None
54
+ self.discriminator = None
55
+ if registry_url is not None:
56
+ self.registry_url = registry_url
57
+
58
+ @property
59
+ def registry_url(self) -> 'str':
60
+ """Gets the registry_url of this V1ECRRegistryConfigInput. # noqa: E501
61
+
62
+
63
+ :return: The registry_url of this V1ECRRegistryConfigInput. # noqa: E501
64
+ :rtype: str
65
+ """
66
+ return self._registry_url
67
+
68
+ @registry_url.setter
69
+ def registry_url(self, registry_url: 'str'):
70
+ """Sets the registry_url of this V1ECRRegistryConfigInput.
71
+
72
+
73
+ :param registry_url: The registry_url of this V1ECRRegistryConfigInput. # noqa: E501
74
+ :type: str
75
+ """
76
+
77
+ self._registry_url = registry_url
78
+
79
+ def to_dict(self) -> dict:
80
+ """Returns the model properties as a dict"""
81
+ result = {}
82
+
83
+ for attr, _ in six.iteritems(self.swagger_types):
84
+ value = getattr(self, attr)
85
+ if isinstance(value, list):
86
+ result[attr] = list(map(
87
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
88
+ value
89
+ ))
90
+ elif hasattr(value, "to_dict"):
91
+ result[attr] = value.to_dict()
92
+ elif isinstance(value, dict):
93
+ result[attr] = dict(map(
94
+ lambda item: (item[0], item[1].to_dict())
95
+ if hasattr(item[1], "to_dict") else item,
96
+ value.items()
97
+ ))
98
+ else:
99
+ result[attr] = value
100
+ if issubclass(V1ECRRegistryConfigInput, dict):
101
+ for key, value in self.items():
102
+ result[key] = value
103
+
104
+ return result
105
+
106
+ def to_str(self) -> str:
107
+ """Returns the string representation of the model"""
108
+ return pprint.pformat(self.to_dict())
109
+
110
+ def __repr__(self) -> str:
111
+ """For `print` and `pprint`"""
112
+ return self.to_str()
113
+
114
+ def __eq__(self, other: 'V1ECRRegistryConfigInput') -> bool:
115
+ """Returns true if both objects are equal"""
116
+ if not isinstance(other, V1ECRRegistryConfigInput):
117
+ return False
118
+
119
+ return self.__dict__ == other.__dict__
120
+
121
+ def __ne__(self, other: 'V1ECRRegistryConfigInput') -> bool:
122
+ """Returns true if both objects are not equal"""
123
+ return not self == other
@@ -0,0 +1,201 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ external/v1/auth_service.proto
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: version not set
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+
12
+ NOTE
13
+ ----
14
+ standard swagger-codegen-cli for this python client has been modified
15
+ by custom templates. The purpose of these templates is to include
16
+ typing information in the API and Model code. Please refer to the
17
+ main grid repository for more info
18
+ """
19
+
20
+ import pprint
21
+ import re # noqa: F401
22
+
23
+ from typing import TYPE_CHECKING
24
+
25
+ import six
26
+
27
+ if TYPE_CHECKING:
28
+ from datetime import datetime
29
+ from lightning_sdk.lightning_cloud.openapi.models import *
30
+
31
+ class V1ECRRegistryDetails(object):
32
+ """NOTE: This class is auto generated by the swagger code generator program.
33
+
34
+ Do not edit the class manually.
35
+ """
36
+ """
37
+ Attributes:
38
+ swagger_types (dict): The key is attribute name
39
+ and the value is attribute type.
40
+ attribute_map (dict): The key is attribute name
41
+ and the value is json key in definition.
42
+ """
43
+ swagger_types = {
44
+ 'account_id': 'str',
45
+ 'iam_role_arn': 'str',
46
+ 'region': 'str',
47
+ 'registry_url': 'str'
48
+ }
49
+
50
+ attribute_map = {
51
+ 'account_id': 'accountId',
52
+ 'iam_role_arn': 'iamRoleArn',
53
+ 'region': 'region',
54
+ 'registry_url': 'registryUrl'
55
+ }
56
+
57
+ def __init__(self, account_id: 'str' =None, iam_role_arn: 'str' =None, region: 'str' =None, registry_url: 'str' =None): # noqa: E501
58
+ """V1ECRRegistryDetails - a model defined in Swagger""" # noqa: E501
59
+ self._account_id = None
60
+ self._iam_role_arn = None
61
+ self._region = None
62
+ self._registry_url = None
63
+ self.discriminator = None
64
+ if account_id is not None:
65
+ self.account_id = account_id
66
+ if iam_role_arn is not None:
67
+ self.iam_role_arn = iam_role_arn
68
+ if region is not None:
69
+ self.region = region
70
+ if registry_url is not None:
71
+ self.registry_url = registry_url
72
+
73
+ @property
74
+ def account_id(self) -> 'str':
75
+ """Gets the account_id of this V1ECRRegistryDetails. # noqa: E501
76
+
77
+
78
+ :return: The account_id of this V1ECRRegistryDetails. # noqa: E501
79
+ :rtype: str
80
+ """
81
+ return self._account_id
82
+
83
+ @account_id.setter
84
+ def account_id(self, account_id: 'str'):
85
+ """Sets the account_id of this V1ECRRegistryDetails.
86
+
87
+
88
+ :param account_id: The account_id of this V1ECRRegistryDetails. # noqa: E501
89
+ :type: str
90
+ """
91
+
92
+ self._account_id = account_id
93
+
94
+ @property
95
+ def iam_role_arn(self) -> 'str':
96
+ """Gets the iam_role_arn of this V1ECRRegistryDetails. # noqa: E501
97
+
98
+
99
+ :return: The iam_role_arn of this V1ECRRegistryDetails. # noqa: E501
100
+ :rtype: str
101
+ """
102
+ return self._iam_role_arn
103
+
104
+ @iam_role_arn.setter
105
+ def iam_role_arn(self, iam_role_arn: 'str'):
106
+ """Sets the iam_role_arn of this V1ECRRegistryDetails.
107
+
108
+
109
+ :param iam_role_arn: The iam_role_arn of this V1ECRRegistryDetails. # noqa: E501
110
+ :type: str
111
+ """
112
+
113
+ self._iam_role_arn = iam_role_arn
114
+
115
+ @property
116
+ def region(self) -> 'str':
117
+ """Gets the region of this V1ECRRegistryDetails. # noqa: E501
118
+
119
+
120
+ :return: The region of this V1ECRRegistryDetails. # noqa: E501
121
+ :rtype: str
122
+ """
123
+ return self._region
124
+
125
+ @region.setter
126
+ def region(self, region: 'str'):
127
+ """Sets the region of this V1ECRRegistryDetails.
128
+
129
+
130
+ :param region: The region of this V1ECRRegistryDetails. # noqa: E501
131
+ :type: str
132
+ """
133
+
134
+ self._region = region
135
+
136
+ @property
137
+ def registry_url(self) -> 'str':
138
+ """Gets the registry_url of this V1ECRRegistryDetails. # noqa: E501
139
+
140
+
141
+ :return: The registry_url of this V1ECRRegistryDetails. # noqa: E501
142
+ :rtype: str
143
+ """
144
+ return self._registry_url
145
+
146
+ @registry_url.setter
147
+ def registry_url(self, registry_url: 'str'):
148
+ """Sets the registry_url of this V1ECRRegistryDetails.
149
+
150
+
151
+ :param registry_url: The registry_url of this V1ECRRegistryDetails. # noqa: E501
152
+ :type: str
153
+ """
154
+
155
+ self._registry_url = registry_url
156
+
157
+ def to_dict(self) -> dict:
158
+ """Returns the model properties as a dict"""
159
+ result = {}
160
+
161
+ for attr, _ in six.iteritems(self.swagger_types):
162
+ value = getattr(self, attr)
163
+ if isinstance(value, list):
164
+ result[attr] = list(map(
165
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
166
+ value
167
+ ))
168
+ elif hasattr(value, "to_dict"):
169
+ result[attr] = value.to_dict()
170
+ elif isinstance(value, dict):
171
+ result[attr] = dict(map(
172
+ lambda item: (item[0], item[1].to_dict())
173
+ if hasattr(item[1], "to_dict") else item,
174
+ value.items()
175
+ ))
176
+ else:
177
+ result[attr] = value
178
+ if issubclass(V1ECRRegistryDetails, dict):
179
+ for key, value in self.items():
180
+ result[key] = value
181
+
182
+ return result
183
+
184
+ def to_str(self) -> str:
185
+ """Returns the string representation of the model"""
186
+ return pprint.pformat(self.to_dict())
187
+
188
+ def __repr__(self) -> str:
189
+ """For `print` and `pprint`"""
190
+ return self.to_str()
191
+
192
+ def __eq__(self, other: 'V1ECRRegistryDetails') -> bool:
193
+ """Returns true if both objects are equal"""
194
+ if not isinstance(other, V1ECRRegistryDetails):
195
+ return False
196
+
197
+ return self.__dict__ == other.__dict__
198
+
199
+ def __ne__(self, other: 'V1ECRRegistryDetails') -> bool:
200
+ """Returns true if both objects are not equal"""
201
+ return not self == other
@@ -42,23 +42,28 @@ class V1GetArtifactsPageResponse(object):
42
42
  """
43
43
  swagger_types = {
44
44
  'artifacts': 'list[V1Artifact]',
45
- 'count': 'str'
45
+ 'count': 'str',
46
+ 'folder_index': 'V1GetFolderIndexResponse'
46
47
  }
47
48
 
48
49
  attribute_map = {
49
50
  'artifacts': 'artifacts',
50
- 'count': 'count'
51
+ 'count': 'count',
52
+ 'folder_index': 'folderIndex'
51
53
  }
52
54
 
53
- def __init__(self, artifacts: 'list[V1Artifact]' =None, count: 'str' =None): # noqa: E501
55
+ def __init__(self, artifacts: 'list[V1Artifact]' =None, count: 'str' =None, folder_index: 'V1GetFolderIndexResponse' =None): # noqa: E501
54
56
  """V1GetArtifactsPageResponse - a model defined in Swagger""" # noqa: E501
55
57
  self._artifacts = None
56
58
  self._count = None
59
+ self._folder_index = None
57
60
  self.discriminator = None
58
61
  if artifacts is not None:
59
62
  self.artifacts = artifacts
60
63
  if count is not None:
61
64
  self.count = count
65
+ if folder_index is not None:
66
+ self.folder_index = folder_index
62
67
 
63
68
  @property
64
69
  def artifacts(self) -> 'list[V1Artifact]':
@@ -102,6 +107,27 @@ class V1GetArtifactsPageResponse(object):
102
107
 
103
108
  self._count = count
104
109
 
110
+ @property
111
+ def folder_index(self) -> 'V1GetFolderIndexResponse':
112
+ """Gets the folder_index of this V1GetArtifactsPageResponse. # noqa: E501
113
+
114
+
115
+ :return: The folder_index of this V1GetArtifactsPageResponse. # noqa: E501
116
+ :rtype: V1GetFolderIndexResponse
117
+ """
118
+ return self._folder_index
119
+
120
+ @folder_index.setter
121
+ def folder_index(self, folder_index: 'V1GetFolderIndexResponse'):
122
+ """Sets the folder_index of this V1GetArtifactsPageResponse.
123
+
124
+
125
+ :param folder_index: The folder_index of this V1GetArtifactsPageResponse. # noqa: E501
126
+ :type: V1GetFolderIndexResponse
127
+ """
128
+
129
+ self._folder_index = folder_index
130
+
105
131
  def to_dict(self) -> dict:
106
132
  """Returns the model properties as a dict"""
107
133
  result = {}