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
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ExportersPulpApi
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
  ------------- | ------------- | -------------
@@ -145,12 +145,15 @@ opts = {
145
145
  name: 'name_example', # String | Filter results where name matches value
146
146
  name__contains: 'name__contains_example', # String | Filter results where name contains value
147
147
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
148
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
148
149
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
150
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
149
151
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
150
152
  offset: 56, # Integer | The initial index from which to return the results.
151
153
  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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `path` - Path * `-path` - Path (descending) * `pk` - Pk * `-pk` - Pk (descending)
152
154
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
153
155
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
156
+ q: 'q_example', # String |
154
157
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
155
158
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
156
159
  }
@@ -173,12 +176,15 @@ Name | Type | Description | Notes
173
176
  **name** | **String**| Filter results where name matches value | [optional]
174
177
  **name__contains** | **String**| Filter results where name contains value | [optional]
175
178
  **name__icontains** | **String**| Filter results where name contains value | [optional]
179
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
176
180
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
181
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
177
182
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
178
183
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
179
184
  **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;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) | [optional]
180
185
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
181
186
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
187
+ **q** | **String**| | [optional]
182
188
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
183
189
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
184
190
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ExportersPulpExportsApi
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
  ------------- | ------------- | -------------
data/docs/GroupsApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::GroupsApi
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
  ------------- | ------------- | -------------
@@ -211,6 +211,7 @@ opts = {
211
211
  ordering: ['ordering_example'], # Array<String> | Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
212
212
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
213
213
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
214
+ q: 'q_example', # String |
214
215
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
215
216
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
216
217
  }
@@ -241,6 +242,7 @@ Name | Type | Description | Notes
241
242
  **ordering** | [**Array&lt;String&gt;**](String.md)| 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) | [optional]
242
243
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
243
244
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
245
+ **q** | **String**| | [optional]
244
246
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
245
247
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
246
248
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::GroupsRolesApi
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]
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::GroupsUsersApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ImportersPulpApi
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
  ------------- | ------------- | -------------
@@ -144,12 +144,15 @@ opts = {
144
144
  name: 'name_example', # String | Filter results where name matches value
145
145
  name__contains: 'name__contains_example', # String | Filter results where name contains value
146
146
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
147
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
147
148
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
149
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
148
150
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
149
151
  offset: 56, # Integer | The initial index from which to return the results.
150
152
  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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending)
151
153
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
152
154
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
155
+ q: 'q_example', # String |
153
156
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
154
157
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
155
158
  }
@@ -172,12 +175,15 @@ Name | Type | Description | Notes
172
175
  **name** | **String**| Filter results where name matches value | [optional]
173
176
  **name__contains** | **String**| Filter results where name contains value | [optional]
174
177
  **name__icontains** | **String**| Filter results where name contains value | [optional]
178
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
175
179
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
180
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
176
181
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
177
182
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
178
183
  **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;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) | [optional]
179
184
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
180
185
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
186
+ **q** | **String**| | [optional]
181
187
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
182
188
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
183
189
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ImportersPulpImportCheckApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ImportersPulpImportsApi
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
  ------------- | ------------- | -------------
data/docs/OrphansApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::OrphansApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::OrphansCleanupApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::PublicationsApi
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
  ------------- | ------------- | -------------
@@ -43,7 +43,9 @@ opts = {
43
43
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
44
44
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
45
45
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
46
- pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `file.file` - file.file
46
+ pulp_type: 'pulp_type_example', # String | Pulp type * `file.file` - file.file
47
+ pulp_type__in: ['pulp_type__in_example'], # Array<String> | Multiple values may be separated by commas. * `file.file` - file.file
48
+ q: 'q_example', # String |
47
49
  repository: 'repository_example', # String | Repository referenced by HREF
48
50
  repository_version: 'repository_version_example', # String | Repository Version referenced by HREF
49
51
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
@@ -77,7 +79,9 @@ Name | Type | Description | Notes
77
79
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
78
80
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
79
81
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
80
- **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Pulp type is in * &#x60;file.file&#x60; - file.file | [optional]
82
+ **pulp_type** | **String**| Pulp type * &#x60;file.file&#x60; - file.file | [optional]
83
+ **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. * &#x60;file.file&#x60; - file.file | [optional]
84
+ **q** | **String**| | [optional]
81
85
  **repository** | **String**| Repository referenced by HREF | [optional]
82
86
  **repository_version** | [**String**](.md)| Repository Version referenced by HREF | [optional]
83
87
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
data/docs/RemotesApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::RemotesApi
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
  ------------- | ------------- | -------------
@@ -34,7 +34,9 @@ opts = {
34
34
  name: 'name_example', # String | Filter results where name matches value
35
35
  name__contains: 'name__contains_example', # String | Filter results where name contains value
36
36
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
37
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
37
38
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
39
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
38
40
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
39
41
  offset: 56, # Integer | The initial index from which to return the results.
40
42
  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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `url` - Url * `-url` - Url (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `proxy_url` - Proxy url * `-proxy_url` - Proxy url (descending) * `proxy_username` - Proxy username * `-proxy_username` - Proxy username (descending) * `proxy_password` - Proxy password * `-proxy_password` - Proxy password (descending) * `download_concurrency` - Download concurrency * `-download_concurrency` - Download concurrency (descending) * `max_retries` - Max retries * `-max_retries` - Max retries (descending) * `policy` - Policy * `-policy` - Policy (descending) * `total_timeout` - Total timeout * `-total_timeout` - Total timeout (descending) * `connect_timeout` - Connect timeout * `-connect_timeout` - Connect timeout (descending) * `sock_connect_timeout` - Sock connect timeout * `-sock_connect_timeout` - Sock connect timeout (descending) * `sock_read_timeout` - Sock read timeout * `-sock_read_timeout` - Sock read timeout (descending) * `headers` - Headers * `-headers` - Headers (descending) * `rate_limit` - Rate limit * `-rate_limit` - Rate limit (descending) * `pk` - Pk * `-pk` - Pk (descending)
@@ -47,7 +49,9 @@ opts = {
47
49
  pulp_last_updated__lt: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than value
48
50
  pulp_last_updated__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_last_updated is less than or equal to value
49
51
  pulp_last_updated__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_last_updated is between two comma separated values
50
- pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `file.file` - file.file
52
+ pulp_type: 'pulp_type_example', # String | Pulp type * `file.file` - file.file
53
+ pulp_type__in: ['pulp_type__in_example'], # Array<String> | Multiple values may be separated by commas. * `file.file` - file.file
54
+ q: 'q_example', # String |
51
55
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
52
56
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
53
57
  }
@@ -70,7 +74,9 @@ Name | Type | Description | Notes
70
74
  **name** | **String**| Filter results where name matches value | [optional]
71
75
  **name__contains** | **String**| Filter results where name contains value | [optional]
72
76
  **name__icontains** | **String**| Filter results where name contains value | [optional]
77
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
73
78
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
79
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
74
80
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
75
81
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
76
82
  **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;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) | [optional]
@@ -83,7 +89,9 @@ Name | Type | Description | Notes
83
89
  **pulp_last_updated__lt** | **DateTime**| Filter results where pulp_last_updated is less than value | [optional]
84
90
  **pulp_last_updated__lte** | **DateTime**| Filter results where pulp_last_updated is less than or equal to value | [optional]
85
91
  **pulp_last_updated__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
86
- **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Pulp type is in * &#x60;file.file&#x60; - file.file | [optional]
92
+ **pulp_type** | **String**| Pulp type * &#x60;file.file&#x60; - file.file | [optional]
93
+ **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. * &#x60;file.file&#x60; - file.file | [optional]
94
+ **q** | **String**| | [optional]
87
95
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
88
96
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
89
97
 
data/docs/RepairApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::RepairApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::RepositoriesApi
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
  ------------- | ------------- | -------------
@@ -35,14 +35,18 @@ opts = {
35
35
  name: 'name_example', # String | Filter results where name matches value
36
36
  name__contains: 'name__contains_example', # String | Filter results where name contains value
37
37
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
38
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
38
39
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
40
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
39
41
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
40
42
  offset: 56, # Integer | The initial index from which to return the results.
41
43
  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) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `name` - Name * `-name` - Name (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `description` - Description * `-description` - Description (descending) * `next_version` - Next version * `-next_version` - Next version (descending) * `retain_repo_versions` - Retain repo versions * `-retain_repo_versions` - Retain repo versions (descending) * `user_hidden` - User hidden * `-user_hidden` - User hidden (descending) * `pk` - Pk * `-pk` - Pk (descending)
42
44
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
43
45
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
44
46
  pulp_label_select: 'pulp_label_select_example', # String | Filter labels by search string
45
- pulp_type__in: ['pulp_type__in_example'], # Array<String> | Pulp type is in * `file.file` - file.file
47
+ pulp_type: 'pulp_type_example', # String | Pulp type * `file.file` - file.file
48
+ pulp_type__in: ['pulp_type__in_example'], # Array<String> | Multiple values may be separated by commas. * `file.file` - file.file
49
+ q: 'q_example', # String |
46
50
  remote: 'remote_example', # String | Foreign Key referenced by HREF
47
51
  retain_repo_versions: 56, # Integer | Filter results where retain_repo_versions matches value
48
52
  retain_repo_versions__gt: 56, # Integer | Filter results where retain_repo_versions is greater than value
@@ -76,14 +80,18 @@ Name | Type | Description | Notes
76
80
  **name** | **String**| Filter results where name matches value | [optional]
77
81
  **name__contains** | **String**| Filter results where name contains value | [optional]
78
82
  **name__icontains** | **String**| Filter results where name contains value | [optional]
83
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
79
84
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
85
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
80
86
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
81
87
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
82
88
  **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;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) | [optional]
83
89
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
84
90
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
85
91
  **pulp_label_select** | **String**| Filter labels by search string | [optional]
86
- **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Pulp type is in * &#x60;file.file&#x60; - file.file | [optional]
92
+ **pulp_type** | **String**| Pulp type * &#x60;file.file&#x60; - file.file | [optional]
93
+ **pulp_type__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. * &#x60;file.file&#x60; - file.file | [optional]
94
+ **q** | **String**| | [optional]
87
95
  **remote** | [**String**](.md)| Foreign Key referenced by HREF | [optional]
88
96
  **retain_repo_versions** | **Integer**| Filter results where retain_repo_versions matches value | [optional]
89
97
  **retain_repo_versions__gt** | **Integer**| Filter results where retain_repo_versions is greater than value | [optional]
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::RepositoriesReclaimSpaceApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::RepositoryVersionsApi
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
  ------------- | ------------- | -------------
@@ -48,6 +48,7 @@ opts = {
48
48
  pulp_created__lte: DateTime.parse('2013-10-20T19:20:30+01:00'), # DateTime | Filter results where pulp_created is less than or equal to value
49
49
  pulp_created__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where pulp_created is between two comma separated values
50
50
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
51
+ q: 'q_example', # String |
51
52
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
52
53
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
53
54
  }
@@ -84,6 +85,7 @@ Name | Type | Description | Notes
84
85
  **pulp_created__lte** | **DateTime**| Filter results where pulp_created is less than or equal to value | [optional]
85
86
  **pulp_created__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
86
87
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
88
+ **q** | **String**| | [optional]
87
89
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
88
90
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
89
91
 
data/docs/RolesApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::RolesApi
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
  ------------- | ------------- | -------------
@@ -151,12 +151,15 @@ opts = {
151
151
  name: 'name_example', # String | Filter results where name matches value
152
152
  name__contains: 'name__contains_example', # String | Filter results where name contains value
153
153
  name__icontains: 'name__icontains_example', # String | Filter results where name contains value
154
+ name__iexact: 'name__iexact_example', # String | Filter results where name matches value
154
155
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
156
+ name__istartswith: 'name__istartswith_example', # String | Filter results where name starts with value
155
157
  name__startswith: 'name__startswith_example', # String | Filter results where name starts with value
156
158
  offset: 56, # Integer | The initial index from which to return the results.
157
159
  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) * `description` - Description * `-description` - Description (descending) * `locked` - Locked * `-locked` - Locked (descending) * `pk` - Pk * `-pk` - Pk (descending)
158
160
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
159
161
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
162
+ q: 'q_example', # String |
160
163
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
161
164
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
162
165
  }
@@ -186,12 +189,15 @@ Name | Type | Description | Notes
186
189
  **name** | **String**| Filter results where name matches value | [optional]
187
190
  **name__contains** | **String**| Filter results where name contains value | [optional]
188
191
  **name__icontains** | **String**| Filter results where name contains value | [optional]
192
+ **name__iexact** | **String**| Filter results where name matches value | [optional]
189
193
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
194
+ **name__istartswith** | **String**| Filter results where name starts with value | [optional]
190
195
  **name__startswith** | **String**| Filter results where name starts with value | [optional]
191
196
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
192
197
  **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;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) | [optional]
193
198
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
194
199
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
200
+ **q** | **String**| | [optional]
195
201
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
196
202
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
197
203
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::SigningServicesApi
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
  ------------- | ------------- | -------------
@@ -37,6 +37,7 @@ opts = {
37
37
  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) * `public_key` - Public key * `-public_key` - Public key (descending) * `pubkey_fingerprint` - Pubkey fingerprint * `-pubkey_fingerprint` - Pubkey fingerprint (descending) * `script` - Script * `-script` - Script (descending) * `pk` - Pk * `-pk` - Pk (descending)
38
38
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
39
39
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
40
+ q: 'q_example', # String |
40
41
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
41
42
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
42
43
  }
@@ -61,6 +62,7 @@ Name | Type | Description | Notes
61
62
  **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;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) | [optional]
62
63
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
63
64
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
65
+ **q** | **String**| | [optional]
64
66
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
65
67
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
66
68
 
data/docs/StatusApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::StatusApi
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
  ------------- | ------------- | -------------
@@ -5,8 +5,9 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **versions** | [**Array&lt;VersionResponse&gt;**](VersionResponse.md) | Version information of Pulp components |
8
- **online_workers** | [**Array&lt;WorkerResponse&gt;**](WorkerResponse.md) | List of online workers known to the application. An online worker is actively heartbeating and can respond to new work |
9
- **online_content_apps** | [**Array&lt;ContentAppStatusResponse&gt;**](ContentAppStatusResponse.md) | List of online content apps known to the application. An online content app is actively heartbeating and can serve data to clients |
8
+ **online_workers** | [**Array&lt;WorkerResponse&gt;**](WorkerResponse.md) | List of online workers known to the application. An online worker is actively heartbeating and can respond to new work. |
9
+ **online_api_apps** | [**Array&lt;ApiAppStatusResponse&gt;**](ApiAppStatusResponse.md) | List of online api apps known to the application. An online api app is actively heartbeating and can serve the rest api to clients. |
10
+ **online_content_apps** | [**Array&lt;ContentAppStatusResponse&gt;**](ContentAppStatusResponse.md) | List of online content apps known to the application. An online content app is actively heartbeating and can serve data to clients. |
10
11
  **database_connection** | [**DatabaseConnectionResponse**](DatabaseConnectionResponse.md) | Database connection information |
11
12
  **redis_connection** | [**RedisConnectionResponse**](RedisConnectionResponse.md) | Redis connection information | [optional]
12
13
  **storage** | [**StorageResponse**](StorageResponse.md) | Storage information | [optional]
@@ -20,6 +21,7 @@ require 'PulpcoreClient'
20
21
 
21
22
  instance = PulpcoreClient::StatusResponse.new(versions: null,
22
23
  online_workers: null,
24
+ online_api_apps: null,
23
25
  online_content_apps: null,
24
26
  database_connection: null,
25
27
  redis_connection: null,
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::TaskGroupsApi
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
  ------------- | ------------- | -------------
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::TaskSchedulesApi
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
  ------------- | ------------- | -------------
@@ -97,6 +97,7 @@ opts = {
97
97
  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) * `next_dispatch` - Next dispatch * `-next_dispatch` - Next dispatch (descending) * `dispatch_interval` - Dispatch interval * `-dispatch_interval` - Dispatch interval (descending) * `task_name` - Task name * `-task_name` - Task name (descending) * `pk` - Pk * `-pk` - Pk (descending)
98
98
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
99
99
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
100
+ q: 'q_example', # String |
100
101
  task_name: 'task_name_example', # String | Filter results where task_name matches value
101
102
  task_name__contains: 'task_name__contains_example', # String | Filter results where task_name contains value
102
103
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
@@ -124,6 +125,7 @@ Name | Type | Description | Notes
124
125
  **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;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) | [optional]
125
126
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
126
127
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
128
+ **q** | **String**| | [optional]
127
129
  **task_name** | **String**| Filter results where task_name matches value | [optional]
128
130
  **task_name__contains** | **String**| Filter results where task_name contains value | [optional]
129
131
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
data/docs/TasksApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::TasksApi
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
  ------------- | ------------- | -------------
@@ -161,11 +161,13 @@ opts = {
161
161
  name: 'name_example', # String | Filter results where name matches value
162
162
  name__contains: 'name__contains_example', # String | Filter results where name contains value
163
163
  name__in: ['name__in_example'], # Array<String> | Filter results where name is in a comma-separated list of values
164
+ name__ne: 'name__ne_example', # String | Filter results where name not equal to value
164
165
  offset: 56, # Integer | The initial index from which to return the results.
165
166
  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) * `state` - State * `-state` - State (descending) * `name` - Name * `-name` - Name (descending) * `logging_cid` - Logging cid * `-logging_cid` - Logging cid (descending) * `started_at` - Started at * `-started_at` - Started at (descending) * `finished_at` - Finished at * `-finished_at` - Finished at (descending) * `error` - Error * `-error` - Error (descending) * `args` - Args * `-args` - Args (descending) * `kwargs` - Kwargs * `-kwargs` - Kwargs (descending) * `reserved_resources_record` - Reserved resources record * `-reserved_resources_record` - Reserved resources record (descending) * `versions` - Versions * `-versions` - Versions (descending) * `pk` - Pk * `-pk` - Pk (descending)
166
167
  parent_task: 'parent_task_example', # String | Filter results where parent_task matches value
167
168
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
168
169
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
170
+ q: 'q_example', # String |
169
171
  reserved_resources: 'reserved_resources_example', # String |
170
172
  reserved_resources__in: ['reserved_resources__in_example'], # Array<String> | Multiple values may be separated by commas.
171
173
  reserved_resources_record: ['reserved_resources_record_example'], # Array<String> |
@@ -179,9 +181,11 @@ opts = {
179
181
  started_at__range: [DateTime.parse('2013-10-20T19:20:30+01:00')], # Array<DateTime> | Filter results where started_at is between two comma separated values
180
182
  state: 'state_example', # String | Filter results where state matches value * `waiting` - Waiting * `skipped` - Skipped * `running` - Running * `completed` - Completed * `failed` - Failed * `canceled` - Canceled * `canceling` - Canceling
181
183
  state__in: ['state__in_example'], # Array<String> | Filter results where state is in a comma-separated list of values
184
+ state__ne: 'state__ne_example', # String | Filter results where state not equal to value
182
185
  task_group: 'task_group_example', # String | Filter results where task_group matches value
183
186
  worker: 'worker_example', # String | Filter results where worker matches value
184
187
  worker__in: ['worker__in_example'], # Array<String> | Filter results where worker is in a comma-separated list of values
188
+ worker__isnull: true, # Boolean | Filter results where worker has a null value
185
189
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
186
190
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
187
191
  }
@@ -216,11 +220,13 @@ Name | Type | Description | Notes
216
220
  **name** | **String**| Filter results where name matches value | [optional]
217
221
  **name__contains** | **String**| Filter results where name contains value | [optional]
218
222
  **name__in** | [**Array&lt;String&gt;**](String.md)| Filter results where name is in a comma-separated list of values | [optional]
223
+ **name__ne** | **String**| Filter results where name not equal to value | [optional]
219
224
  **offset** | **Integer**| The initial index from which to return the results. | [optional]
220
225
  **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;state&#x60; - State * &#x60;-state&#x60; - State (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;logging_cid&#x60; - Logging cid * &#x60;-logging_cid&#x60; - Logging cid (descending) * &#x60;started_at&#x60; - Started at * &#x60;-started_at&#x60; - Started at (descending) * &#x60;finished_at&#x60; - Finished at * &#x60;-finished_at&#x60; - Finished at (descending) * &#x60;error&#x60; - Error * &#x60;-error&#x60; - Error (descending) * &#x60;args&#x60; - Args * &#x60;-args&#x60; - Args (descending) * &#x60;kwargs&#x60; - Kwargs * &#x60;-kwargs&#x60; - Kwargs (descending) * &#x60;reserved_resources_record&#x60; - Reserved resources record * &#x60;-reserved_resources_record&#x60; - Reserved resources record (descending) * &#x60;versions&#x60; - Versions * &#x60;-versions&#x60; - Versions (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
221
226
  **parent_task** | [**String**](.md)| Filter results where parent_task matches value | [optional]
222
227
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
223
228
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
229
+ **q** | **String**| | [optional]
224
230
  **reserved_resources** | **String**| | [optional]
225
231
  **reserved_resources__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
226
232
  **reserved_resources_record** | [**Array&lt;String&gt;**](String.md)| | [optional]
@@ -234,9 +240,11 @@ Name | Type | Description | Notes
234
240
  **started_at__range** | [**Array&lt;DateTime&gt;**](DateTime.md)| Filter results where started_at is between two comma separated values | [optional]
235
241
  **state** | **String**| Filter results where state matches value * &#x60;waiting&#x60; - Waiting * &#x60;skipped&#x60; - Skipped * &#x60;running&#x60; - Running * &#x60;completed&#x60; - Completed * &#x60;failed&#x60; - Failed * &#x60;canceled&#x60; - Canceled * &#x60;canceling&#x60; - Canceling | [optional]
236
242
  **state__in** | [**Array&lt;String&gt;**](String.md)| Filter results where state is in a comma-separated list of values | [optional]
243
+ **state__ne** | **String**| Filter results where state not equal to value | [optional]
237
244
  **task_group** | [**String**](.md)| Filter results where task_group matches value | [optional]
238
245
  **worker** | [**String**](.md)| Filter results where worker matches value | [optional]
239
246
  **worker__in** | [**Array&lt;String&gt;**](String.md)| Filter results where worker is in a comma-separated list of values | [optional]
247
+ **worker__isnull** | **Boolean**| Filter results where worker has a null value | [optional]
240
248
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
241
249
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
242
250
 
data/docs/UploadsApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::UploadsApi
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
  ------------- | ------------- | -------------
@@ -259,6 +259,7 @@ opts = {
259
259
  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) * `size` - Size * `-size` - Size (descending) * `pk` - Pk * `-pk` - Pk (descending)
260
260
  pulp_href__in: ['pulp_href__in_example'], # Array<String> | Multiple values may be separated by commas.
261
261
  pulp_id__in: ['pulp_id__in_example'], # Array<String> | Multiple values may be separated by commas.
262
+ q: 'q_example', # String |
262
263
  size: 56, # Integer | Filter results where size matches value
263
264
  size__gt: 56, # Integer | Filter results where size is greater than value
264
265
  size__lt: 56, # Integer | Filter results where size is less than value
@@ -286,6 +287,7 @@ Name | Type | Description | Notes
286
287
  **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;size&#x60; - Size * &#x60;-size&#x60; - Size (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending) | [optional]
287
288
  **pulp_href__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
288
289
  **pulp_id__in** | [**Array&lt;String&gt;**](String.md)| Multiple values may be separated by commas. | [optional]
290
+ **q** | **String**| | [optional]
289
291
  **size** | **Integer**| Filter results where size matches value | [optional]
290
292
  **size__gt** | **Integer**| Filter results where size is greater than value | [optional]
291
293
  **size__lt** | **Integer**| Filter results where size is less than value | [optional]
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::UpstreamPulpsApi
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
  ------------- | ------------- | -------------