pulpcore_client 3.32.1 → 3.34.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 +9 -5
- data/docs/AccessPoliciesApi.md +7 -1
- data/docs/ApiAppStatusResponse.md +21 -0
- data/docs/ArtifactDistributionResponse.md +8 -8
- data/docs/ArtifactsApi.md +3 -1
- data/docs/ContentApi.md +7 -3
- data/docs/ContentAppStatusResponse.md +3 -1
- data/docs/ContentguardsApi.md +11 -3
- data/docs/ContentguardsContentRedirectApi.md +7 -1
- data/docs/ContentguardsRbacApi.md +7 -1
- data/docs/DistributionsApi.md +11 -3
- data/docs/DistributionsArtifactsApi.md +7 -1
- data/docs/DomainsApi.md +7 -1
- data/docs/ExportersFilesystemApi.md +7 -1
- data/docs/ExportersFilesystemExportsApi.md +1 -1
- data/docs/ExportersPulpApi.md +7 -1
- data/docs/ExportersPulpExportsApi.md +1 -1
- data/docs/GroupsApi.md +3 -1
- data/docs/GroupsRolesApi.md +3 -1
- data/docs/GroupsUsersApi.md +1 -1
- data/docs/ImportersPulpApi.md +7 -1
- data/docs/ImportersPulpImportCheckApi.md +1 -1
- data/docs/ImportersPulpImportsApi.md +1 -1
- data/docs/OrphansApi.md +1 -1
- data/docs/OrphansCleanupApi.md +1 -1
- data/docs/PublicationsApi.md +7 -3
- data/docs/RemotesApi.md +11 -3
- data/docs/RepairApi.md +1 -1
- data/docs/RepositoriesApi.md +11 -3
- data/docs/RepositoriesReclaimSpaceApi.md +1 -1
- data/docs/RepositoryVersionsApi.md +3 -1
- data/docs/RolesApi.md +7 -1
- data/docs/SigningServicesApi.md +3 -1
- data/docs/StatusApi.md +1 -1
- data/docs/StatusResponse.md +4 -2
- data/docs/TaskGroupsApi.md +1 -1
- data/docs/TaskSchedulesApi.md +3 -1
- data/docs/TasksApi.md +9 -1
- data/docs/UploadsApi.md +3 -1
- data/docs/UpstreamPulpsApi.md +1 -1
- data/docs/UsersApi.md +3 -1
- data/docs/UsersRolesApi.md +3 -1
- data/docs/WorkerResponse.md +2 -0
- data/docs/WorkersApi.md +7 -1
- data/lib/pulpcore_client/api/access_policies_api.rb +9 -0
- data/lib/pulpcore_client/api/artifacts_api.rb +3 -0
- data/lib/pulpcore_client/api/content_api.rb +12 -2
- data/lib/pulpcore_client/api/contentguards_api.rb +18 -2
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +9 -0
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +9 -0
- data/lib/pulpcore_client/api/distributions_api.rb +18 -2
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +9 -0
- data/lib/pulpcore_client/api/domains_api.rb +9 -0
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +9 -0
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +9 -0
- data/lib/pulpcore_client/api/groups_api.rb +3 -0
- data/lib/pulpcore_client/api/groups_roles_api.rb +3 -0
- data/lib/pulpcore_client/api/importers_pulp_api.rb +9 -0
- data/lib/pulpcore_client/api/publications_api.rb +12 -2
- data/lib/pulpcore_client/api/remotes_api.rb +18 -2
- data/lib/pulpcore_client/api/repositories_api.rb +18 -2
- data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
- data/lib/pulpcore_client/api/roles_api.rb +9 -0
- data/lib/pulpcore_client/api/signing_services_api.rb +3 -0
- data/lib/pulpcore_client/api/task_schedules_api.rb +3 -0
- data/lib/pulpcore_client/api/tasks_api.rb +12 -0
- data/lib/pulpcore_client/api/uploads_api.rb +3 -0
- data/lib/pulpcore_client/api/users_api.rb +3 -0
- data/lib/pulpcore_client/api/users_roles_api.rb +3 -0
- data/lib/pulpcore_client/api/workers_api.rb +9 -0
- data/lib/pulpcore_client/configuration.rb +2 -2
- data/lib/pulpcore_client/models/api_app_status_response.rb +230 -0
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +31 -31
- data/lib/pulpcore_client/models/content_app_status_response.rb +16 -4
- data/lib/pulpcore_client/models/status_response.rb +20 -3
- data/lib/pulpcore_client/models/worker_response.rb +13 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +1 -0
- data/spec/api/access_policies_api_spec.rb +3 -0
- data/spec/api/artifacts_api_spec.rb +1 -0
- data/spec/api/content_api_spec.rb +3 -1
- data/spec/api/contentguards_api_spec.rb +5 -1
- data/spec/api/contentguards_content_redirect_api_spec.rb +3 -0
- data/spec/api/contentguards_rbac_api_spec.rb +3 -0
- data/spec/api/distributions_api_spec.rb +5 -1
- data/spec/api/distributions_artifacts_api_spec.rb +3 -0
- data/spec/api/domains_api_spec.rb +3 -0
- data/spec/api/exporters_filesystem_api_spec.rb +3 -0
- data/spec/api/exporters_pulp_api_spec.rb +3 -0
- data/spec/api/groups_api_spec.rb +1 -0
- data/spec/api/groups_roles_api_spec.rb +1 -0
- data/spec/api/importers_pulp_api_spec.rb +3 -0
- data/spec/api/publications_api_spec.rb +3 -1
- data/spec/api/remotes_api_spec.rb +5 -1
- data/spec/api/repositories_api_spec.rb +5 -1
- data/spec/api/repository_versions_api_spec.rb +1 -0
- data/spec/api/roles_api_spec.rb +3 -0
- data/spec/api/signing_services_api_spec.rb +1 -0
- data/spec/api/task_schedules_api_spec.rb +1 -0
- data/spec/api/tasks_api_spec.rb +4 -0
- data/spec/api/uploads_api_spec.rb +1 -0
- data/spec/api/users_api_spec.rb +1 -0
- data/spec/api/users_roles_api_spec.rb +1 -0
- data/spec/api/workers_api_spec.rb +3 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/api_app_status_response_spec.rb +53 -0
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- data/spec/models/content_app_status_response_spec.rb +6 -0
- data/spec/models/status_response_spec.rb +6 -0
- data/spec/models/worker_response_spec.rb +6 -0
- metadata +6 -2
|
@@ -152,12 +152,15 @@ module PulpcoreClient
|
|
|
152
152
|
# @option opts [String] :name Filter results where name matches value
|
|
153
153
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
154
154
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
155
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
155
156
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
157
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
156
158
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
157
159
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
158
160
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `method` - Method * `-method` - Method (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
159
161
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
160
162
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
163
|
+
# @option opts [String] :q
|
|
161
164
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
162
165
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
163
166
|
# @return [PaginatedFilesystemExporterResponseList]
|
|
@@ -173,12 +176,15 @@ module PulpcoreClient
|
|
|
173
176
|
# @option opts [String] :name Filter results where name matches value
|
|
174
177
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
175
178
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
179
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
176
180
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
181
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
177
182
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
178
183
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
179
184
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `method` - Method * `-method` - Method (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
180
185
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
181
186
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
187
|
+
# @option opts [String] :q
|
|
182
188
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
183
189
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
184
190
|
# @return [Array<(PaginatedFilesystemExporterResponseList, Integer, Hash)>] PaginatedFilesystemExporterResponseList data, response status code and response headers
|
|
@@ -199,12 +205,15 @@ module PulpcoreClient
|
|
|
199
205
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
|
200
206
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
|
201
207
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
|
208
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
|
202
209
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
|
210
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
|
203
211
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
204
212
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
205
213
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
206
214
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
207
215
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
216
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
208
217
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
209
218
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
210
219
|
|
|
@@ -152,12 +152,15 @@ module PulpcoreClient
|
|
|
152
152
|
# @option opts [String] :name Filter results where name matches value
|
|
153
153
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
154
154
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
155
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
155
156
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
157
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
156
158
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
157
159
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
158
160
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
159
161
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
160
162
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
163
|
+
# @option opts [String] :q
|
|
161
164
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
162
165
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
163
166
|
# @return [PaginatedPulpExporterResponseList]
|
|
@@ -173,12 +176,15 @@ module PulpcoreClient
|
|
|
173
176
|
# @option opts [String] :name Filter results where name matches value
|
|
174
177
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
175
178
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
179
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
176
180
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
181
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
177
182
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
178
183
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
179
184
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
180
185
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
181
186
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
187
|
+
# @option opts [String] :q
|
|
182
188
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
183
189
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
184
190
|
# @return [Array<(PaginatedPulpExporterResponseList, Integer, Hash)>] PaginatedPulpExporterResponseList data, response status code and response headers
|
|
@@ -199,12 +205,15 @@ module PulpcoreClient
|
|
|
199
205
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
|
200
206
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
|
201
207
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
|
208
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
|
202
209
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
|
210
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
|
203
211
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
204
212
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
205
213
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
206
214
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
207
215
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
216
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
208
217
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
209
218
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
210
219
|
|
|
@@ -228,6 +228,7 @@ module PulpcoreClient
|
|
|
228
228
|
# @option opts [Array<String>] :ordering Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
229
229
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
230
230
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
231
|
+
# @option opts [String] :q
|
|
231
232
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
232
233
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
233
234
|
# @return [PaginatedGroupResponseList]
|
|
@@ -251,6 +252,7 @@ module PulpcoreClient
|
|
|
251
252
|
# @option opts [Array<String>] :ordering Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
252
253
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
253
254
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
255
|
+
# @option opts [String] :q
|
|
254
256
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
255
257
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
256
258
|
# @return [Array<(PaginatedGroupResponseList, Integer, Hash)>] PaginatedGroupResponseList data, response status code and response headers
|
|
@@ -279,6 +281,7 @@ module PulpcoreClient
|
|
|
279
281
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
280
282
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
281
283
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
284
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
282
285
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
283
286
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
284
287
|
|
|
@@ -160,6 +160,7 @@ module PulpcoreClient
|
|
|
160
160
|
# @option opts [Array<String>] :ordering Ordering * `role` - Role * `-role` - Role (descending) * `description` - Description * `-description` - Description (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
161
161
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
162
162
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
163
|
+
# @option opts [String] :q
|
|
163
164
|
# @option opts [String] :role
|
|
164
165
|
# @option opts [String] :role__contains
|
|
165
166
|
# @option opts [String] :role__icontains
|
|
@@ -184,6 +185,7 @@ module PulpcoreClient
|
|
|
184
185
|
# @option opts [Array<String>] :ordering Ordering * `role` - Role * `-role` - Role (descending) * `description` - Description * `-description` - Description (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
185
186
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
186
187
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
188
|
+
# @option opts [String] :q
|
|
187
189
|
# @option opts [String] :role
|
|
188
190
|
# @option opts [String] :role__contains
|
|
189
191
|
# @option opts [String] :role__icontains
|
|
@@ -216,6 +218,7 @@ module PulpcoreClient
|
|
|
216
218
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
217
219
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
218
220
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
221
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
219
222
|
query_params[:'role'] = opts[:'role'] if !opts[:'role'].nil?
|
|
220
223
|
query_params[:'role__contains'] = opts[:'role__contains'] if !opts[:'role__contains'].nil?
|
|
221
224
|
query_params[:'role__icontains'] = opts[:'role__icontains'] if !opts[:'role__icontains'].nil?
|
|
@@ -150,12 +150,15 @@ module PulpcoreClient
|
|
|
150
150
|
# @option opts [String] :name Filter results where name matches value
|
|
151
151
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
152
152
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
153
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
153
154
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
155
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
154
156
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
155
157
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
156
158
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
157
159
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
158
160
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
161
|
+
# @option opts [String] :q
|
|
159
162
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
160
163
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
161
164
|
# @return [PaginatedPulpImporterResponseList]
|
|
@@ -171,12 +174,15 @@ module PulpcoreClient
|
|
|
171
174
|
# @option opts [String] :name Filter results where name matches value
|
|
172
175
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
173
176
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
177
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
174
178
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
179
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
175
180
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
176
181
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
177
182
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
178
183
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
179
184
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
185
|
+
# @option opts [String] :q
|
|
180
186
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
181
187
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
182
188
|
# @return [Array<(PaginatedPulpImporterResponseList, Integer, Hash)>] PaginatedPulpImporterResponseList data, response status code and response headers
|
|
@@ -197,12 +203,15 @@ module PulpcoreClient
|
|
|
197
203
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
|
198
204
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
|
199
205
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
|
206
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
|
200
207
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
|
208
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
|
201
209
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
202
210
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
203
211
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
204
212
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
205
213
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
214
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
206
215
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
207
216
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
208
217
|
|
|
@@ -35,7 +35,9 @@ module PulpcoreClient
|
|
|
35
35
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
|
36
36
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
37
37
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
38
|
-
# @option opts [
|
|
38
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
39
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
40
|
+
# @option opts [String] :q
|
|
39
41
|
# @option opts [String] :repository Repository referenced by HREF
|
|
40
42
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
41
43
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -62,7 +64,9 @@ module PulpcoreClient
|
|
|
62
64
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
|
63
65
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
64
66
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
65
|
-
# @option opts [
|
|
67
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
68
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
69
|
+
# @option opts [String] :q
|
|
66
70
|
# @option opts [String] :repository Repository referenced by HREF
|
|
67
71
|
# @option opts [String] :repository_version Repository Version referenced by HREF
|
|
68
72
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -77,6 +81,10 @@ module PulpcoreClient
|
|
|
77
81
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
78
82
|
end
|
|
79
83
|
allowable_values = ["file.file"]
|
|
84
|
+
if @api_client.config.client_side_validation && opts[:'pulp_type'] && !allowable_values.include?(opts[:'pulp_type'])
|
|
85
|
+
fail ArgumentError, "invalid value for \"pulp_type\", must be one of #{allowable_values}"
|
|
86
|
+
end
|
|
87
|
+
allowable_values = ["file.file"]
|
|
80
88
|
if @api_client.config.client_side_validation && opts[:'pulp_type__in'] && !opts[:'pulp_type__in'].all? { |item| allowable_values.include?(item) }
|
|
81
89
|
fail ArgumentError, "invalid value for \"pulp_type__in\", must include one of #{allowable_values}"
|
|
82
90
|
end
|
|
@@ -98,7 +106,9 @@ module PulpcoreClient
|
|
|
98
106
|
query_params[:'pulp_created__range'] = @api_client.build_collection_param(opts[:'pulp_created__range'], :csv) if !opts[:'pulp_created__range'].nil?
|
|
99
107
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
100
108
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
109
|
+
query_params[:'pulp_type'] = opts[:'pulp_type'] if !opts[:'pulp_type'].nil?
|
|
101
110
|
query_params[:'pulp_type__in'] = @api_client.build_collection_param(opts[:'pulp_type__in'], :csv) if !opts[:'pulp_type__in'].nil?
|
|
111
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
102
112
|
query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
|
|
103
113
|
query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
|
|
104
114
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
@@ -26,7 +26,9 @@ module PulpcoreClient
|
|
|
26
26
|
# @option opts [String] :name Filter results where name matches value
|
|
27
27
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
28
28
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
29
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
29
30
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
31
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
30
32
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
31
33
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
32
34
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
@@ -39,7 +41,9 @@ module PulpcoreClient
|
|
|
39
41
|
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
|
40
42
|
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
|
41
43
|
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
|
42
|
-
# @option opts [
|
|
44
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
45
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
46
|
+
# @option opts [String] :q
|
|
43
47
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
44
48
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
45
49
|
# @return [PaginatedRemoteResponseList]
|
|
@@ -55,7 +59,9 @@ module PulpcoreClient
|
|
|
55
59
|
# @option opts [String] :name Filter results where name matches value
|
|
56
60
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
57
61
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
62
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
58
63
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
64
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
59
65
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
60
66
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
61
67
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
@@ -68,7 +74,9 @@ module PulpcoreClient
|
|
|
68
74
|
# @option opts [DateTime] :pulp_last_updated__lt Filter results where pulp_last_updated is less than value
|
|
69
75
|
# @option opts [DateTime] :pulp_last_updated__lte Filter results where pulp_last_updated is less than or equal to value
|
|
70
76
|
# @option opts [Array<DateTime>] :pulp_last_updated__range Filter results where pulp_last_updated is between two comma separated values
|
|
71
|
-
# @option opts [
|
|
77
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
78
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
79
|
+
# @option opts [String] :q
|
|
72
80
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
73
81
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
74
82
|
# @return [Array<(PaginatedRemoteResponseList, Integer, Hash)>] PaginatedRemoteResponseList data, response status code and response headers
|
|
@@ -81,6 +89,10 @@ module PulpcoreClient
|
|
|
81
89
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
82
90
|
end
|
|
83
91
|
allowable_values = ["file.file"]
|
|
92
|
+
if @api_client.config.client_side_validation && opts[:'pulp_type'] && !allowable_values.include?(opts[:'pulp_type'])
|
|
93
|
+
fail ArgumentError, "invalid value for \"pulp_type\", must be one of #{allowable_values}"
|
|
94
|
+
end
|
|
95
|
+
allowable_values = ["file.file"]
|
|
84
96
|
if @api_client.config.client_side_validation && opts[:'pulp_type__in'] && !opts[:'pulp_type__in'].all? { |item| allowable_values.include?(item) }
|
|
85
97
|
fail ArgumentError, "invalid value for \"pulp_type__in\", must include one of #{allowable_values}"
|
|
86
98
|
end
|
|
@@ -93,7 +105,9 @@ module PulpcoreClient
|
|
|
93
105
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
|
94
106
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
|
95
107
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
|
108
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
|
96
109
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
|
110
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
|
97
111
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
98
112
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
99
113
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
@@ -106,7 +120,9 @@ module PulpcoreClient
|
|
|
106
120
|
query_params[:'pulp_last_updated__lt'] = opts[:'pulp_last_updated__lt'] if !opts[:'pulp_last_updated__lt'].nil?
|
|
107
121
|
query_params[:'pulp_last_updated__lte'] = opts[:'pulp_last_updated__lte'] if !opts[:'pulp_last_updated__lte'].nil?
|
|
108
122
|
query_params[:'pulp_last_updated__range'] = @api_client.build_collection_param(opts[:'pulp_last_updated__range'], :csv) if !opts[:'pulp_last_updated__range'].nil?
|
|
123
|
+
query_params[:'pulp_type'] = opts[:'pulp_type'] if !opts[:'pulp_type'].nil?
|
|
109
124
|
query_params[:'pulp_type__in'] = @api_client.build_collection_param(opts[:'pulp_type__in'], :csv) if !opts[:'pulp_type__in'].nil?
|
|
125
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
110
126
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
111
127
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
112
128
|
|
|
@@ -27,14 +27,18 @@ module PulpcoreClient
|
|
|
27
27
|
# @option opts [String] :name Filter results where name matches value
|
|
28
28
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
29
29
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
30
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
30
31
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
32
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
31
33
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
32
34
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
33
35
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
34
36
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
35
37
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
36
38
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
37
|
-
# @option opts [
|
|
39
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
40
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
41
|
+
# @option opts [String] :q
|
|
38
42
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
39
43
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
40
44
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
@@ -61,14 +65,18 @@ module PulpcoreClient
|
|
|
61
65
|
# @option opts [String] :name Filter results where name matches value
|
|
62
66
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
63
67
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
68
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
64
69
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
70
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
65
71
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
66
72
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
67
73
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
68
74
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
69
75
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
70
76
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
71
|
-
# @option opts [
|
|
77
|
+
# @option opts [String] :pulp_type Pulp type * `file.file` - file.file
|
|
78
|
+
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `file.file` - file.file
|
|
79
|
+
# @option opts [String] :q
|
|
72
80
|
# @option opts [String] :remote Foreign Key referenced by HREF
|
|
73
81
|
# @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
|
|
74
82
|
# @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
|
|
@@ -91,6 +99,10 @@ module PulpcoreClient
|
|
|
91
99
|
fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
|
|
92
100
|
end
|
|
93
101
|
allowable_values = ["file.file"]
|
|
102
|
+
if @api_client.config.client_side_validation && opts[:'pulp_type'] && !allowable_values.include?(opts[:'pulp_type'])
|
|
103
|
+
fail ArgumentError, "invalid value for \"pulp_type\", must be one of #{allowable_values}"
|
|
104
|
+
end
|
|
105
|
+
allowable_values = ["file.file"]
|
|
94
106
|
if @api_client.config.client_side_validation && opts[:'pulp_type__in'] && !opts[:'pulp_type__in'].all? { |item| allowable_values.include?(item) }
|
|
95
107
|
fail ArgumentError, "invalid value for \"pulp_type__in\", must include one of #{allowable_values}"
|
|
96
108
|
end
|
|
@@ -104,14 +116,18 @@ module PulpcoreClient
|
|
|
104
116
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
|
105
117
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
|
106
118
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
|
119
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
|
107
120
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
|
121
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
|
108
122
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
109
123
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
110
124
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
111
125
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
112
126
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
113
127
|
query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
|
|
128
|
+
query_params[:'pulp_type'] = opts[:'pulp_type'] if !opts[:'pulp_type'].nil?
|
|
114
129
|
query_params[:'pulp_type__in'] = @api_client.build_collection_param(opts[:'pulp_type__in'], :csv) if !opts[:'pulp_type__in'].nil?
|
|
130
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
115
131
|
query_params[:'remote'] = opts[:'remote'] if !opts[:'remote'].nil?
|
|
116
132
|
query_params[:'retain_repo_versions'] = opts[:'retain_repo_versions'] if !opts[:'retain_repo_versions'].nil?
|
|
117
133
|
query_params[:'retain_repo_versions__gt'] = opts[:'retain_repo_versions__gt'] if !opts[:'retain_repo_versions__gt'].nil?
|
|
@@ -40,6 +40,7 @@ module PulpcoreClient
|
|
|
40
40
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
|
41
41
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
|
42
42
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
43
|
+
# @option opts [String] :q
|
|
43
44
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
44
45
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
45
46
|
# @return [PaginatedRepositoryVersionResponseList]
|
|
@@ -69,6 +70,7 @@ module PulpcoreClient
|
|
|
69
70
|
# @option opts [DateTime] :pulp_created__lte Filter results where pulp_created is less than or equal to value
|
|
70
71
|
# @option opts [Array<DateTime>] :pulp_created__range Filter results where pulp_created is between two comma separated values
|
|
71
72
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
73
|
+
# @option opts [String] :q
|
|
72
74
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
73
75
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
74
76
|
# @return [Array<(PaginatedRepositoryVersionResponseList, Integer, Hash)>] PaginatedRepositoryVersionResponseList data, response status code and response headers
|
|
@@ -103,6 +105,7 @@ module PulpcoreClient
|
|
|
103
105
|
query_params[:'pulp_created__lte'] = opts[:'pulp_created__lte'] if !opts[:'pulp_created__lte'].nil?
|
|
104
106
|
query_params[:'pulp_created__range'] = @api_client.build_collection_param(opts[:'pulp_created__range'], :csv) if !opts[:'pulp_created__range'].nil?
|
|
105
107
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
108
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
106
109
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
107
110
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
108
111
|
|
|
@@ -157,12 +157,15 @@ module PulpcoreClient
|
|
|
157
157
|
# @option opts [String] :name Filter results where name matches value
|
|
158
158
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
159
159
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
160
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
160
161
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
162
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
161
163
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
162
164
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
163
165
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `locked` - Locked * `-locked` - Locked (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
164
166
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
165
167
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
168
|
+
# @option opts [String] :q
|
|
166
169
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
167
170
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
168
171
|
# @return [PaginatedRoleResponseList]
|
|
@@ -185,12 +188,15 @@ module PulpcoreClient
|
|
|
185
188
|
# @option opts [String] :name Filter results where name matches value
|
|
186
189
|
# @option opts [String] :name__contains Filter results where name contains value
|
|
187
190
|
# @option opts [String] :name__icontains Filter results where name contains value
|
|
191
|
+
# @option opts [String] :name__iexact Filter results where name matches value
|
|
188
192
|
# @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
|
|
193
|
+
# @option opts [String] :name__istartswith Filter results where name starts with value
|
|
189
194
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
|
190
195
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
|
191
196
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `description` - Description * `-description` - Description (descending) * `locked` - Locked * `-locked` - Locked (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
192
197
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
193
198
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
199
|
+
# @option opts [String] :q
|
|
194
200
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
195
201
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
196
202
|
# @return [Array<(PaginatedRoleResponseList, Integer, Hash)>] PaginatedRoleResponseList data, response status code and response headers
|
|
@@ -218,12 +224,15 @@ module PulpcoreClient
|
|
|
218
224
|
query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
|
|
219
225
|
query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
|
|
220
226
|
query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
|
|
227
|
+
query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
|
|
221
228
|
query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
|
|
229
|
+
query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
|
|
222
230
|
query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
|
|
223
231
|
query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
|
|
224
232
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
225
233
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
226
234
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
235
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
227
236
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
228
237
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
229
238
|
|
|
@@ -28,6 +28,7 @@ module PulpcoreClient
|
|
|
28
28
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `public_key` - Public key * `-public_key` - Public key (descending) * `pubkey_fingerprint` - Pubkey fingerprint * `-pubkey_fingerprint` - Pubkey fingerprint (descending) * `script` - Script * `-script` - Script (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
29
29
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
30
30
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
31
|
+
# @option opts [String] :q
|
|
31
32
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
32
33
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
33
34
|
# @return [PaginatedSigningServiceResponseList]
|
|
@@ -45,6 +46,7 @@ module PulpcoreClient
|
|
|
45
46
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `public_key` - Public key * `-public_key` - Public key (descending) * `pubkey_fingerprint` - Pubkey fingerprint * `-pubkey_fingerprint` - Pubkey fingerprint (descending) * `script` - Script * `-script` - Script (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
46
47
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
47
48
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
49
|
+
# @option opts [String] :q
|
|
48
50
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
49
51
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
50
52
|
# @return [Array<(PaginatedSigningServiceResponseList, Integer, Hash)>] PaginatedSigningServiceResponseList data, response status code and response headers
|
|
@@ -67,6 +69,7 @@ module PulpcoreClient
|
|
|
67
69
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
68
70
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
69
71
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
72
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
70
73
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|
|
71
74
|
query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
|
|
72
75
|
|
|
@@ -99,6 +99,7 @@ module PulpcoreClient
|
|
|
99
99
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `next_dispatch` - Next dispatch * `-next_dispatch` - Next dispatch (descending) * `dispatch_interval` - Dispatch interval * `-dispatch_interval` - Dispatch interval (descending) * `task_name` - Task name * `-task_name` - Task name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
100
100
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
101
101
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
102
|
+
# @option opts [String] :q
|
|
102
103
|
# @option opts [String] :task_name Filter results where task_name matches value
|
|
103
104
|
# @option opts [String] :task_name__contains Filter results where task_name contains value
|
|
104
105
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -119,6 +120,7 @@ module PulpcoreClient
|
|
|
119
120
|
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `next_dispatch` - Next dispatch * `-next_dispatch` - Next dispatch (descending) * `dispatch_interval` - Dispatch interval * `-dispatch_interval` - Dispatch interval (descending) * `task_name` - Task name * `-task_name` - Task name (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
120
121
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
|
121
122
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
123
|
+
# @option opts [String] :q
|
|
122
124
|
# @option opts [String] :task_name Filter results where task_name matches value
|
|
123
125
|
# @option opts [String] :task_name__contains Filter results where task_name contains value
|
|
124
126
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
@@ -144,6 +146,7 @@ module PulpcoreClient
|
|
|
144
146
|
query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
|
|
145
147
|
query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
|
|
146
148
|
query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
|
|
149
|
+
query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
|
|
147
150
|
query_params[:'task_name'] = opts[:'task_name'] if !opts[:'task_name'].nil?
|
|
148
151
|
query_params[:'task_name__contains'] = opts[:'task_name__contains'] if !opts[:'task_name__contains'].nil?
|
|
149
152
|
query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
|