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.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -5
  3. data/docs/AccessPoliciesApi.md +7 -1
  4. data/docs/ApiAppStatusResponse.md +21 -0
  5. data/docs/ArtifactDistributionResponse.md +8 -8
  6. data/docs/ArtifactsApi.md +3 -1
  7. data/docs/ContentApi.md +7 -3
  8. data/docs/ContentAppStatusResponse.md +3 -1
  9. data/docs/ContentguardsApi.md +11 -3
  10. data/docs/ContentguardsContentRedirectApi.md +7 -1
  11. data/docs/ContentguardsRbacApi.md +7 -1
  12. data/docs/DistributionsApi.md +11 -3
  13. data/docs/DistributionsArtifactsApi.md +7 -1
  14. data/docs/DomainsApi.md +7 -1
  15. data/docs/ExportersFilesystemApi.md +7 -1
  16. data/docs/ExportersFilesystemExportsApi.md +1 -1
  17. data/docs/ExportersPulpApi.md +7 -1
  18. data/docs/ExportersPulpExportsApi.md +1 -1
  19. data/docs/GroupsApi.md +3 -1
  20. data/docs/GroupsRolesApi.md +3 -1
  21. data/docs/GroupsUsersApi.md +1 -1
  22. data/docs/ImportersPulpApi.md +7 -1
  23. data/docs/ImportersPulpImportCheckApi.md +1 -1
  24. data/docs/ImportersPulpImportsApi.md +1 -1
  25. data/docs/OrphansApi.md +1 -1
  26. data/docs/OrphansCleanupApi.md +1 -1
  27. data/docs/PublicationsApi.md +7 -3
  28. data/docs/RemotesApi.md +11 -3
  29. data/docs/RepairApi.md +1 -1
  30. data/docs/RepositoriesApi.md +11 -3
  31. data/docs/RepositoriesReclaimSpaceApi.md +1 -1
  32. data/docs/RepositoryVersionsApi.md +3 -1
  33. data/docs/RolesApi.md +7 -1
  34. data/docs/SigningServicesApi.md +3 -1
  35. data/docs/StatusApi.md +1 -1
  36. data/docs/StatusResponse.md +4 -2
  37. data/docs/TaskGroupsApi.md +1 -1
  38. data/docs/TaskSchedulesApi.md +3 -1
  39. data/docs/TasksApi.md +9 -1
  40. data/docs/UploadsApi.md +3 -1
  41. data/docs/UpstreamPulpsApi.md +1 -1
  42. data/docs/UsersApi.md +3 -1
  43. data/docs/UsersRolesApi.md +3 -1
  44. data/docs/WorkerResponse.md +2 -0
  45. data/docs/WorkersApi.md +7 -1
  46. data/lib/pulpcore_client/api/access_policies_api.rb +9 -0
  47. data/lib/pulpcore_client/api/artifacts_api.rb +3 -0
  48. data/lib/pulpcore_client/api/content_api.rb +12 -2
  49. data/lib/pulpcore_client/api/contentguards_api.rb +18 -2
  50. data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +9 -0
  51. data/lib/pulpcore_client/api/contentguards_rbac_api.rb +9 -0
  52. data/lib/pulpcore_client/api/distributions_api.rb +18 -2
  53. data/lib/pulpcore_client/api/distributions_artifacts_api.rb +9 -0
  54. data/lib/pulpcore_client/api/domains_api.rb +9 -0
  55. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +9 -0
  56. data/lib/pulpcore_client/api/exporters_pulp_api.rb +9 -0
  57. data/lib/pulpcore_client/api/groups_api.rb +3 -0
  58. data/lib/pulpcore_client/api/groups_roles_api.rb +3 -0
  59. data/lib/pulpcore_client/api/importers_pulp_api.rb +9 -0
  60. data/lib/pulpcore_client/api/publications_api.rb +12 -2
  61. data/lib/pulpcore_client/api/remotes_api.rb +18 -2
  62. data/lib/pulpcore_client/api/repositories_api.rb +18 -2
  63. data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
  64. data/lib/pulpcore_client/api/roles_api.rb +9 -0
  65. data/lib/pulpcore_client/api/signing_services_api.rb +3 -0
  66. data/lib/pulpcore_client/api/task_schedules_api.rb +3 -0
  67. data/lib/pulpcore_client/api/tasks_api.rb +12 -0
  68. data/lib/pulpcore_client/api/uploads_api.rb +3 -0
  69. data/lib/pulpcore_client/api/users_api.rb +3 -0
  70. data/lib/pulpcore_client/api/users_roles_api.rb +3 -0
  71. data/lib/pulpcore_client/api/workers_api.rb +9 -0
  72. data/lib/pulpcore_client/configuration.rb +2 -2
  73. data/lib/pulpcore_client/models/api_app_status_response.rb +230 -0
  74. data/lib/pulpcore_client/models/artifact_distribution_response.rb +31 -31
  75. data/lib/pulpcore_client/models/content_app_status_response.rb +16 -4
  76. data/lib/pulpcore_client/models/status_response.rb +20 -3
  77. data/lib/pulpcore_client/models/worker_response.rb +13 -1
  78. data/lib/pulpcore_client/version.rb +1 -1
  79. data/lib/pulpcore_client.rb +1 -0
  80. data/spec/api/access_policies_api_spec.rb +3 -0
  81. data/spec/api/artifacts_api_spec.rb +1 -0
  82. data/spec/api/content_api_spec.rb +3 -1
  83. data/spec/api/contentguards_api_spec.rb +5 -1
  84. data/spec/api/contentguards_content_redirect_api_spec.rb +3 -0
  85. data/spec/api/contentguards_rbac_api_spec.rb +3 -0
  86. data/spec/api/distributions_api_spec.rb +5 -1
  87. data/spec/api/distributions_artifacts_api_spec.rb +3 -0
  88. data/spec/api/domains_api_spec.rb +3 -0
  89. data/spec/api/exporters_filesystem_api_spec.rb +3 -0
  90. data/spec/api/exporters_pulp_api_spec.rb +3 -0
  91. data/spec/api/groups_api_spec.rb +1 -0
  92. data/spec/api/groups_roles_api_spec.rb +1 -0
  93. data/spec/api/importers_pulp_api_spec.rb +3 -0
  94. data/spec/api/publications_api_spec.rb +3 -1
  95. data/spec/api/remotes_api_spec.rb +5 -1
  96. data/spec/api/repositories_api_spec.rb +5 -1
  97. data/spec/api/repository_versions_api_spec.rb +1 -0
  98. data/spec/api/roles_api_spec.rb +3 -0
  99. data/spec/api/signing_services_api_spec.rb +1 -0
  100. data/spec/api/task_schedules_api_spec.rb +1 -0
  101. data/spec/api/tasks_api_spec.rb +4 -0
  102. data/spec/api/uploads_api_spec.rb +1 -0
  103. data/spec/api/users_api_spec.rb +1 -0
  104. data/spec/api/users_roles_api_spec.rb +1 -0
  105. data/spec/api/workers_api_spec.rb +3 -0
  106. data/spec/configuration_spec.rb +3 -3
  107. data/spec/models/api_app_status_response_spec.rb +53 -0
  108. data/spec/models/artifact_distribution_response_spec.rb +7 -7
  109. data/spec/models/content_app_status_response_spec.rb +6 -0
  110. data/spec/models/status_response_spec.rb +6 -0
  111. data/spec/models/worker_response_spec.rb +6 -0
  112. 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;path&#x60; - Path * &#x60;-path&#x60; - Path (descending) * &#x60;method&#x60; - Method * &#x60;-method&#x60; - Method (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;path&#x60; - Path * &#x60;-path&#x60; - Path (descending) * &#x60;method&#x60; - Method * &#x60;-method&#x60; - Method (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;path&#x60; - Path * &#x60;-path&#x60; - Path (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;path&#x60; - Path * &#x60;-path&#x60; - Path (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;id&#x60; - Id * &#x60;-id&#x60; - Id (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;id&#x60; - Id * &#x60;-id&#x60; - Id (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;role&#x60; - Role * &#x60;-role&#x60; - Role (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;role&#x60; - Role * &#x60;-role&#x60; - Role (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
38
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
39
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
67
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
68
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;proxy_url&#x60; - Proxy url * &#x60;-proxy_url&#x60; - Proxy url (descending) * &#x60;proxy_username&#x60; - Proxy username * &#x60;-proxy_username&#x60; - Proxy username (descending) * &#x60;proxy_password&#x60; - Proxy password * &#x60;-proxy_password&#x60; - Proxy password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;headers&#x60; - Headers * &#x60;-headers&#x60; - Headers (descending) * &#x60;rate_limit&#x60; - Rate limit * &#x60;-rate_limit&#x60; - Rate limit (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
44
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
45
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;url&#x60; - Url * &#x60;-url&#x60; - Url (descending) * &#x60;ca_cert&#x60; - Ca cert * &#x60;-ca_cert&#x60; - Ca cert (descending) * &#x60;client_cert&#x60; - Client cert * &#x60;-client_cert&#x60; - Client cert (descending) * &#x60;client_key&#x60; - Client key * &#x60;-client_key&#x60; - Client key (descending) * &#x60;tls_validation&#x60; - Tls validation * &#x60;-tls_validation&#x60; - Tls validation (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;proxy_url&#x60; - Proxy url * &#x60;-proxy_url&#x60; - Proxy url (descending) * &#x60;proxy_username&#x60; - Proxy username * &#x60;-proxy_username&#x60; - Proxy username (descending) * &#x60;proxy_password&#x60; - Proxy password * &#x60;-proxy_password&#x60; - Proxy password (descending) * &#x60;download_concurrency&#x60; - Download concurrency * &#x60;-download_concurrency&#x60; - Download concurrency (descending) * &#x60;max_retries&#x60; - Max retries * &#x60;-max_retries&#x60; - Max retries (descending) * &#x60;policy&#x60; - Policy * &#x60;-policy&#x60; - Policy (descending) * &#x60;total_timeout&#x60; - Total timeout * &#x60;-total_timeout&#x60; - Total timeout (descending) * &#x60;connect_timeout&#x60; - Connect timeout * &#x60;-connect_timeout&#x60; - Connect timeout (descending) * &#x60;sock_connect_timeout&#x60; - Sock connect timeout * &#x60;-sock_connect_timeout&#x60; - Sock connect timeout (descending) * &#x60;sock_read_timeout&#x60; - Sock read timeout * &#x60;-sock_read_timeout&#x60; - Sock read timeout (descending) * &#x60;headers&#x60; - Headers * &#x60;-headers&#x60; - Headers (descending) * &#x60;rate_limit&#x60; - Rate limit * &#x60;-rate_limit&#x60; - Rate limit (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
77
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
78
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
39
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
40
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;next_version&#x60; - Next version * &#x60;-next_version&#x60; - Next version (descending) * &#x60;retain_repo_versions&#x60; - Retain repo versions * &#x60;-retain_repo_versions&#x60; - Retain repo versions (descending) * &#x60;user_hidden&#x60; - User hidden * &#x60;-user_hidden&#x60; - User hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 [Array<String>] :pulp_type__in Pulp type is in * &#x60;file.file&#x60; - file.file
77
+ # @option opts [String] :pulp_type Pulp type * &#x60;file.file&#x60; - file.file
78
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;file.file&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;locked&#x60; - Locked * &#x60;-locked&#x60; - Locked (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;locked&#x60; - Locked * &#x60;-locked&#x60; - Locked (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;public_key&#x60; - Public key * &#x60;-public_key&#x60; - Public key (descending) * &#x60;pubkey_fingerprint&#x60; - Pubkey fingerprint * &#x60;-pubkey_fingerprint&#x60; - Pubkey fingerprint (descending) * &#x60;script&#x60; - Script * &#x60;-script&#x60; - Script (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;public_key&#x60; - Public key * &#x60;-public_key&#x60; - Public key (descending) * &#x60;pubkey_fingerprint&#x60; - Pubkey fingerprint * &#x60;-pubkey_fingerprint&#x60; - Pubkey fingerprint (descending) * &#x60;script&#x60; - Script * &#x60;-script&#x60; - Script (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;next_dispatch&#x60; - Next dispatch * &#x60;-next_dispatch&#x60; - Next dispatch (descending) * &#x60;dispatch_interval&#x60; - Dispatch interval * &#x60;-dispatch_interval&#x60; - Dispatch interval (descending) * &#x60;task_name&#x60; - Task name * &#x60;-task_name&#x60; - Task name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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 * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;next_dispatch&#x60; - Next dispatch * &#x60;-next_dispatch&#x60; - Next dispatch (descending) * &#x60;dispatch_interval&#x60; - Dispatch interval * &#x60;-dispatch_interval&#x60; - Dispatch interval (descending) * &#x60;task_name&#x60; - Task name * &#x60;-task_name&#x60; - Task name (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - 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?