pulpcore_client 3.4.0.dev01590527325 → 3.4.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 +15 -9
- data/docs/{Artifact.md → ArtifactRead.md} +2 -2
- data/docs/ArtifactsApi.md +4 -4
- data/docs/ExportersCoreExportsApi.md +2 -2
- data/docs/ExportersPulpApi.md +8 -8
- data/docs/{Import.md → ImportRead.md} +2 -2
- data/docs/ImportersCoreImportsApi.md +2 -2
- data/docs/ImportersPulpApi.md +8 -8
- data/docs/InlineResponse200.md +1 -1
- data/docs/InlineResponse2001.md +1 -1
- data/docs/InlineResponse2002.md +1 -1
- data/docs/InlineResponse2003.md +1 -1
- data/docs/InlineResponse2004.md +1 -1
- data/docs/InlineResponse2005.md +1 -1
- data/docs/InlineResponse2006.md +1 -1
- data/docs/InlineResponse2007.md +1 -1
- data/docs/InlineResponse2008.md +1 -1
- data/docs/InlineResponse2009.md +1 -1
- data/docs/PulpExport.md +8 -0
- data/docs/PulpExportRead.md +27 -0
- data/docs/PulpExporterRead.md +27 -0
- data/docs/PulpImporterRead.md +23 -0
- data/docs/{SigningService.md → SigningServiceRead.md} +2 -2
- data/docs/SigningServicesApi.md +2 -2
- data/docs/{TaskGroup.md → TaskGroupRead.md} +2 -2
- data/docs/TaskGroupsApi.md +2 -2
- data/docs/TaskRead.md +43 -0
- data/docs/TasksApi.md +2 -2
- data/docs/{UploadDetail.md → UploadDetailRead.md} +2 -2
- data/docs/UploadRead.md +23 -0
- data/docs/UploadsApi.md +4 -4
- data/docs/Worker.md +3 -3
- data/docs/WorkerRead.md +23 -0
- data/docs/WorkersApi.md +2 -2
- data/lib/pulpcore_client.rb +11 -5
- data/lib/pulpcore_client/api/artifacts_api.rb +6 -6
- data/lib/pulpcore_client/api/exporters_core_exports_api.rb +3 -3
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +12 -12
- data/lib/pulpcore_client/api/importers_core_imports_api.rb +3 -3
- data/lib/pulpcore_client/api/importers_pulp_api.rb +12 -12
- data/lib/pulpcore_client/api/signing_services_api.rb +3 -3
- data/lib/pulpcore_client/api/task_groups_api.rb +3 -3
- data/lib/pulpcore_client/api/tasks_api.rb +3 -3
- data/lib/pulpcore_client/api/uploads_api.rb +6 -6
- data/lib/pulpcore_client/api/workers_api.rb +3 -3
- data/lib/pulpcore_client/models/{artifact.rb → artifact_read.rb} +3 -3
- data/lib/pulpcore_client/models/{import.rb → import_read.rb} +3 -3
- data/lib/pulpcore_client/models/inline_response200.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2001.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2002.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2003.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2004.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2005.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2006.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2007.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2008.rb +1 -1
- data/lib/pulpcore_client/models/inline_response2009.rb +1 -1
- data/lib/pulpcore_client/models/pulp_export.rb +62 -1
- data/lib/pulpcore_client/models/pulp_export_read.rb +259 -0
- data/lib/pulpcore_client/models/pulp_exporter_read.rb +311 -0
- data/lib/pulpcore_client/models/pulp_importer_read.rb +262 -0
- data/lib/pulpcore_client/models/{signing_service.rb → signing_service_read.rb} +3 -3
- data/lib/pulpcore_client/models/{task_group.rb → task_group_read.rb} +3 -3
- data/lib/pulpcore_client/models/task_read.rb +383 -0
- data/lib/pulpcore_client/models/{upload_detail.rb → upload_detail_read.rb} +3 -3
- data/lib/pulpcore_client/models/upload_read.rb +241 -0
- data/lib/pulpcore_client/models/worker.rb +10 -10
- data/lib/pulpcore_client/models/worker_read.rb +251 -0
- data/lib/pulpcore_client/version.rb +1 -1
- data/spec/api/artifacts_api_spec.rb +2 -2
- data/spec/api/exporters_core_exports_api_spec.rb +1 -1
- data/spec/api/exporters_pulp_api_spec.rb +4 -4
- data/spec/api/importers_core_imports_api_spec.rb +1 -1
- data/spec/api/importers_pulp_api_spec.rb +4 -4
- data/spec/api/signing_services_api_spec.rb +1 -1
- data/spec/api/task_groups_api_spec.rb +1 -1
- data/spec/api/tasks_api_spec.rb +1 -1
- data/spec/api/uploads_api_spec.rb +2 -2
- data/spec/api/workers_api_spec.rb +1 -1
- data/spec/models/{artifact_spec.rb → artifact_read_spec.rb} +6 -6
- data/spec/models/{import_spec.rb → import_read_spec.rb} +6 -6
- data/spec/models/pulp_export_read_spec.rb +71 -0
- data/spec/models/pulp_export_spec.rb +24 -0
- data/spec/models/pulp_exporter_read_spec.rb +71 -0
- data/spec/models/pulp_importer_read_spec.rb +59 -0
- data/spec/models/{signing_service_spec.rb → signing_service_read_spec.rb} +6 -6
- data/spec/models/{task_group_spec.rb → task_group_read_spec.rb} +6 -6
- data/spec/models/task_read_spec.rb +119 -0
- data/spec/models/{upload_detail_spec.rb → upload_detail_read_spec.rb} +6 -6
- data/spec/models/upload_read_spec.rb +59 -0
- data/spec/models/worker_read_spec.rb +59 -0
- data/spec/models/worker_spec.rb +2 -2
- metadata +48 -24
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9623129c0bff487c98200d2f1e869fe52ba3607eeefa5fe3eb9492e6a9b52ea9
|
|
4
|
+
data.tar.gz: bda24d599713e703d530f944cf1d4fbcf0875b493165d34b232d1cc98c04d403
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eaf7179e04e823d9278803a3c5efa4e7bd22c7f8ed39908fb320d005d5916dbcce3888cda8ea96df26a0a7e6900cbcee21df67e7f6945ff9ead86860655d7f6b
|
|
7
|
+
data.tar.gz: 1e7e9621f31eec95a1a9cffc2829561aa55aea600ce36f57f789e277834dc8ab296fb8a83ddc8c8952744522e53fb00c8cbfab4c240bb1d4a10e88966ce7c093
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v3
|
|
10
|
-
- Package version: 3.4.0
|
|
10
|
+
- Package version: 3.4.0
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
|
|
13
13
|
## Installation
|
|
@@ -23,16 +23,16 @@ gem build pulpcore_client.gemspec
|
|
|
23
23
|
Then either install the gem locally:
|
|
24
24
|
|
|
25
25
|
```shell
|
|
26
|
-
gem install ./pulpcore_client-3.4.0.
|
|
26
|
+
gem install ./pulpcore_client-3.4.0.gem
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
(for development, run `gem install --dev ./pulpcore_client-3.4.0.
|
|
29
|
+
(for development, run `gem install --dev ./pulpcore_client-3.4.0.gem` to install the development dependencies)
|
|
30
30
|
|
|
31
31
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
32
32
|
|
|
33
33
|
Finally add this to the Gemfile:
|
|
34
34
|
|
|
35
|
-
gem 'pulpcore_client', '~> 3.4.0
|
|
35
|
+
gem 'pulpcore_client', '~> 3.4.0'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -137,11 +137,11 @@ Class | Method | HTTP request | Description
|
|
|
137
137
|
|
|
138
138
|
## Documentation for Models
|
|
139
139
|
|
|
140
|
-
- [PulpcoreClient::
|
|
140
|
+
- [PulpcoreClient::ArtifactRead](docs/ArtifactRead.md)
|
|
141
141
|
- [PulpcoreClient::AsyncOperationResponse](docs/AsyncOperationResponse.md)
|
|
142
142
|
- [PulpcoreClient::ContentAppStatus](docs/ContentAppStatus.md)
|
|
143
143
|
- [PulpcoreClient::DatabaseConnection](docs/DatabaseConnection.md)
|
|
144
|
-
- [PulpcoreClient::
|
|
144
|
+
- [PulpcoreClient::ImportRead](docs/ImportRead.md)
|
|
145
145
|
- [PulpcoreClient::InlineResponse200](docs/InlineResponse200.md)
|
|
146
146
|
- [PulpcoreClient::InlineResponse2001](docs/InlineResponse2001.md)
|
|
147
147
|
- [PulpcoreClient::InlineResponse2002](docs/InlineResponse2002.md)
|
|
@@ -154,22 +154,28 @@ Class | Method | HTTP request | Description
|
|
|
154
154
|
- [PulpcoreClient::InlineResponse2009](docs/InlineResponse2009.md)
|
|
155
155
|
- [PulpcoreClient::ProgressReport](docs/ProgressReport.md)
|
|
156
156
|
- [PulpcoreClient::PulpExport](docs/PulpExport.md)
|
|
157
|
+
- [PulpcoreClient::PulpExportRead](docs/PulpExportRead.md)
|
|
157
158
|
- [PulpcoreClient::PulpExporter](docs/PulpExporter.md)
|
|
159
|
+
- [PulpcoreClient::PulpExporterRead](docs/PulpExporterRead.md)
|
|
158
160
|
- [PulpcoreClient::PulpImport](docs/PulpImport.md)
|
|
159
161
|
- [PulpcoreClient::PulpImporter](docs/PulpImporter.md)
|
|
162
|
+
- [PulpcoreClient::PulpImporterRead](docs/PulpImporterRead.md)
|
|
160
163
|
- [PulpcoreClient::RedisConnection](docs/RedisConnection.md)
|
|
161
|
-
- [PulpcoreClient::
|
|
164
|
+
- [PulpcoreClient::SigningServiceRead](docs/SigningServiceRead.md)
|
|
162
165
|
- [PulpcoreClient::Status](docs/Status.md)
|
|
163
166
|
- [PulpcoreClient::Storage](docs/Storage.md)
|
|
164
167
|
- [PulpcoreClient::Task](docs/Task.md)
|
|
165
168
|
- [PulpcoreClient::TaskCancel](docs/TaskCancel.md)
|
|
166
|
-
- [PulpcoreClient::
|
|
169
|
+
- [PulpcoreClient::TaskGroupRead](docs/TaskGroupRead.md)
|
|
170
|
+
- [PulpcoreClient::TaskRead](docs/TaskRead.md)
|
|
167
171
|
- [PulpcoreClient::Upload](docs/Upload.md)
|
|
168
172
|
- [PulpcoreClient::UploadChunk](docs/UploadChunk.md)
|
|
169
173
|
- [PulpcoreClient::UploadCommit](docs/UploadCommit.md)
|
|
170
|
-
- [PulpcoreClient::
|
|
174
|
+
- [PulpcoreClient::UploadDetailRead](docs/UploadDetailRead.md)
|
|
175
|
+
- [PulpcoreClient::UploadRead](docs/UploadRead.md)
|
|
171
176
|
- [PulpcoreClient::Version](docs/Version.md)
|
|
172
177
|
- [PulpcoreClient::Worker](docs/Worker.md)
|
|
178
|
+
- [PulpcoreClient::WorkerRead](docs/WorkerRead.md)
|
|
173
179
|
|
|
174
180
|
|
|
175
181
|
## Documentation for Authorization
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# PulpcoreClient::
|
|
1
|
+
# PulpcoreClient::ArtifactRead
|
|
2
2
|
|
|
3
3
|
## Properties
|
|
4
4
|
|
|
@@ -20,7 +20,7 @@ Name | Type | Description | Notes
|
|
|
20
20
|
```ruby
|
|
21
21
|
require 'PulpcoreClient'
|
|
22
22
|
|
|
23
|
-
instance = PulpcoreClient::
|
|
23
|
+
instance = PulpcoreClient::ArtifactRead.new(pulp_href: null,
|
|
24
24
|
pulp_created: null,
|
|
25
25
|
file: null,
|
|
26
26
|
size: null,
|
data/docs/ArtifactsApi.md
CHANGED
|
@@ -13,7 +13,7 @@ Method | HTTP request | Description
|
|
|
13
13
|
|
|
14
14
|
## create
|
|
15
15
|
|
|
16
|
-
>
|
|
16
|
+
> ArtifactRead create(file, opts)
|
|
17
17
|
|
|
18
18
|
Create an artifact
|
|
19
19
|
|
|
@@ -66,7 +66,7 @@ Name | Type | Description | Notes
|
|
|
66
66
|
|
|
67
67
|
### Return type
|
|
68
68
|
|
|
69
|
-
[**
|
|
69
|
+
[**ArtifactRead**](ArtifactRead.md)
|
|
70
70
|
|
|
71
71
|
### Authorization
|
|
72
72
|
|
|
@@ -207,7 +207,7 @@ Name | Type | Description | Notes
|
|
|
207
207
|
|
|
208
208
|
## read
|
|
209
209
|
|
|
210
|
-
>
|
|
210
|
+
> ArtifactRead read(artifact_href, opts)
|
|
211
211
|
|
|
212
212
|
Inspect an artifact
|
|
213
213
|
|
|
@@ -250,7 +250,7 @@ Name | Type | Description | Notes
|
|
|
250
250
|
|
|
251
251
|
### Return type
|
|
252
252
|
|
|
253
|
-
[**
|
|
253
|
+
[**ArtifactRead**](ArtifactRead.md)
|
|
254
254
|
|
|
255
255
|
### Authorization
|
|
256
256
|
|
|
@@ -185,7 +185,7 @@ Name | Type | Description | Notes
|
|
|
185
185
|
|
|
186
186
|
## read
|
|
187
187
|
|
|
188
|
-
>
|
|
188
|
+
> PulpExportRead read(pulp_export_href, opts)
|
|
189
189
|
|
|
190
190
|
Inspect a pulp export
|
|
191
191
|
|
|
@@ -230,7 +230,7 @@ Name | Type | Description | Notes
|
|
|
230
230
|
|
|
231
231
|
### Return type
|
|
232
232
|
|
|
233
|
-
[**
|
|
233
|
+
[**PulpExportRead**](PulpExportRead.md)
|
|
234
234
|
|
|
235
235
|
### Authorization
|
|
236
236
|
|
data/docs/ExportersPulpApi.md
CHANGED
|
@@ -15,7 +15,7 @@ Method | HTTP request | Description
|
|
|
15
15
|
|
|
16
16
|
## create
|
|
17
17
|
|
|
18
|
-
>
|
|
18
|
+
> PulpExporterRead create(data)
|
|
19
19
|
|
|
20
20
|
Create a pulp exporter
|
|
21
21
|
|
|
@@ -54,7 +54,7 @@ Name | Type | Description | Notes
|
|
|
54
54
|
|
|
55
55
|
### Return type
|
|
56
56
|
|
|
57
|
-
[**
|
|
57
|
+
[**PulpExporterRead**](PulpExporterRead.md)
|
|
58
58
|
|
|
59
59
|
### Authorization
|
|
60
60
|
|
|
@@ -187,7 +187,7 @@ Name | Type | Description | Notes
|
|
|
187
187
|
|
|
188
188
|
## partial_update
|
|
189
189
|
|
|
190
|
-
>
|
|
190
|
+
> PulpExporterRead partial_update(pulp_exporter_href, data)
|
|
191
191
|
|
|
192
192
|
Partially update a pulp exporter
|
|
193
193
|
|
|
@@ -228,7 +228,7 @@ Name | Type | Description | Notes
|
|
|
228
228
|
|
|
229
229
|
### Return type
|
|
230
230
|
|
|
231
|
-
[**
|
|
231
|
+
[**PulpExporterRead**](PulpExporterRead.md)
|
|
232
232
|
|
|
233
233
|
### Authorization
|
|
234
234
|
|
|
@@ -242,7 +242,7 @@ Name | Type | Description | Notes
|
|
|
242
242
|
|
|
243
243
|
## read
|
|
244
244
|
|
|
245
|
-
>
|
|
245
|
+
> PulpExporterRead read(pulp_exporter_href, opts)
|
|
246
246
|
|
|
247
247
|
Inspect a pulp exporter
|
|
248
248
|
|
|
@@ -287,7 +287,7 @@ Name | Type | Description | Notes
|
|
|
287
287
|
|
|
288
288
|
### Return type
|
|
289
289
|
|
|
290
|
-
[**
|
|
290
|
+
[**PulpExporterRead**](PulpExporterRead.md)
|
|
291
291
|
|
|
292
292
|
### Authorization
|
|
293
293
|
|
|
@@ -301,7 +301,7 @@ Name | Type | Description | Notes
|
|
|
301
301
|
|
|
302
302
|
## update
|
|
303
303
|
|
|
304
|
-
>
|
|
304
|
+
> PulpExporterRead update(pulp_exporter_href, data)
|
|
305
305
|
|
|
306
306
|
Update a pulp exporter
|
|
307
307
|
|
|
@@ -342,7 +342,7 @@ Name | Type | Description | Notes
|
|
|
342
342
|
|
|
343
343
|
### Return type
|
|
344
344
|
|
|
345
|
-
[**
|
|
345
|
+
[**PulpExporterRead**](PulpExporterRead.md)
|
|
346
346
|
|
|
347
347
|
### Authorization
|
|
348
348
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# PulpcoreClient::
|
|
1
|
+
# PulpcoreClient::ImportRead
|
|
2
2
|
|
|
3
3
|
## Properties
|
|
4
4
|
|
|
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
|
|
|
14
14
|
```ruby
|
|
15
15
|
require 'PulpcoreClient'
|
|
16
16
|
|
|
17
|
-
instance = PulpcoreClient::
|
|
17
|
+
instance = PulpcoreClient::ImportRead.new(pulp_href: null,
|
|
18
18
|
pulp_created: null,
|
|
19
19
|
task: null,
|
|
20
20
|
params: null)
|
|
@@ -185,7 +185,7 @@ Name | Type | Description | Notes
|
|
|
185
185
|
|
|
186
186
|
## read
|
|
187
187
|
|
|
188
|
-
>
|
|
188
|
+
> ImportRead read(pulp_import_href, opts)
|
|
189
189
|
|
|
190
190
|
Inspect a pulp import
|
|
191
191
|
|
|
@@ -230,7 +230,7 @@ Name | Type | Description | Notes
|
|
|
230
230
|
|
|
231
231
|
### Return type
|
|
232
232
|
|
|
233
|
-
[**
|
|
233
|
+
[**ImportRead**](ImportRead.md)
|
|
234
234
|
|
|
235
235
|
### Authorization
|
|
236
236
|
|
data/docs/ImportersPulpApi.md
CHANGED
|
@@ -15,7 +15,7 @@ Method | HTTP request | Description
|
|
|
15
15
|
|
|
16
16
|
## create
|
|
17
17
|
|
|
18
|
-
>
|
|
18
|
+
> PulpImporterRead create(data)
|
|
19
19
|
|
|
20
20
|
Create a pulp importer
|
|
21
21
|
|
|
@@ -54,7 +54,7 @@ Name | Type | Description | Notes
|
|
|
54
54
|
|
|
55
55
|
### Return type
|
|
56
56
|
|
|
57
|
-
[**
|
|
57
|
+
[**PulpImporterRead**](PulpImporterRead.md)
|
|
58
58
|
|
|
59
59
|
### Authorization
|
|
60
60
|
|
|
@@ -187,7 +187,7 @@ Name | Type | Description | Notes
|
|
|
187
187
|
|
|
188
188
|
## partial_update
|
|
189
189
|
|
|
190
|
-
>
|
|
190
|
+
> PulpImporterRead partial_update(pulp_importer_href, data)
|
|
191
191
|
|
|
192
192
|
Partially update a pulp importer
|
|
193
193
|
|
|
@@ -228,7 +228,7 @@ Name | Type | Description | Notes
|
|
|
228
228
|
|
|
229
229
|
### Return type
|
|
230
230
|
|
|
231
|
-
[**
|
|
231
|
+
[**PulpImporterRead**](PulpImporterRead.md)
|
|
232
232
|
|
|
233
233
|
### Authorization
|
|
234
234
|
|
|
@@ -242,7 +242,7 @@ Name | Type | Description | Notes
|
|
|
242
242
|
|
|
243
243
|
## read
|
|
244
244
|
|
|
245
|
-
>
|
|
245
|
+
> PulpImporterRead read(pulp_importer_href, opts)
|
|
246
246
|
|
|
247
247
|
Inspect a pulp importer
|
|
248
248
|
|
|
@@ -287,7 +287,7 @@ Name | Type | Description | Notes
|
|
|
287
287
|
|
|
288
288
|
### Return type
|
|
289
289
|
|
|
290
|
-
[**
|
|
290
|
+
[**PulpImporterRead**](PulpImporterRead.md)
|
|
291
291
|
|
|
292
292
|
### Authorization
|
|
293
293
|
|
|
@@ -301,7 +301,7 @@ Name | Type | Description | Notes
|
|
|
301
301
|
|
|
302
302
|
## update
|
|
303
303
|
|
|
304
|
-
>
|
|
304
|
+
> PulpImporterRead update(pulp_importer_href, data)
|
|
305
305
|
|
|
306
306
|
Update a pulp importer
|
|
307
307
|
|
|
@@ -342,7 +342,7 @@ Name | Type | Description | Notes
|
|
|
342
342
|
|
|
343
343
|
### Return type
|
|
344
344
|
|
|
345
|
-
[**
|
|
345
|
+
[**PulpImporterRead**](PulpImporterRead.md)
|
|
346
346
|
|
|
347
347
|
### Authorization
|
|
348
348
|
|
data/docs/InlineResponse200.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<ArtifactRead>**](ArtifactRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2001.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<PulpExporterRead>**](PulpExporterRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2002.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<PulpExportRead>**](PulpExportRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2003.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<PulpImporterRead>**](PulpImporterRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2004.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<ImportRead>**](ImportRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2005.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<SigningServiceRead>**](SigningServiceRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2006.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<TaskGroupRead>**](TaskGroupRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2007.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<TaskRead>**](TaskRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2008.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<UploadRead>**](UploadRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/InlineResponse2009.md
CHANGED
|
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
|
|
|
7
7
|
**count** | **Integer** | |
|
|
8
8
|
**_next** | **String** | | [optional]
|
|
9
9
|
**previous** | **String** | | [optional]
|
|
10
|
-
**results** | [**Array<
|
|
10
|
+
**results** | [**Array<WorkerRead>**](WorkerRead.md) | |
|
|
11
11
|
|
|
12
12
|
## Code Sample
|
|
13
13
|
|
data/docs/PulpExport.md
CHANGED
|
@@ -9,6 +9,10 @@ Name | Type | Description | Notes
|
|
|
9
9
|
**task** | **String** | A URI of the task that ran the Export. | [optional]
|
|
10
10
|
**exported_resources** | **Array<Object>** | Resources that were exported. | [optional] [readonly]
|
|
11
11
|
**params** | [**Object**](.md) | Any additional parameters that were used to create the export. | [optional] [readonly]
|
|
12
|
+
**full** | **Boolean** | Do a Full (true) or Incremental (false) export. | [optional] [default to true]
|
|
13
|
+
**dry_run** | **Boolean** | Generate report on what would be exported and disk-space required. | [optional] [default to false]
|
|
14
|
+
**versions** | **Array<String>** | List of explicit repo-version hrefs to export | [optional]
|
|
15
|
+
**chunk_size** | **String** | Chunk export-tarfile into pieces of chunk_size bytes.Recognizes units of B/KB/MB/GB/TB. | [optional]
|
|
12
16
|
**output_file_info** | [**Object**](.md) | Dictionary of filename: sha256hash entries for export-output-file(s) | [optional] [readonly]
|
|
13
17
|
|
|
14
18
|
## Code Sample
|
|
@@ -21,6 +25,10 @@ instance = PulpcoreClient::PulpExport.new(pulp_href: null,
|
|
|
21
25
|
task: null,
|
|
22
26
|
exported_resources: null,
|
|
23
27
|
params: null,
|
|
28
|
+
full: null,
|
|
29
|
+
dry_run: null,
|
|
30
|
+
versions: null,
|
|
31
|
+
chunk_size: null,
|
|
24
32
|
output_file_info: null)
|
|
25
33
|
```
|
|
26
34
|
|