assisted-service-client 2.16.0.post8__py3-none-any.whl → 2.16.0.post10__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 +6 -0
- assisted_service_client/api/installer_api.py +206 -4
- assisted_service_client/models/__init__.py +6 -0
- assisted_service_client/models/architecture_support_level_id.py +96 -0
- assisted_service_client/models/feature_support_level_id.py +113 -0
- assisted_service_client/models/featuresupportlevel_features.py +5 -11
- assisted_service_client/models/inline_response200.py +117 -0
- assisted_service_client/models/inline_response2001.py +117 -0
- assisted_service_client/models/support_level.py +95 -0
- assisted_service_client/models/support_levels.py +87 -0
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/METADATA +9 -1
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/RECORD +21 -9
- test/test_architecture_support_level_id.py +40 -0
- test/test_feature_support_level_id.py +40 -0
- test/test_inline_response200.py +40 -0
- test/test_inline_response2001.py +40 -0
- test/test_installer_api.py +12 -0
- test/test_support_level.py +40 -0
- test/test_support_levels.py +40 -0
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/WHEEL +0 -0
- {assisted_service_client-2.16.0.post8.dist-info → assisted_service_client-2.16.0.post10.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,117 @@
|
|
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 InlineResponse200(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
|
+
'features': 'SupportLevels'
|
35
|
+
}
|
36
|
+
|
37
|
+
attribute_map = {
|
38
|
+
'features': 'features'
|
39
|
+
}
|
40
|
+
|
41
|
+
def __init__(self, features=None): # noqa: E501
|
42
|
+
"""InlineResponse200 - a model defined in Swagger""" # noqa: E501
|
43
|
+
|
44
|
+
self._features = None
|
45
|
+
self.discriminator = None
|
46
|
+
|
47
|
+
if features is not None:
|
48
|
+
self.features = features
|
49
|
+
|
50
|
+
@property
|
51
|
+
def features(self):
|
52
|
+
"""Gets the features of this InlineResponse200. # noqa: E501
|
53
|
+
|
54
|
+
Keys will be one of features-support-level-id enum. # noqa: E501
|
55
|
+
|
56
|
+
:return: The features of this InlineResponse200. # noqa: E501
|
57
|
+
:rtype: SupportLevels
|
58
|
+
"""
|
59
|
+
return self._features
|
60
|
+
|
61
|
+
@features.setter
|
62
|
+
def features(self, features):
|
63
|
+
"""Sets the features of this InlineResponse200.
|
64
|
+
|
65
|
+
Keys will be one of features-support-level-id enum. # noqa: E501
|
66
|
+
|
67
|
+
:param features: The features of this InlineResponse200. # noqa: E501
|
68
|
+
:type: SupportLevels
|
69
|
+
"""
|
70
|
+
|
71
|
+
self._features = features
|
72
|
+
|
73
|
+
def to_dict(self):
|
74
|
+
"""Returns the model properties as a dict"""
|
75
|
+
result = {}
|
76
|
+
|
77
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
78
|
+
value = getattr(self, attr)
|
79
|
+
if isinstance(value, list):
|
80
|
+
result[attr] = list(map(
|
81
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
82
|
+
value
|
83
|
+
))
|
84
|
+
elif hasattr(value, "to_dict"):
|
85
|
+
result[attr] = value.to_dict()
|
86
|
+
elif isinstance(value, dict):
|
87
|
+
result[attr] = dict(map(
|
88
|
+
lambda item: (item[0], item[1].to_dict())
|
89
|
+
if hasattr(item[1], "to_dict") else item,
|
90
|
+
value.items()
|
91
|
+
))
|
92
|
+
else:
|
93
|
+
result[attr] = value
|
94
|
+
if issubclass(InlineResponse200, dict):
|
95
|
+
for key, value in self.items():
|
96
|
+
result[key] = value
|
97
|
+
|
98
|
+
return result
|
99
|
+
|
100
|
+
def to_str(self):
|
101
|
+
"""Returns the string representation of the model"""
|
102
|
+
return pprint.pformat(self.to_dict())
|
103
|
+
|
104
|
+
def __repr__(self):
|
105
|
+
"""For `print` and `pprint`"""
|
106
|
+
return self.to_str()
|
107
|
+
|
108
|
+
def __eq__(self, other):
|
109
|
+
"""Returns true if both objects are equal"""
|
110
|
+
if not isinstance(other, InlineResponse200):
|
111
|
+
return False
|
112
|
+
|
113
|
+
return self.__dict__ == other.__dict__
|
114
|
+
|
115
|
+
def __ne__(self, other):
|
116
|
+
"""Returns true if both objects are not equal"""
|
117
|
+
return not self == other
|
@@ -0,0 +1,117 @@
|
|
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 InlineResponse2001(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
|
+
'architectures': 'SupportLevels'
|
35
|
+
}
|
36
|
+
|
37
|
+
attribute_map = {
|
38
|
+
'architectures': 'architectures'
|
39
|
+
}
|
40
|
+
|
41
|
+
def __init__(self, architectures=None): # noqa: E501
|
42
|
+
"""InlineResponse2001 - a model defined in Swagger""" # noqa: E501
|
43
|
+
|
44
|
+
self._architectures = None
|
45
|
+
self.discriminator = None
|
46
|
+
|
47
|
+
if architectures is not None:
|
48
|
+
self.architectures = architectures
|
49
|
+
|
50
|
+
@property
|
51
|
+
def architectures(self):
|
52
|
+
"""Gets the architectures of this InlineResponse2001. # noqa: E501
|
53
|
+
|
54
|
+
Keys will be one of architecture-support-level-id enum. # noqa: E501
|
55
|
+
|
56
|
+
:return: The architectures of this InlineResponse2001. # noqa: E501
|
57
|
+
:rtype: SupportLevels
|
58
|
+
"""
|
59
|
+
return self._architectures
|
60
|
+
|
61
|
+
@architectures.setter
|
62
|
+
def architectures(self, architectures):
|
63
|
+
"""Sets the architectures of this InlineResponse2001.
|
64
|
+
|
65
|
+
Keys will be one of architecture-support-level-id enum. # noqa: E501
|
66
|
+
|
67
|
+
:param architectures: The architectures of this InlineResponse2001. # noqa: E501
|
68
|
+
:type: SupportLevels
|
69
|
+
"""
|
70
|
+
|
71
|
+
self._architectures = architectures
|
72
|
+
|
73
|
+
def to_dict(self):
|
74
|
+
"""Returns the model properties as a dict"""
|
75
|
+
result = {}
|
76
|
+
|
77
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
78
|
+
value = getattr(self, attr)
|
79
|
+
if isinstance(value, list):
|
80
|
+
result[attr] = list(map(
|
81
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
82
|
+
value
|
83
|
+
))
|
84
|
+
elif hasattr(value, "to_dict"):
|
85
|
+
result[attr] = value.to_dict()
|
86
|
+
elif isinstance(value, dict):
|
87
|
+
result[attr] = dict(map(
|
88
|
+
lambda item: (item[0], item[1].to_dict())
|
89
|
+
if hasattr(item[1], "to_dict") else item,
|
90
|
+
value.items()
|
91
|
+
))
|
92
|
+
else:
|
93
|
+
result[attr] = value
|
94
|
+
if issubclass(InlineResponse2001, dict):
|
95
|
+
for key, value in self.items():
|
96
|
+
result[key] = value
|
97
|
+
|
98
|
+
return result
|
99
|
+
|
100
|
+
def to_str(self):
|
101
|
+
"""Returns the string representation of the model"""
|
102
|
+
return pprint.pformat(self.to_dict())
|
103
|
+
|
104
|
+
def __repr__(self):
|
105
|
+
"""For `print` and `pprint`"""
|
106
|
+
return self.to_str()
|
107
|
+
|
108
|
+
def __eq__(self, other):
|
109
|
+
"""Returns true if both objects are equal"""
|
110
|
+
if not isinstance(other, InlineResponse2001):
|
111
|
+
return False
|
112
|
+
|
113
|
+
return self.__dict__ == other.__dict__
|
114
|
+
|
115
|
+
def __ne__(self, other):
|
116
|
+
"""Returns true if both objects are not equal"""
|
117
|
+
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 SupportLevel(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
|
+
SUPPORTED = "supported"
|
30
|
+
UNSUPPORTED = "unsupported"
|
31
|
+
TECH_PREVIEW = "tech-preview"
|
32
|
+
DEV_PREVIEW = "dev-preview"
|
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
|
+
"""SupportLevel - 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(SupportLevel, 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, SupportLevel):
|
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
|
@@ -0,0 +1,87 @@
|
|
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 SupportLevels(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
|
+
}
|
35
|
+
|
36
|
+
attribute_map = {
|
37
|
+
}
|
38
|
+
|
39
|
+
def __init__(self): # noqa: E501
|
40
|
+
"""SupportLevels - a model defined in Swagger""" # noqa: E501
|
41
|
+
self.discriminator = None
|
42
|
+
|
43
|
+
def to_dict(self):
|
44
|
+
"""Returns the model properties as a dict"""
|
45
|
+
result = {}
|
46
|
+
|
47
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
48
|
+
value = getattr(self, attr)
|
49
|
+
if isinstance(value, list):
|
50
|
+
result[attr] = list(map(
|
51
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
52
|
+
value
|
53
|
+
))
|
54
|
+
elif hasattr(value, "to_dict"):
|
55
|
+
result[attr] = value.to_dict()
|
56
|
+
elif isinstance(value, dict):
|
57
|
+
result[attr] = dict(map(
|
58
|
+
lambda item: (item[0], item[1].to_dict())
|
59
|
+
if hasattr(item[1], "to_dict") else item,
|
60
|
+
value.items()
|
61
|
+
))
|
62
|
+
else:
|
63
|
+
result[attr] = value
|
64
|
+
if issubclass(SupportLevels, dict):
|
65
|
+
for key, value in self.items():
|
66
|
+
result[key] = value
|
67
|
+
|
68
|
+
return result
|
69
|
+
|
70
|
+
def to_str(self):
|
71
|
+
"""Returns the string representation of the model"""
|
72
|
+
return pprint.pformat(self.to_dict())
|
73
|
+
|
74
|
+
def __repr__(self):
|
75
|
+
"""For `print` and `pprint`"""
|
76
|
+
return self.to_str()
|
77
|
+
|
78
|
+
def __eq__(self, other):
|
79
|
+
"""Returns true if both objects are equal"""
|
80
|
+
if not isinstance(other, SupportLevels):
|
81
|
+
return False
|
82
|
+
|
83
|
+
return self.__dict__ == other.__dict__
|
84
|
+
|
85
|
+
def __ne__(self, other):
|
86
|
+
"""Returns true if both objects are not equal"""
|
87
|
+
return not self == other
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: assisted-service-client
|
3
|
-
Version: 2.16.0.
|
3
|
+
Version: 2.16.0.post10
|
4
4
|
Summary: AssistedInstall
|
5
5
|
Home-page: https://github.com/openshift/assisted-service
|
6
6
|
Author: RedHat
|
@@ -119,6 +119,8 @@ Class | Method | HTTP request | Description
|
|
119
119
|
*InstallerApi* | [**get_infra_env**](docs/InstallerApi.md#get_infra_env) | **GET** /v2/infra-envs/{infra_env_id} |
|
120
120
|
*InstallerApi* | [**get_infra_env_download_url**](docs/InstallerApi.md#get_infra_env_download_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/image-url |
|
121
121
|
*InstallerApi* | [**get_infra_env_presigned_file_url**](docs/InstallerApi.md#get_infra_env_presigned_file_url) | **GET** /v2/infra-envs/{infra_env_id}/downloads/files-presigned |
|
122
|
+
*InstallerApi* | [**get_supported_architectures**](docs/InstallerApi.md#get_supported_architectures) | **GET** /v2/support-levels/architectures |
|
123
|
+
*InstallerApi* | [**get_supported_features**](docs/InstallerApi.md#get_supported_features) | **GET** /v2/support-levels/features |
|
122
124
|
*InstallerApi* | [**list_cluster_hosts**](docs/InstallerApi.md#list_cluster_hosts) | **GET** /v2/clusters/{cluster_id}/hosts |
|
123
125
|
*InstallerApi* | [**list_infra_envs**](docs/InstallerApi.md#list_infra_envs) | **GET** /v2/infra-envs |
|
124
126
|
*InstallerApi* | [**regenerate_infra_env_signing_key**](docs/InstallerApi.md#regenerate_infra_env_signing_key) | **POST** /v2/infra-envs/{infra_env_id}/regenerate-signing-key |
|
@@ -190,6 +192,7 @@ Class | Method | HTTP request | Description
|
|
190
192
|
- [ApiVip](docs/ApiVip.md)
|
191
193
|
- [ApiVipConnectivityRequest](docs/ApiVipConnectivityRequest.md)
|
192
194
|
- [ApiVipConnectivityResponse](docs/ApiVipConnectivityResponse.md)
|
195
|
+
- [ArchitectureSupportLevelId](docs/ArchitectureSupportLevelId.md)
|
193
196
|
- [BindHostParams](docs/BindHostParams.md)
|
194
197
|
- [Boot](docs/Boot.md)
|
195
198
|
- [Cluster](docs/Cluster.md)
|
@@ -237,6 +240,7 @@ Class | Method | HTTP request | Description
|
|
237
240
|
- [Event](docs/Event.md)
|
238
241
|
- [EventList](docs/EventList.md)
|
239
242
|
- [FeatureSupportLevel](docs/FeatureSupportLevel.md)
|
243
|
+
- [FeatureSupportLevelId](docs/FeatureSupportLevelId.md)
|
240
244
|
- [FeatureSupportLevels](docs/FeatureSupportLevels.md)
|
241
245
|
- [FeaturesupportlevelFeatures](docs/FeaturesupportlevelFeatures.md)
|
242
246
|
- [FreeAddressesList](docs/FreeAddressesList.md)
|
@@ -274,6 +278,8 @@ Class | Method | HTTP request | Description
|
|
274
278
|
- [InfraError](docs/InfraError.md)
|
275
279
|
- [IngressCertParams](docs/IngressCertParams.md)
|
276
280
|
- [IngressVip](docs/IngressVip.md)
|
281
|
+
- [InlineResponse200](docs/InlineResponse200.md)
|
282
|
+
- [InlineResponse2001](docs/InlineResponse2001.md)
|
277
283
|
- [InstallCmdRequest](docs/InstallCmdRequest.md)
|
278
284
|
- [InstallerArgsParams](docs/InstallerArgsParams.md)
|
279
285
|
- [Interface](docs/Interface.md)
|
@@ -334,6 +340,8 @@ Class | Method | HTTP request | Description
|
|
334
340
|
- [Steps](docs/Steps.md)
|
335
341
|
- [StepsReply](docs/StepsReply.md)
|
336
342
|
- [Subnet](docs/Subnet.md)
|
343
|
+
- [SupportLevel](docs/SupportLevel.md)
|
344
|
+
- [SupportLevels](docs/SupportLevels.md)
|
337
345
|
- [SystemVendor](docs/SystemVendor.md)
|
338
346
|
- [TangConnectivityRequest](docs/TangConnectivityRequest.md)
|
339
347
|
- [TangConnectivityResponse](docs/TangConnectivityResponse.md)
|
@@ -1,18 +1,19 @@
|
|
1
|
-
assisted_service_client/__init__.py,sha256=
|
1
|
+
assisted_service_client/__init__.py,sha256=gXlmnEFGoUX1RIadez42KfhRjiBujZSfLxdvd9QAdU0,14439
|
2
2
|
assisted_service_client/api_client.py,sha256=ypPMDOaIc8GI-xm-g5PrNLYlakkK5K3qcJBjJP5GlbM,24986
|
3
3
|
assisted_service_client/configuration.py,sha256=cnW5aIc2HR6HqBv7LXhMfoJTdfPhBed_97UxKDzE8Ro,9078
|
4
4
|
assisted_service_client/rest.py,sha256=fLcY2m9yxpqJW4agxf3yCJyiz486qPLgqw8CbCuftZw,13123
|
5
5
|
assisted_service_client/api/__init__.py,sha256=PblMXYK6UKW4rSdDx3F7SA-M1xpjo4rzTBZOx0_cotA,492
|
6
6
|
assisted_service_client/api/events_api.py,sha256=UHTAEW0MJ7ikH19s1HQGOpcRQ3NwIkqDFe4nYme3UJE,5166
|
7
|
-
assisted_service_client/api/installer_api.py,sha256=
|
7
|
+
assisted_service_client/api/installer_api.py,sha256=bJnmh8m_WMfu8D7gJc5mZk1ZpDtVeHWfTnV1F5VHpoo,289003
|
8
8
|
assisted_service_client/api/managed_domains_api.py,sha256=rTPj3IVxrECtMc_-acZ14u6WydVqHVw6VaM7I8Zvu3g,4087
|
9
9
|
assisted_service_client/api/manifests_api.py,sha256=OQ2msOJy-qFoMZqfvkPTXgKUYwjfTXIGoozdsGV_luA,19834
|
10
10
|
assisted_service_client/api/operators_api.py,sha256=d-QpJNPGcrAKlE2zG7K160zWrQ7_Wig4osid_92zSTQ,17473
|
11
11
|
assisted_service_client/api/versions_api.py,sha256=UakBz9aWYY3xBKf2hKJfXqrQSlYV7xwQtk5DNri4qug,7618
|
12
|
-
assisted_service_client/models/__init__.py,sha256=
|
12
|
+
assisted_service_client/models/__init__.py,sha256=V4niC-onTIkPI7Y7X38rOmHqOrW48CXqbl4t4sABzdE,13863
|
13
13
|
assisted_service_client/models/api_vip.py,sha256=gn7i8OtCG3uzm-Ymku55LMWWOn9sujJ-tJ-eZ2VSLkk,4590
|
14
14
|
assisted_service_client/models/api_vip_connectivity_request.py,sha256=PEL8MtQtXy7P7_NySqm15gEgpLUKPEekZJOliBi0td8,6445
|
15
15
|
assisted_service_client/models/api_vip_connectivity_response.py,sha256=g_lug17OFCNbmB81u5xz4TL2XMVLqZ3cpFj9VOP6AUk,6425
|
16
|
+
assisted_service_client/models/architecture_support_level_id.py,sha256=hlG08k4mpxplccAeBy2aiF41lp7zcTUyxPP98x2mXUg,2711
|
16
17
|
assisted_service_client/models/bind_host_params.py,sha256=R6AntLnkrOE_uVaRECc_gx1QPfUmPsVNI06LoDQJONI,3170
|
17
18
|
assisted_service_client/models/boot.py,sha256=wI3n2GNqGeNUuBnHwe0LyZ_7pmNJElhmF8jAgh_sk7U,3866
|
18
19
|
assisted_service_client/models/cluster.py,sha256=QFFRQiRWwxlQTJZ4UqfiEqw2pECnKcotJzo810qQGaM,74124
|
@@ -60,8 +61,9 @@ assisted_service_client/models/error.py,sha256=walFlNpGmfMxSd9Cmv4eZkNHQx-0tOXpr
|
|
60
61
|
assisted_service_client/models/event.py,sha256=PRfTmDyGf-75xERGe_xuutt-2H0ZpVFSH2f2RK-qHUc,10372
|
61
62
|
assisted_service_client/models/event_list.py,sha256=QTzSwTlY-Kx3OA1kgBnYDEvULyrdLv-7DAByMgqH7-c,2356
|
62
63
|
assisted_service_client/models/feature_support_level.py,sha256=-sN5Hec52FU3WCmiUNvl4TMZ82IkQh2OgorskjsMxMM,4148
|
64
|
+
assisted_service_client/models/feature_support_level_id.py,sha256=fX8DdfOJnd1DXXJ7x2i28mILfXR6LwJiR6rhEDCNOqo,3423
|
63
65
|
assisted_service_client/models/feature_support_levels.py,sha256=SiL0Y74bbf6OEPO0pcNcaT3iN98-JGRx05eJPT0mVMM,2400
|
64
|
-
assisted_service_client/models/featuresupportlevel_features.py,sha256=
|
66
|
+
assisted_service_client/models/featuresupportlevel_features.py,sha256=Djdoy7FfC0NGgopIx8VEq1P8YTR4dTcYbvMf_IfUolY,5180
|
65
67
|
assisted_service_client/models/free_addresses_list.py,sha256=P2q1fq3cR6BJq4i4V-gXpfG32TWIhFX4zScGzdRQmpw,2388
|
66
68
|
assisted_service_client/models/free_addresses_request.py,sha256=6EjcZ6eCz2tGdz6axoRHwILSNz0-7_A6-dIjmxeFe1k,2400
|
67
69
|
assisted_service_client/models/free_network_addresses.py,sha256=4qbfXsYN_X6t0hJiF4JFhHbGEg8SEe-0OO5vn3cn8os,3896
|
@@ -97,6 +99,8 @@ assisted_service_client/models/infra_env_update_params.py,sha256=HA4LHuLcj6I0Vl0
|
|
97
99
|
assisted_service_client/models/infra_error.py,sha256=Y5c3rRcqf_HKAPKzX5xUVvXpFVcT0ygZnWtPFH-NF74,4314
|
98
100
|
assisted_service_client/models/ingress_cert_params.py,sha256=-XP1NimCqaTWoxjUIJ_ELs5y37ShwaeKXadoOvUTiPA,2388
|
99
101
|
assisted_service_client/models/ingress_vip.py,sha256=lyf0K-0cVmdhuflocLIEtJ1r-zZjiYUb6BJmY8h-Vlk,4662
|
102
|
+
assisted_service_client/models/inline_response200.py,sha256=HB1HAsvw3l7H114kwQFzu9JKiMO8ug-I9iAezdSC5LI,3243
|
103
|
+
assisted_service_client/models/inline_response2001.py,sha256=Q272STaPtS7c5buEsQ6lQNQMO5r2IOxD9MUp92bNp0w,3359
|
100
104
|
assisted_service_client/models/install_cmd_request.py,sha256=r8AZ2fGWU4T5LkRd_-x93y4irQg5iJS6fWr2OWpTpgg,18384
|
101
105
|
assisted_service_client/models/installer_args_params.py,sha256=FDBsAPct6q5rMbPlFSP4CUHoWfhJnPiT4idOGoi0Wb0,3175
|
102
106
|
assisted_service_client/models/interface.py,sha256=oens5JgzzW7b7y2_m3da_xnlB39d2ZTFNWJy6j7Qfws,10898
|
@@ -157,6 +161,8 @@ assisted_service_client/models/step_type.py,sha256=567wJ_14wd0WHMLAoVQrSQrVQUxRe
|
|
157
161
|
assisted_service_client/models/steps.py,sha256=QAlF0zqtM9vIQGWzzb7aBt8mTcW1RwCIKEMWLy9d1qA,5270
|
158
162
|
assisted_service_client/models/steps_reply.py,sha256=Dqc1uuWLcm4nisxHZCH6P_TbFk9NZAeHRBb5wicBWuo,2360
|
159
163
|
assisted_service_client/models/subnet.py,sha256=Epn0doQUZTlG58A53-3kG-a8lFK1n4sARUbFmnnc8UY,2344
|
164
|
+
assisted_service_client/models/support_level.py,sha256=3z847RxkOCZIF5lEw1ZaCAe_UPEEvsUcsw1vhyXlVAQ,2535
|
165
|
+
assisted_service_client/models/support_levels.py,sha256=Kxq1bjFcOGrBzoCw1S14LTK56fuIr_TQQMFmwPDRpqk,2372
|
160
166
|
assisted_service_client/models/system_vendor.py,sha256=AudPKdZk3MbGIEsiTWwgpJ6eOSMCkCob_dEtZ2_VsLM,5401
|
161
167
|
assisted_service_client/models/tang_connectivity_request.py,sha256=qZtqvsHImR5TW-iHQBbXh1cm8KE-kE101TggN82h_4w,3502
|
162
168
|
assisted_service_client/models/tang_connectivity_response.py,sha256=lgSqWotXJjrkrJUS5csofWDmnxlVQDnKZKwcbfR1WO0,4326
|
@@ -179,6 +185,7 @@ test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
179
185
|
test/test_api_vip.py,sha256=JSHGrpUtuMBJ8v6BUke0yKaK-TOyj6dYDtEfpohvwn8,829
|
180
186
|
test/test_api_vip_connectivity_request.py,sha256=0Blncr3gZR7Mu437Anlyd1tGmCdfxghwP2Ye3j6NNmU,985
|
181
187
|
test/test_api_vip_connectivity_response.py,sha256=lS0tibxSXY-4oQFMLWAh_LaPMpbYDw6FgEckDRqH-Jw,993
|
188
|
+
test/test_architecture_support_level_id.py,sha256=ss-FbJ3EVGl7IW8y443o_59k5hUrcoc8HVEHi6bsDJ8,993
|
182
189
|
test/test_bind_host_params.py,sha256=FStw5r2XdIvvWM0x0RwGKNHJCCZDChlo9-0M_eduZIE,895
|
183
190
|
test/test_boot.py,sha256=bAvvmrxH391Wxy33I-XLgSVPNOuvXZsDOvqeNIa5HaA,811
|
184
191
|
test/test_cluster.py,sha256=154SEV85baNOGhubzXgs4TiP7R9NlBSu4o0ycGJNVPs,835
|
@@ -227,6 +234,7 @@ test/test_event.py,sha256=vBQFkmVuIWalKyKH8QDRsQSW1h_1xpvAV6PhWVW2Utw,819
|
|
227
234
|
test/test_event_list.py,sha256=Qnb7sJkuZEKQGGbWzEl5BaEnQ9r046HMzHTG4w87NsI,853
|
228
235
|
test/test_events_api.py,sha256=QfK9ent05e5JtNiN0XAlVW6dk86wLLd8FMyNP_Nsg-o,785
|
229
236
|
test/test_feature_support_level.py,sha256=B8M_BUsWRhQ1qBb-8gdUlA_Ls9tvyV4QxaU8m-CM-1k,935
|
237
|
+
test/test_feature_support_level_id.py,sha256=e-DLylPtj5fYHud30PlkPWNkd39NsicxTuTaZ-WNjfo,953
|
230
238
|
test/test_feature_support_levels.py,sha256=8lwXHMF93FR66GW9Dw1KwINJUJSj8WvEtKWHQ87ZWm8,943
|
231
239
|
test/test_featuresupportlevel_features.py,sha256=NPAZtcYm8tKPjyRmuSnqzSrfcPRIjlP4Nafs6rDSM3Y,997
|
232
240
|
test/test_free_addresses_list.py,sha256=EhL9yl-YcsLpv0TGlvYmLr8qJgbX9MOrwCccuVIQXh0,919
|
@@ -264,8 +272,10 @@ test/test_infra_env_update_params.py,sha256=dV86hniyvitTbs3ZAvUQdrzlMJ8M0JdjPuph
|
|
264
272
|
test/test_infra_error.py,sha256=iSl0w0dIE1L_d-5mKr_mDVjbjiJRHY8PGKXe5lZH8FU,861
|
265
273
|
test/test_ingress_cert_params.py,sha256=GZ39-TZHdnF60CFvMNjVTXrquey_oy82y_f4pgnpXmA,919
|
266
274
|
test/test_ingress_vip.py,sha256=FIInh8SktPadK_JmC5twjDAIaMnHxyxFMtsaDU30eJk,861
|
275
|
+
test/test_inline_response200.py,sha256=ma3jwgrH-LwlcXU_njUUGcNRaP73VFf-RCq5BGLDv9k,917
|
276
|
+
test/test_inline_response2001.py,sha256=kIUutSpuCGh0GHQOuACqeoZecLqBNZxFLPpjH9XPE4g,925
|
267
277
|
test/test_install_cmd_request.py,sha256=2SMQgHeJknXJwXq8LDD6D5My3QF7Z_ox29rRtQ6TnmY,919
|
268
|
-
test/test_installer_api.py,sha256=
|
278
|
+
test/test_installer_api.py,sha256=0QnjPMWaf1Y-oKfs3K19U7CUbjQeqZHjk3Ne59GXeig,8157
|
269
279
|
test/test_installer_args_params.py,sha256=5DLOVk1UexAfQBSOHbBILrYGrXXN0GeV2lsTuSddMHw,935
|
270
280
|
test/test_interface.py,sha256=aKMlQAzR68c2sit6Lqcc6py07tqoRyX0j8z-j91HK7A,851
|
271
281
|
test/test_inventory.py,sha256=9aK7xDNHZbTLYWDdRmEKTCtiOLlgyRgS7Qw4OAO5NMw,851
|
@@ -328,6 +338,8 @@ test/test_step_type.py,sha256=trtforz08jnwsxt2-tyVn9iIBSlxgoYj__jbdCkd1sc,845
|
|
328
338
|
test/test_steps.py,sha256=JLOVRzvf8oK8EZjICYXQUnbXe__6CaPTNyir2NxIUnk,819
|
329
339
|
test/test_steps_reply.py,sha256=KtQugYwfCpDE_rzq5s22UqbuX62VtaFnrg5tSCM4MeQ,861
|
330
340
|
test/test_subnet.py,sha256=AHxeVD5ugHwCwUbr7yYllFiIxd2Z0Iyx0XupB1EKAGE,827
|
341
|
+
test/test_support_level.py,sha256=mfiJqy4CnQEPnZSrwVLozqyWQXsx23K49wA7-ivujFE,877
|
342
|
+
test/test_support_levels.py,sha256=XCzO_bMAugJr5QM3dK0FJlbLjpSjmKnqb_deR2wKQME,885
|
331
343
|
test/test_system_vendor.py,sha256=NwldJwVJI8Rh6mbOK1kyqbYRW-RnlMWpBKZG-azMbiI,877
|
332
344
|
test/test_tang_connectivity_request.py,sha256=oEv4vpNu8O17vL3qaKSP8yc9odzYd110YmeBnMMq14s,967
|
333
345
|
test/test_tang_connectivity_response.py,sha256=PIp6zS3o843XCIE2-vRRsdvKcBny6h1h-mFyomDE-QA,975
|
@@ -347,7 +359,7 @@ test/test_versions.py,sha256=n-4xIBBiEuExya4yfHjxHbsRinb_vccUxwIrMxyEvfk,843
|
|
347
359
|
test/test_versions_api.py,sha256=1I1X8zO7RRpqgvWhuV05bK2PnSQfYjN7_d4eBYkum1s,967
|
348
360
|
test/test_vip_type.py,sha256=MAse7Cn2PT8pBELxmmAa4X9K_fZ-jtvNTmrqQ0Hvc-o,837
|
349
361
|
test/test_vip_verification.py,sha256=DwaHdagiOxRAPQ8TN541xSPn--MJEbRATBm1h3OmmZ4,901
|
350
|
-
assisted_service_client-2.16.0.
|
351
|
-
assisted_service_client-2.16.0.
|
352
|
-
assisted_service_client-2.16.0.
|
353
|
-
assisted_service_client-2.16.0.
|
362
|
+
assisted_service_client-2.16.0.post10.dist-info/METADATA,sha256=-cK0lNrjPoIv7D07c8zkp6JWcSF-A1jjoBR3S5raYfc,23717
|
363
|
+
assisted_service_client-2.16.0.post10.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
364
|
+
assisted_service_client-2.16.0.post10.dist-info/top_level.txt,sha256=4hfKi9CMXGm1B8Tohp02sqpWY8GTFoD38UbGI8duAD4,29
|
365
|
+
assisted_service_client-2.16.0.post10.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.architecture_support_level_id import ArchitectureSupportLevelId # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestArchitectureSupportLevelId(unittest.TestCase):
|
24
|
+
"""ArchitectureSupportLevelId unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testArchitectureSupportLevelId(self):
|
33
|
+
"""Test ArchitectureSupportLevelId"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.architecture_support_level_id.ArchitectureSupportLevelId() # noqa: E501
|
36
|
+
pass
|
37
|
+
|
38
|
+
|
39
|
+
if __name__ == '__main__':
|
40
|
+
unittest.main()
|
@@ -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.feature_support_level_id import FeatureSupportLevelId # noqa: E501
|
20
|
+
from assisted_service_client.rest import ApiException
|
21
|
+
|
22
|
+
|
23
|
+
class TestFeatureSupportLevelId(unittest.TestCase):
|
24
|
+
"""FeatureSupportLevelId unit test stubs"""
|
25
|
+
|
26
|
+
def setUp(self):
|
27
|
+
pass
|
28
|
+
|
29
|
+
def tearDown(self):
|
30
|
+
pass
|
31
|
+
|
32
|
+
def testFeatureSupportLevelId(self):
|
33
|
+
"""Test FeatureSupportLevelId"""
|
34
|
+
# FIXME: construct object with mandatory attributes with example values
|
35
|
+
# model = assisted_service_client.models.feature_support_level_id.FeatureSupportLevelId() # noqa: E501
|
36
|
+
pass
|
37
|
+
|
38
|
+
|
39
|
+
if __name__ == '__main__':
|
40
|
+
unittest.main()
|