pulpcore_client 3.32.0 → 3.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +9 -5
- data/docs/AccessPoliciesApi.md +7 -1
- data/docs/ApiAppStatusResponse.md +21 -0
- data/docs/ArtifactDistributionResponse.md +8 -8
- data/docs/ArtifactsApi.md +3 -1
- data/docs/ContentApi.md +7 -3
- data/docs/ContentAppStatusResponse.md +3 -1
- data/docs/ContentguardsApi.md +11 -3
- data/docs/ContentguardsContentRedirectApi.md +7 -1
- data/docs/ContentguardsRbacApi.md +7 -1
- data/docs/DistributionsApi.md +11 -3
- data/docs/DistributionsArtifactsApi.md +7 -1
- data/docs/DomainsApi.md +7 -1
- data/docs/ExportersFilesystemApi.md +7 -1
- data/docs/ExportersFilesystemExportsApi.md +1 -1
- data/docs/ExportersPulpApi.md +7 -1
- data/docs/ExportersPulpExportsApi.md +1 -1
- data/docs/GroupsApi.md +3 -1
- data/docs/GroupsRolesApi.md +3 -1
- data/docs/GroupsUsersApi.md +1 -1
- data/docs/ImportersPulpApi.md +7 -1
- data/docs/ImportersPulpImportCheckApi.md +1 -1
- data/docs/ImportersPulpImportsApi.md +1 -1
- data/docs/OrphansApi.md +1 -1
- data/docs/OrphansCleanupApi.md +1 -1
- data/docs/PublicationsApi.md +7 -3
- data/docs/RemotesApi.md +11 -3
- data/docs/RepairApi.md +1 -1
- data/docs/RepositoriesApi.md +11 -3
- data/docs/RepositoriesReclaimSpaceApi.md +1 -1
- data/docs/RepositoryVersionsApi.md +3 -1
- data/docs/RolesApi.md +7 -1
- data/docs/SigningServicesApi.md +3 -1
- data/docs/StatusApi.md +1 -1
- data/docs/StatusResponse.md +4 -2
- data/docs/TaskGroupsApi.md +1 -1
- data/docs/TaskSchedulesApi.md +3 -1
- data/docs/TasksApi.md +9 -1
- data/docs/UploadsApi.md +3 -1
- data/docs/UpstreamPulpsApi.md +1 -1
- data/docs/UsersApi.md +3 -1
- data/docs/UsersRolesApi.md +3 -1
- data/docs/WorkerResponse.md +2 -0
- data/docs/WorkersApi.md +7 -1
- data/lib/pulpcore_client/api/access_policies_api.rb +9 -0
- data/lib/pulpcore_client/api/artifacts_api.rb +3 -0
- data/lib/pulpcore_client/api/content_api.rb +12 -2
- data/lib/pulpcore_client/api/contentguards_api.rb +18 -2
- data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +9 -0
- data/lib/pulpcore_client/api/contentguards_rbac_api.rb +9 -0
- data/lib/pulpcore_client/api/distributions_api.rb +18 -2
- data/lib/pulpcore_client/api/distributions_artifacts_api.rb +9 -0
- data/lib/pulpcore_client/api/domains_api.rb +9 -0
- data/lib/pulpcore_client/api/exporters_filesystem_api.rb +9 -0
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +9 -0
- data/lib/pulpcore_client/api/groups_api.rb +3 -0
- data/lib/pulpcore_client/api/groups_roles_api.rb +3 -0
- data/lib/pulpcore_client/api/importers_pulp_api.rb +9 -0
- data/lib/pulpcore_client/api/publications_api.rb +12 -2
- data/lib/pulpcore_client/api/remotes_api.rb +18 -2
- data/lib/pulpcore_client/api/repositories_api.rb +18 -2
- data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
- data/lib/pulpcore_client/api/roles_api.rb +9 -0
- data/lib/pulpcore_client/api/signing_services_api.rb +3 -0
- data/lib/pulpcore_client/api/task_schedules_api.rb +3 -0
- data/lib/pulpcore_client/api/tasks_api.rb +12 -0
- data/lib/pulpcore_client/api/uploads_api.rb +3 -0
- data/lib/pulpcore_client/api/users_api.rb +3 -0
- data/lib/pulpcore_client/api/users_roles_api.rb +3 -0
- data/lib/pulpcore_client/api/workers_api.rb +9 -0
- data/lib/pulpcore_client/configuration.rb +2 -2
- data/lib/pulpcore_client/models/api_app_status_response.rb +230 -0
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +40 -40
- data/lib/pulpcore_client/models/content_app_status_response.rb +16 -4
- data/lib/pulpcore_client/models/status_response.rb +20 -3
- data/lib/pulpcore_client/models/worker_response.rb +13 -1
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +1 -0
- data/spec/api/access_policies_api_spec.rb +3 -0
- data/spec/api/artifacts_api_spec.rb +1 -0
- data/spec/api/content_api_spec.rb +3 -1
- data/spec/api/contentguards_api_spec.rb +5 -1
- data/spec/api/contentguards_content_redirect_api_spec.rb +3 -0
- data/spec/api/contentguards_rbac_api_spec.rb +3 -0
- data/spec/api/distributions_api_spec.rb +5 -1
- data/spec/api/distributions_artifacts_api_spec.rb +3 -0
- data/spec/api/domains_api_spec.rb +3 -0
- data/spec/api/exporters_filesystem_api_spec.rb +3 -0
- data/spec/api/exporters_pulp_api_spec.rb +3 -0
- data/spec/api/groups_api_spec.rb +1 -0
- data/spec/api/groups_roles_api_spec.rb +1 -0
- data/spec/api/importers_pulp_api_spec.rb +3 -0
- data/spec/api/publications_api_spec.rb +3 -1
- data/spec/api/remotes_api_spec.rb +5 -1
- data/spec/api/repositories_api_spec.rb +5 -1
- data/spec/api/repository_versions_api_spec.rb +1 -0
- data/spec/api/roles_api_spec.rb +3 -0
- data/spec/api/signing_services_api_spec.rb +1 -0
- data/spec/api/task_schedules_api_spec.rb +1 -0
- data/spec/api/tasks_api_spec.rb +4 -0
- data/spec/api/uploads_api_spec.rb +1 -0
- data/spec/api/users_api_spec.rb +1 -0
- data/spec/api/users_roles_api_spec.rb +1 -0
- data/spec/api/workers_api_spec.rb +3 -0
- data/spec/configuration_spec.rb +3 -3
- data/spec/models/api_app_status_response_spec.rb +53 -0
- data/spec/models/artifact_distribution_response_spec.rb +7 -7
- data/spec/models/content_app_status_response_spec.rb +6 -0
- data/spec/models/status_response_spec.rb +6 -0
- data/spec/models/worker_response_spec.rb +6 -0
- metadata +6 -2
data/docs/ExportersPulpApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::ExportersPulpApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<String>**](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<String>**](String.md)| 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) | [optional]
|
|
180
185
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
181
186
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
187
|
+
**q** | **String**| | [optional]
|
|
182
188
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
183
189
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
184
190
|
|
data/docs/GroupsApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::GroupsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<String>**](String.md)| Ordering * `id` - Id * `-id` - Id (descending) * `name` - Name * `-name` - Name (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
242
243
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
243
244
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
245
|
+
**q** | **String**| | [optional]
|
|
244
246
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
245
247
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
246
248
|
|
data/docs/GroupsRolesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::GroupsRolesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<String>**](String.md)| 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) | [optional]
|
|
180
181
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
181
182
|
**pulp_id__in** | [**Array<String>**](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]
|
data/docs/GroupsUsersApi.md
CHANGED
data/docs/ImportersPulpApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::ImportersPulpApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<String>**](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<String>**](String.md)| 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) | [optional]
|
|
179
184
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
180
185
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
186
|
+
**q** | **String**| | [optional]
|
|
181
187
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
182
188
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
183
189
|
|
data/docs/OrphansApi.md
CHANGED
data/docs/OrphansCleanupApi.md
CHANGED
data/docs/PublicationsApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::PublicationsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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
|
-
|
|
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<DateTime>**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
|
|
78
80
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
79
81
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
80
|
-
**
|
|
82
|
+
**pulp_type** | **String**| Pulp type * `file.file` - file.file | [optional]
|
|
83
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. * `file.file` - 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<String>**](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 *
|
|
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
|
-
|
|
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<String>**](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<String>**](String.md)| 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) | [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<DateTime>**](DateTime.md)| Filter results where pulp_last_updated is between two comma separated values | [optional]
|
|
86
|
-
**
|
|
92
|
+
**pulp_type** | **String**| Pulp type * `file.file` - file.file | [optional]
|
|
93
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. * `file.file` - file.file | [optional]
|
|
94
|
+
**q** | **String**| | [optional]
|
|
87
95
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
88
96
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
89
97
|
|
data/docs/RepairApi.md
CHANGED
data/docs/RepositoriesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::RepositoriesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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
|
-
|
|
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<String>**](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<String>**](String.md)| 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) | [optional]
|
|
83
89
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
84
90
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
85
91
|
**pulp_label_select** | **String**| Filter labels by search string | [optional]
|
|
86
|
-
**
|
|
92
|
+
**pulp_type** | **String**| Pulp type * `file.file` - file.file | [optional]
|
|
93
|
+
**pulp_type__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. * `file.file` - 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::RepositoryVersionsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<DateTime>**](DateTime.md)| Filter results where pulp_created is between two comma separated values | [optional]
|
|
86
87
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
88
|
+
**q** | **String**| | [optional]
|
|
87
89
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
88
90
|
**exclude_fields** | [**Array<String>**](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 *
|
|
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<String>**](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<String>**](String.md)| 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) | [optional]
|
|
193
198
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
194
199
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
200
|
+
**q** | **String**| | [optional]
|
|
195
201
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
196
202
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
197
203
|
|
data/docs/SigningServicesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::SigningServicesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<String>**](String.md)| 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) | [optional]
|
|
62
63
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
63
64
|
**pulp_id__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
65
|
+
**q** | **String**| | [optional]
|
|
64
66
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
65
67
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
66
68
|
|
data/docs/StatusApi.md
CHANGED
data/docs/StatusResponse.md
CHANGED
|
@@ -5,8 +5,9 @@
|
|
|
5
5
|
Name | Type | Description | Notes
|
|
6
6
|
------------ | ------------- | ------------- | -------------
|
|
7
7
|
**versions** | [**Array<VersionResponse>**](VersionResponse.md) | Version information of Pulp components |
|
|
8
|
-
**online_workers** | [**Array<WorkerResponse>**](WorkerResponse.md) | List of online workers known to the application. An online worker is actively heartbeating and can respond to new work |
|
|
9
|
-
**
|
|
8
|
+
**online_workers** | [**Array<WorkerResponse>**](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<ApiAppStatusResponse>**](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<ContentAppStatusResponse>**](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,
|
data/docs/TaskGroupsApi.md
CHANGED
data/docs/TaskSchedulesApi.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::TaskSchedulesApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *
|
|
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<String>**](String.md)| 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) | [optional]
|
|
125
126
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
126
127
|
**pulp_id__in** | [**Array<String>**](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<String>**](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 *
|
|
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<String>**](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<String>**](String.md)| 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) | [optional]
|
|
221
226
|
**parent_task** | [**String**](.md)| Filter results where parent_task matches value | [optional]
|
|
222
227
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
223
228
|
**pulp_id__in** | [**Array<String>**](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<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
226
232
|
**reserved_resources_record** | [**Array<String>**](String.md)| | [optional]
|
|
@@ -234,9 +240,11 @@ Name | Type | Description | Notes
|
|
|
234
240
|
**started_at__range** | [**Array<DateTime>**](DateTime.md)| Filter results where started_at is between two comma separated values | [optional]
|
|
235
241
|
**state** | **String**| Filter results where state matches value * `waiting` - Waiting * `skipped` - Skipped * `running` - Running * `completed` - Completed * `failed` - Failed * `canceled` - Canceled * `canceling` - Canceling | [optional]
|
|
236
242
|
**state__in** | [**Array<String>**](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<String>**](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<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
241
249
|
**exclude_fields** | [**Array<String>**](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 *
|
|
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<String>**](String.md)| 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) | [optional]
|
|
287
288
|
**pulp_href__in** | [**Array<String>**](String.md)| Multiple values may be separated by commas. | [optional]
|
|
288
289
|
**pulp_id__in** | [**Array<String>**](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]
|