pulp_2to3_migration_client 0.2.0b2.dev01587578581 → 0.2.0b3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -7
  3. data/docs/InlineResponse200.md +1 -1
  4. data/docs/InlineResponse2001.md +1 -1
  5. data/docs/InlineResponse2002.md +1 -1
  6. data/docs/MigrationPlansApi.md +5 -5
  7. data/docs/Pulp2contentApi.md +3 -3
  8. data/docs/Pulp2repositoriesApi.md +3 -3
  9. data/docs/Pulp2to3MigrationMigrationPlanRead.md +21 -0
  10. data/docs/{Pulp2to3MigrationPulp2Content.md → Pulp2to3MigrationPulp2ContentRead.md} +5 -3
  11. data/docs/{Pulp2to3MigrationPulp2Repository.md → Pulp2to3MigrationPulp2RepositoryRead.md} +2 -2
  12. data/lib/pulp_2to3_migration_client.rb +3 -2
  13. data/lib/pulp_2to3_migration_client/api/migration_plans_api.rb +6 -6
  14. data/lib/pulp_2to3_migration_client/api/pulp2content_api.rb +3 -3
  15. data/lib/pulp_2to3_migration_client/api/pulp2repositories_api.rb +3 -3
  16. data/lib/pulp_2to3_migration_client/configuration.rb +2 -2
  17. data/lib/pulp_2to3_migration_client/models/inline_response200.rb +1 -1
  18. data/lib/pulp_2to3_migration_client/models/inline_response2001.rb +1 -1
  19. data/lib/pulp_2to3_migration_client/models/inline_response2002.rb +1 -1
  20. data/lib/pulp_2to3_migration_client/models/pulp2to3_migration_migration_plan_read.rb +231 -0
  21. data/lib/pulp_2to3_migration_client/models/{pulp2to3_migration_pulp2_content.rb → pulp2to3_migration_pulp2_content_read.rb} +33 -8
  22. data/lib/pulp_2to3_migration_client/models/{pulp2to3_migration_pulp2_repository.rb → pulp2to3_migration_pulp2_repository_read.rb} +3 -3
  23. data/lib/pulp_2to3_migration_client/version.rb +1 -1
  24. data/pulpcore/__init__.py +2 -0
  25. data/pulpcore/client/__init__.py +2 -0
  26. data/pulpcore/client/pulp_2to3_migration/__init__.py +42 -0
  27. data/pulpcore/client/pulp_2to3_migration/api/__init__.py +8 -0
  28. data/pulpcore/client/pulp_2to3_migration/api/migration_plans_api.py +609 -0
  29. data/pulpcore/client/pulp_2to3_migration/api/pulp2content_api.py +317 -0
  30. data/pulpcore/client/pulp_2to3_migration/api/pulp2repositories_api.py +289 -0
  31. data/pulpcore/client/pulp_2to3_migration/api_client.py +647 -0
  32. data/pulpcore/client/pulp_2to3_migration/configuration.py +387 -0
  33. data/pulpcore/client/pulp_2to3_migration/exceptions.py +120 -0
  34. data/pulpcore/client/pulp_2to3_migration/models/__init__.py +25 -0
  35. data/pulpcore/client/pulp_2to3_migration/models/async_operation_response.py +123 -0
  36. data/pulpcore/client/pulp_2to3_migration/models/inline_response200.py +198 -0
  37. data/pulpcore/client/pulp_2to3_migration/models/inline_response2001.py +198 -0
  38. data/pulpcore/client/pulp_2to3_migration/models/inline_response2002.py +198 -0
  39. data/pulpcore/client/pulp_2to3_migration/models/migration_plan_run.py +150 -0
  40. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan.py +177 -0
  41. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_migration_plan_read.py +177 -0
  42. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_content_read.py +353 -0
  43. data/pulpcore/client/pulp_2to3_migration/models/pulp2to3_migration_pulp2_repository_read.py +441 -0
  44. data/pulpcore/client/pulp_2to3_migration/rest.py +296 -0
  45. data/requirements.txt +6 -0
  46. data/setup.cfg +2 -0
  47. data/setup.py +41 -0
  48. data/spec/api/migration_plans_api_spec.rb +2 -2
  49. data/spec/api/pulp2content_api_spec.rb +1 -1
  50. data/spec/api/pulp2repositories_api_spec.rb +1 -1
  51. data/spec/configuration_spec.rb +3 -3
  52. data/spec/models/pulp2to3_migration_migration_plan_read_spec.rb +53 -0
  53. data/spec/models/{pulp2to3_migration_pulp2_content_spec.rb → pulp2to3_migration_pulp2_content_read_spec.rb} +12 -6
  54. data/spec/models/{pulp2to3_migration_pulp2_repository_spec.rb → pulp2to3_migration_pulp2_repository_read_spec.rb} +6 -6
  55. data/test-requirements.txt +3 -0
  56. data/test/__init__.py +0 -0
  57. data/test/test_async_operation_response.py +53 -0
  58. data/test/test_inline_response200.py +67 -0
  59. data/test/test_inline_response2001.py +79 -0
  60. data/test/test_inline_response2002.py +89 -0
  61. data/test/test_migration_plan_run.py +53 -0
  62. data/test/test_migration_plans_api.py +68 -0
  63. data/test/test_pulp2content_api.py +47 -0
  64. data/test/test_pulp2repositories_api.py +47 -0
  65. data/test/test_pulp2to3_migration_migration_plan.py +55 -0
  66. data/test/test_pulp2to3_migration_migration_plan_read.py +55 -0
  67. data/test/test_pulp2to3_migration_pulp2_content_read.py +64 -0
  68. data/test/test_pulp2to3_migration_pulp2_repository_read.py +68 -0
  69. data/tox.ini +9 -0
  70. metadata +53 -10
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+ """
5
+ Pulp 3 API
6
+
7
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
8
+
9
+ The version of the OpenAPI document: v3
10
+ Generated by: https://openapi-generator.tech
11
+ """
12
+
13
+
14
+ from __future__ import absolute_import
15
+
16
+ # import models into model package
17
+ from pulpcore.client.pulp_2to3_migration.models.async_operation_response import AsyncOperationResponse
18
+ from pulpcore.client.pulp_2to3_migration.models.inline_response200 import InlineResponse200
19
+ from pulpcore.client.pulp_2to3_migration.models.inline_response2001 import InlineResponse2001
20
+ from pulpcore.client.pulp_2to3_migration.models.inline_response2002 import InlineResponse2002
21
+ from pulpcore.client.pulp_2to3_migration.models.migration_plan_run import MigrationPlanRun
22
+ from pulpcore.client.pulp_2to3_migration.models.pulp2to3_migration_migration_plan import Pulp2to3MigrationMigrationPlan
23
+ from pulpcore.client.pulp_2to3_migration.models.pulp2to3_migration_migration_plan_read import Pulp2to3MigrationMigrationPlanRead
24
+ from pulpcore.client.pulp_2to3_migration.models.pulp2to3_migration_pulp2_content_read import Pulp2to3MigrationPulp2ContentRead
25
+ from pulpcore.client.pulp_2to3_migration.models.pulp2to3_migration_pulp2_repository_read import Pulp2to3MigrationPulp2RepositoryRead
@@ -0,0 +1,123 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: v3
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from pulpcore.client.pulp_2to3_migration.configuration import Configuration
19
+
20
+
21
+ class AsyncOperationResponse(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'task': 'str'
37
+ }
38
+
39
+ attribute_map = {
40
+ 'task': 'task'
41
+ }
42
+
43
+ def __init__(self, task=None, local_vars_configuration=None): # noqa: E501
44
+ """AsyncOperationResponse - a model defined in OpenAPI""" # noqa: E501
45
+ if local_vars_configuration is None:
46
+ local_vars_configuration = Configuration()
47
+ self.local_vars_configuration = local_vars_configuration
48
+
49
+ self._task = None
50
+ self.discriminator = None
51
+
52
+ self.task = task
53
+
54
+ @property
55
+ def task(self):
56
+ """Gets the task of this AsyncOperationResponse. # noqa: E501
57
+
58
+ The href of the task. # noqa: E501
59
+
60
+ :return: The task of this AsyncOperationResponse. # noqa: E501
61
+ :rtype: str
62
+ """
63
+ return self._task
64
+
65
+ @task.setter
66
+ def task(self, task):
67
+ """Sets the task of this AsyncOperationResponse.
68
+
69
+ The href of the task. # noqa: E501
70
+
71
+ :param task: The task of this AsyncOperationResponse. # noqa: E501
72
+ :type: str
73
+ """
74
+ if self.local_vars_configuration.client_side_validation and task is None: # noqa: E501
75
+ raise ValueError("Invalid value for `task`, must not be `None`") # noqa: E501
76
+
77
+ self._task = task
78
+
79
+ def to_dict(self):
80
+ """Returns the model properties as a dict"""
81
+ result = {}
82
+
83
+ for attr, _ in six.iteritems(self.openapi_types):
84
+ value = getattr(self, attr)
85
+ if isinstance(value, list):
86
+ result[attr] = list(map(
87
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
88
+ value
89
+ ))
90
+ elif hasattr(value, "to_dict"):
91
+ result[attr] = value.to_dict()
92
+ elif isinstance(value, dict):
93
+ result[attr] = dict(map(
94
+ lambda item: (item[0], item[1].to_dict())
95
+ if hasattr(item[1], "to_dict") else item,
96
+ value.items()
97
+ ))
98
+ else:
99
+ result[attr] = value
100
+
101
+ return result
102
+
103
+ def to_str(self):
104
+ """Returns the string representation of the model"""
105
+ return pprint.pformat(self.to_dict())
106
+
107
+ def __repr__(self):
108
+ """For `print` and `pprint`"""
109
+ return self.to_str()
110
+
111
+ def __eq__(self, other):
112
+ """Returns true if both objects are equal"""
113
+ if not isinstance(other, AsyncOperationResponse):
114
+ return False
115
+
116
+ return self.to_dict() == other.to_dict()
117
+
118
+ def __ne__(self, other):
119
+ """Returns true if both objects are not equal"""
120
+ if not isinstance(other, AsyncOperationResponse):
121
+ return True
122
+
123
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,198 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: v3
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from pulpcore.client.pulp_2to3_migration.configuration import Configuration
19
+
20
+
21
+ class InlineResponse200(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'count': 'int',
37
+ 'next': 'str',
38
+ 'previous': 'str',
39
+ 'results': 'list[Pulp2to3MigrationMigrationPlanRead]'
40
+ }
41
+
42
+ attribute_map = {
43
+ 'count': 'count',
44
+ 'next': 'next',
45
+ 'previous': 'previous',
46
+ 'results': 'results'
47
+ }
48
+
49
+ def __init__(self, count=None, next=None, previous=None, results=None, local_vars_configuration=None): # noqa: E501
50
+ """InlineResponse200 - a model defined in OpenAPI""" # noqa: E501
51
+ if local_vars_configuration is None:
52
+ local_vars_configuration = Configuration()
53
+ self.local_vars_configuration = local_vars_configuration
54
+
55
+ self._count = None
56
+ self._next = None
57
+ self._previous = None
58
+ self._results = None
59
+ self.discriminator = None
60
+
61
+ self.count = count
62
+ self.next = next
63
+ self.previous = previous
64
+ self.results = results
65
+
66
+ @property
67
+ def count(self):
68
+ """Gets the count of this InlineResponse200. # noqa: E501
69
+
70
+
71
+ :return: The count of this InlineResponse200. # noqa: E501
72
+ :rtype: int
73
+ """
74
+ return self._count
75
+
76
+ @count.setter
77
+ def count(self, count):
78
+ """Sets the count of this InlineResponse200.
79
+
80
+
81
+ :param count: The count of this InlineResponse200. # noqa: E501
82
+ :type: int
83
+ """
84
+ if self.local_vars_configuration.client_side_validation and count is None: # noqa: E501
85
+ raise ValueError("Invalid value for `count`, must not be `None`") # noqa: E501
86
+
87
+ self._count = count
88
+
89
+ @property
90
+ def next(self):
91
+ """Gets the next of this InlineResponse200. # noqa: E501
92
+
93
+
94
+ :return: The next of this InlineResponse200. # noqa: E501
95
+ :rtype: str
96
+ """
97
+ return self._next
98
+
99
+ @next.setter
100
+ def next(self, next):
101
+ """Sets the next of this InlineResponse200.
102
+
103
+
104
+ :param next: The next of this InlineResponse200. # noqa: E501
105
+ :type: str
106
+ """
107
+
108
+ self._next = next
109
+
110
+ @property
111
+ def previous(self):
112
+ """Gets the previous of this InlineResponse200. # noqa: E501
113
+
114
+
115
+ :return: The previous of this InlineResponse200. # noqa: E501
116
+ :rtype: str
117
+ """
118
+ return self._previous
119
+
120
+ @previous.setter
121
+ def previous(self, previous):
122
+ """Sets the previous of this InlineResponse200.
123
+
124
+
125
+ :param previous: The previous of this InlineResponse200. # noqa: E501
126
+ :type: str
127
+ """
128
+
129
+ self._previous = previous
130
+
131
+ @property
132
+ def results(self):
133
+ """Gets the results of this InlineResponse200. # noqa: E501
134
+
135
+
136
+ :return: The results of this InlineResponse200. # noqa: E501
137
+ :rtype: list[Pulp2to3MigrationMigrationPlanRead]
138
+ """
139
+ return self._results
140
+
141
+ @results.setter
142
+ def results(self, results):
143
+ """Sets the results of this InlineResponse200.
144
+
145
+
146
+ :param results: The results of this InlineResponse200. # noqa: E501
147
+ :type: list[Pulp2to3MigrationMigrationPlanRead]
148
+ """
149
+ if self.local_vars_configuration.client_side_validation and results is None: # noqa: E501
150
+ raise ValueError("Invalid value for `results`, must not be `None`") # noqa: E501
151
+
152
+ self._results = results
153
+
154
+ def to_dict(self):
155
+ """Returns the model properties as a dict"""
156
+ result = {}
157
+
158
+ for attr, _ in six.iteritems(self.openapi_types):
159
+ value = getattr(self, attr)
160
+ if isinstance(value, list):
161
+ result[attr] = list(map(
162
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
163
+ value
164
+ ))
165
+ elif hasattr(value, "to_dict"):
166
+ result[attr] = value.to_dict()
167
+ elif isinstance(value, dict):
168
+ result[attr] = dict(map(
169
+ lambda item: (item[0], item[1].to_dict())
170
+ if hasattr(item[1], "to_dict") else item,
171
+ value.items()
172
+ ))
173
+ else:
174
+ result[attr] = value
175
+
176
+ return result
177
+
178
+ def to_str(self):
179
+ """Returns the string representation of the model"""
180
+ return pprint.pformat(self.to_dict())
181
+
182
+ def __repr__(self):
183
+ """For `print` and `pprint`"""
184
+ return self.to_str()
185
+
186
+ def __eq__(self, other):
187
+ """Returns true if both objects are equal"""
188
+ if not isinstance(other, InlineResponse200):
189
+ return False
190
+
191
+ return self.to_dict() == other.to_dict()
192
+
193
+ def __ne__(self, other):
194
+ """Returns true if both objects are not equal"""
195
+ if not isinstance(other, InlineResponse200):
196
+ return True
197
+
198
+ return self.to_dict() != other.to_dict()
@@ -0,0 +1,198 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Pulp 3 API
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
7
+
8
+ The version of the OpenAPI document: v3
9
+ Generated by: https://openapi-generator.tech
10
+ """
11
+
12
+
13
+ import pprint
14
+ import re # noqa: F401
15
+
16
+ import six
17
+
18
+ from pulpcore.client.pulp_2to3_migration.configuration import Configuration
19
+
20
+
21
+ class InlineResponse2001(object):
22
+ """NOTE: This class is auto generated by OpenAPI Generator.
23
+ Ref: https://openapi-generator.tech
24
+
25
+ Do not edit the class manually.
26
+ """
27
+
28
+ """
29
+ Attributes:
30
+ openapi_types (dict): The key is attribute name
31
+ and the value is attribute type.
32
+ attribute_map (dict): The key is attribute name
33
+ and the value is json key in definition.
34
+ """
35
+ openapi_types = {
36
+ 'count': 'int',
37
+ 'next': 'str',
38
+ 'previous': 'str',
39
+ 'results': 'list[Pulp2to3MigrationPulp2ContentRead]'
40
+ }
41
+
42
+ attribute_map = {
43
+ 'count': 'count',
44
+ 'next': 'next',
45
+ 'previous': 'previous',
46
+ 'results': 'results'
47
+ }
48
+
49
+ def __init__(self, count=None, next=None, previous=None, results=None, local_vars_configuration=None): # noqa: E501
50
+ """InlineResponse2001 - a model defined in OpenAPI""" # noqa: E501
51
+ if local_vars_configuration is None:
52
+ local_vars_configuration = Configuration()
53
+ self.local_vars_configuration = local_vars_configuration
54
+
55
+ self._count = None
56
+ self._next = None
57
+ self._previous = None
58
+ self._results = None
59
+ self.discriminator = None
60
+
61
+ self.count = count
62
+ self.next = next
63
+ self.previous = previous
64
+ self.results = results
65
+
66
+ @property
67
+ def count(self):
68
+ """Gets the count of this InlineResponse2001. # noqa: E501
69
+
70
+
71
+ :return: The count of this InlineResponse2001. # noqa: E501
72
+ :rtype: int
73
+ """
74
+ return self._count
75
+
76
+ @count.setter
77
+ def count(self, count):
78
+ """Sets the count of this InlineResponse2001.
79
+
80
+
81
+ :param count: The count of this InlineResponse2001. # noqa: E501
82
+ :type: int
83
+ """
84
+ if self.local_vars_configuration.client_side_validation and count is None: # noqa: E501
85
+ raise ValueError("Invalid value for `count`, must not be `None`") # noqa: E501
86
+
87
+ self._count = count
88
+
89
+ @property
90
+ def next(self):
91
+ """Gets the next of this InlineResponse2001. # noqa: E501
92
+
93
+
94
+ :return: The next of this InlineResponse2001. # noqa: E501
95
+ :rtype: str
96
+ """
97
+ return self._next
98
+
99
+ @next.setter
100
+ def next(self, next):
101
+ """Sets the next of this InlineResponse2001.
102
+
103
+
104
+ :param next: The next of this InlineResponse2001. # noqa: E501
105
+ :type: str
106
+ """
107
+
108
+ self._next = next
109
+
110
+ @property
111
+ def previous(self):
112
+ """Gets the previous of this InlineResponse2001. # noqa: E501
113
+
114
+
115
+ :return: The previous of this InlineResponse2001. # noqa: E501
116
+ :rtype: str
117
+ """
118
+ return self._previous
119
+
120
+ @previous.setter
121
+ def previous(self, previous):
122
+ """Sets the previous of this InlineResponse2001.
123
+
124
+
125
+ :param previous: The previous of this InlineResponse2001. # noqa: E501
126
+ :type: str
127
+ """
128
+
129
+ self._previous = previous
130
+
131
+ @property
132
+ def results(self):
133
+ """Gets the results of this InlineResponse2001. # noqa: E501
134
+
135
+
136
+ :return: The results of this InlineResponse2001. # noqa: E501
137
+ :rtype: list[Pulp2to3MigrationPulp2ContentRead]
138
+ """
139
+ return self._results
140
+
141
+ @results.setter
142
+ def results(self, results):
143
+ """Sets the results of this InlineResponse2001.
144
+
145
+
146
+ :param results: The results of this InlineResponse2001. # noqa: E501
147
+ :type: list[Pulp2to3MigrationPulp2ContentRead]
148
+ """
149
+ if self.local_vars_configuration.client_side_validation and results is None: # noqa: E501
150
+ raise ValueError("Invalid value for `results`, must not be `None`") # noqa: E501
151
+
152
+ self._results = results
153
+
154
+ def to_dict(self):
155
+ """Returns the model properties as a dict"""
156
+ result = {}
157
+
158
+ for attr, _ in six.iteritems(self.openapi_types):
159
+ value = getattr(self, attr)
160
+ if isinstance(value, list):
161
+ result[attr] = list(map(
162
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
163
+ value
164
+ ))
165
+ elif hasattr(value, "to_dict"):
166
+ result[attr] = value.to_dict()
167
+ elif isinstance(value, dict):
168
+ result[attr] = dict(map(
169
+ lambda item: (item[0], item[1].to_dict())
170
+ if hasattr(item[1], "to_dict") else item,
171
+ value.items()
172
+ ))
173
+ else:
174
+ result[attr] = value
175
+
176
+ return result
177
+
178
+ def to_str(self):
179
+ """Returns the string representation of the model"""
180
+ return pprint.pformat(self.to_dict())
181
+
182
+ def __repr__(self):
183
+ """For `print` and `pprint`"""
184
+ return self.to_str()
185
+
186
+ def __eq__(self, other):
187
+ """Returns true if both objects are equal"""
188
+ if not isinstance(other, InlineResponse2001):
189
+ return False
190
+
191
+ return self.to_dict() == other.to_dict()
192
+
193
+ def __ne__(self, other):
194
+ """Returns true if both objects are not equal"""
195
+ if not isinstance(other, InlineResponse2001):
196
+ return True
197
+
198
+ return self.to_dict() != other.to_dict()