assisted-service-client 2.45.0.post22__py3-none-any.whl → 2.45.0.post23__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.
- assisted_service_client/__init__.py +1 -0
- assisted_service_client/models/__init__.py +1 -0
- assisted_service_client/models/fencing_credentials_params.py +210 -0
- assisted_service_client/models/host.py +31 -3
- assisted_service_client/models/host_update_params.py +31 -3
- {assisted_service_client-2.45.0.post22.dist-info → assisted_service_client-2.45.0.post23.dist-info}/METADATA +2 -1
- {assisted_service_client-2.45.0.post22.dist-info → assisted_service_client-2.45.0.post23.dist-info}/RECORD +10 -8
- test/test_fencing_credentials_params.py +40 -0
- {assisted_service_client-2.45.0.post22.dist-info → assisted_service_client-2.45.0.post23.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.45.0.post22.dist-info → assisted_service_client-2.45.0.post23.dist-info}/top_level.txt +0 -0
@@ -82,6 +82,7 @@ from assisted_service_client.models.event import Event
|
|
82
82
|
from assisted_service_client.models.event_list import EventList
|
83
83
|
from assisted_service_client.models.feature import Feature
|
84
84
|
from assisted_service_client.models.feature_support_level_id import FeatureSupportLevelId
|
85
|
+
from assisted_service_client.models.fencing_credentials_params import FencingCredentialsParams
|
85
86
|
from assisted_service_client.models.finalizing_stage import FinalizingStage
|
86
87
|
from assisted_service_client.models.free_addresses_list import FreeAddressesList
|
87
88
|
from assisted_service_client.models.free_addresses_request import FreeAddressesRequest
|
@@ -70,6 +70,7 @@ from assisted_service_client.models.event import Event
|
|
70
70
|
from assisted_service_client.models.event_list import EventList
|
71
71
|
from assisted_service_client.models.feature import Feature
|
72
72
|
from assisted_service_client.models.feature_support_level_id import FeatureSupportLevelId
|
73
|
+
from assisted_service_client.models.fencing_credentials_params import FencingCredentialsParams
|
73
74
|
from assisted_service_client.models.finalizing_stage import FinalizingStage
|
74
75
|
from assisted_service_client.models.free_addresses_list import FreeAddressesList
|
75
76
|
from assisted_service_client.models.free_addresses_request import FreeAddressesRequest
|
@@ -0,0 +1,210 @@
|
|
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 FencingCredentialsParams(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
|
+
'address': 'str',
|
35
|
+
'username': 'str',
|
36
|
+
'password': 'str',
|
37
|
+
'certificate_verification': 'str'
|
38
|
+
}
|
39
|
+
|
40
|
+
attribute_map = {
|
41
|
+
'address': 'address',
|
42
|
+
'username': 'username',
|
43
|
+
'password': 'password',
|
44
|
+
'certificate_verification': 'certificate_verification'
|
45
|
+
}
|
46
|
+
|
47
|
+
def __init__(self, address=None, username=None, password=None, certificate_verification='Enabled'): # noqa: E501
|
48
|
+
"""FencingCredentialsParams - a model defined in Swagger""" # noqa: E501
|
49
|
+
|
50
|
+
self._address = None
|
51
|
+
self._username = None
|
52
|
+
self._password = None
|
53
|
+
self._certificate_verification = None
|
54
|
+
self.discriminator = None
|
55
|
+
|
56
|
+
self.address = address
|
57
|
+
self.username = username
|
58
|
+
self.password = password
|
59
|
+
if certificate_verification is not None:
|
60
|
+
self.certificate_verification = certificate_verification
|
61
|
+
|
62
|
+
@property
|
63
|
+
def address(self):
|
64
|
+
"""Gets the address of this FencingCredentialsParams. # noqa: E501
|
65
|
+
|
66
|
+
The URL of the host's BMC, for example https://bmc1.example.com. # noqa: E501
|
67
|
+
|
68
|
+
:return: The address of this FencingCredentialsParams. # noqa: E501
|
69
|
+
:rtype: str
|
70
|
+
"""
|
71
|
+
return self._address
|
72
|
+
|
73
|
+
@address.setter
|
74
|
+
def address(self, address):
|
75
|
+
"""Sets the address of this FencingCredentialsParams.
|
76
|
+
|
77
|
+
The URL of the host's BMC, for example https://bmc1.example.com. # noqa: E501
|
78
|
+
|
79
|
+
:param address: The address of this FencingCredentialsParams. # noqa: E501
|
80
|
+
:type: str
|
81
|
+
"""
|
82
|
+
if address is None:
|
83
|
+
raise ValueError("Invalid value for `address`, must not be `None`") # noqa: E501
|
84
|
+
|
85
|
+
self._address = address
|
86
|
+
|
87
|
+
@property
|
88
|
+
def username(self):
|
89
|
+
"""Gets the username of this FencingCredentialsParams. # noqa: E501
|
90
|
+
|
91
|
+
The username to connect to the host's BMC. # noqa: E501
|
92
|
+
|
93
|
+
:return: The username of this FencingCredentialsParams. # noqa: E501
|
94
|
+
:rtype: str
|
95
|
+
"""
|
96
|
+
return self._username
|
97
|
+
|
98
|
+
@username.setter
|
99
|
+
def username(self, username):
|
100
|
+
"""Sets the username of this FencingCredentialsParams.
|
101
|
+
|
102
|
+
The username to connect to the host's BMC. # noqa: E501
|
103
|
+
|
104
|
+
:param username: The username of this FencingCredentialsParams. # noqa: E501
|
105
|
+
:type: str
|
106
|
+
"""
|
107
|
+
if username is None:
|
108
|
+
raise ValueError("Invalid value for `username`, must not be `None`") # noqa: E501
|
109
|
+
|
110
|
+
self._username = username
|
111
|
+
|
112
|
+
@property
|
113
|
+
def password(self):
|
114
|
+
"""Gets the password of this FencingCredentialsParams. # noqa: E501
|
115
|
+
|
116
|
+
The password to connect to the host's BMC. # noqa: E501
|
117
|
+
|
118
|
+
:return: The password of this FencingCredentialsParams. # noqa: E501
|
119
|
+
:rtype: str
|
120
|
+
"""
|
121
|
+
return self._password
|
122
|
+
|
123
|
+
@password.setter
|
124
|
+
def password(self, password):
|
125
|
+
"""Sets the password of this FencingCredentialsParams.
|
126
|
+
|
127
|
+
The password to connect to the host's BMC. # noqa: E501
|
128
|
+
|
129
|
+
:param password: The password of this FencingCredentialsParams. # noqa: E501
|
130
|
+
:type: str
|
131
|
+
"""
|
132
|
+
if password is None:
|
133
|
+
raise ValueError("Invalid value for `password`, must not be `None`") # noqa: E501
|
134
|
+
|
135
|
+
self._password = password
|
136
|
+
|
137
|
+
@property
|
138
|
+
def certificate_verification(self):
|
139
|
+
"""Gets the certificate_verification of this FencingCredentialsParams. # noqa: E501
|
140
|
+
|
141
|
+
Whether to enable or disable certificate verification when connecting to the host's BMC. # noqa: E501
|
142
|
+
|
143
|
+
:return: The certificate_verification of this FencingCredentialsParams. # noqa: E501
|
144
|
+
:rtype: str
|
145
|
+
"""
|
146
|
+
return self._certificate_verification
|
147
|
+
|
148
|
+
@certificate_verification.setter
|
149
|
+
def certificate_verification(self, certificate_verification):
|
150
|
+
"""Sets the certificate_verification of this FencingCredentialsParams.
|
151
|
+
|
152
|
+
Whether to enable or disable certificate verification when connecting to the host's BMC. # noqa: E501
|
153
|
+
|
154
|
+
:param certificate_verification: The certificate_verification of this FencingCredentialsParams. # noqa: E501
|
155
|
+
:type: str
|
156
|
+
"""
|
157
|
+
allowed_values = ["Enabled", "Disabled"] # noqa: E501
|
158
|
+
if certificate_verification not in allowed_values:
|
159
|
+
raise ValueError(
|
160
|
+
"Invalid value for `certificate_verification` ({0}), must be one of {1}" # noqa: E501
|
161
|
+
.format(certificate_verification, allowed_values)
|
162
|
+
)
|
163
|
+
|
164
|
+
self._certificate_verification = certificate_verification
|
165
|
+
|
166
|
+
def to_dict(self):
|
167
|
+
"""Returns the model properties as a dict"""
|
168
|
+
result = {}
|
169
|
+
|
170
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
171
|
+
value = getattr(self, attr)
|
172
|
+
if isinstance(value, list):
|
173
|
+
result[attr] = list(map(
|
174
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
175
|
+
value
|
176
|
+
))
|
177
|
+
elif hasattr(value, "to_dict"):
|
178
|
+
result[attr] = value.to_dict()
|
179
|
+
elif isinstance(value, dict):
|
180
|
+
result[attr] = dict(map(
|
181
|
+
lambda item: (item[0], item[1].to_dict())
|
182
|
+
if hasattr(item[1], "to_dict") else item,
|
183
|
+
value.items()
|
184
|
+
))
|
185
|
+
else:
|
186
|
+
result[attr] = value
|
187
|
+
if issubclass(FencingCredentialsParams, dict):
|
188
|
+
for key, value in self.items():
|
189
|
+
result[key] = value
|
190
|
+
|
191
|
+
return result
|
192
|
+
|
193
|
+
def to_str(self):
|
194
|
+
"""Returns the string representation of the model"""
|
195
|
+
return pprint.pformat(self.to_dict())
|
196
|
+
|
197
|
+
def __repr__(self):
|
198
|
+
"""For `print` and `pprint`"""
|
199
|
+
return self.to_str()
|
200
|
+
|
201
|
+
def __eq__(self, other):
|
202
|
+
"""Returns true if both objects are equal"""
|
203
|
+
if not isinstance(other, FencingCredentialsParams):
|
204
|
+
return False
|
205
|
+
|
206
|
+
return self.__dict__ == other.__dict__
|
207
|
+
|
208
|
+
def __ne__(self, other):
|
209
|
+
"""Returns true if both objects are not equal"""
|
210
|
+
return not self == other
|
@@ -79,7 +79,8 @@ class Host(object):
|
|
79
79
|
'ignition_endpoint_token_set': 'bool',
|
80
80
|
'node_labels': 'str',
|
81
81
|
'disks_to_be_formatted': 'str',
|
82
|
-
'skip_formatting_disks': 'str'
|
82
|
+
'skip_formatting_disks': 'str',
|
83
|
+
'fencing_credentials': 'str'
|
83
84
|
}
|
84
85
|
|
85
86
|
attribute_map = {
|
@@ -131,10 +132,11 @@ class Host(object):
|
|
131
132
|
'ignition_endpoint_token_set': 'ignition_endpoint_token_set',
|
132
133
|
'node_labels': 'node_labels',
|
133
134
|
'disks_to_be_formatted': 'disks_to_be_formatted',
|
134
|
-
'skip_formatting_disks': 'skip_formatting_disks'
|
135
|
+
'skip_formatting_disks': 'skip_formatting_disks',
|
136
|
+
'fencing_credentials': 'fencing_credentials'
|
135
137
|
}
|
136
138
|
|
137
|
-
def __init__(self, kind=None, id=None, href=None, cluster_id=None, infra_env_id=None, status=None, status_info=None, validations_info=None, logs_info=None, status_updated_at=None, progress=None, stage_started_at=None, stage_updated_at=None, progress_stages=None, connectivity=None, api_vip_connectivity=None, tang_connectivity=None, inventory=None, free_addresses=None, ntp_sources=None, disks_info=None, role=None, suggested_role=None, bootstrap=None, logs_collected_at=None, logs_started_at=None, installer_version=None, installation_disk_path=None, installation_disk_id=None, updated_at=None, created_at=None, checked_in_at=None, connection_timed_out=None, registered_at=None, discovery_agent_version=None, requested_hostname=None, user_name=None, media_status='connected', deleted_at=None, ignition_config_overrides=None, installer_args=None, timestamp=None, machine_config_pool_name=None, images_status=None, domain_name_resolutions=None, ignition_endpoint_token_set=None, node_labels=None, disks_to_be_formatted=None, skip_formatting_disks=None): # noqa: E501
|
139
|
+
def __init__(self, kind=None, id=None, href=None, cluster_id=None, infra_env_id=None, status=None, status_info=None, validations_info=None, logs_info=None, status_updated_at=None, progress=None, stage_started_at=None, stage_updated_at=None, progress_stages=None, connectivity=None, api_vip_connectivity=None, tang_connectivity=None, inventory=None, free_addresses=None, ntp_sources=None, disks_info=None, role=None, suggested_role=None, bootstrap=None, logs_collected_at=None, logs_started_at=None, installer_version=None, installation_disk_path=None, installation_disk_id=None, updated_at=None, created_at=None, checked_in_at=None, connection_timed_out=None, registered_at=None, discovery_agent_version=None, requested_hostname=None, user_name=None, media_status='connected', deleted_at=None, ignition_config_overrides=None, installer_args=None, timestamp=None, machine_config_pool_name=None, images_status=None, domain_name_resolutions=None, ignition_endpoint_token_set=None, node_labels=None, disks_to_be_formatted=None, skip_formatting_disks=None, fencing_credentials=None): # noqa: E501
|
138
140
|
"""Host - a model defined in Swagger""" # noqa: E501
|
139
141
|
|
140
142
|
self._kind = None
|
@@ -186,6 +188,7 @@ class Host(object):
|
|
186
188
|
self._node_labels = None
|
187
189
|
self._disks_to_be_formatted = None
|
188
190
|
self._skip_formatting_disks = None
|
191
|
+
self._fencing_credentials = None
|
189
192
|
self.discriminator = None
|
190
193
|
|
191
194
|
self.kind = kind
|
@@ -281,6 +284,8 @@ class Host(object):
|
|
281
284
|
self.disks_to_be_formatted = disks_to_be_formatted
|
282
285
|
if skip_formatting_disks is not None:
|
283
286
|
self.skip_formatting_disks = skip_formatting_disks
|
287
|
+
if fencing_credentials is not None:
|
288
|
+
self.fencing_credentials = fencing_credentials
|
284
289
|
|
285
290
|
@property
|
286
291
|
def kind(self):
|
@@ -1395,6 +1400,29 @@ class Host(object):
|
|
1395
1400
|
|
1396
1401
|
self._skip_formatting_disks = skip_formatting_disks
|
1397
1402
|
|
1403
|
+
@property
|
1404
|
+
def fencing_credentials(self):
|
1405
|
+
"""Gets the fencing_credentials of this Host. # noqa: E501
|
1406
|
+
|
1407
|
+
The host's BMC credentials that will be used in TNF. # noqa: E501
|
1408
|
+
|
1409
|
+
:return: The fencing_credentials of this Host. # noqa: E501
|
1410
|
+
:rtype: str
|
1411
|
+
"""
|
1412
|
+
return self._fencing_credentials
|
1413
|
+
|
1414
|
+
@fencing_credentials.setter
|
1415
|
+
def fencing_credentials(self, fencing_credentials):
|
1416
|
+
"""Sets the fencing_credentials of this Host.
|
1417
|
+
|
1418
|
+
The host's BMC credentials that will be used in TNF. # noqa: E501
|
1419
|
+
|
1420
|
+
:param fencing_credentials: The fencing_credentials of this Host. # noqa: E501
|
1421
|
+
:type: str
|
1422
|
+
"""
|
1423
|
+
|
1424
|
+
self._fencing_credentials = fencing_credentials
|
1425
|
+
|
1398
1426
|
def to_dict(self):
|
1399
1427
|
"""Returns the model properties as a dict"""
|
1400
1428
|
result = {}
|
@@ -38,7 +38,8 @@ class HostUpdateParams(object):
|
|
38
38
|
'machine_config_pool_name': 'str',
|
39
39
|
'ignition_endpoint_token': 'str',
|
40
40
|
'ignition_endpoint_http_headers': 'list[IgnitionEndpointHttpHeadersParams]',
|
41
|
-
'node_labels': 'list[NodeLabelParams]'
|
41
|
+
'node_labels': 'list[NodeLabelParams]',
|
42
|
+
'fencing_credentials': 'FencingCredentialsParams'
|
42
43
|
}
|
43
44
|
|
44
45
|
attribute_map = {
|
@@ -49,10 +50,11 @@ class HostUpdateParams(object):
|
|
49
50
|
'machine_config_pool_name': 'machine_config_pool_name',
|
50
51
|
'ignition_endpoint_token': 'ignition_endpoint_token',
|
51
52
|
'ignition_endpoint_http_headers': 'ignition_endpoint_http_headers',
|
52
|
-
'node_labels': 'node_labels'
|
53
|
+
'node_labels': 'node_labels',
|
54
|
+
'fencing_credentials': 'fencing_credentials'
|
53
55
|
}
|
54
56
|
|
55
|
-
def __init__(self, host_role=None, host_name=None, disks_selected_config=None, disks_skip_formatting=None, machine_config_pool_name=None, ignition_endpoint_token=None, ignition_endpoint_http_headers=None, node_labels=None): # noqa: E501
|
57
|
+
def __init__(self, host_role=None, host_name=None, disks_selected_config=None, disks_skip_formatting=None, machine_config_pool_name=None, ignition_endpoint_token=None, ignition_endpoint_http_headers=None, node_labels=None, fencing_credentials=None): # noqa: E501
|
56
58
|
"""HostUpdateParams - a model defined in Swagger""" # noqa: E501
|
57
59
|
|
58
60
|
self._host_role = None
|
@@ -63,6 +65,7 @@ class HostUpdateParams(object):
|
|
63
65
|
self._ignition_endpoint_token = None
|
64
66
|
self._ignition_endpoint_http_headers = None
|
65
67
|
self._node_labels = None
|
68
|
+
self._fencing_credentials = None
|
66
69
|
self.discriminator = None
|
67
70
|
|
68
71
|
if host_role is not None:
|
@@ -81,6 +84,8 @@ class HostUpdateParams(object):
|
|
81
84
|
self.ignition_endpoint_http_headers = ignition_endpoint_http_headers
|
82
85
|
if node_labels is not None:
|
83
86
|
self.node_labels = node_labels
|
87
|
+
if fencing_credentials is not None:
|
88
|
+
self.fencing_credentials = fencing_credentials
|
84
89
|
|
85
90
|
@property
|
86
91
|
def host_role(self):
|
@@ -264,6 +269,29 @@ class HostUpdateParams(object):
|
|
264
269
|
|
265
270
|
self._node_labels = node_labels
|
266
271
|
|
272
|
+
@property
|
273
|
+
def fencing_credentials(self):
|
274
|
+
"""Gets the fencing_credentials of this HostUpdateParams. # noqa: E501
|
275
|
+
|
276
|
+
The host's BMC credentials that will be used in TNF. # noqa: E501
|
277
|
+
|
278
|
+
:return: The fencing_credentials of this HostUpdateParams. # noqa: E501
|
279
|
+
:rtype: FencingCredentialsParams
|
280
|
+
"""
|
281
|
+
return self._fencing_credentials
|
282
|
+
|
283
|
+
@fencing_credentials.setter
|
284
|
+
def fencing_credentials(self, fencing_credentials):
|
285
|
+
"""Sets the fencing_credentials of this HostUpdateParams.
|
286
|
+
|
287
|
+
The host's BMC credentials that will be used in TNF. # noqa: E501
|
288
|
+
|
289
|
+
:param fencing_credentials: The fencing_credentials of this HostUpdateParams. # noqa: E501
|
290
|
+
:type: FencingCredentialsParams
|
291
|
+
"""
|
292
|
+
|
293
|
+
self._fencing_credentials = fencing_credentials
|
294
|
+
|
267
295
|
def to_dict(self):
|
268
296
|
"""Returns the model properties as a dict"""
|
269
297
|
result = {}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: assisted-service-client
|
3
|
-
Version: 2.45.0.
|
3
|
+
Version: 2.45.0.post23
|
4
4
|
Summary: AssistedInstall
|
5
5
|
Home-page: https://github.com/openshift/assisted-service
|
6
6
|
Author: RedHat
|
@@ -264,6 +264,7 @@ Class | Method | HTTP request | Description
|
|
264
264
|
- [EventList](docs/EventList.md)
|
265
265
|
- [Feature](docs/Feature.md)
|
266
266
|
- [FeatureSupportLevelId](docs/FeatureSupportLevelId.md)
|
267
|
+
- [FencingCredentialsParams](docs/FencingCredentialsParams.md)
|
267
268
|
- [FinalizingStage](docs/FinalizingStage.md)
|
268
269
|
- [FreeAddressesList](docs/FreeAddressesList.md)
|
269
270
|
- [FreeAddressesRequest](docs/FreeAddressesRequest.md)
|
@@ -1,4 +1,4 @@
|
|
1
|
-
assisted_service_client/__init__.py,sha256=
|
1
|
+
assisted_service_client/__init__.py,sha256=JqoEQ_bw4-bjZubTkYyhuzIbxXIEwosK_kTIvt-pyOg,15857
|
2
2
|
assisted_service_client/api_client.py,sha256=ypPMDOaIc8GI-xm-g5PrNLYlakkK5K3qcJBjJP5GlbM,24986
|
3
3
|
assisted_service_client/configuration.py,sha256=wLYxtRlTlR9o-y24tqlDSgfjrh9YdiyWaM8-QxFOyOY,9352
|
4
4
|
assisted_service_client/rest.py,sha256=fLcY2m9yxpqJW4agxf3yCJyiz486qPLgqw8CbCuftZw,13123
|
@@ -9,7 +9,7 @@ assisted_service_client/api/managed_domains_api.py,sha256=rTPj3IVxrECtMc_-acZ14u
|
|
9
9
|
assisted_service_client/api/manifests_api.py,sha256=aLktOGwkOa3siGnJOYuGO0mH3TlES-fBZvilNvseGO0,25146
|
10
10
|
assisted_service_client/api/operators_api.py,sha256=yBJagXBqr77hvQJM3Qruo3Pegw2j6UQLXolMgip71gM,24732
|
11
11
|
assisted_service_client/api/versions_api.py,sha256=0eomTHtqgrHnxBxNhL_rZ43K3O3fjvpy0nMRxt2idEg,11674
|
12
|
-
assisted_service_client/models/__init__.py,sha256=
|
12
|
+
assisted_service_client/models/__init__.py,sha256=UI3ylX-XVCPV9IV0LFjFdun_S3xmP_z1teVKE20_dv4,15281
|
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
|
@@ -65,13 +65,14 @@ assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH
|
|
65
65
|
assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
|
66
66
|
assisted_service_client/models/feature.py,sha256=jNjOBzP1Qz_dzvSbfQ2LeIME4B5F-XYhSTwPP9cA9vg,5954
|
67
67
|
assisted_service_client/models/feature_support_level_id.py,sha256=7z5uP_qkGyF0J1dHmH27uJOrkGnQDKFlIiKVFOaKooE,4185
|
68
|
+
assisted_service_client/models/fencing_credentials_params.py,sha256=3KjIlFGdUU1ro5P-1TB5YRRs5A3nOxQnssE34N897EQ,6792
|
68
69
|
assisted_service_client/models/finalizing_stage.py,sha256=JmPnqcnxm1VB3enMG1iMZR9NFjFEj6TZF6wVwgVgNlA,2849
|
69
70
|
assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
|
70
71
|
assisted_service_client/models/free_addresses_request.py,sha256=6EjcZ6eCz2tGdz6axoRHwILSNz0-7_A6-dIjmxeFe1k,2400
|
71
72
|
assisted_service_client/models/free_network_addresses.py,sha256=4qbfXsYN_X6t0hJiF4JFhHbGEg8SEe-0OO5vn3cn8os,3896
|
72
73
|
assisted_service_client/models/free_networks_addresses.py,sha256=xGhv0Mnv_OA-L0ZMMWxaPMYJNIgzcF54lZuFJ6PLNtQ,2404
|
73
74
|
assisted_service_client/models/gpu.py,sha256=wwbi0eoL9rOH6iH4RkklARC5VUQzBl77pk5YwT39cMg,6095
|
74
|
-
assisted_service_client/models/host.py,sha256=
|
75
|
+
assisted_service_client/models/host.py,sha256=iqjbZvVUKembLwfxhvb_dOxvU0qOrEsm7f1ezH7DfL8,47014
|
75
76
|
assisted_service_client/models/host_create_params.py,sha256=9tW8SEkQC45A0K3i67xhpwW0jQFXZ6vTfcFGd839XS8,4096
|
76
77
|
assisted_service_client/models/host_ignition_params.py,sha256=T0R7FBjCAKcTOr6H-XW1ZWDdS2VZv1dNRXIF7bjitp4,3033
|
77
78
|
assisted_service_client/models/host_list.py,sha256=X8m3ZEcO_3s7BMgTWGHyaQM-0ZSEAiXYnebw2kOyXWQ,2352
|
@@ -86,7 +87,7 @@ assisted_service_client/models/host_stage.py,sha256=YvTU-GZCuqc7gTzHwlaANPS1Iz2c
|
|
86
87
|
assisted_service_client/models/host_static_network_config.py,sha256=sKEeJ5w_O9XS7oey78pVlgkjOVFPtmPTQLECgZvGVnM,4424
|
87
88
|
assisted_service_client/models/host_type_hardware_requirements.py,sha256=6246yH8N_XNG0_QpMGAQvxK4mHQTBHD_ESjWQMYLVUE,4507
|
88
89
|
assisted_service_client/models/host_type_hardware_requirements_wrapper.py,sha256=zAV2uaPeFuPfvvTYWnELgMxoTzf-NQ1Qgb-z64BhajE,4256
|
89
|
-
assisted_service_client/models/host_update_params.py,sha256=
|
90
|
+
assisted_service_client/models/host_update_params.py,sha256=jloTencYqhCp6hIfINfp73Ozt8QdW7fMOCDBmrKlf48,11923
|
90
91
|
assisted_service_client/models/host_validation_id.py,sha256=1HU_DWWWPBsUMJPT_nCnh4qmwMMIX6sQ6pqnQP5DWmQ,6659
|
91
92
|
assisted_service_client/models/ignition_endpoint.py,sha256=dUS_tZE4zvAZwyjDpGV3geXYwD2ecuVDdtrKqNPn7bM,4058
|
92
93
|
assisted_service_client/models/ignition_endpoint_http_headers_params.py,sha256=2yhwXhtDwfq05bQWZQiNbxcEB9T7Kd-3yhH6xHI1-hY,4216
|
@@ -255,6 +256,7 @@ test/test_event_list.py,sha256=Qnb7sJkuZEKQGGbWzEl5BaEnQ9r046HMzHTG4w87NsI,853
|
|
255
256
|
test/test_events_api.py,sha256=CtvboUkHh_9dNVQvvvtyKddt12oI_oNsWPwXv-GoXnA,891
|
256
257
|
test/test_feature.py,sha256=rsg56PLbboZGP3_7SMTHxgoPW0HK2iu-C7J9NTTpUao,835
|
257
258
|
test/test_feature_support_level_id.py,sha256=e-DLylPtj5fYHud30PlkPWNkd39NsicxTuTaZ-WNjfo,953
|
259
|
+
test/test_fencing_credentials_params.py,sha256=P8gOVI38yaH8qRIlIOLygqVmIw2AhYLZnbiET8vIUJc,975
|
258
260
|
test/test_finalizing_stage.py,sha256=GKZH_maI4yLePFBVGIeuqXDiyYf6b2I8-o6xkFWp_-8,901
|
259
261
|
test/test_free_addresses_list.py,sha256=EhL9yl-YcsLpv0TGlvYmLr8qJgbX9MOrwCccuVIQXh0,919
|
260
262
|
test/test_free_addresses_request.py,sha256=LoRizc7RlHP7ET8oxRmq3WGr18Ssy_6W5xSQyhgIWvo,943
|
@@ -393,7 +395,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
393
395
|
test/test_versions_api.py,sha256=STXdU0DUr6Bmpp8YEBvPKo5ohNZKwxI0e_ddDi3F_1c,1087
|
394
396
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
395
397
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
396
|
-
assisted_service_client-2.45.0.
|
397
|
-
assisted_service_client-2.45.0.
|
398
|
-
assisted_service_client-2.45.0.
|
399
|
-
assisted_service_client-2.45.0.
|
398
|
+
assisted_service_client-2.45.0.post23.dist-info/METADATA,sha256=9N7MvVNDFByF8q7VpLQccxJw2xX2Ie92DzE3pMNNdUk,27151
|
399
|
+
assisted_service_client-2.45.0.post23.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
400
|
+
assisted_service_client-2.45.0.post23.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
401
|
+
assisted_service_client-2.45.0.post23.dist-info/RECORD,,
|
@@ -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.fencing_credentials_params import FencingCredentialsParams # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestFencingCredentialsParams(unittest.TestCase):
|
24
|
+
"""FencingCredentialsParams unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testFencingCredentialsParams(self):
|
33
|
+
"""Test FencingCredentialsParams"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.fencing_credentials_params.FencingCredentialsParams() # noqa: E501
|
36
|
+
pass
|
37
|
+
|
38
|
+
|
39
|
+
if __name__ == '__main__':
|
40
|
+
unittest.main()
|
File without changes
|
File without changes
|