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
data/docs/UsersApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::UsersApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -162,6 +162,7 @@ opts = {
162
162
  ordering: ['ordering_example'], # Array<String> | Ordering * `id` - Id * `-id` - Id (descending) * `password` - Password * `-password` - Password (descending) * `last_login` - Last login * `-last_login` - Last login (descending) * `is_superuser` - Is superuser * `-is_superuser` - Is superuser (descending) * `username` - Username * `-username` - Username (descending) * `first_name` - First name * `-first_name` - First name (descending) * `last_name` - Last name * `-last_name` - Last name (descending) * `email` - Email * `-email` - Email (descending) * `is_staff` - Is staff * `-is_staff` - Is staff (descending) * `is_active` - Is active * `-is_active` - Is active (descending) * `date_joined` - Date joined * `-date_joined` - Date joined (descending) * `pk` - Pk * `-pk` - Pk (descending)
163
163
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
164
164
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
165
+ q: 'q_example', # String |
165
166
  username: 'username_example', # String | Filter results where username matches value
166
167
  username__contains: 'username__contains_example', # String | Filter results where username contains value
167
168
  username__icontains: 'username__icontains_example', # String | Filter results where username contains value
@@ -207,6 +208,7 @@ Name | Type | Description | Notes
207
208
  **ordering** | [**Array&lt;String&gt;**](String.md)| Ordering * &#x60;id&#x60; - Id * &#x60;-id&#x60; - Id (descending) * &#x60;password&#x60; - Password * &#x60;-password&#x60; - Password (descending) * &#x60;last_login&#x60; - Last login * &#x60;-last_login&#x60; - Last login (descending) * &#x60;is_superuser&#x60; - Is superuser * &#x60;-is_superuser&#x60; - Is superuser (descending) * &#x60;username&#x60; - Username * &#x60;-username&#x60; - Username (descending) * &#x60;first_name&#x60; - First name * &#x60;-first_name&#x60; - First name (descending) * &#x60;last_name&#x60; - Last name * &#x60;-last_name&#x60; - Last name (descending) * &#x60;email&#x60; - Email * &#x60;-email&#x60; - Email (descending) * &#x60;is_staff&#x60; - Is staff * &#x60;-is_staff&#x60; - Is staff (descending) * &#x60;is_active&#x60; - Is active * &#x60;-is_active&#x60; - Is active (descending) * &#x60;date_joined&#x60; - Date joined * &#x60;-date_joined&#x60; - Date joined (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
208
209
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
209
210
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
211
+ **q** | **String**| | [optional]
210
212
  **username** | **String**| Filter results where username matches value | [optional]
211
213
  **username__contains** | **String**| Filter results where username contains value | [optional]
212
214
  **username__icontains** | **String**| Filter results where username contains value | [optional]
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::UsersRolesApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -148,6 +148,7 @@ opts = {
148
148
  ordering: ['ordering_example'], # Array<String> | 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)
149
149
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
150
150
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
151
+ q: 'q_example', # String |
151
152
  role: 'role_example', # String |
152
153
  role__contains: 'role__contains_example', # String |
153
154
  role__icontains: 'role__icontains_example', # String |
@@ -179,6 +180,7 @@ Name | Type | Description | Notes
179
180
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
180
181
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
181
182
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
183
+ **q** | **String**| | [optional]
182
184
  **role** | **String**| | [optional]
183
185
  **role__contains** | **String**| | [optional]
184
186
  **role__icontains** | **String**| | [optional]
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
9
9
  **name** | **String** | The name of the worker. | [optional] [readonly]
10
10
  **last_heartbeat** | **DateTime** | Timestamp of the last time the worker talked to the service. | [optional] [readonly]
11
+ **versions** | **Hash&lt;String, String&gt;** | Versions of the components installed. | [optional] [readonly]
11
12
  **current_task** | **String** | The task this worker is currently executing, or empty if the worker is not currently assigned to a task. | [optional] [readonly]
12
13
 
13
14
  ## Code Sample
@@ -19,6 +20,7 @@ instance = PulpcoreClient::WorkerResponse.new(pulp_href: null,
19
20
  pulp_created: null,
20
21
  name: null,
21
22
  last_heartbeat: null,
23
+ versions: null,
22
24
  current_task: null)
23
25
  ```
24
26
 
data/docs/WorkersApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::WorkersApi
2
2
 
3
- All URIs are relative to *https://pulp*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
@@ -42,13 +42,16 @@ opts = {
42
42
  name: 'name_example', # String | Filter results where name matches value
43
43
  name__contains: 'name__contains_example', # String | Filter results where name contains value
44
44
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
45
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
45
46
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
47
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
46
48
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
47
49
  offset: 56, # Integer | The initial index from which to return the results.
48
50
  online: true, # Boolean |
49
51
  ordering: ['ordering_example'], # Array<String> | 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) * `last_heartbeat` - Last heartbeat * `-last_heartbeat` - Last heartbeat (descending) * `versions` - Versions * `-versions` - Versions (descending) * `pk` - Pk * `-pk` - Pk (descending)
50
52
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
51
53
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
54
+ q: 'q_example', # String |
52
55
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
53
56
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
54
57
  }
@@ -78,13 +81,16 @@ Name | Type | Description | Notes
78
81
  **name** | **String**| Filter results where name matches value | [optional]
79
82
  **name__contains** | **String**| Filter results where name contains value | [optional]
80
83
  **name__icontains** | **String**| Filter results where name contains value | [optional]
84
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
81
85
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
86
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
82
87
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
83
88
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
84
89
  **online** | **Boolean**| | [optional]
85
90
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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;last_heartbeat&#x60; - Last heartbeat * &#x60;-last_heartbeat&#x60; - Last heartbeat (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
86
91
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
87
92
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
93
+ **q** | **String**| | [optional]
88
94
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
89
95
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
90
96
 
@@ -28,10 +28,13 @@ 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;creation_hooks&#x60; - Creation hooks * &#x60;-creation_hooks&#x60; - Creation hooks (descending) * &#x60;statements&#x60; - Statements * &#x60;-statements&#x60; - Statements (descending) * &#x60;viewset_name&#x60; - Viewset name * &#x60;-viewset_name&#x60; - Viewset name (descending) * &#x60;customized&#x60; - Customized * &#x60;-customized&#x60; - Customized (descending) * &#x60;queryset_scoping&#x60; - Queryset scoping * &#x60;-queryset_scoping&#x60; - Queryset scoping (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 [String] :viewset_name Filter results where viewset_name matches value
32
33
  # @option opts [String] :viewset_name__contains Filter results where viewset_name contains value
33
34
  # @option opts [String] :viewset_name__icontains Filter results where viewset_name contains value
35
+ # @option opts [String] :viewset_name__iexact Filter results where viewset_name matches value
34
36
  # @option opts [Array<String>] :viewset_name__in Filter results where viewset_name is in a comma-separated list of values
37
+ # @option opts [String] :viewset_name__istartswith Filter results where viewset_name starts with value
35
38
  # @option opts [String] :viewset_name__startswith Filter results where viewset_name starts with value
36
39
  # @option opts [Array<String>] :fields A list of fields to include in the response.
37
40
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -50,10 +53,13 @@ module PulpcoreClient
50
53
  # @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;creation_hooks&#x60; - Creation hooks * &#x60;-creation_hooks&#x60; - Creation hooks (descending) * &#x60;statements&#x60; - Statements * &#x60;-statements&#x60; - Statements (descending) * &#x60;viewset_name&#x60; - Viewset name * &#x60;-viewset_name&#x60; - Viewset name (descending) * &#x60;customized&#x60; - Customized * &#x60;-customized&#x60; - Customized (descending) * &#x60;queryset_scoping&#x60; - Queryset scoping * &#x60;-queryset_scoping&#x60; - Queryset scoping (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
51
54
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
52
55
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
56
+ # @option opts [String] :q
53
57
  # @option opts [String] :viewset_name Filter results where viewset_name matches value
54
58
  # @option opts [String] :viewset_name__contains Filter results where viewset_name contains value
55
59
  # @option opts [String] :viewset_name__icontains Filter results where viewset_name contains value
60
+ # @option opts [String] :viewset_name__iexact Filter results where viewset_name matches value
56
61
  # @option opts [Array<String>] :viewset_name__in Filter results where viewset_name is in a comma-separated list of values
62
+ # @option opts [String] :viewset_name__istartswith Filter results where viewset_name starts with value
57
63
  # @option opts [String] :viewset_name__startswith Filter results where viewset_name starts with value
58
64
  # @option opts [Array<String>] :fields A list of fields to include in the response.
59
65
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
@@ -77,10 +83,13 @@ module PulpcoreClient
77
83
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
78
84
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
79
85
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
86
+ query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
80
87
  query_params[:'viewset_name'] = opts[:'viewset_name'] if !opts[:'viewset_name'].nil?
81
88
  query_params[:'viewset_name__contains'] = opts[:'viewset_name__contains'] if !opts[:'viewset_name__contains'].nil?
82
89
  query_params[:'viewset_name__icontains'] = opts[:'viewset_name__icontains'] if !opts[:'viewset_name__icontains'].nil?
90
+ query_params[:'viewset_name__iexact'] = opts[:'viewset_name__iexact'] if !opts[:'viewset_name__iexact'].nil?
83
91
  query_params[:'viewset_name__in'] = @api_client.build_collection_param(opts[:'viewset_name__in'], :csv) if !opts[:'viewset_name__in'].nil?
92
+ query_params[:'viewset_name__istartswith'] = opts[:'viewset_name__istartswith'] if !opts[:'viewset_name__istartswith'].nil?
84
93
  query_params[:'viewset_name__startswith'] = opts[:'viewset_name__startswith'] if !opts[:'viewset_name__startswith'].nil?
85
94
  query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
86
95
  query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
@@ -198,6 +198,7 @@ module PulpcoreClient
198
198
  # @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;file&#x60; - File * &#x60;-file&#x60; - File (descending) * &#x60;size&#x60; - Size * &#x60;-size&#x60; - Size (descending) * &#x60;md5&#x60; - Md5 * &#x60;-md5&#x60; - Md5 (descending) * &#x60;sha1&#x60; - Sha1 * &#x60;-sha1&#x60; - Sha1 (descending) * &#x60;sha224&#x60; - Sha224 * &#x60;-sha224&#x60; - Sha224 (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;sha384&#x60; - Sha384 * &#x60;-sha384&#x60; - Sha384 (descending) * &#x60;sha512&#x60; - Sha512 * &#x60;-sha512&#x60; - Sha512 (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
199
199
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
200
200
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
201
+ # @option opts [String] :q
201
202
  # @option opts [String] :repository_version Repository Version referenced by HREF
202
203
  # @option opts [String] :sha1 Filter results where sha1 matches value
203
204
  # @option opts [String] :sha224 Filter results where sha224 matches value
@@ -221,6 +222,7 @@ module PulpcoreClient
221
222
  # @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;file&#x60; - File * &#x60;-file&#x60; - File (descending) * &#x60;size&#x60; - Size * &#x60;-size&#x60; - Size (descending) * &#x60;md5&#x60; - Md5 * &#x60;-md5&#x60; - Md5 (descending) * &#x60;sha1&#x60; - Sha1 * &#x60;-sha1&#x60; - Sha1 (descending) * &#x60;sha224&#x60; - Sha224 * &#x60;-sha224&#x60; - Sha224 (descending) * &#x60;sha256&#x60; - Sha256 * &#x60;-sha256&#x60; - Sha256 (descending) * &#x60;sha384&#x60; - Sha384 * &#x60;-sha384&#x60; - Sha384 (descending) * &#x60;sha512&#x60; - Sha512 * &#x60;-sha512&#x60; - Sha512 (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
222
223
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
223
224
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
225
+ # @option opts [String] :q
224
226
  # @option opts [String] :repository_version Repository Version referenced by HREF
225
227
  # @option opts [String] :sha1 Filter results where sha1 matches value
226
228
  # @option opts [String] :sha224 Filter results where sha224 matches value
@@ -249,6 +251,7 @@ module PulpcoreClient
249
251
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
250
252
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
251
253
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
254
+ query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
252
255
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
253
256
  query_params[:'sha1'] = opts[:'sha1'] if !opts[:'sha1'].nil?
254
257
  query_params[:'sha224'] = opts[:'sha224'] if !opts[:'sha224'].nil?
@@ -27,7 +27,9 @@ module PulpcoreClient
27
27
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
28
28
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
29
29
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
30
- # @option opts [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
30
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
31
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
32
+ # @option opts [String] :q
31
33
  # @option opts [String] :repository_version Repository Version referenced by HREF
32
34
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
33
35
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
@@ -47,7 +49,9 @@ module PulpcoreClient
47
49
  # @option opts [Array<String>] :ordering Ordering * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
48
50
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
49
51
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
50
- # @option opts [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
52
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
53
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.publishedmetadata&#x60; - core.publishedmetadata * &#x60;file.file&#x60; - file.file
54
+ # @option opts [String] :q
51
55
  # @option opts [String] :repository_version Repository Version referenced by HREF
52
56
  # @option opts [String] :repository_version_added Repository Version referenced by HREF
53
57
  # @option opts [String] :repository_version_removed Repository Version referenced by HREF
@@ -63,6 +67,10 @@ module PulpcoreClient
63
67
  fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
64
68
  end
65
69
  allowable_values = ["core.publishedmetadata", "file.file"]
70
+ if @api_client.config.client_side_validation && opts[:'pulp_type'] && !allowable_values.include?(opts[:'pulp_type'])
71
+ fail ArgumentError, "invalid value for \"pulp_type\", must be one of #{allowable_values}"
72
+ end
73
+ allowable_values = ["core.publishedmetadata", "file.file"]
66
74
  if @api_client.config.client_side_validation && opts[:'pulp_type__in'] && !opts[:'pulp_type__in'].all? { |item| allowable_values.include?(item) }
67
75
  fail ArgumentError, "invalid value for \"pulp_type__in\", must include one of #{allowable_values}"
68
76
  end
@@ -76,7 +84,9 @@ module PulpcoreClient
76
84
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
77
85
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
78
86
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
87
+ query_params[:'pulp_type'] = opts[:'pulp_type'] if !opts[:'pulp_type'].nil?
79
88
  query_params[:'pulp_type__in'] = @api_client.build_collection_param(opts[:'pulp_type__in'], :csv) if !opts[:'pulp_type__in'].nil?
89
+ query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
80
90
  query_params[:'repository_version'] = opts[:'repository_version'] if !opts[:'repository_version'].nil?
81
91
  query_params[:'repository_version_added'] = opts[:'repository_version_added'] if !opts[:'repository_version_added'].nil?
82
92
  query_params[:'repository_version_removed'] = opts[:'repository_version_removed'] if !opts[:'repository_version_removed'].nil?
@@ -26,13 +26,17 @@ 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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
33
35
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
34
36
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
35
- # @option opts [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
37
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
38
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
39
+ # @option opts [String] :q
36
40
  # @option opts [Array<String>] :fields A list of fields to include in the response.
37
41
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
38
42
  # @return [PaginatedContentGuardResponseList]
@@ -48,13 +52,17 @@ module PulpcoreClient
48
52
  # @option opts [String] :name Filter results where name matches value
49
53
  # @option opts [String] :name__contains Filter results where name contains value
50
54
  # @option opts [String] :name__icontains Filter results where name contains value
55
+ # @option opts [String] :name__iexact Filter results where name matches value
51
56
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
57
+ # @option opts [String] :name__istartswith Filter results where name starts with value
52
58
  # @option opts [String] :name__startswith Filter results where name starts with value
53
59
  # @option opts [Integer] :offset The initial index from which to return the results.
54
60
  # @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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
55
61
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
56
62
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
57
- # @option opts [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
63
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
64
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.rbac&#x60; - core.rbac * &#x60;core.content_redirect&#x60; - core.content_redirect * &#x60;certguard.rhsm&#x60; - certguard.rhsm * &#x60;certguard.x509&#x60; - certguard.x509
65
+ # @option opts [String] :q
58
66
  # @option opts [Array<String>] :fields A list of fields to include in the response.
59
67
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
60
68
  # @return [Array<(PaginatedContentGuardResponseList, Integer, Hash)>] PaginatedContentGuardResponseList data, response status code and response headers
@@ -67,6 +75,10 @@ module PulpcoreClient
67
75
  fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
68
76
  end
69
77
  allowable_values = ["certguard.rhsm", "certguard.x509", "core.content_redirect", "core.rbac"]
78
+ if @api_client.config.client_side_validation && opts[:'pulp_type'] && !allowable_values.include?(opts[:'pulp_type'])
79
+ fail ArgumentError, "invalid value for \"pulp_type\", must be one of #{allowable_values}"
80
+ end
81
+ allowable_values = ["certguard.rhsm", "certguard.x509", "core.content_redirect", "core.rbac"]
70
82
  if @api_client.config.client_side_validation && opts[:'pulp_type__in'] && !opts[:'pulp_type__in'].all? { |item| allowable_values.include?(item) }
71
83
  fail ArgumentError, "invalid value for \"pulp_type__in\", must include one of #{allowable_values}"
72
84
  end
@@ -79,13 +91,17 @@ module PulpcoreClient
79
91
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
80
92
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
81
93
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
94
+ query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
82
95
  query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
96
+ query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
83
97
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
84
98
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
85
99
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
86
100
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
87
101
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
102
+ query_params[:'pulp_type'] = opts[:'pulp_type'] if !opts[:'pulp_type'].nil?
88
103
  query_params[:'pulp_type__in'] = @api_client.build_collection_param(opts[:'pulp_type__in'], :csv) if !opts[:'pulp_type__in'].nil?
104
+ query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
89
105
  query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
90
106
  query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
91
107
 
@@ -220,12 +220,15 @@ module PulpcoreClient
220
220
  # @option opts [String] :name Filter results where name matches value
221
221
  # @option opts [String] :name__contains Filter results where name contains value
222
222
  # @option opts [String] :name__icontains Filter results where name contains value
223
+ # @option opts [String] :name__iexact Filter results where name matches value
223
224
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
225
+ # @option opts [String] :name__istartswith Filter results where name starts with value
224
226
  # @option opts [String] :name__startswith Filter results where name starts with value
225
227
  # @option opts [Integer] :offset The initial index from which to return the results.
226
228
  # @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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
227
229
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
228
230
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
231
+ # @option opts [String] :q
229
232
  # @option opts [Array<String>] :fields A list of fields to include in the response.
230
233
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
231
234
  # @return [PaginatedContentRedirectContentGuardResponseList]
@@ -241,12 +244,15 @@ module PulpcoreClient
241
244
  # @option opts [String] :name Filter results where name matches value
242
245
  # @option opts [String] :name__contains Filter results where name contains value
243
246
  # @option opts [String] :name__icontains Filter results where name contains value
247
+ # @option opts [String] :name__iexact Filter results where name matches value
244
248
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
249
+ # @option opts [String] :name__istartswith Filter results where name starts with value
245
250
  # @option opts [String] :name__startswith Filter results where name starts with value
246
251
  # @option opts [Integer] :offset The initial index from which to return the results.
247
252
  # @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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
248
253
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
249
254
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
255
+ # @option opts [String] :q
250
256
  # @option opts [Array<String>] :fields A list of fields to include in the response.
251
257
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
252
258
  # @return [Array<(PaginatedContentRedirectContentGuardResponseList, Integer, Hash)>] PaginatedContentRedirectContentGuardResponseList data, response status code and response headers
@@ -267,12 +273,15 @@ module PulpcoreClient
267
273
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
268
274
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
269
275
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
276
+ query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
270
277
  query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
278
+ query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
271
279
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
272
280
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
273
281
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
274
282
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
275
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?
276
285
  query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
277
286
  query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
278
287
 
@@ -220,12 +220,15 @@ module PulpcoreClient
220
220
  # @option opts [String] :name Filter results where name matches value
221
221
  # @option opts [String] :name__contains Filter results where name contains value
222
222
  # @option opts [String] :name__icontains Filter results where name contains value
223
+ # @option opts [String] :name__iexact Filter results where name matches value
223
224
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
225
+ # @option opts [String] :name__istartswith Filter results where name starts with value
224
226
  # @option opts [String] :name__startswith Filter results where name starts with value
225
227
  # @option opts [Integer] :offset The initial index from which to return the results.
226
228
  # @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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
227
229
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
228
230
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
231
+ # @option opts [String] :q
229
232
  # @option opts [Array<String>] :fields A list of fields to include in the response.
230
233
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
231
234
  # @return [PaginatedRBACContentGuardResponseList]
@@ -241,12 +244,15 @@ module PulpcoreClient
241
244
  # @option opts [String] :name Filter results where name matches value
242
245
  # @option opts [String] :name__contains Filter results where name contains value
243
246
  # @option opts [String] :name__icontains Filter results where name contains value
247
+ # @option opts [String] :name__iexact Filter results where name matches value
244
248
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
249
+ # @option opts [String] :name__istartswith Filter results where name starts with value
245
250
  # @option opts [String] :name__startswith Filter results where name starts with value
246
251
  # @option opts [Integer] :offset The initial index from which to return the results.
247
252
  # @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;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
248
253
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
249
254
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
255
+ # @option opts [String] :q
250
256
  # @option opts [Array<String>] :fields A list of fields to include in the response.
251
257
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
252
258
  # @return [Array<(PaginatedRBACContentGuardResponseList, Integer, Hash)>] PaginatedRBACContentGuardResponseList data, response status code and response headers
@@ -267,12 +273,15 @@ module PulpcoreClient
267
273
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
268
274
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
269
275
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
276
+ query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
270
277
  query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
278
+ query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
271
279
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
272
280
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
273
281
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
274
282
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
275
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?
276
285
  query_params[:'fields'] = @api_client.build_collection_param(opts[:'fields'], :multi) if !opts[:'fields'].nil?
277
286
  query_params[:'exclude_fields'] = @api_client.build_collection_param(opts[:'exclude_fields'], :multi) if !opts[:'exclude_fields'].nil?
278
287
 
@@ -30,14 +30,18 @@ module PulpcoreClient
30
30
  # @option opts [String] :name Filter results where name matches value
31
31
  # @option opts [String] :name__contains Filter results where name contains value
32
32
  # @option opts [String] :name__icontains Filter results where name contains value
33
+ # @option opts [String] :name__iexact Filter results where name matches value
33
34
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
35
+ # @option opts [String] :name__istartswith Filter results where name starts with value
34
36
  # @option opts [String] :name__startswith Filter results where name starts with value
35
37
  # @option opts [Integer] :offset The initial index from which to return the results.
36
38
  # @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;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
37
39
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
38
40
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
39
41
  # @option opts [String] :pulp_label_select Filter labels by search string
40
- # @option opts [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
42
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
43
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
44
+ # @option opts [String] :q
41
45
  # @option opts [String] :repository Filter results where repository matches value
42
46
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
43
47
  # @option opts [String] :with_content Filter distributions based on the content served by them
@@ -60,14 +64,18 @@ module PulpcoreClient
60
64
  # @option opts [String] :name Filter results where name matches value
61
65
  # @option opts [String] :name__contains Filter results where name contains value
62
66
  # @option opts [String] :name__icontains Filter results where name contains value
67
+ # @option opts [String] :name__iexact Filter results where name matches value
63
68
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
69
+ # @option opts [String] :name__istartswith Filter results where name starts with value
64
70
  # @option opts [String] :name__startswith Filter results where name starts with value
65
71
  # @option opts [Integer] :offset The initial index from which to return the results.
66
72
  # @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;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
67
73
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
68
74
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
69
75
  # @option opts [String] :pulp_label_select Filter labels by search string
70
- # @option opts [Array<String>] :pulp_type__in Pulp type is in * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
76
+ # @option opts [String] :pulp_type Pulp type * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
77
+ # @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * &#x60;core.artifact&#x60; - core.artifact * &#x60;file.file&#x60; - file.file
78
+ # @option opts [String] :q
71
79
  # @option opts [String] :repository Filter results where repository matches value
72
80
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
73
81
  # @option opts [String] :with_content Filter distributions based on the content served by them
@@ -83,6 +91,10 @@ module PulpcoreClient
83
91
  fail ArgumentError, "invalid value for \"ordering\", must include one of #{allowable_values}"
84
92
  end
85
93
  allowable_values = ["core.artifact", "file.file"]
94
+ if @api_client.config.client_side_validation && opts[:'pulp_type'] && !allowable_values.include?(opts[:'pulp_type'])
95
+ fail ArgumentError, "invalid value for \"pulp_type\", must be one of #{allowable_values}"
96
+ end
97
+ allowable_values = ["core.artifact", "file.file"]
86
98
  if @api_client.config.client_side_validation && opts[:'pulp_type__in'] && !opts[:'pulp_type__in'].all? { |item| allowable_values.include?(item) }
87
99
  fail ArgumentError, "invalid value for \"pulp_type__in\", must include one of #{allowable_values}"
88
100
  end
@@ -99,14 +111,18 @@ module PulpcoreClient
99
111
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
100
112
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
101
113
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
114
+ query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
102
115
  query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
116
+ query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
103
117
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
104
118
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
105
119
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
106
120
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
107
121
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
108
122
  query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].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[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
111
127
  query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?
112
128
  query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
@@ -30,13 +30,16 @@ module PulpcoreClient
30
30
  # @option opts [String] :name Filter results where name matches value
31
31
  # @option opts [String] :name__contains Filter results where name contains value
32
32
  # @option opts [String] :name__icontains Filter results where name contains value
33
+ # @option opts [String] :name__iexact Filter results where name matches value
33
34
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
35
+ # @option opts [String] :name__istartswith Filter results where name starts with value
34
36
  # @option opts [String] :name__startswith Filter results where name starts with value
35
37
  # @option opts [Integer] :offset The initial index from which to return the results.
36
38
  # @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;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
37
39
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
38
40
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
39
41
  # @option opts [String] :pulp_label_select Filter labels by search string
42
+ # @option opts [String] :q
40
43
  # @option opts [String] :repository Filter results where repository matches value
41
44
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
42
45
  # @option opts [String] :with_content Filter distributions based on the content served by them
@@ -59,13 +62,16 @@ module PulpcoreClient
59
62
  # @option opts [String] :name Filter results where name matches value
60
63
  # @option opts [String] :name__contains Filter results where name contains value
61
64
  # @option opts [String] :name__icontains Filter results where name contains value
65
+ # @option opts [String] :name__iexact Filter results where name matches value
62
66
  # @option opts [Array<String>] :name__in Filter results where name is in a comma-separated list of values
67
+ # @option opts [String] :name__istartswith Filter results where name starts with value
63
68
  # @option opts [String] :name__startswith Filter results where name starts with value
64
69
  # @option opts [Integer] :offset The initial index from which to return the results.
65
70
  # @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;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
66
71
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
67
72
  # @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
68
73
  # @option opts [String] :pulp_label_select Filter labels by search string
74
+ # @option opts [String] :q
69
75
  # @option opts [String] :repository Filter results where repository matches value
70
76
  # @option opts [Array<String>] :repository__in Filter results where repository is in a comma-separated list of values
71
77
  # @option opts [String] :with_content Filter distributions based on the content served by them
@@ -93,13 +99,16 @@ module PulpcoreClient
93
99
  query_params[:'name'] = opts[:'name'] if !opts[:'name'].nil?
94
100
  query_params[:'name__contains'] = opts[:'name__contains'] if !opts[:'name__contains'].nil?
95
101
  query_params[:'name__icontains'] = opts[:'name__icontains'] if !opts[:'name__icontains'].nil?
102
+ query_params[:'name__iexact'] = opts[:'name__iexact'] if !opts[:'name__iexact'].nil?
96
103
  query_params[:'name__in'] = @api_client.build_collection_param(opts[:'name__in'], :csv) if !opts[:'name__in'].nil?
104
+ query_params[:'name__istartswith'] = opts[:'name__istartswith'] if !opts[:'name__istartswith'].nil?
97
105
  query_params[:'name__startswith'] = opts[:'name__startswith'] if !opts[:'name__startswith'].nil?
98
106
  query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil?
99
107
  query_params[:'ordering'] = @api_client.build_collection_param(opts[:'ordering'], :csv) if !opts[:'ordering'].nil?
100
108
  query_params[:'pulp_href__in'] = @api_client.build_collection_param(opts[:'pulp_href__in'], :csv) if !opts[:'pulp_href__in'].nil?
101
109
  query_params[:'pulp_id__in'] = @api_client.build_collection_param(opts[:'pulp_id__in'], :csv) if !opts[:'pulp_id__in'].nil?
102
110
  query_params[:'pulp_label_select'] = opts[:'pulp_label_select'] if !opts[:'pulp_label_select'].nil?
111
+ query_params[:'q'] = opts[:'q'] if !opts[:'q'].nil?
103
112
  query_params[:'repository'] = opts[:'repository'] if !opts[:'repository'].nil?
104
113
  query_params[:'repository__in'] = @api_client.build_collection_param(opts[:'repository__in'], :csv) if !opts[:'repository__in'].nil?
105
114
  query_params[:'with_content'] = opts[:'with_content'] if !opts[:'with_content'].nil?
@@ -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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;storage_class&#x60; - Storage class * &#x60;-storage_class&#x60; - Storage class (descending) * &#x60;storage_settings&#x60; - Storage settings * &#x60;-storage_settings&#x60; - Storage settings (descending) * &#x60;redirect_to_object_storage&#x60; - Redirect to object storage * &#x60;-redirect_to_object_storage&#x60; - Redirect to object storage (descending) * &#x60;hide_guarded_distributions&#x60; - Hide guarded distributions * &#x60;-hide_guarded_distributions&#x60; - Hide guarded distributions (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 [PaginatedDomainResponseList]
@@ -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;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;description&#x60; - Description * &#x60;-description&#x60; - Description (descending) * &#x60;storage_class&#x60; - Storage class * &#x60;-storage_class&#x60; - Storage class (descending) * &#x60;storage_settings&#x60; - Storage settings * &#x60;-storage_settings&#x60; - Storage settings (descending) * &#x60;redirect_to_object_storage&#x60; - Redirect to object storage * &#x60;-redirect_to_object_storage&#x60; - Redirect to object storage (descending) * &#x60;hide_guarded_distributions&#x60; - Hide guarded distributions * &#x60;-hide_guarded_distributions&#x60; - Hide guarded distributions (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<(PaginatedDomainResponseList, Integer, Hash)>] PaginatedDomainResponseList 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