assisted-service-client 2.30.0.post49__py3-none-any.whl → 2.37.0.post25__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 (32) hide show
  1. assisted_service_client/__init__.py +4 -0
  2. assisted_service_client/api/events_api.py +1 -1
  3. assisted_service_client/api/installer_api.py +3 -3
  4. assisted_service_client/api/versions_api.py +9 -1
  5. assisted_service_client/configuration.py +7 -0
  6. assisted_service_client/models/__init__.py +4 -0
  7. assisted_service_client/models/boot.py +29 -3
  8. assisted_service_client/models/cluster.py +57 -3
  9. assisted_service_client/models/cluster_create_params.py +59 -5
  10. assisted_service_client/models/cluster_validation_id.py +9 -0
  11. assisted_service_client/models/connectivity_remote_host.py +29 -3
  12. assisted_service_client/models/disk.py +55 -3
  13. assisted_service_client/models/domain_resolution_response_resolutions.py +31 -3
  14. assisted_service_client/models/feature_support_level_id.py +11 -0
  15. assisted_service_client/models/finalizing_stage.py +1 -0
  16. assisted_service_client/models/host_validation_id.py +11 -0
  17. assisted_service_client/models/infra_env_update_params.py +31 -3
  18. assisted_service_client/models/install_cmd_request.py +31 -3
  19. assisted_service_client/models/iscsi.py +117 -0
  20. assisted_service_client/models/load_balancer.py +123 -0
  21. assisted_service_client/models/manifest.py +37 -3
  22. assisted_service_client/models/mtu_report.py +167 -0
  23. assisted_service_client/models/secure_boot_state.py +95 -0
  24. assisted_service_client/models/v2_cluster_update_params.py +57 -3
  25. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/METADATA +15 -4
  26. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/RECORD +32 -24
  27. test/test_iscsi.py +40 -0
  28. test/test_load_balancer.py +40 -0
  29. test/test_mtu_report.py +40 -0
  30. test/test_secure_boot_state.py +40 -0
  31. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/WHEEL +0 -0
  32. {assisted_service_client-2.30.0.post49.dist-info → assisted_service_client-2.37.0.post25.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,167 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+
20
+ class MtuReport(object):
21
+ """NOTE: This class is auto generated by the swagger code generator program.
22
+
23
+ Do not edit the class manually.
24
+ """
25
+
26
+ """
27
+ Attributes:
28
+ swagger_types (dict): The key is attribute name
29
+ and the value is attribute type.
30
+ attribute_map (dict): The key is attribute name
31
+ and the value is json key in definition.
32
+ """
33
+ swagger_types = {
34
+ 'outgoing_nic': 'str',
35
+ 'remote_ip_address': 'str',
36
+ 'mtu_successful': 'bool'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'outgoing_nic': 'outgoing_nic',
41
+ 'remote_ip_address': 'remote_ip_address',
42
+ 'mtu_successful': 'mtu_successful'
43
+ }
44
+
45
+ def __init__(self, outgoing_nic=None, remote_ip_address=None, mtu_successful=None): # noqa: E501
46
+ """MtuReport - a model defined in Swagger""" # noqa: E501
47
+
48
+ self._outgoing_nic = None
49
+ self._remote_ip_address = None
50
+ self._mtu_successful = None
51
+ self.discriminator = None
52
+
53
+ if outgoing_nic is not None:
54
+ self.outgoing_nic = outgoing_nic
55
+ if remote_ip_address is not None:
56
+ self.remote_ip_address = remote_ip_address
57
+ if mtu_successful is not None:
58
+ self.mtu_successful = mtu_successful
59
+
60
+ @property
61
+ def outgoing_nic(self):
62
+ """Gets the outgoing_nic of this MtuReport. # noqa: E501
63
+
64
+
65
+ :return: The outgoing_nic of this MtuReport. # noqa: E501
66
+ :rtype: str
67
+ """
68
+ return self._outgoing_nic
69
+
70
+ @outgoing_nic.setter
71
+ def outgoing_nic(self, outgoing_nic):
72
+ """Sets the outgoing_nic of this MtuReport.
73
+
74
+
75
+ :param outgoing_nic: The outgoing_nic of this MtuReport. # noqa: E501
76
+ :type: str
77
+ """
78
+
79
+ self._outgoing_nic = outgoing_nic
80
+
81
+ @property
82
+ def remote_ip_address(self):
83
+ """Gets the remote_ip_address of this MtuReport. # noqa: E501
84
+
85
+
86
+ :return: The remote_ip_address of this MtuReport. # noqa: E501
87
+ :rtype: str
88
+ """
89
+ return self._remote_ip_address
90
+
91
+ @remote_ip_address.setter
92
+ def remote_ip_address(self, remote_ip_address):
93
+ """Sets the remote_ip_address of this MtuReport.
94
+
95
+
96
+ :param remote_ip_address: The remote_ip_address of this MtuReport. # noqa: E501
97
+ :type: str
98
+ """
99
+
100
+ self._remote_ip_address = remote_ip_address
101
+
102
+ @property
103
+ def mtu_successful(self):
104
+ """Gets the mtu_successful of this MtuReport. # noqa: E501
105
+
106
+
107
+ :return: The mtu_successful of this MtuReport. # noqa: E501
108
+ :rtype: bool
109
+ """
110
+ return self._mtu_successful
111
+
112
+ @mtu_successful.setter
113
+ def mtu_successful(self, mtu_successful):
114
+ """Sets the mtu_successful of this MtuReport.
115
+
116
+
117
+ :param mtu_successful: The mtu_successful of this MtuReport. # noqa: E501
118
+ :type: bool
119
+ """
120
+
121
+ self._mtu_successful = mtu_successful
122
+
123
+ def to_dict(self):
124
+ """Returns the model properties as a dict"""
125
+ result = {}
126
+
127
+ for attr, _ in six.iteritems(self.swagger_types):
128
+ value = getattr(self, attr)
129
+ if isinstance(value, list):
130
+ result[attr] = list(map(
131
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
132
+ value
133
+ ))
134
+ elif hasattr(value, "to_dict"):
135
+ result[attr] = value.to_dict()
136
+ elif isinstance(value, dict):
137
+ result[attr] = dict(map(
138
+ lambda item: (item[0], item[1].to_dict())
139
+ if hasattr(item[1], "to_dict") else item,
140
+ value.items()
141
+ ))
142
+ else:
143
+ result[attr] = value
144
+ if issubclass(MtuReport, dict):
145
+ for key, value in self.items():
146
+ result[key] = value
147
+
148
+ return result
149
+
150
+ def to_str(self):
151
+ """Returns the string representation of the model"""
152
+ return pprint.pformat(self.to_dict())
153
+
154
+ def __repr__(self):
155
+ """For `print` and `pprint`"""
156
+ return self.to_str()
157
+
158
+ def __eq__(self, other):
159
+ """Returns true if both objects are equal"""
160
+ if not isinstance(other, MtuReport):
161
+ return False
162
+
163
+ return self.__dict__ == other.__dict__
164
+
165
+ def __ne__(self, other):
166
+ """Returns true if both objects are not equal"""
167
+ return not self == other
@@ -0,0 +1,95 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ import pprint
15
+ import re # noqa: F401
16
+
17
+ import six
18
+
19
+
20
+ class SecureBootState(object):
21
+ """NOTE: This class is auto generated by the swagger code generator program.
22
+
23
+ Do not edit the class manually.
24
+ """
25
+
26
+ """
27
+ allowed enum values
28
+ """
29
+ UNKNOWN = "Unknown"
30
+ NOTSUPPORTED = "NotSupported"
31
+ ENABLED = "Enabled"
32
+ DISABLED = "Disabled"
33
+
34
+ """
35
+ Attributes:
36
+ swagger_types (dict): The key is attribute name
37
+ and the value is attribute type.
38
+ attribute_map (dict): The key is attribute name
39
+ and the value is json key in definition.
40
+ """
41
+ swagger_types = {
42
+ }
43
+
44
+ attribute_map = {
45
+ }
46
+
47
+ def __init__(self): # noqa: E501
48
+ """SecureBootState - a model defined in Swagger""" # noqa: E501
49
+ self.discriminator = None
50
+
51
+ def to_dict(self):
52
+ """Returns the model properties as a dict"""
53
+ result = {}
54
+
55
+ for attr, _ in six.iteritems(self.swagger_types):
56
+ value = getattr(self, attr)
57
+ if isinstance(value, list):
58
+ result[attr] = list(map(
59
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
60
+ value
61
+ ))
62
+ elif hasattr(value, "to_dict"):
63
+ result[attr] = value.to_dict()
64
+ elif isinstance(value, dict):
65
+ result[attr] = dict(map(
66
+ lambda item: (item[0], item[1].to_dict())
67
+ if hasattr(item[1], "to_dict") else item,
68
+ value.items()
69
+ ))
70
+ else:
71
+ result[attr] = value
72
+ if issubclass(SecureBootState, dict):
73
+ for key, value in self.items():
74
+ result[key] = value
75
+
76
+ return result
77
+
78
+ def to_str(self):
79
+ """Returns the string representation of the model"""
80
+ return pprint.pformat(self.to_dict())
81
+
82
+ def __repr__(self):
83
+ """For `print` and `pprint`"""
84
+ return self.to_str()
85
+
86
+ def __eq__(self, other):
87
+ """Returns true if both objects are equal"""
88
+ if not isinstance(other, SecureBootState):
89
+ return False
90
+
91
+ return self.__dict__ == other.__dict__
92
+
93
+ def __ne__(self, other):
94
+ """Returns true if both objects are not equal"""
95
+ return not self == other
@@ -58,7 +58,9 @@ class V2ClusterUpdateParams(object):
58
58
  'machine_networks': 'list[MachineNetwork]',
59
59
  'disk_encryption': 'DiskEncryption',
60
60
  'ignition_endpoint': 'IgnitionEndpoint',
61
- 'tags': 'str'
61
+ 'tags': 'str',
62
+ 'control_plane_count': 'int',
63
+ 'load_balancer': 'LoadBalancer'
62
64
  }
63
65
 
64
66
  attribute_map = {
@@ -89,10 +91,12 @@ class V2ClusterUpdateParams(object):
89
91
  'machine_networks': 'machine_networks',
90
92
  'disk_encryption': 'disk_encryption',
91
93
  'ignition_endpoint': 'ignition_endpoint',
92
- 'tags': 'tags'
94
+ 'tags': 'tags',
95
+ 'control_plane_count': 'control_plane_count',
96
+ 'load_balancer': 'load_balancer'
93
97
  }
94
98
 
95
- def __init__(self, name=None, base_dns_domain=None, cluster_network_cidr=None, platform=None, cluster_network_host_prefix=None, service_network_cidr=None, api_vips=None, ingress_vips=None, api_vip_dns_name=None, machine_network_cidr=None, pull_secret=None, ssh_public_key=None, vip_dhcp_allocation=None, http_proxy=None, https_proxy=None, no_proxy=None, user_managed_networking=None, additional_ntp_source=None, olm_operators=None, hyperthreading=None, network_type=None, schedulable_masters=False, cluster_networks=None, service_networks=None, machine_networks=None, disk_encryption=None, ignition_endpoint=None, tags=None): # noqa: E501
99
+ def __init__(self, name=None, base_dns_domain=None, cluster_network_cidr=None, platform=None, cluster_network_host_prefix=None, service_network_cidr=None, api_vips=None, ingress_vips=None, api_vip_dns_name=None, machine_network_cidr=None, pull_secret=None, ssh_public_key=None, vip_dhcp_allocation=None, http_proxy=None, https_proxy=None, no_proxy=None, user_managed_networking=None, additional_ntp_source=None, olm_operators=None, hyperthreading=None, network_type=None, schedulable_masters=False, cluster_networks=None, service_networks=None, machine_networks=None, disk_encryption=None, ignition_endpoint=None, tags=None, control_plane_count=None, load_balancer=None): # noqa: E501
96
100
  """V2ClusterUpdateParams - a model defined in Swagger""" # noqa: E501
97
101
 
98
102
  self._name = None
@@ -123,6 +127,8 @@ class V2ClusterUpdateParams(object):
123
127
  self._disk_encryption = None
124
128
  self._ignition_endpoint = None
125
129
  self._tags = None
130
+ self._control_plane_count = None
131
+ self._load_balancer = None
126
132
  self.discriminator = None
127
133
 
128
134
  if name is not None:
@@ -181,6 +187,10 @@ class V2ClusterUpdateParams(object):
181
187
  self.ignition_endpoint = ignition_endpoint
182
188
  if tags is not None:
183
189
  self.tags = tags
190
+ if control_plane_count is not None:
191
+ self.control_plane_count = control_plane_count
192
+ if load_balancer is not None:
193
+ self.load_balancer = load_balancer
184
194
 
185
195
  @property
186
196
  def name(self):
@@ -844,6 +854,50 @@ class V2ClusterUpdateParams(object):
844
854
 
845
855
  self._tags = tags
846
856
 
857
+ @property
858
+ def control_plane_count(self):
859
+ """Gets the control_plane_count of this V2ClusterUpdateParams. # noqa: E501
860
+
861
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
862
+
863
+ :return: The control_plane_count of this V2ClusterUpdateParams. # noqa: E501
864
+ :rtype: int
865
+ """
866
+ return self._control_plane_count
867
+
868
+ @control_plane_count.setter
869
+ def control_plane_count(self, control_plane_count):
870
+ """Sets the control_plane_count of this V2ClusterUpdateParams.
871
+
872
+ Specifies the required number of control plane nodes that should be part of the cluster. # noqa: E501
873
+
874
+ :param control_plane_count: The control_plane_count of this V2ClusterUpdateParams. # noqa: E501
875
+ :type: int
876
+ """
877
+
878
+ self._control_plane_count = control_plane_count
879
+
880
+ @property
881
+ def load_balancer(self):
882
+ """Gets the load_balancer of this V2ClusterUpdateParams. # noqa: E501
883
+
884
+
885
+ :return: The load_balancer of this V2ClusterUpdateParams. # noqa: E501
886
+ :rtype: LoadBalancer
887
+ """
888
+ return self._load_balancer
889
+
890
+ @load_balancer.setter
891
+ def load_balancer(self, load_balancer):
892
+ """Sets the load_balancer of this V2ClusterUpdateParams.
893
+
894
+
895
+ :param load_balancer: The load_balancer of this V2ClusterUpdateParams. # noqa: E501
896
+ :type: LoadBalancer
897
+ """
898
+
899
+ self._load_balancer = load_balancer
900
+
847
901
  def to_dict(self):
848
902
  """Returns the model properties as a dict"""
849
903
  result = {}
@@ -1,13 +1,11 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: assisted-service-client
3
- Version: 2.30.0.post49
3
+ Version: 2.37.0.post25
4
4
  Summary: AssistedInstall
5
5
  Home-page: https://github.com/openshift/assisted-service
6
6
  Author: RedHat
7
7
  Author-email: UNKNOWN
8
- License: UNKNOWN
9
8
  Keywords: Swagger,AssistedInstall
10
- Platform: UNKNOWN
11
9
  Classifier: Development Status :: 3 - Alpha
12
10
  Classifier: Intended Audience :: Developers
13
11
  Classifier: Intended Audience :: Information Technology
@@ -88,6 +86,11 @@ configuration = assisted_service_client.Configuration()
88
86
  configuration.api_key['Authorization'] = 'YOUR_API_KEY'
89
87
  # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
90
88
  # configuration.api_key_prefix['Authorization'] = 'Bearer'
89
+ # Configure API key authorization: watcherAuth
90
+ configuration = assisted_service_client.Configuration()
91
+ configuration.api_key['Watcher-Authorization'] = 'YOUR_API_KEY'
92
+ # Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
93
+ # configuration.api_key_prefix['Watcher-Authorization'] = 'Bearer'
91
94
 
92
95
  # create an instance of the API class
93
96
  api_instance = assisted_service_client.EventsApi(assisted_service_client.ApiClient(configuration))
@@ -299,6 +302,7 @@ Class | Method | HTTP request | Description
299
302
  - [Inventory](docs/Inventory.md)
300
303
  - [IoPerf](docs/IoPerf.md)
301
304
  - [Ip](docs/Ip.md)
305
+ - [Iscsi](docs/Iscsi.md)
302
306
  - [KernelArgument](docs/KernelArgument.md)
303
307
  - [KernelArguments](docs/KernelArguments.md)
304
308
  - [L2Connectivity](docs/L2Connectivity.md)
@@ -307,6 +311,7 @@ Class | Method | HTTP request | Description
307
311
  - [ListManagedDomains](docs/ListManagedDomains.md)
308
312
  - [ListManifests](docs/ListManifests.md)
309
313
  - [ListVersions](docs/ListVersions.md)
314
+ - [LoadBalancer](docs/LoadBalancer.md)
310
315
  - [LogsGatherCmdRequest](docs/LogsGatherCmdRequest.md)
311
316
  - [LogsProgressParams](docs/LogsProgressParams.md)
312
317
  - [LogsState](docs/LogsState.md)
@@ -320,6 +325,7 @@ Class | Method | HTTP request | Description
320
325
  - [MemoryMethod](docs/MemoryMethod.md)
321
326
  - [MonitoredOperator](docs/MonitoredOperator.md)
322
327
  - [MonitoredOperatorsList](docs/MonitoredOperatorsList.md)
328
+ - [MtuReport](docs/MtuReport.md)
323
329
  - [NextStepCmdRequest](docs/NextStepCmdRequest.md)
324
330
  - [NodeLabelParams](docs/NodeLabelParams.md)
325
331
  - [NtpSource](docs/NtpSource.md)
@@ -350,6 +356,7 @@ Class | Method | HTTP request | Description
350
356
  - [ReleaseSource](docs/ReleaseSource.md)
351
357
  - [ReleaseSources](docs/ReleaseSources.md)
352
358
  - [Route](docs/Route.md)
359
+ - [SecureBootState](docs/SecureBootState.md)
353
360
  - [ServiceNetwork](docs/ServiceNetwork.md)
354
361
  - [SourceState](docs/SourceState.md)
355
362
  - [Step](docs/Step.md)
@@ -415,10 +422,14 @@ Class | Method | HTTP request | Description
415
422
  - **API key parameter name**: Authorization
416
423
  - **Location**: HTTP header
417
424
 
425
+ ## watcherAuth
418
426
 
419
- ## Author
427
+ - **Type**: API key
428
+ - **API key parameter name**: Watcher-Authorization
429
+ - **Location**: HTTP header
420
430
 
421
431
 
432
+ ## Author
422
433
 
423
434
 
424
435
 
@@ -1,24 +1,24 @@
1
- assisted_service_client/__init__.py,sha256=YPF5HZls2mMBRO6_aYPtl-FjcshGcbPuiiwNRfdsjFc,15039
1
+ assisted_service_client/__init__.py,sha256=d71dPod2weeu01qTNpOiqKjAustg6HxKvicrQ8F8wY0,15305
2
2
  assisted_service_client/api_client.py,sha256=ypPMDOaIc8GI-xm-g5PrNLYlakkK5K3qcJBjJP5GlbM,24986
3
- assisted_service_client/configuration.py,sha256=cnW5aIc2HR6HqBv7LXhMfoJTdfPhBed_97UxKDzE8Ro,9078
3
+ assisted_service_client/configuration.py,sha256=wLYxtRlTlR9o-y24tqlDSgfjrh9YdiyWaM8-QxFOyOY,9352
4
4
  assisted_service_client/rest.py,sha256=fLcY2m9yxpqJW4agxf3yCJyiz486qPLgqw8CbCuftZw,13123
5
5
  assisted_service_client/api/__init__.py,sha256=PblMXYK6UKW4rSdDx3F7SA-M1xpjo4rzTBZOx0_cotA,492
6
- assisted_service_client/api/events_api.py,sha256=iqXCFQh-6V0kDnXI6w07uoy6ujuleAj57JphTACwcuY,11483
7
- assisted_service_client/api/installer_api.py,sha256=O4W5uLz2xoHnr4WdkUVvz2SUQkjNFsQDvXauEfq2A-Q,299863
6
+ assisted_service_client/api/events_api.py,sha256=ViI7Amn3-o8PcVbAg2iGan0nFrk6oJ0uuXGXA6nMATY,11498
7
+ assisted_service_client/api/installer_api.py,sha256=TzuJkgnIyr4X4Qbh1A0xis1_YaGQmo7Y_G3RapsS4TY,299908
8
8
  assisted_service_client/api/managed_domains_api.py,sha256=rTPj3IVxrECtMc_-acZ14u6WydVqHVw6VaM7I8Zvu3g,4087
9
9
  assisted_service_client/api/manifests_api.py,sha256=aLktOGwkOa3siGnJOYuGO0mH3TlES-fBZvilNvseGO0,25146
10
10
  assisted_service_client/api/operators_api.py,sha256=d-QpJNPGcrAKlE2zG7K160zWrQ7_Wig4osid_92zSTQ,17473
11
- assisted_service_client/api/versions_api.py,sha256=3DDWSGJCHSOrcB9V2-ZaWNfrcbc-SBaWtKBt_UIcD1I,11006
12
- assisted_service_client/models/__init__.py,sha256=aTAQza7vnbn-zJKV-6_pMuj1F6T25Vk58btXN91zUJI,14463
11
+ assisted_service_client/api/versions_api.py,sha256=0eomTHtqgrHnxBxNhL_rZ43K3O3fjvpy0nMRxt2idEg,11674
12
+ assisted_service_client/models/__init__.py,sha256=y33H8gb1ln4ZH1va6S3GdTQq6H3wbucHiVJEVqS9Wr4,14729
13
13
  assisted_service_client/models/api_vip.py,sha256=gn7i8OtCG3uzm-Ymku55LMWWOn9sujJ-tJ-eZ2VSLkk,4590
14
14
  assisted_service_client/models/api_vip_connectivity_additional_request_header.py,sha256=pxx8s7nM0qoKarVqYMF0qyY4R4Tz3O6eOfPnji55lRY,4138
15
15
  assisted_service_client/models/api_vip_connectivity_request.py,sha256=juCr4-I9tFkoU3f3t_YrXPJfiAgWAZ03zStfW-BZ6OU,7760
16
16
  assisted_service_client/models/api_vip_connectivity_response.py,sha256=g_lug17OFCNbmB81u5xz4TL2XMVLqZ3cpFj9VOP6AUk,6425
17
17
  assisted_service_client/models/architecture_support_level_id.py,sha256=hlG08k4mpxplccAeBy2aiF41lp7zcTUyxPP98x2mXUg,2711
18
18
  assisted_service_client/models/bind_host_params.py,sha256=R6AntLnkrOE_uVaRECc_gx1QPfUmPsVNI06LoDQJONI,3170
19
- assisted_service_client/models/boot.py,sha256=J_7657HQPy3sYGKHAmvAJ_fn6piE-cv3RjasFY5uXi4,4571
20
- assisted_service_client/models/cluster.py,sha256=4AUWsJFlTcB3tMqfh_F8km1xkhjedQz53IGffoX_5zQ,74773
21
- assisted_service_client/models/cluster_create_params.py,sha256=QwwNUOj2o6X9QbdEPX6ZNQy-zkuyZ373pRvn2Qw3o20,37556
19
+ assisted_service_client/models/boot.py,sha256=HaFURZ2Zcn14eHfojQVuCT7W6jmVly_hgCpgoeY-Pu8,5412
20
+ assisted_service_client/models/cluster.py,sha256=3qQ8JGiYPVU_tlaQHsU4vokckaNzyoQfjIkZch1qrcM,76616
21
+ assisted_service_client/models/cluster_create_params.py,sha256=WRmRjCe4Uz-RlAiiTvueCLx_I3pajDXVpwRcHNu8zhQ,39605
22
22
  assisted_service_client/models/cluster_default_config.py,sha256=MXhboRxA2o4-lHR9baQCiehfksCV4XfsabSMqFfSv3U,12993
23
23
  assisted_service_client/models/cluster_finalizing_progress.py,sha256=lTBxx_NSDubtAg8aSXbxwWhW2XxPYJZ0ztUmozfEJhA,3325
24
24
  assisted_service_client/models/cluster_host_requirements.py,sha256=WA_ZAdFbM4jnENgyc1Hbwc41g651D8kVOpHFRZkCtoo,5883
@@ -27,12 +27,12 @@ assisted_service_client/models/cluster_host_requirements_list.py,sha256=deoEudr4
27
27
  assisted_service_client/models/cluster_list.py,sha256=Eu55f_A7xr1GrciKtolSZP_HFTauwHRzZKKBbELaVcw,2364
28
28
  assisted_service_client/models/cluster_network.py,sha256=lOjZm91Z6i0bffz1ShJExDaOeBLeVbDphRYdXtciiNE,5495
29
29
  assisted_service_client/models/cluster_progress_info.py,sha256=At_2x8HaakTw9RNtOwsNL4VZgmrUjS9xFu-Cko5q3e8,9765
30
- assisted_service_client/models/cluster_validation_id.py,sha256=ZnioiDhyvVgXckZDhYbv0SGzm3VyYg4MHGnofMCcPjs,3775
30
+ assisted_service_client/models/cluster_validation_id.py,sha256=dOxocOD8CfsMxoix22iy_MmlEMokw_hdwlr29_Mrm8s,4457
31
31
  assisted_service_client/models/completion_params.py,sha256=1kQDePG_SyIOH2WjubnELSZMQvEifxZu_3PQeH6K5Gg,4647
32
32
  assisted_service_client/models/connectivity_check_host.py,sha256=tUBCx9KuiO1z17ifrhqb_74oCnSUWjbZqnZpSsAgQTM,3759
33
33
  assisted_service_client/models/connectivity_check_nic.py,sha256=5CYBH94K1_i8nurc8XxHQOndr4Y4W5SpEjgfkqYjU4I,4385
34
34
  assisted_service_client/models/connectivity_check_params.py,sha256=w9n5OuFhuBJAtORpwWc_Mi48fkMFkhpNlunweUv7j8A,2412
35
- assisted_service_client/models/connectivity_remote_host.py,sha256=LeShNh1bJlXRcYJf91A4EXWxvbzJd6LAMfJhS0Sri2g,4861
35
+ assisted_service_client/models/connectivity_remote_host.py,sha256=Q-CrY6Tg55VinzXzrvIQEQObbyZaMju5UJtUQ9fu6t8,5634
36
36
  assisted_service_client/models/connectivity_report.py,sha256=Igr2vL8dRUwgtUl8Y3PjIT4_mTYETOFqDSrB8X6o2B4,3228
37
37
  assisted_service_client/models/container_image_availability.py,sha256=VWgx6tW9JMt7hCSGtzXICwnfwMeTBGZWkQO11sLaPF8,6488
38
38
  assisted_service_client/models/container_image_availability_request.py,sha256=oLyoYq_E7W-ZhrrGW451J435k5tqkCOmaWkwFHnw3p0,4275
@@ -43,7 +43,7 @@ assisted_service_client/models/create_manifest_params.py,sha256=tU-zvinJWxQerhQE
43
43
  assisted_service_client/models/credentials.py,sha256=OpttbTivzaMKt1VjMkDURdWN60MsIkZhQLUhK4mQ_u4,4383
44
44
  assisted_service_client/models/dhcp_allocation_request.py,sha256=VxHpM8MXlQrXLSTZSYZXwgMI0d81vhIAZaz0pLUx-dg,7359
45
45
  assisted_service_client/models/dhcp_allocation_response.py,sha256=FC54EnUen0y6wkDtvFUA62oHKHcoX3cEfft2i54NA44,6700
46
- assisted_service_client/models/disk.py,sha256=i_zYmYFtAsDtJVD8ZxyKubW2lV0m8MRK7ArnIrhA3K0,15859
46
+ assisted_service_client/models/disk.py,sha256=8uPYKO3bE8TdnK_PyjkvFIDWd06MnRFnQqG9HvJBVsg,17194
47
47
  assisted_service_client/models/disk_config_params.py,sha256=9Uefw5UTnF5h-psWu_CR0bz5ZJWqzAofyIQ8ahf0JAQ,3626
48
48
  assisted_service_client/models/disk_encryption.py,sha256=p0fnBJcLHPNcBg_Kj_YXucgns1Osz3Mv0xdTrdBxHxg,5493
49
49
  assisted_service_client/models/disk_info.py,sha256=hm7ys9-b1jk3yaNR3zagO7Xo6uhcsH4SdIVk36mBsfw,4133
@@ -55,14 +55,14 @@ assisted_service_client/models/disk_speed_check_request.py,sha256=axjlTYvPngpbhL
55
55
  assisted_service_client/models/disk_speed_check_response.py,sha256=QyM2BkJkUWZheoTOriNbyhlr0631Q4c3rjaY0U3hdjA,4124
56
56
  assisted_service_client/models/domain_resolution_request.py,sha256=QgM9XAuq29WmzBc3i7AbcinN5YhQXQqCp0257c0F05M,3206
57
57
  assisted_service_client/models/domain_resolution_response.py,sha256=t6i7k_8V4IoOQHzZ4ks1_4OW6iOtl4Q3-SsMkPh44RA,3385
58
- assisted_service_client/models/domain_resolution_response_resolutions.py,sha256=-_83bCmPI1UjrHfrak_KnDrRas_YuB3OyGTkT496Npk,5515
58
+ assisted_service_client/models/domain_resolution_response_resolutions.py,sha256=wBWeYAlR1IsuFfUp4BA95oh-E7EufGvcMhuEUOEro2U,6406
59
59
  assisted_service_client/models/download_boot_artifacts_request.py,sha256=5_F0wRwFE--BMY02fEGH6jXc3MfH5xMExyYFNUUhOHs,6639
60
60
  assisted_service_client/models/drive_type.py,sha256=OAGyxvI5ZWax3pS8bvcXxddNjyEXXt3bOyDZU8uP_Wc,2668
61
61
  assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr14JAil1D0E,7152
62
62
  assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH2f2RK-qHUc,10372
63
63
  assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
64
- assisted_service_client/models/feature_support_level_id.py,sha256=8urxnim2qlErla72Kd7mzXrwtKClvVEJSdH98B478n4,3379
65
- assisted_service_client/models/finalizing_stage.py,sha256=XizkuvErQd2dUEMsBoumxx2a979YgAJ1fjntC9_5ec0,2769
64
+ assisted_service_client/models/feature_support_level_id.py,sha256=Cj3efw0yV8TgOl7BTAypUkfcaOJYQrVO1i6ouQuNvP8,3777
65
+ assisted_service_client/models/finalizing_stage.py,sha256=JmPnqcnxm1VB3enMG1iMZR9NFjFEj6TZF6wVwgVgNlA,2849
66
66
  assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
67
67
  assisted_service_client/models/free_addresses_request.py,sha256=6EjcZ6eCz2tGdz6axoRHwILSNz0-7_A6-dIjmxeFe1k,2400
68
68
  assisted_service_client/models/free_network_addresses.py,sha256=4qbfXsYN_X6t0hJiF4JFhHbGEg8SEe-0OO5vn3cn8os,3896
@@ -84,7 +84,7 @@ assisted_service_client/models/host_static_network_config.py,sha256=sKEeJ5w_O9XS
84
84
  assisted_service_client/models/host_type_hardware_requirements.py,sha256=6246yH8N_XNG0_QpMGAQvxK4mHQTBHD_ESjWQMYLVUE,4507
85
85
  assisted_service_client/models/host_type_hardware_requirements_wrapper.py,sha256=zAV2uaPeFuPfvvTYWnELgMxoTzf-NQ1Qgb-z64BhajE,4256
86
86
  assisted_service_client/models/host_update_params.py,sha256=IZcocNSd2Izv6ZnplU8oSnCoFJVlD74aBN-0V0XUABk,10806
87
- assisted_service_client/models/host_validation_id.py,sha256=GAGxAIkm014eEhOSHWT7uRUUVZjPEZ2uw7rBHOiTVrE,4883
87
+ assisted_service_client/models/host_validation_id.py,sha256=USG5NA__AUUC7MViUsSz481Es8SOZunMN-KDbPBTmHk,5675
88
88
  assisted_service_client/models/ignition_endpoint.py,sha256=dUS_tZE4zvAZwyjDpGV3geXYwD2ecuVDdtrKqNPn7bM,4058
89
89
  assisted_service_client/models/ignition_endpoint_http_headers_params.py,sha256=2yhwXhtDwfq05bQWZQiNbxcEB9T7Kd-3yhH6xHI1-hY,4216
90
90
  assisted_service_client/models/ignored_validations.py,sha256=mhpR__OOD3LXlcwUh7hYeUSyPcvNinDAEQjmVEcM_oc,5278
@@ -95,18 +95,19 @@ assisted_service_client/models/import_cluster_params.py,sha256=1fRPcjsG18l7HbxdU
95
95
  assisted_service_client/models/infra_env.py,sha256=pS9Q4A1TDwQXqKp9Ph29_87L_yAQtmJY_i4Ck87Uy60,24743
96
96
  assisted_service_client/models/infra_env_create_params.py,sha256=vEzMXPORxoepCHwNdZKlcQaTUOsNZhYWolX0FxPK2Pg,16151
97
97
  assisted_service_client/models/infra_env_list.py,sha256=QAy34UbUHugMwQZYOI9Y3SQKY1MNXOIKf3Yanry9GdE,2368
98
- assisted_service_client/models/infra_env_update_params.py,sha256=UNbrQTKyKF3lT38MaGOL8qnktAFYQMUGkRz2V0E_i5g,11550
98
+ assisted_service_client/models/infra_env_update_params.py,sha256=0OmfOU_ZDH5XfBZOjsYJsCERyDX5iA3ONOxZJjTJzaM,12511
99
99
  assisted_service_client/models/infra_error.py,sha256=Y5c3rRcqf_HKAPKzX5xUVvXpFVcT0ygZnWtPFH-NF74,4314
100
100
  assisted_service_client/models/ingress_cert_params.py,sha256=-XP1NimCqaTWoxjUIJ_ELs5y37ShwaeKXadoOvUTiPA,2388
101
101
  assisted_service_client/models/ingress_vip.py,sha256=lyf0K-0cVmdhuflocLIEtJ1r-zZjiYUb6BJmY8h-Vlk,4662
102
102
  assisted_service_client/models/inline_response200.py,sha256=HB1HAsvw3l7H114kwQFzu9JKiMO8ug-I9iAezdSC5LI,3243
103
103
  assisted_service_client/models/inline_response2001.py,sha256=Q272STaPtS7c5buEsQ6lQNQMO5r2IOxD9MUp92bNp0w,3359
104
- assisted_service_client/models/install_cmd_request.py,sha256=u-Y9vxlwX7Us50tm820b70PNkw3VbcvOUsdO2wpyBCc,19504
104
+ assisted_service_client/models/install_cmd_request.py,sha256=0-WDpsJ0cpSCEmdn54xQqsp2nUpnHNG48E9M2H6pmHY,20542
105
105
  assisted_service_client/models/installer_args_params.py,sha256=FDBsAPct6q5rMbPlFSP4CUHoWfhJnPiT4idOGoi0Wb0,3175
106
106
  assisted_service_client/models/interface.py,sha256=oens5JgzzW7b7y2_m3da_xnlB39d2ZTFNWJy6j7Qfws,10898
107
107
  assisted_service_client/models/inventory.py,sha256=Cn5ug3cuDYzyuMbRB0LNyqZtahJ3MLar26I-WELk2I4,10489
108
108
  assisted_service_client/models/io_perf.py,sha256=hLqJ7Tg6wLldvQtWxIy4b6XEZZIBeuAsgbZVwRfCHfc,3221
109
109
  assisted_service_client/models/ip.py,sha256=ItzWAGLq9NsTt1Fqj1ycQO9YfbPhTZ1R9Kk-EN2Tbdg,2328
110
+ assisted_service_client/models/iscsi.py,sha256=f7yufmkMHUVoz7ur3JhURkeVXeUFjzDTodnh4TjOcxU,3239
110
111
  assisted_service_client/models/kernel_argument.py,sha256=8GfeKMFnLPD78WGzkVSG_pJcaGQdOgoBx9VqBGzPvyk,4704
111
112
  assisted_service_client/models/kernel_arguments.py,sha256=i7lyYGI7FMjI1U4Im2qgLJBgr5E82QUoHvCSJy2UGn0,2380
112
113
  assisted_service_client/models/l2_connectivity.py,sha256=4dn_3mW6WF1eWVtAVEZBf1X-OHoexb29PzT6i2kjy3I,6264
@@ -115,6 +116,7 @@ assisted_service_client/models/last_installation_preparation.py,sha256=wnuW9ccUG
115
116
  assisted_service_client/models/list_managed_domains.py,sha256=9-c0ckZxfu42jXSRsxeXzVu9bhTTD8t4sHOYcwRus0o,2392
116
117
  assisted_service_client/models/list_manifests.py,sha256=5SQc2bWn7-pMNvvDUZNMzjRSztsY6QothVrTNxR46lU,2372
117
118
  assisted_service_client/models/list_versions.py,sha256=gSD7krxLrIHNHb6TZtuxOcBWITIl6QfxArGy21kcAG4,3757
119
+ assisted_service_client/models/load_balancer.py,sha256=fpafkbNO-iy2HezYL5QFsensyDwDCTUdTxMcIrMmr3s,4410
118
120
  assisted_service_client/models/logs_gather_cmd_request.py,sha256=gMVZKAc_hHJ_1eo0ccZsVlL_Lc7ffTPXNWdsK72tLJk,7795
119
121
  assisted_service_client/models/logs_progress_params.py,sha256=2TVQ986lCNj7mhd7_oxq5xtUEAj88r_1vVNdUmlPysU,3324
120
122
  assisted_service_client/models/logs_state.py,sha256=HdBKVvSNwO3qde7U2zj37EKtIAe_UZQVYkHIL0HS0SU,2522
@@ -123,11 +125,12 @@ assisted_service_client/models/mac_interface_map.py,sha256=afX3yDdtbfzFMyw24Wnqe
123
125
  assisted_service_client/models/mac_interface_map_inner.py,sha256=f7pgX4PiXHYk7RgjVbYukCg5Xm9e5pn8ah50VY167b8,4278
124
126
  assisted_service_client/models/machine_network.py,sha256=mrgtAcCaaj0ZHaBZdcadl4qLIKsHXmcX7-sSkQ4aMtE,3917
125
127
  assisted_service_client/models/managed_domain.py,sha256=lvORcWOR9eFVG8MMA_YFpmv_AOrCXOOTDJK1L61WgD0,3929
126
- assisted_service_client/models/manifest.py,sha256=hmXy97BA7uRLTy7URByvWqWorsbkQO7F6rvheDy1gK4,4302
128
+ assisted_service_client/models/manifest.py,sha256=IWPLzB9O2ouqnxXo_SOWSWkALT2l6CYNOWZrEzDFEqk,5582
127
129
  assisted_service_client/models/memory.py,sha256=pNVA7KJrF2Qg9RQdP3RLH1hi6-I0oz_nmat3cHY7mrc,4870
128
130
  assisted_service_client/models/memory_method.py,sha256=4Zaob1yIL-VgG80T7gPe5xuDux7zFqoAuwCwylP5cgE,2477
129
131
  assisted_service_client/models/monitored_operator.py,sha256=X9pAd8se_r4-pVE3p66vira1xrM-Di41mAlO2M9rMLw,11868
130
132
  assisted_service_client/models/monitored_operators_list.py,sha256=6cJImtZn97HBeVmMEuFBGW-UYes1qTmgIvA22_regFo,2408
133
+ assisted_service_client/models/mtu_report.py,sha256=6N3M0UDvPJV7mKLf8gbvnD9MIW9tGqn06Jgxv-7dvJ8,4674
131
134
  assisted_service_client/models/next_step_cmd_request.py,sha256=PQi1ykNi5OXQSOnmY6rhBz5OsJI4ZwQWvOiVO5toAoc,5078
132
135
  assisted_service_client/models/node_label_params.py,sha256=LBUMJ6dKziCeX8VTIDV3ixWVEvADa72kFx8-IWtVz8U,3976
133
136
  assisted_service_client/models/ntp_source.py,sha256=9o2AVy_GNtktU24thnXLv0Flj2RfYiKXwfY8OwlMlB4,4020
@@ -158,6 +161,7 @@ assisted_service_client/models/release_images.py,sha256=bSXU4JEqzpZoxQFurs4bT-lI
158
161
  assisted_service_client/models/release_source.py,sha256=4kOijjPT9V8LmoMqA67dpoSRRbwRrv8Bq05G33Jl1yE,5960
159
162
  assisted_service_client/models/release_sources.py,sha256=ys1XIeBGev0b98zMsAwqC0Hl2p9__6LHVuWJKfvgW-M,2376
160
163
  assisted_service_client/models/route.py,sha256=_QfjgzckjUw8rm04OG8FRl4cyFjgA4IXKpMUD9_pKbc,6121
164
+ assisted_service_client/models/secure_boot_state.py,sha256=20olpzEvyurUsFUjjzZzoebgrFiX0Ka-Y8u6RT_hVT0,2529
161
165
  assisted_service_client/models/service_network.py,sha256=_9bV3qtVHmanOhiw0NhEr-0Q3Imhg8N_fyi2hD35CXo,4145
162
166
  assisted_service_client/models/source_state.py,sha256=rz7MYSG2DUkpjCO7NCBDPU4VlYcr8K1Qpe8aP_E807w,2565
163
167
  assisted_service_client/models/step.py,sha256=p3sP4UnSgLG40x0qMiGQJrTVbPgPvguaXMX6gDEoSGs,4164
@@ -179,7 +183,7 @@ assisted_service_client/models/upgrade_agent_response.py,sha256=OhvFdKCUZvb1awBX
179
183
  assisted_service_client/models/upgrade_agent_result.py,sha256=n0QImJ9nWvRC88hrBb5GLpGwq4h_YaGA-Rh6J7uxEeI,2481
180
184
  assisted_service_client/models/upgrade_channel.py,sha256=1zGictvdXO0SRJZfRamBovlh6MneEnQz0eIDI6BPK7E,4560
181
185
  assisted_service_client/models/usage.py,sha256=wP7af-XSqp3kWq8eiMumEz4vZnoy9FKko_IoITk8oac,4321
182
- assisted_service_client/models/v2_cluster_update_params.py,sha256=EsbVWKAQ2akyZk68KGDMvIHAN8X2EK9ZuFvLf3H-1j0,34777
186
+ assisted_service_client/models/v2_cluster_update_params.py,sha256=DMx-49MWkt2r-ugemmgyA3KzlLrqQtUorwuuQb0DxTU,36732
183
187
  assisted_service_client/models/verified_vip.py,sha256=XbwwmYkF4nFHeyWU0dhDzLUizU65OBkG_h-J1LUXw_Q,4348
184
188
  assisted_service_client/models/verify_vip.py,sha256=ocOvQ8-jVV1xTH57rO4BXVDFVqRkTQnIrz5D-TGAXmg,3555
185
189
  assisted_service_client/models/verify_vips_request.py,sha256=cK1qzbhYcmD9BTZuQgv84wsbCZKozTySr6Acf8hI9LY,2388
@@ -288,6 +292,7 @@ test/test_interface.py,sha256=aKMlQAzR68c2sit6Lqcc6py07tqoRyX0j8z-j91HK7A,851
288
292
  test/test_inventory.py,sha256=9aK7xDNHZbTLYWDdRmEKTCtiOLlgyRgS7Qw4OAO5NMw,851
289
293
  test/test_io_perf.py,sha256=oGkPzh192yqrCvdSxQBFP1gsIvj27hOXJMjU57QEvQs,829
290
294
  test/test_ip.py,sha256=hqcgBIeOZj6e0uwdyZJrtG9iqabrsWbz_tVxk8-twuo,795
295
+ test/test_iscsi.py,sha256=IYy5iWQy2x-Nt_SkBWZhUTftS1TkIDqNXHpFXI7O_os,819
291
296
  test/test_kernel_argument.py,sha256=VFDn4ZhgYC3VSv0oLGLHv3faY00Ig0bUb1_0UW8lOBI,893
292
297
  test/test_kernel_arguments.py,sha256=krcv9_JQlgSjrknfBiTOKjCqZ5h_MJ5Lq4BmlW5hNq0,901
293
298
  test/test_l2_connectivity.py,sha256=T0klu_YRuM9KvEUtLlVz2Nin6I-pWrgSG6PMl-MQjro,893
@@ -296,6 +301,7 @@ test/test_last_installation_preparation.py,sha256=YofK9R1-kSTguyGuIrCromQJvN9Y8Y
296
301
  test/test_list_managed_domains.py,sha256=fgumdJD3yTQuqAo-IoaTF9SNpJxT7ZfVpPJuThFw-zQ,927
297
302
  test/test_list_manifests.py,sha256=TkppoPZRMaB4Dd3wdnl4b_EcL6XQTqbB2j3GlNSF9aM,885
298
303
  test/test_list_versions.py,sha256=TT0n7YJIBIrPCrJrbkhVwWinbQ3IblXl-j1TVv2VGr8,877
304
+ test/test_load_balancer.py,sha256=XwrdERjMHgIgk_X06cz9AY4OT3ErjEBHPeWM-HCSSzg,877
299
305
  test/test_logs_gather_cmd_request.py,sha256=a186BoLEcXLYDedu8OGgrN4EP8Nwq7Ubo27mZyqTL5U,945
300
306
  test/test_logs_progress_params.py,sha256=kZz4cLbfHzkryJYvWfggSIrgck8mxEfD8vEtokpUPjE,927
301
307
  test/test_logs_state.py,sha256=qjqzI3wttfNL40Zjk5K31qqrBfpzuUdWwaj9Cop50yc,853
@@ -311,6 +317,7 @@ test/test_memory.py,sha256=bwKAqkgwhShRwQiYmzYNEkmDyX3Uh19HLvsQ-Ipmfrk,827
311
317
  test/test_memory_method.py,sha256=oIkajfwEEoR1paHObkes8SDUk66_l7Pj2xwdWA5q3f4,877
312
318
  test/test_monitored_operator.py,sha256=-dOkA-T97g0gstQTD8NaVpbVXZZy3HalAwp7XH1xdkw,917
313
319
  test/test_monitored_operators_list.py,sha256=fF63b_fIAnPNYRLssmiibWHI4s8jFx6rCL-7ZHX7DdQ,959
320
+ test/test_mtu_report.py,sha256=eir6wmGUjjFQBDIPduZyS47a15-jpOXhSsontE3X-OE,853
314
321
  test/test_next_step_cmd_request.py,sha256=sDDomrktiIZABNn6P-pE7ReXEE7kKYT_ctIMiM9cTTU,929
315
322
  test/test_node_label_params.py,sha256=MXuYjr7B30sdouPc2ZGYh5dRjwRtjaLfbZmk09iyYMI,903
316
323
  test/test_ntp_source.py,sha256=QYn_tzpREacBKn8pt01PeIgIZxddjnkDsOF_MwpiFsQ,853
@@ -342,6 +349,7 @@ test/test_release_images.py,sha256=w0DuqVKX_VTqKweOqKnJl48r6Xgd23c88MntZuV3-KQ,8
342
349
  test/test_release_source.py,sha256=96UTbQqDibykLQfWGB9NdrkgHR0RdulS9LDd054h6Lk,885
343
350
  test/test_release_sources.py,sha256=VwUaY0U6NJ11vdrtgwwYsBwFTpsggzuUbAgF5d2x7_Y,893
344
351
  test/test_route.py,sha256=C1BPNYhfpeV9C6TVIvoYzEmeaknvXKtLPVVQNUexQk4,819
352
+ test/test_secure_boot_state.py,sha256=9wlqexwZ0j1T7m9nMBEAkf94ZsMGxHpC9dKymhsvHPs,903
345
353
  test/test_service_network.py,sha256=qmtAwW4-SYkwjThFc3bFF2gepFc5wRFz3yZK1nIvXm8,893
346
354
  test/test_source_state.py,sha256=gz26htBkWFnjySeKcGbZYGCGpJDxL1iWh15jopvw3dM,869
347
355
  test/test_step.py,sha256=AmInoNURU-78SJRzfc0vjJIp2x5DPr0_g_GGOxvp508,811
@@ -373,7 +381,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
373
381
  test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
374
382
  test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
375
383
  test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
376
- assisted_service_client-2.30.0.post49.dist-info/METADATA,sha256=5EEbz8LR369KrIgqSnU-dGHEShPLBYv5_njXStLFg9c,25678
377
- assisted_service_client-2.30.0.post49.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
378
- assisted_service_client-2.30.0.post49.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
379
- assisted_service_client-2.30.0.post49.dist-info/RECORD,,
384
+ assisted_service_client-2.37.0.post25.dist-info/METADATA,sha256=yTNK92n3g1d-qAhP0mmXo0umGRY8jxroFFMYsDw_S64,26209
385
+ assisted_service_client-2.37.0.post25.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
386
+ assisted_service_client-2.37.0.post25.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
387
+ assisted_service_client-2.37.0.post25.dist-info/RECORD,,
test/test_iscsi.py ADDED
@@ -0,0 +1,40 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ AssistedInstall
5
+
6
+ Assisted installation # noqa: E501
7
+
8
+ OpenAPI spec version: 1.0.0
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ import unittest
17
+
18
+ import assisted_service_client
19
+ from assisted_service_client.models.iscsi import Iscsi # noqa: E501
20
+ from assisted_service_client.rest import ApiException
21
+
22
+
23
+ class TestIscsi(unittest.TestCase):
24
+ """Iscsi unit test stubs"""
25
+
26
+ def setUp(self):
27
+ pass
28
+
29
+ def tearDown(self):
30
+ pass
31
+
32
+ def testIscsi(self):
33
+ """Test Iscsi"""
34
+ # FIXME: construct object with mandatory attributes with example values
35
+ # model = assisted_service_client.models.iscsi.Iscsi() # noqa: E501
36
+ pass
37
+
38
+
39
+ if __name__ == '__main__':
40
+ unittest.main()