pulp_maven_client 0.2.0 → 0.3.0
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/build/lib/pulpcore/__init__.py +2 -0
- data/build/lib/pulpcore/client/__init__.py +2 -0
- data/build/lib/pulpcore/client/pulp_maven/__init__.py +58 -0
- data/build/lib/pulpcore/client/pulp_maven/api/__init__.py +10 -0
- data/build/lib/pulpcore/client/pulp_maven/api/content_artifact_api.py +445 -0
- data/build/lib/pulpcore/client/pulp_maven/api/distributions_maven_api.py +830 -0
- data/build/lib/pulpcore/client/pulp_maven/api/remotes_maven_api.py +840 -0
- data/build/lib/pulpcore/client/pulp_maven/api/repositories_maven_api.py +809 -0
- data/build/lib/pulpcore/client/pulp_maven/api/repositories_maven_versions_api.py +614 -0
- data/build/lib/pulpcore/client/pulp_maven/api_client.py +667 -0
- data/build/lib/pulpcore/client/pulp_maven/configuration.py +427 -0
- data/build/lib/pulpcore/client/pulp_maven/exceptions.py +121 -0
- data/build/lib/pulpcore/client/pulp_maven/models/__init__.py +39 -0
- data/build/lib/pulpcore/client/pulp_maven/models/async_operation_response.py +124 -0
- data/build/lib/pulpcore/client/pulp_maven/models/content_summary.py +176 -0
- data/build/lib/pulpcore/client/pulp_maven/models/content_summary_response.py +176 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_artifact.py +153 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_artifact_response.py +290 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_distribution.py +260 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_distribution_response.py +342 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_remote.py +657 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_remote_response.py +604 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_repository.py +202 -0
- data/build/lib/pulpcore/client/pulp_maven/models/maven_maven_repository_response.py +308 -0
- data/build/lib/pulpcore/client/pulp_maven/models/paginated_repository_version_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_artifact_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_distribution_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_remote_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_maven/models/paginatedmaven_maven_repository_response_list.py +197 -0
- data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_distribution.py +258 -0
- data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_remote.py +655 -0
- data/build/lib/pulpcore/client/pulp_maven/models/patchedmaven_maven_repository.py +201 -0
- data/build/lib/pulpcore/client/pulp_maven/models/policy_enum.py +101 -0
- data/build/lib/pulpcore/client/pulp_maven/models/repository_version.py +123 -0
- data/build/lib/pulpcore/client/pulp_maven/models/repository_version_response.py +231 -0
- data/build/lib/pulpcore/client/pulp_maven/rest.py +292 -0
- data/dist/pulp_maven-client-0.3.0.tar.gz +0 -0
- data/dist/pulp_maven_client-0.3.0-py3-none-any.whl +0 -0
- data/docs/ContentArtifactApi.md +14 -14
- data/docs/ContentSummary.md +3 -3
- data/docs/ContentSummaryResponse.md +3 -3
- data/docs/DistributionsMavenApi.md +20 -12
- data/docs/MavenMavenDistribution.md +4 -0
- data/docs/MavenMavenDistributionResponse.md +4 -0
- data/docs/MavenMavenRemote.md +12 -2
- data/docs/MavenMavenRemoteResponse.md +8 -8
- data/docs/MavenMavenRepository.md +3 -1
- data/docs/MavenMavenRepositoryResponse.md +2 -0
- data/docs/PatchedmavenMavenDistribution.md +4 -0
- data/docs/PatchedmavenMavenRemote.md +12 -2
- data/docs/PatchedmavenMavenRepository.md +3 -1
- data/docs/RemotesMavenApi.md +24 -16
- data/docs/RepositoriesMavenApi.md +12 -4
- data/docs/RepositoriesMavenVersionsApi.md +28 -28
- data/lib/pulp_maven_client/api/content_artifact_api.rb +14 -14
- data/lib/pulp_maven_client/api/distributions_maven_api.rb +26 -14
- data/lib/pulp_maven_client/api/remotes_maven_api.rb +30 -18
- data/lib/pulp_maven_client/api/repositories_maven_api.rb +17 -5
- data/lib/pulp_maven_client/api/repositories_maven_versions_api.rb +30 -30
- data/lib/pulp_maven_client/models/content_summary.rb +12 -6
- data/lib/pulp_maven_client/models/content_summary_response.rb +12 -6
- data/lib/pulp_maven_client/models/maven_maven_distribution.rb +21 -1
- data/lib/pulp_maven_client/models/maven_maven_distribution_response.rb +21 -1
- data/lib/pulp_maven_client/models/maven_maven_remote.rb +60 -6
- data/lib/pulp_maven_client/models/maven_maven_remote_response.rb +35 -36
- data/lib/pulp_maven_client/models/maven_maven_repository.rb +10 -1
- data/lib/pulp_maven_client/models/maven_maven_repository_response.rb +10 -1
- data/lib/pulp_maven_client/models/patchedmaven_maven_distribution.rb +21 -1
- data/lib/pulp_maven_client/models/patchedmaven_maven_remote.rb +60 -6
- data/lib/pulp_maven_client/models/patchedmaven_maven_repository.rb +10 -1
- data/lib/pulp_maven_client/version.rb +1 -1
- data/pulp_maven_client.egg-info/PKG-INFO +15 -0
- data/pulp_maven_client.egg-info/SOURCES.txt +71 -0
- data/pulp_maven_client.egg-info/dependency_links.txt +1 -0
- data/pulp_maven_client.egg-info/requires.txt +4 -0
- data/pulp_maven_client.egg-info/top_level.txt +1 -0
- data/pulpcore/__init__.py +2 -0
- data/pulpcore/client/__init__.py +2 -0
- data/pulpcore/client/pulp_maven/__init__.py +58 -0
- data/pulpcore/client/pulp_maven/api/__init__.py +10 -0
- data/pulpcore/client/pulp_maven/api/content_artifact_api.py +445 -0
- data/pulpcore/client/pulp_maven/api/distributions_maven_api.py +830 -0
- data/pulpcore/client/pulp_maven/api/remotes_maven_api.py +840 -0
- data/pulpcore/client/pulp_maven/api/repositories_maven_api.py +809 -0
- data/pulpcore/client/pulp_maven/api/repositories_maven_versions_api.py +614 -0
- data/pulpcore/client/pulp_maven/api_client.py +667 -0
- data/pulpcore/client/pulp_maven/configuration.py +427 -0
- data/pulpcore/client/pulp_maven/exceptions.py +121 -0
- data/pulpcore/client/pulp_maven/models/__init__.py +39 -0
- data/pulpcore/client/pulp_maven/models/async_operation_response.py +124 -0
- data/pulpcore/client/pulp_maven/models/content_summary.py +176 -0
- data/pulpcore/client/pulp_maven/models/content_summary_response.py +176 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_artifact.py +153 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_artifact_response.py +290 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_distribution.py +260 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_distribution_response.py +342 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_remote.py +657 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_remote_response.py +604 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_repository.py +202 -0
- data/pulpcore/client/pulp_maven/models/maven_maven_repository_response.py +308 -0
- data/pulpcore/client/pulp_maven/models/paginated_repository_version_response_list.py +197 -0
- data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_artifact_response_list.py +197 -0
- data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_distribution_response_list.py +197 -0
- data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_remote_response_list.py +197 -0
- data/pulpcore/client/pulp_maven/models/paginatedmaven_maven_repository_response_list.py +197 -0
- data/pulpcore/client/pulp_maven/models/patchedmaven_maven_distribution.py +258 -0
- data/pulpcore/client/pulp_maven/models/patchedmaven_maven_remote.py +655 -0
- data/pulpcore/client/pulp_maven/models/patchedmaven_maven_repository.py +201 -0
- data/pulpcore/client/pulp_maven/models/policy_enum.py +101 -0
- data/pulpcore/client/pulp_maven/models/repository_version.py +123 -0
- data/pulpcore/client/pulp_maven/models/repository_version_response.py +231 -0
- data/pulpcore/client/pulp_maven/rest.py +292 -0
- data/requirements.txt +6 -0
- data/setup.cfg +2 -0
- data/setup.py +42 -0
- data/spec/api/content_artifact_api_spec.rb +7 -7
- data/spec/api/distributions_maven_api_spec.rb +10 -6
- data/spec/api/remotes_maven_api_spec.rb +12 -8
- data/spec/api/repositories_maven_api_spec.rb +6 -2
- data/spec/api/repositories_maven_versions_api_spec.rb +14 -14
- data/spec/models/maven_maven_distribution_response_spec.rb +12 -0
- data/spec/models/maven_maven_distribution_spec.rb +12 -0
- data/spec/models/maven_maven_remote_response_spec.rb +12 -12
- data/spec/models/maven_maven_remote_spec.rb +30 -0
- data/spec/models/maven_maven_repository_response_spec.rb +6 -0
- data/spec/models/maven_maven_repository_spec.rb +6 -0
- data/spec/models/patchedmaven_maven_distribution_spec.rb +12 -0
- data/spec/models/patchedmaven_maven_remote_spec.rb +30 -0
- data/spec/models/patchedmaven_maven_repository_spec.rb +6 -0
- data/test/__init__.py +0 -0
- data/test/test_async_operation_response.py +54 -0
- data/test/test_content_artifact_api.py +55 -0
- data/test/test_content_summary.py +70 -0
- data/test/test_content_summary_response.py +70 -0
- data/test/test_distributions_maven_api.py +76 -0
- data/test/test_maven_maven_artifact.py +56 -0
- data/test/test_maven_maven_artifact_response.py +60 -0
- data/test/test_maven_maven_distribution.py +60 -0
- data/test/test_maven_maven_distribution_response.py +63 -0
- data/test/test_maven_maven_remote.py +76 -0
- data/test/test_maven_maven_remote_response.py +74 -0
- data/test/test_maven_maven_repository.py +57 -0
- data/test/test_maven_maven_repository_response.py +61 -0
- data/test/test_paginated_repository_version_response_list.py +63 -0
- data/test/test_paginatedmaven_maven_artifact_response_list.py +65 -0
- data/test/test_paginatedmaven_maven_distribution_response_list.py +67 -0
- data/test/test_paginatedmaven_maven_remote_response_list.py +78 -0
- data/test/test_paginatedmaven_maven_repository_response_list.py +66 -0
- data/test/test_patchedmaven_maven_distribution.py +58 -0
- data/test/test_patchedmaven_maven_remote.py +74 -0
- data/test/test_patchedmaven_maven_repository.py +56 -0
- data/test/test_policy_enum.py +52 -0
- data/test/test_remotes_maven_api.py +76 -0
- data/test/test_repositories_maven_api.py +76 -0
- data/test/test_repositories_maven_versions_api.py +61 -0
- data/test/test_repository_version.py +53 -0
- data/test/test_repository_version_response.py +57 -0
- data/test-requirements.txt +3 -0
- data/tox.ini +9 -0
- 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(
|
|
17
|
+
instance = PulpMavenClient::PatchedmavenMavenRepository.new(pulp_labels: null,
|
|
18
|
+
name: null,
|
|
17
19
|
description: null,
|
|
18
20
|
remote: null)
|
|
19
21
|
```
|
data/docs/RemotesMavenApi.md
CHANGED
|
@@ -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 |
|
|
146
|
-
|
|
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
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
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**|
|
|
175
|
-
**
|
|
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<String>**](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
|
-
**
|
|
179
|
-
**
|
|
180
|
-
**
|
|
181
|
-
**
|
|
182
|
-
**
|
|
183
|
-
**
|
|
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<DateTime>**](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 |
|
|
146
|
-
|
|
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**|
|
|
169
|
-
**
|
|
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<String>**](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 |
|
|
91
|
-
content__in: 'content__in_example', # String |
|
|
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:
|
|
94
|
-
number__gt:
|
|
95
|
-
number__gte:
|
|
96
|
-
number__lt:
|
|
97
|
-
number__lte:
|
|
98
|
-
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: '
|
|
102
|
-
pulp_created__gt: '
|
|
103
|
-
pulp_created__gte: '
|
|
104
|
-
pulp_created__lt: '
|
|
105
|
-
pulp_created__lte: '
|
|
106
|
-
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**|
|
|
127
|
-
**content__in** | **String**|
|
|
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** | **
|
|
130
|
-
**number__gt** | **
|
|
131
|
-
**number__gte** | **
|
|
132
|
-
**number__lt** | **
|
|
133
|
-
**number__lte** | **
|
|
134
|
-
**number__range** | **
|
|
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<Integer>**](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** | **
|
|
138
|
-
**pulp_created__gt** | **
|
|
139
|
-
**pulp_created__gte** | **
|
|
140
|
-
**pulp_created__lt** | **
|
|
141
|
-
**pulp_created__lte** | **
|
|
142
|
-
**pulp_created__range** | **
|
|
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<DateTime>**](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
|
|
96
|
-
# @option opts [String] :repository_version_added
|
|
97
|
-
# @option opts [String] :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
|
|
117
|
-
# @option opts [String] :repository_version_added
|
|
118
|
-
# @option opts [String] :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
|
|
152
|
-
# @option opts [String] :base_path__contains
|
|
153
|
-
# @option opts [String] :base_path__icontains
|
|
154
|
-
# @option opts [String] :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
|
|
157
|
-
# @option opts [String] :
|
|
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
|
|
172
|
-
# @option opts [String] :base_path__contains
|
|
173
|
-
# @option opts [String] :base_path__icontains
|
|
174
|
-
# @option opts [String] :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
|
|
177
|
-
# @option opts [String] :
|
|
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[:'
|
|
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
|
|
153
|
-
# @option opts [String] :
|
|
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] :
|
|
157
|
-
# @option opts [
|
|
158
|
-
# @option opts [
|
|
159
|
-
# @option opts [
|
|
160
|
-
# @option opts [
|
|
161
|
-
# @option opts [
|
|
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
|
|
175
|
-
# @option opts [String] :
|
|
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] :
|
|
179
|
-
# @option opts [
|
|
180
|
-
# @option opts [
|
|
181
|
-
# @option opts [
|
|
182
|
-
# @option opts [
|
|
183
|
-
# @option opts [
|
|
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[:'
|
|
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
|
|
153
|
-
# @option opts [String] :
|
|
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
|
|
169
|
-
# @option opts [String] :
|
|
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[:'
|
|
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
|
|
89
|
-
# @option opts [String] :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 [
|
|
92
|
-
# @option opts [
|
|
93
|
-
# @option opts [
|
|
94
|
-
# @option opts [
|
|
95
|
-
# @option opts [
|
|
96
|
-
# @option opts [
|
|
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 [
|
|
100
|
-
# @option opts [
|
|
101
|
-
# @option opts [
|
|
102
|
-
# @option opts [
|
|
103
|
-
# @option opts [
|
|
104
|
-
# @option opts [
|
|
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
|
|
118
|
-
# @option opts [String] :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 [
|
|
121
|
-
# @option opts [
|
|
122
|
-
# @option opts [
|
|
123
|
-
# @option opts [
|
|
124
|
-
# @option opts [
|
|
125
|
-
# @option opts [
|
|
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 [
|
|
129
|
-
# @option opts [
|
|
130
|
-
# @option opts [
|
|
131
|
-
# @option opts [
|
|
132
|
-
# @option opts [
|
|
133
|
-
# @option opts [
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
76
|
+
if (value = attributes[:'present']).is_a?(Hash)
|
|
77
|
+
self.present = value
|
|
78
|
+
end
|
|
73
79
|
end
|
|
74
80
|
end
|
|
75
81
|
|