pulp_maven_client 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (162) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/build/lib/pulpcore/__init__.py +2 -0
  4. data/build/lib/pulpcore/client/__init__.py +2 -0
  5. data/build/lib/pulpcore/client/pulp_maven/__init__.py +58 -0
  6. data/build/lib/pulpcore/client/pulp_maven/api/__init__.py +10 -0
  7. data/build/lib/pulpcore/client/pulp_maven/api/content_artifact_api.py +445 -0
  8. data/build/lib/pulpcore/client/pulp_maven/api/distributions_maven_api.py +830 -0
  9. data/build/lib/pulpcore/client/pulp_maven/api/remotes_maven_api.py +840 -0
  10. data/build/lib/pulpcore/client/pulp_maven/api/repositories_maven_api.py +809 -0
  11. data/build/lib/pulpcore/client/pulp_maven/api/repositories_maven_versions_api.py +614 -0
  12. data/build/lib/pulpcore/client/pulp_maven/api_client.py +667 -0
  13. data/build/lib/pulpcore/client/pulp_maven/configuration.py +427 -0
  14. data/build/lib/pulpcore/client/pulp_maven/exceptions.py +121 -0
  15. data/build/lib/pulpcore/client/pulp_maven/models/__init__.py +39 -0
  16. data/build/lib/pulpcore/client/pulp_maven/models/async_operation_response.py +124 -0
  17. data/build/lib/pulpcore/client/pulp_maven/models/content_summary.py +176 -0
  18. data/build/lib/pulpcore/client/pulp_maven/models/content_summary_response.py +176 -0
  19. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_artifact.py +153 -0
  20. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_artifact_response.py +290 -0
  21. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_distribution.py +260 -0
  22. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_distribution_response.py +342 -0
  23. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_remote.py +657 -0
  24. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_remote_response.py +604 -0
  25. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_repository.py +202 -0
  26. data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_repository_response.py +308 -0
  27. data/build/lib/pulpcore/client/pulp_maven/models/paginated_repository_version_response_list.py +197 -0
  28. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_artifact_response_list.py +197 -0
  29. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_distribution_response_list.py +197 -0
  30. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_remote_response_list.py +197 -0
  31. data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_repository_response_list.py +197 -0
  32. data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_distribution.py +258 -0
  33. data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_remote.py +655 -0
  34. data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_repository.py +201 -0
  35. data/build/lib/pulpcore/client/pulp_maven/models/policy_enum.py +101 -0
  36. data/build/lib/pulpcore/client/pulp_maven/models/repository_version.py +123 -0
  37. data/build/lib/pulpcore/client/pulp_maven/models/repository_version_response.py +231 -0
  38. data/build/lib/pulpcore/client/pulp_maven/rest.py +292 -0
  39. data/dist/pulp_maven-client-0.3.0.tar.gz +0 -0
  40. data/dist/pulp_maven_client-0.3.0-py3-none-any.whl +0 -0
  41. data/docs/ContentArtifactApi.md +14 -14
  42. data/docs/ContentSummary.md +3 -3
  43. data/docs/ContentSummaryResponse.md +3 -3
  44. data/docs/DistributionsMavenApi.md +20 -12
  45. data/docs/MavenMavenDistribution.md +4 -0
  46. data/docs/MavenMavenDistributionResponse.md +4 -0
  47. data/docs/MavenMavenRemote.md +12 -2
  48. data/docs/MavenMavenRemoteResponse.md +8 -8
  49. data/docs/MavenMavenRepository.md +3 -1
  50. data/docs/MavenMavenRepositoryResponse.md +2 -0
  51. data/docs/PatchedmavenMavenDistribution.md +4 -0
  52. data/docs/PatchedmavenMavenRemote.md +12 -2
  53. data/docs/PatchedmavenMavenRepository.md +3 -1
  54. data/docs/RemotesMavenApi.md +24 -16
  55. data/docs/RepositoriesMavenApi.md +12 -4
  56. data/docs/RepositoriesMavenVersionsApi.md +28 -28
  57. data/lib/pulp_maven_client/api/content_artifact_api.rb +14 -14
  58. data/lib/pulp_maven_client/api/distributions_maven_api.rb +26 -14
  59. data/lib/pulp_maven_client/api/remotes_maven_api.rb +30 -18
  60. data/lib/pulp_maven_client/api/repositories_maven_api.rb +17 -5
  61. data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +30 -30
  62. data/lib/pulp_maven_client/models/content_summary.rb +12 -6
  63. data/lib/pulp_maven_client/models/content_summary_response.rb +12 -6
  64. data/lib/pulp_maven_client/models/maven_maven_distribution.rb +21 -1
  65. data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +21 -1
  66. data/lib/pulp_maven_client/models/maven_maven_remote.rb +60 -6
  67. data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +35 -36
  68. data/lib/pulp_maven_client/models/maven_maven_repository.rb +10 -1
  69. data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +10 -1
  70. data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +21 -1
  71. data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +60 -6
  72. data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +10 -1
  73. data/lib/pulp_maven_client/version.rb +1 -1
  74. data/pulp_maven_client.egg-info/PKG-INFO +15 -0
  75. data/pulp_maven_client.egg-info/SOURCES.txt +71 -0
  76. data/pulp_maven_client.egg-info/dependency_links.txt +1 -0
  77. data/pulp_maven_client.egg-info/requires.txt +4 -0
  78. data/pulp_maven_client.egg-info/top_level.txt +1 -0
  79. data/pulpcore/__init__.py +2 -0
  80. data/pulpcore/client/__init__.py +2 -0
  81. data/pulpcore/client/pulp_maven/__init__.py +58 -0
  82. data/pulpcore/client/pulp_maven/api/__init__.py +10 -0
  83. data/pulpcore/client/pulp_maven/api/content_artifact_api.py +445 -0
  84. data/pulpcore/client/pulp_maven/api/distributions_maven_api.py +830 -0
  85. data/pulpcore/client/pulp_maven/api/remotes_maven_api.py +840 -0
  86. data/pulpcore/client/pulp_maven/api/repositories_maven_api.py +809 -0
  87. data/pulpcore/client/pulp_maven/api/repositories_maven_versions_api.py +614 -0
  88. data/pulpcore/client/pulp_maven/api_client.py +667 -0
  89. data/pulpcore/client/pulp_maven/configuration.py +427 -0
  90. data/pulpcore/client/pulp_maven/exceptions.py +121 -0
  91. data/pulpcore/client/pulp_maven/models/__init__.py +39 -0
  92. data/pulpcore/client/pulp_maven/models/async_operation_response.py +124 -0
  93. data/pulpcore/client/pulp_maven/models/content_summary.py +176 -0
  94. data/pulpcore/client/pulp_maven/models/content_summary_response.py +176 -0
  95. data/pulpcore/client/pulp_maven/models/maven_maven_artifact.py +153 -0
  96. data/pulpcore/client/pulp_maven/models/maven_maven_artifact_response.py +290 -0
  97. data/pulpcore/client/pulp_maven/models/maven_maven_distribution.py +260 -0
  98. data/pulpcore/client/pulp_maven/models/maven_maven_distribution_response.py +342 -0
  99. data/pulpcore/client/pulp_maven/models/maven_maven_remote.py +657 -0
  100. data/pulpcore/client/pulp_maven/models/maven_maven_remote_response.py +604 -0
  101. data/pulpcore/client/pulp_maven/models/maven_maven_repository.py +202 -0
  102. data/pulpcore/client/pulp_maven/models/maven_maven_repository_response.py +308 -0
  103. data/pulpcore/client/pulp_maven/models/paginated_repository_version_response_list.py +197 -0
  104. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_artifact_response_list.py +197 -0
  105. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_distribution_response_list.py +197 -0
  106. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_remote_response_list.py +197 -0
  107. data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_repository_response_list.py +197 -0
  108. data/pulpcore/client/pulp_maven/models/patchedmaven_maven_distribution.py +258 -0
  109. data/pulpcore/client/pulp_maven/models/patchedmaven_maven_remote.py +655 -0
  110. data/pulpcore/client/pulp_maven/models/patchedmaven_maven_repository.py +201 -0
  111. data/pulpcore/client/pulp_maven/models/policy_enum.py +101 -0
  112. data/pulpcore/client/pulp_maven/models/repository_version.py +123 -0
  113. data/pulpcore/client/pulp_maven/models/repository_version_response.py +231 -0
  114. data/pulpcore/client/pulp_maven/rest.py +292 -0
  115. data/requirements.txt +6 -0
  116. data/setup.cfg +2 -0
  117. data/setup.py +42 -0
  118. data/spec/api/content_artifact_api_spec.rb +7 -7
  119. data/spec/api/distributions_maven_api_spec.rb +10 -6
  120. data/spec/api/remotes_maven_api_spec.rb +12 -8
  121. data/spec/api/repositories_maven_api_spec.rb +6 -2
  122. data/spec/api/repositories_maven_versions_api_spec.rb +14 -14
  123. data/spec/models/maven_maven_distribution_response_spec.rb +12 -0
  124. data/spec/models/maven_maven_distribution_spec.rb +12 -0
  125. data/spec/models/maven_maven_remote_response_spec.rb +12 -12
  126. data/spec/models/maven_maven_remote_spec.rb +30 -0
  127. data/spec/models/maven_maven_repository_response_spec.rb +6 -0
  128. data/spec/models/maven_maven_repository_spec.rb +6 -0
  129. data/spec/models/patchedmaven_maven_distribution_spec.rb +12 -0
  130. data/spec/models/patchedmaven_maven_remote_spec.rb +30 -0
  131. data/spec/models/patchedmaven_maven_repository_spec.rb +6 -0
  132. data/test/__init__.py +0 -0
  133. data/test/test_async_operation_response.py +54 -0
  134. data/test/test_content_artifact_api.py +55 -0
  135. data/test/test_content_summary.py +70 -0
  136. data/test/test_content_summary_response.py +70 -0
  137. data/test/test_distributions_maven_api.py +76 -0
  138. data/test/test_maven_maven_artifact.py +56 -0
  139. data/test/test_maven_maven_artifact_response.py +60 -0
  140. data/test/test_maven_maven_distribution.py +60 -0
  141. data/test/test_maven_maven_distribution_response.py +63 -0
  142. data/test/test_maven_maven_remote.py +76 -0
  143. data/test/test_maven_maven_remote_response.py +74 -0
  144. data/test/test_maven_maven_repository.py +57 -0
  145. data/test/test_maven_maven_repository_response.py +61 -0
  146. data/test/test_paginated_repository_version_response_list.py +63 -0
  147. data/test/test_paginatedmaven_maven_artifact_response_list.py +65 -0
  148. data/test/test_paginatedmaven_maven_distribution_response_list.py +67 -0
  149. data/test/test_paginatedmaven_maven_remote_response_list.py +78 -0
  150. data/test/test_paginatedmaven_maven_repository_response_list.py +66 -0
  151. data/test/test_patchedmaven_maven_distribution.py +58 -0
  152. data/test/test_patchedmaven_maven_remote.py +74 -0
  153. data/test/test_patchedmaven_maven_repository.py +56 -0
  154. data/test/test_policy_enum.py +52 -0
  155. data/test/test_remotes_maven_api.py +76 -0
  156. data/test/test_repositories_maven_api.py +76 -0
  157. data/test/test_repositories_maven_versions_api.py +61 -0
  158. data/test/test_repository_version.py +53 -0
  159. data/test/test_repository_version_response.py +57 -0
  160. data/test-requirements.txt +3 -0
  161. data/tox.ini +9 -0
  162. metadata +133 -21
@@ -4,6 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
+ **pulp_labels** | [**Object**](.md) | | [optional]
7
8
  **name** | **String** | A unique name for this repository. | [optional]
8
9
  **description** | **String** | An optional description. | [optional]
9
10
  **remote** | **String** | | [optional]
@@ -13,7 +14,8 @@ Name | Type | Description | Notes
13
14
  ```ruby
14
15
  require 'PulpMavenClient'
15
16
 
16
- instance = PulpMavenClient::PatchedmavenMavenRepository.new(name: null,
17
+ instance = PulpMavenClient::PatchedmavenMavenRepository.new(pulp_labels: null,
18
+ name: null,
17
19
  description: null,
18
20
  remote: null)
19
21
  ```
@@ -142,16 +142,20 @@ end
142
142
  api_instance = PulpMavenClient::RemotesMavenApi.new
143
143
  opts = {
144
144
  limit: 56, # Integer | Number of results to return per page.
145
- name: 'name_example', # String | name
146
- name__in: 'name__in_example', # String | name__in
145
+ name: 'name_example', # String |
146
+ name__contains: 'name__contains_example', # String | Filter results where name contains value
147
+ name__icontains: 'name__icontains_example', # String | Filter results where name contains value
148
+ name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
149
+ name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
147
150
  offset: 56, # Integer | The initial index from which to return the results.
148
151
  ordering: 'ordering_example', # String | Which field to use when ordering the results.
149
- pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
150
- pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
151
- pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
152
- pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
153
- pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
154
- pulp_last_updated__range: 'pulp_last_updated__range_example', # String | pulp_last_updated__range
152
+ pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
153
+ pulp_last_updated: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
154
+ pulp_last_updated__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than value
155
+ pulp_last_updated__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is greater than or equal to value
156
+ pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
157
+ pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value
158
+ pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_last_updated is between two comma separated values
155
159
  fields: 'fields_example', # String | A list of fields to include in the response.
156
160
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
157
161
  }
@@ -171,16 +175,20 @@ end
171
175
  Name | Type | Description | Notes
172
176
  ------------- | ------------- | ------------- | -------------
173
177
  **limit** | **Integer**| Number of results to return per page. | [optional]
174
- **name** | **String**| name | [optional]
175
- **name__in** | **String**| name__in | [optional]
178
+ **name** | **String**| | [optional]
179
+ **name__contains** | **String**| Filter results where name contains value | [optional]
180
+ **name__icontains** | **String**| Filter results where name contains value | [optional]
181
+ **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
182
+ **name__startswith** | **String**| Filter results where name starts with value | [optional]
176
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
177
184
  **ordering** | **String**| Which field to use when ordering the results. | [optional]
178
- **pulp_last_updated** | **String**| pulp_last_updated | [optional]
179
- **pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
180
- **pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
181
- **pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
182
- **pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
183
- **pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
185
+ **pulp_label_select** | **String**| Filter labels by search string | [optional]
186
+ **pulp_last_updated** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
187
+ **pulp_last_updated__gt** | **DateTime**| Filter results where pulp_last_updated is greater than value | [optional]
188
+ **pulp_last_updated__gte** | **DateTime**| Filter results where pulp_last_updated is greater than or equal to value | [optional]
189
+ **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
190
+ **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
191
+ **pulp_last_updated__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
184
192
  **fields** | **String**| A list of fields to include in the response. | [optional]
185
193
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
186
194
 
@@ -142,10 +142,14 @@ end
142
142
  api_instance = PulpMavenClient::RepositoriesMavenApi.new
143
143
  opts = {
144
144
  limit: 56, # Integer | Number of results to return per page.
145
- name: 'name_example', # String | name
146
- name__in: 'name__in_example', # String | name__in
145
+ name: 'name_example', # String |
146
+ name__contains: 'name__contains_example', # String | Filter results where name contains value
147
+ name__icontains: 'name__icontains_example', # String | Filter results where name contains value
148
+ name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
149
+ name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
147
150
  offset: 56, # Integer | The initial index from which to return the results.
148
151
  ordering: 'ordering_example', # String | Which field to use when ordering the results.
152
+ pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
149
153
  fields: 'fields_example', # String | A list of fields to include in the response.
150
154
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
151
155
  }
@@ -165,10 +169,14 @@ end
165
169
  Name | Type | Description | Notes
166
170
  ------------- | ------------- | ------------- | -------------
167
171
  **limit** | **Integer**| Number of results to return per page. | [optional]
168
- **name** | **String**| name | [optional]
169
- **name__in** | **String**| name__in | [optional]
172
+ **name** | **String**| | [optional]
173
+ **name__contains** | **String**| Filter results where name contains value | [optional]
174
+ **name__icontains** | **String**| Filter results where name contains value | [optional]
175
+ **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
176
+ **name__startswith** | **String**| Filter results where name starts with value | [optional]
170
177
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
171
178
  **ordering** | **String**| Which field to use when ordering the results. | [optional]
179
+ **pulp_label_select** | **String**| Filter labels by search string | [optional]
172
180
  **fields** | **String**| A list of fields to include in the response. | [optional]
173
181
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
174
182
 
@@ -87,23 +87,23 @@ end
87
87
  api_instance = PulpMavenClient::RepositoriesMavenVersionsApi.new
88
88
  maven_maven_repository_href = 'maven_maven_repository_href_example' # String |
89
89
  opts = {
90
- content: 'content_example', # String | content
91
- content__in: 'content__in_example', # String | content__in
90
+ content: 'content_example', # String | Content Unit referenced by HREF
91
+ content__in: 'content__in_example', # String | Content Unit referenced by HREF
92
92
  limit: 56, # Integer | Number of results to return per page.
93
- number: 'number_example', # String | number
94
- number__gt: 'number__gt_example', # String | number__gt
95
- number__gte: 'number__gte_example', # String | number__gte
96
- number__lt: 'number__lt_example', # String | number__lt
97
- number__lte: 'number__lte_example', # String | number__lte
98
- number__range: 'number__range_example', # String | number__range
93
+ number: 56, # Integer |
94
+ number__gt: 56, # Integer | Filter results where number is greater than value
95
+ number__gte: 56, # Integer | Filter results where number is greater than or equal to value
96
+ number__lt: 56, # Integer | Filter results where number is less than value
97
+ number__lte: 56, # Integer | Filter results where number is less than or equal to value
98
+ number__range: [56], # Array<Integer> | Filter results where number is between two comma separated values
99
99
  offset: 56, # Integer | The initial index from which to return the results.
100
100
  ordering: 'ordering_example', # String | Which field to use when ordering the results.
101
- pulp_created: 'pulp_created_example', # String | pulp_created
102
- pulp_created__gt: 'pulp_created__gt_example', # String | pulp_created__gt
103
- pulp_created__gte: 'pulp_created__gte_example', # String | pulp_created__gte
104
- pulp_created__lt: 'pulp_created__lt_example', # String | pulp_created__lt
105
- pulp_created__lte: 'pulp_created__lte_example', # String | pulp_created__lte
106
- pulp_created__range: 'pulp_created__range_example', # String | pulp_created__range
101
+ pulp_created: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | ISO 8601 formatted dates are supported
102
+ pulp_created__gt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than value
103
+ pulp_created__gte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is greater than or equal to value
104
+ pulp_created__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than value
105
+ pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
106
+ pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
107
107
  fields: 'fields_example', # String | A list of fields to include in the response.
108
108
  exclude_fields: 'exclude_fields_example' # String | A list of fields to exclude from the response.
109
109
  }
@@ -123,23 +123,23 @@ end
123
123
  Name | Type | Description | Notes
124
124
  ------------- | ------------- | ------------- | -------------
125
125
  **maven_maven_repository_href** | **String**| |
126
- **content** | **String**| content | [optional]
127
- **content__in** | **String**| content__in | [optional]
126
+ **content** | **String**| Content Unit referenced by HREF | [optional]
127
+ **content__in** | **String**| Content Unit referenced by HREF | [optional]
128
128
  **limit** | **Integer**| Number of results to return per page. | [optional]
129
- **number** | **String**| number | [optional]
130
- **number__gt** | **String**| number__gt | [optional]
131
- **number__gte** | **String**| number__gte | [optional]
132
- **number__lt** | **String**| number__lt | [optional]
133
- **number__lte** | **String**| number__lte | [optional]
134
- **number__range** | **String**| number__range | [optional]
129
+ **number** | **Integer**| | [optional]
130
+ **number__gt** | **Integer**| Filter results where number is greater than value | [optional]
131
+ **number__gte** | **Integer**| Filter results where number is greater than or equal to value | [optional]
132
+ **number__lt** | **Integer**| Filter results where number is less than value | [optional]
133
+ **number__lte** | **Integer**| Filter results where number is less than or equal to value | [optional]
134
+ **number__range** | [**Array&lt;Integer&gt;**](Integer.md)| Filter results where number is between two comma separated values | [optional]
135
135
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
136
136
  **ordering** | **String**| Which field to use when ordering the results. | [optional]
137
- **pulp_created** | **String**| pulp_created | [optional]
138
- **pulp_created__gt** | **String**| pulp_created__gt | [optional]
139
- **pulp_created__gte** | **String**| pulp_created__gte | [optional]
140
- **pulp_created__lt** | **String**| pulp_created__lt | [optional]
141
- **pulp_created__lte** | **String**| pulp_created__lte | [optional]
142
- **pulp_created__range** | **String**| pulp_created__range | [optional]
137
+ **pulp_created** | **DateTime**| ISO 8601 formatted dates are supported | [optional]
138
+ **pulp_created__gt** | **DateTime**| Filter results where pulp_created is greater than value | [optional]
139
+ **pulp_created__gte** | **DateTime**| Filter results where pulp_created is greater than or equal to value | [optional]
140
+ **pulp_created__lt** | **DateTime**| Filter results where pulp_created is less than value | [optional]
141
+ **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
142
+ **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
143
143
  **fields** | **String**| A list of fields to include in the response. | [optional]
144
144
  **exclude_fields** | **String**| A list of fields to exclude from the response. | [optional]
145
145
 
@@ -86,16 +86,16 @@ module PulpMavenClient
86
86
  # List maven artifacts
87
87
  # A ViewSet for MavenArtifact.
88
88
  # @param [Hash] opts the optional parameters
89
- # @option opts [String] :artifact_id artifact_id
90
- # @option opts [String] :filename filename
91
- # @option opts [String] :group_id group_id
89
+ # @option opts [String] :artifact_id Filter results where artifact_id matches value
90
+ # @option opts [String] :filename Filter results where filename matches value
91
+ # @option opts [String] :group_id Filter results where group_id matches value
92
92
  # @option opts [Integer] :limit Number of results to return per page.
93
93
  # @option opts [Integer] :offset The initial index from which to return the results.
94
94
  # @option opts [String] :ordering Which field to use when ordering the results.
95
- # @option opts [String] :repository_version repository_version
96
- # @option opts [String] :repository_version_added repository_version_added
97
- # @option opts [String] :repository_version_removed repository_version_removed
98
- # @option opts [String] :version version
95
+ # @option opts [String] :repository_version Repository Version referenced by HREF
96
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
97
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
98
+ # @option opts [String] :version Filter results where version matches value
99
99
  # @option opts [String] :fields A list of fields to include in the response.
100
100
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
101
101
  # @return [PaginatedmavenMavenArtifactResponseList]
@@ -107,16 +107,16 @@ module PulpMavenClient
107
107
  # List maven artifacts
108
108
  # A ViewSet for MavenArtifact.
109
109
  # @param [Hash] opts the optional parameters
110
- # @option opts [String] :artifact_id artifact_id
111
- # @option opts [String] :filename filename
112
- # @option opts [String] :group_id group_id
110
+ # @option opts [String] :artifact_id Filter results where artifact_id matches value
111
+ # @option opts [String] :filename Filter results where filename matches value
112
+ # @option opts [String] :group_id Filter results where group_id matches value
113
113
  # @option opts [Integer] :limit Number of results to return per page.
114
114
  # @option opts [Integer] :offset The initial index from which to return the results.
115
115
  # @option opts [String] :ordering Which field to use when ordering the results.
116
- # @option opts [String] :repository_version repository_version
117
- # @option opts [String] :repository_version_added repository_version_added
118
- # @option opts [String] :repository_version_removed repository_version_removed
119
- # @option opts [String] :version version
116
+ # @option opts [String] :repository_version Repository Version referenced by HREF
117
+ # @option opts [String] :repository_version_added Repository Version referenced by HREF
118
+ # @option opts [String] :repository_version_removed Repository Version referenced by HREF
119
+ # @option opts [String] :version Filter results where version matches value
120
120
  # @option opts [String] :fields A list of fields to include in the response.
121
121
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
122
122
  # @return [Array<(PaginatedmavenMavenArtifactResponseList, Integer, Hash)>] PaginatedmavenMavenArtifactResponseList data, response status code and response headers
@@ -148,15 +148,19 @@ module PulpMavenClient
148
148
  # List maven distributions
149
149
  # ViewSet for Maven Distributions.
150
150
  # @param [Hash] opts the optional parameters
151
- # @option opts [String] :base_path base_path
152
- # @option opts [String] :base_path__contains base_path__contains
153
- # @option opts [String] :base_path__icontains base_path__icontains
154
- # @option opts [String] :base_path__in base_path__in
151
+ # @option opts [String] :base_path
152
+ # @option opts [String] :base_path__contains Filter results where base_path contains value
153
+ # @option opts [String] :base_path__icontains Filter results where base_path contains value
154
+ # @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
155
155
  # @option opts [Integer] :limit Number of results to return per page.
156
- # @option opts [String] :name name
157
- # @option opts [String] :name__in name__in
156
+ # @option opts [String] :name
157
+ # @option opts [String] :name__contains Filter results where name contains value
158
+ # @option opts [String] :name__icontains Filter results where name contains value
159
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
160
+ # @option opts [String] :name__startswith Filter results where name starts with value
158
161
  # @option opts [Integer] :offset The initial index from which to return the results.
159
162
  # @option opts [String] :ordering Which field to use when ordering the results.
163
+ # @option opts [String] :pulp_label_select Filter labels by search string
160
164
  # @option opts [String] :fields A list of fields to include in the response.
161
165
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
162
166
  # @return [PaginatedmavenMavenDistributionResponseList]
@@ -168,15 +172,19 @@ module PulpMavenClient
168
172
  # List maven distributions
169
173
  # ViewSet for Maven Distributions.
170
174
  # @param [Hash] opts the optional parameters
171
- # @option opts [String] :base_path base_path
172
- # @option opts [String] :base_path__contains base_path__contains
173
- # @option opts [String] :base_path__icontains base_path__icontains
174
- # @option opts [String] :base_path__in base_path__in
175
+ # @option opts [String] :base_path
176
+ # @option opts [String] :base_path__contains Filter results where base_path contains value
177
+ # @option opts [String] :base_path__icontains Filter results where base_path contains value
178
+ # @option opts [Array<String>] :base_path__in Filter results where base_path is in a comma-separated list of values
175
179
  # @option opts [Integer] :limit Number of results to return per page.
176
- # @option opts [String] :name name
177
- # @option opts [String] :name__in name__in
180
+ # @option opts [String] :name
181
+ # @option opts [String] :name__contains Filter results where name contains value
182
+ # @option opts [String] :name__icontains Filter results where name contains value
183
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
184
+ # @option opts [String] :name__startswith Filter results where name starts with value
178
185
  # @option opts [Integer] :offset The initial index from which to return the results.
179
186
  # @option opts [String] :ordering Which field to use when ordering the results.
187
+ # @option opts [String] :pulp_label_select Filter labels by search string
180
188
  # @option opts [String] :fields A list of fields to include in the response.
181
189
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
182
190
  # @return [Array<(PaginatedmavenMavenDistributionResponseList, Integer, Hash)>] PaginatedmavenMavenDistributionResponseList data, response status code and response headers
@@ -192,12 +200,16 @@ module PulpMavenClient
192
200
  query_params[:'base_path'] = opts[:'base_path'] if !opts[:'base_path'].nil?
193
201
  query_params[:'base_path__contains'] = opts[:'base_path__contains'] if !opts[:'base_path__contains'].nil?
194
202
  query_params[:'base_path__icontains'] = opts[:'base_path__icontains'] if !opts[:'base_path__icontains'].nil?
195
- query_params[:'base_path__in'] = opts[:'base_path__in'] if !opts[:'base_path__in'].nil?
203
+ query_params[:'base_path__in'] = @api_client.build_collection_param(opts[:'base_path__in'], :csv) if !opts[:'base_path__in'].nil?
196
204
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
197
205
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
198
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
206
+ query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
207
+ query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
208
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
209
+ query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
199
210
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
200
211
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
212
+ query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
201
213
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
202
214
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
203
215
 
@@ -149,16 +149,20 @@ module PulpMavenClient
149
149
  # A ViewSet for MavenRemote.
150
150
  # @param [Hash] opts the optional parameters
151
151
  # @option opts [Integer] :limit Number of results to return per page.
152
- # @option opts [String] :name name
153
- # @option opts [String] :name__in name__in
152
+ # @option opts [String] :name
153
+ # @option opts [String] :name__contains Filter results where name contains value
154
+ # @option opts [String] :name__icontains Filter results where name contains value
155
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
156
+ # @option opts [String] :name__startswith Filter results where name starts with value
154
157
  # @option opts [Integer] :offset The initial index from which to return the results.
155
158
  # @option opts [String] :ordering Which field to use when ordering the results.
156
- # @option opts [String] :pulp_last_updated pulp_last_updated
157
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
158
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
159
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
160
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
161
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
159
+ # @option opts [String] :pulp_label_select Filter labels by search string
160
+ # @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
161
+ # @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
162
+ # @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
163
+ # @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
164
+ # @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
165
+ # @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
162
166
  # @option opts [String] :fields A list of fields to include in the response.
163
167
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
164
168
  # @return [PaginatedmavenMavenRemoteResponseList]
@@ -171,16 +175,20 @@ module PulpMavenClient
171
175
  # A ViewSet for MavenRemote.
172
176
  # @param [Hash] opts the optional parameters
173
177
  # @option opts [Integer] :limit Number of results to return per page.
174
- # @option opts [String] :name name
175
- # @option opts [String] :name__in name__in
178
+ # @option opts [String] :name
179
+ # @option opts [String] :name__contains Filter results where name contains value
180
+ # @option opts [String] :name__icontains Filter results where name contains value
181
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
182
+ # @option opts [String] :name__startswith Filter results where name starts with value
176
183
  # @option opts [Integer] :offset The initial index from which to return the results.
177
184
  # @option opts [String] :ordering Which field to use when ordering the results.
178
- # @option opts [String] :pulp_last_updated pulp_last_updated
179
- # @option opts [String] :pulp_last_updated__gt pulp_last_updated__gt
180
- # @option opts [String] :pulp_last_updated__gte pulp_last_updated__gte
181
- # @option opts [String] :pulp_last_updated__lt pulp_last_updated__lt
182
- # @option opts [String] :pulp_last_updated__lte pulp_last_updated__lte
183
- # @option opts [String] :pulp_last_updated__range pulp_last_updated__range
185
+ # @option opts [String] :pulp_label_select Filter labels by search string
186
+ # @option opts [DateTime] :pulp_last_updated ISO 8601 formatted dates are supported
187
+ # @option opts [DateTime] :pulp_last_updated__gt Filter results where pulp_last_updated is greater than value
188
+ # @option opts [DateTime] :pulp_last_updated__gte Filter results where pulp_last_updated is greater than or equal to value
189
+ # @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
190
+ # @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
191
+ # @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
184
192
  # @option opts [String] :fields A list of fields to include in the response.
185
193
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
186
194
  # @return [Array<(PaginatedmavenMavenRemoteResponseList, Integer, Hash)>] PaginatedmavenMavenRemoteResponseList data, response status code and response headers
@@ -195,15 +203,19 @@ module PulpMavenClient
195
203
  query_params = opts[:query_params] || {}
196
204
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
197
205
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
198
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
206
+ query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
207
+ query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
208
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
209
+ query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
199
210
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
200
211
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
212
+ query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
201
213
  query_params[:'pulp_last_updated'] = opts[:'pulp_last_updated'] if !opts[:'pulp_last_updated'].nil?
202
214
  query_params[:'pulp_last_updated__gt'] = opts[:'pulp_last_updated__gt'] if !opts[:'pulp_last_updated__gt'].nil?
203
215
  query_params[:'pulp_last_updated__gte'] = opts[:'pulp_last_updated__gte'] if !opts[:'pulp_last_updated__gte'].nil?
204
216
  query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
205
217
  query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
206
- query_params[:'pulp_last_updated__range'] = opts[:'pulp_last_updated__range'] if !opts[:'pulp_last_updated__range'].nil?
218
+ query_params[:'pulp_last_updated__range'] = @api_client.build_collection_param(opts[:'pulp_last_updated__range'], :csv) if !opts[:'pulp_last_updated__range'].nil?
207
219
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
208
220
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
209
221
 
@@ -149,10 +149,14 @@ module PulpMavenClient
149
149
  # A ViewSet for MavenRemote.
150
150
  # @param [Hash] opts the optional parameters
151
151
  # @option opts [Integer] :limit Number of results to return per page.
152
- # @option opts [String] :name name
153
- # @option opts [String] :name__in name__in
152
+ # @option opts [String] :name
153
+ # @option opts [String] :name__contains Filter results where name contains value
154
+ # @option opts [String] :name__icontains Filter results where name contains value
155
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
156
+ # @option opts [String] :name__startswith Filter results where name starts with value
154
157
  # @option opts [Integer] :offset The initial index from which to return the results.
155
158
  # @option opts [String] :ordering Which field to use when ordering the results.
159
+ # @option opts [String] :pulp_label_select Filter labels by search string
156
160
  # @option opts [String] :fields A list of fields to include in the response.
157
161
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
158
162
  # @return [PaginatedmavenMavenRepositoryResponseList]
@@ -165,10 +169,14 @@ module PulpMavenClient
165
169
  # A ViewSet for MavenRemote.
166
170
  # @param [Hash] opts the optional parameters
167
171
  # @option opts [Integer] :limit Number of results to return per page.
168
- # @option opts [String] :name name
169
- # @option opts [String] :name__in name__in
172
+ # @option opts [String] :name
173
+ # @option opts [String] :name__contains Filter results where name contains value
174
+ # @option opts [String] :name__icontains Filter results where name contains value
175
+ # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
176
+ # @option opts [String] :name__startswith Filter results where name starts with value
170
177
  # @option opts [Integer] :offset The initial index from which to return the results.
171
178
  # @option opts [String] :ordering Which field to use when ordering the results.
179
+ # @option opts [String] :pulp_label_select Filter labels by search string
172
180
  # @option opts [String] :fields A list of fields to include in the response.
173
181
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
174
182
  # @return [Array<(PaginatedmavenMavenRepositoryResponseList, Integer, Hash)>] PaginatedmavenMavenRepositoryResponseList data, response status code and response headers
@@ -183,9 +191,13 @@ module PulpMavenClient
183
191
  query_params = opts[:query_params] || {}
184
192
  query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil?
185
193
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
186
- query_params[:'name__in'] = opts[:'name__in'] if !opts[:'name__in'].nil?
194
+ query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
195
+ query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
196
+ query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
197
+ query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
187
198
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
188
199
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
200
+ query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
189
201
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
190
202
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
191
203
 
@@ -85,23 +85,23 @@ module PulpMavenClient
85
85
  # MavenRepositoryVersion represents a single Maven repository version.
86
86
  # @param maven_maven_repository_href [String]
87
87
  # @param [Hash] opts the optional parameters
88
- # @option opts [String] :content content
89
- # @option opts [String] :content__in content__in
88
+ # @option opts [String] :content Content Unit referenced by HREF
89
+ # @option opts [String] :content__in Content Unit referenced by HREF
90
90
  # @option opts [Integer] :limit Number of results to return per page.
91
- # @option opts [String] :number number
92
- # @option opts [String] :number__gt number__gt
93
- # @option opts [String] :number__gte number__gte
94
- # @option opts [String] :number__lt number__lt
95
- # @option opts [String] :number__lte number__lte
96
- # @option opts [String] :number__range number__range
91
+ # @option opts [Integer] :number
92
+ # @option opts [Integer] :number__gt Filter results where number is greater than value
93
+ # @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
94
+ # @option opts [Integer] :number__lt Filter results where number is less than value
95
+ # @option opts [Integer] :number__lte Filter results where number is less than or equal to value
96
+ # @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
97
97
  # @option opts [Integer] :offset The initial index from which to return the results.
98
98
  # @option opts [String] :ordering Which field to use when ordering the results.
99
- # @option opts [String] :pulp_created pulp_created
100
- # @option opts [String] :pulp_created__gt pulp_created__gt
101
- # @option opts [String] :pulp_created__gte pulp_created__gte
102
- # @option opts [String] :pulp_created__lt pulp_created__lt
103
- # @option opts [String] :pulp_created__lte pulp_created__lte
104
- # @option opts [String] :pulp_created__range pulp_created__range
99
+ # @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
100
+ # @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
101
+ # @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
102
+ # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
103
+ # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
104
+ # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
105
105
  # @option opts [String] :fields A list of fields to include in the response.
106
106
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
107
107
  # @return [PaginatedRepositoryVersionResponseList]
@@ -114,23 +114,23 @@ module PulpMavenClient
114
114
  # MavenRepositoryVersion represents a single Maven repository version.
115
115
  # @param maven_maven_repository_href [String]
116
116
  # @param [Hash] opts the optional parameters
117
- # @option opts [String] :content content
118
- # @option opts [String] :content__in content__in
117
+ # @option opts [String] :content Content Unit referenced by HREF
118
+ # @option opts [String] :content__in Content Unit referenced by HREF
119
119
  # @option opts [Integer] :limit Number of results to return per page.
120
- # @option opts [String] :number number
121
- # @option opts [String] :number__gt number__gt
122
- # @option opts [String] :number__gte number__gte
123
- # @option opts [String] :number__lt number__lt
124
- # @option opts [String] :number__lte number__lte
125
- # @option opts [String] :number__range number__range
120
+ # @option opts [Integer] :number
121
+ # @option opts [Integer] :number__gt Filter results where number is greater than value
122
+ # @option opts [Integer] :number__gte Filter results where number is greater than or equal to value
123
+ # @option opts [Integer] :number__lt Filter results where number is less than value
124
+ # @option opts [Integer] :number__lte Filter results where number is less than or equal to value
125
+ # @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
126
126
  # @option opts [Integer] :offset The initial index from which to return the results.
127
127
  # @option opts [String] :ordering Which field to use when ordering the results.
128
- # @option opts [String] :pulp_created pulp_created
129
- # @option opts [String] :pulp_created__gt pulp_created__gt
130
- # @option opts [String] :pulp_created__gte pulp_created__gte
131
- # @option opts [String] :pulp_created__lt pulp_created__lt
132
- # @option opts [String] :pulp_created__lte pulp_created__lte
133
- # @option opts [String] :pulp_created__range pulp_created__range
128
+ # @option opts [DateTime] :pulp_created ISO 8601 formatted dates are supported
129
+ # @option opts [DateTime] :pulp_created__gt Filter results where pulp_created is greater than value
130
+ # @option opts [DateTime] :pulp_created__gte Filter results where pulp_created is greater than or equal to value
131
+ # @option opts [DateTime] :pulp_created__lt Filter results where pulp_created is less than value
132
+ # @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
133
+ # @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
134
134
  # @option opts [String] :fields A list of fields to include in the response.
135
135
  # @option opts [String] :exclude_fields A list of fields to exclude from the response.
136
136
  # @return [Array<(PaginatedRepositoryVersionResponseList, Integer, Hash)>] PaginatedRepositoryVersionResponseList data, response status code and response headers
@@ -155,7 +155,7 @@ module PulpMavenClient
155
155
  query_params[:'number__gte'] = opts[:'number__gte'] if !opts[:'number__gte'].nil?
156
156
  query_params[:'number__lt'] = opts[:'number__lt'] if !opts[:'number__lt'].nil?
157
157
  query_params[:'number__lte'] = opts[:'number__lte'] if !opts[:'number__lte'].nil?
158
- query_params[:'number__range'] = opts[:'number__range'] if !opts[:'number__range'].nil?
158
+ query_params[:'number__range'] = @api_client.build_collection_param(opts[:'number__range'], :csv) if !opts[:'number__range'].nil?
159
159
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
160
160
  query_params[:'ordering'] = opts[:'ordering'] if !opts[:'ordering'].nil?
161
161
  query_params[:'pulp_created'] = opts[:'pulp_created'] if !opts[:'pulp_created'].nil?
@@ -163,7 +163,7 @@ module PulpMavenClient
163
163
  query_params[:'pulp_created__gte'] = opts[:'pulp_created__gte'] if !opts[:'pulp_created__gte'].nil?
164
164
  query_params[:'pulp_created__lt'] = opts[:'pulp_created__lt'] if !opts[:'pulp_created__lt'].nil?
165
165
  query_params[:'pulp_created__lte'] = opts[:'pulp_created__lte'] if !opts[:'pulp_created__lte'].nil?
166
- query_params[:'pulp_created__range'] = opts[:'pulp_created__range'] if !opts[:'pulp_created__range'].nil?
166
+ query_params[:'pulp_created__range'] = @api_client.build_collection_param(opts[:'pulp_created__range'], :csv) if !opts[:'pulp_created__range'].nil?
167
167
  query_params[:'fields'] = opts[:'fields'] if !opts[:'fields'].nil?
168
168
  query_params[:'exclude_fields'] = opts[:'exclude_fields'] if !opts[:'exclude_fields'].nil?
169
169
 
@@ -33,9 +33,9 @@ module PulpMavenClient
33
33
  # Attribute type mapping.
34
34
  def self.openapi_types
35
35
  {
36
- :'added' => :'Object',
37
- :'removed' => :'Object',
38
- :'present' => :'Object'
36
+ :'added' => :'Hash<String, Object>',
37
+ :'removed' => :'Hash<String, Object>',
38
+ :'present' => :'Hash<String, Object>'
39
39
  }
40
40
  end
41
41
 
@@ -61,15 +61,21 @@ module PulpMavenClient
61
61
  }
62
62
 
63
63
  if attributes.key?(:'added')
64
- self.added = attributes[:'added']
64
+ if (value = attributes[:'added']).is_a?(Hash)
65
+ self.added = value
66
+ end
65
67
  end
66
68
 
67
69
  if attributes.key?(:'removed')
68
- self.removed = attributes[:'removed']
70
+ if (value = attributes[:'removed']).is_a?(Hash)
71
+ self.removed = value
72
+ end
69
73
  end
70
74
 
71
75
  if attributes.key?(:'present')
72
- self.present = attributes[:'present']
76
+ if (value = attributes[:'present']).is_a?(Hash)
77
+ self.present = value
78
+ end
73
79
  end
74
80
  end
75
81