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.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +15 -9
  3. data/docs/{Artifact.md → ArtifactRead.md} +2 -2
  4. data/docs/ArtifactsApi.md +4 -4
  5. data/docs/ExportersCoreExportsApi.md +2 -2
  6. data/docs/ExportersPulpApi.md +8 -8
  7. data/docs/{Import.md → ImportRead.md} +2 -2
  8. data/docs/ImportersCoreImportsApi.md +2 -2
  9. data/docs/ImportersPulpApi.md +8 -8
  10. data/docs/InlineResponse200.md +1 -1
  11. data/docs/InlineResponse2001.md +1 -1
  12. data/docs/InlineResponse2002.md +1 -1
  13. data/docs/InlineResponse2003.md +1 -1
  14. data/docs/InlineResponse2004.md +1 -1
  15. data/docs/InlineResponse2005.md +1 -1
  16. data/docs/InlineResponse2006.md +1 -1
  17. data/docs/InlineResponse2007.md +1 -1
  18. data/docs/InlineResponse2008.md +1 -1
  19. data/docs/InlineResponse2009.md +1 -1
  20. data/docs/PulpExport.md +8 -0
  21. data/docs/PulpExportRead.md +27 -0
  22. data/docs/PulpExporterRead.md +27 -0
  23. data/docs/PulpImporterRead.md +23 -0
  24. data/docs/{SigningService.md → SigningServiceRead.md} +2 -2
  25. data/docs/SigningServicesApi.md +2 -2
  26. data/docs/{TaskGroup.md → TaskGroupRead.md} +2 -2
  27. data/docs/TaskGroupsApi.md +2 -2
  28. data/docs/TaskRead.md +43 -0
  29. data/docs/TasksApi.md +2 -2
  30. data/docs/{UploadDetail.md → UploadDetailRead.md} +2 -2
  31. data/docs/UploadRead.md +23 -0
  32. data/docs/UploadsApi.md +4 -4
  33. data/docs/Worker.md +3 -3
  34. data/docs/WorkerRead.md +23 -0
  35. data/docs/WorkersApi.md +2 -2
  36. data/lib/pulpcore_client.rb +11 -5
  37. data/lib/pulpcore_client/api/artifacts_api.rb +6 -6
  38. data/lib/pulpcore_client/api/exporters_core_exports_api.rb +3 -3
  39. data/lib/pulpcore_client/api/exporters_pulp_api.rb +12 -12
  40. data/lib/pulpcore_client/api/importers_core_imports_api.rb +3 -3
  41. data/lib/pulpcore_client/api/importers_pulp_api.rb +12 -12
  42. data/lib/pulpcore_client/api/signing_services_api.rb +3 -3
  43. data/lib/pulpcore_client/api/task_groups_api.rb +3 -3
  44. data/lib/pulpcore_client/api/tasks_api.rb +3 -3
  45. data/lib/pulpcore_client/api/uploads_api.rb +6 -6
  46. data/lib/pulpcore_client/api/workers_api.rb +3 -3
  47. data/lib/pulpcore_client/models/{artifact.rb → artifact_read.rb} +3 -3
  48. data/lib/pulpcore_client/models/{import.rb → import_read.rb} +3 -3
  49. data/lib/pulpcore_client/models/inline_response200.rb +1 -1
  50. data/lib/pulpcore_client/models/inline_response2001.rb +1 -1
  51. data/lib/pulpcore_client/models/inline_response2002.rb +1 -1
  52. data/lib/pulpcore_client/models/inline_response2003.rb +1 -1
  53. data/lib/pulpcore_client/models/inline_response2004.rb +1 -1
  54. data/lib/pulpcore_client/models/inline_response2005.rb +1 -1
  55. data/lib/pulpcore_client/models/inline_response2006.rb +1 -1
  56. data/lib/pulpcore_client/models/inline_response2007.rb +1 -1
  57. data/lib/pulpcore_client/models/inline_response2008.rb +1 -1
  58. data/lib/pulpcore_client/models/inline_response2009.rb +1 -1
  59. data/lib/pulpcore_client/models/pulp_export.rb +62 -1
  60. data/lib/pulpcore_client/models/pulp_export_read.rb +259 -0
  61. data/lib/pulpcore_client/models/pulp_exporter_read.rb +311 -0
  62. data/lib/pulpcore_client/models/pulp_importer_read.rb +262 -0
  63. data/lib/pulpcore_client/models/{signing_service.rb → signing_service_read.rb} +3 -3
  64. data/lib/pulpcore_client/models/{task_group.rb → task_group_read.rb} +3 -3
  65. data/lib/pulpcore_client/models/task_read.rb +383 -0
  66. data/lib/pulpcore_client/models/{upload_detail.rb → upload_detail_read.rb} +3 -3
  67. data/lib/pulpcore_client/models/upload_read.rb +241 -0
  68. data/lib/pulpcore_client/models/worker.rb +10 -10
  69. data/lib/pulpcore_client/models/worker_read.rb +251 -0
  70. data/lib/pulpcore_client/version.rb +1 -1
  71. data/spec/api/artifacts_api_spec.rb +2 -2
  72. data/spec/api/exporters_core_exports_api_spec.rb +1 -1
  73. data/spec/api/exporters_pulp_api_spec.rb +4 -4
  74. data/spec/api/importers_core_imports_api_spec.rb +1 -1
  75. data/spec/api/importers_pulp_api_spec.rb +4 -4
  76. data/spec/api/signing_services_api_spec.rb +1 -1
  77. data/spec/api/task_groups_api_spec.rb +1 -1
  78. data/spec/api/tasks_api_spec.rb +1 -1
  79. data/spec/api/uploads_api_spec.rb +2 -2
  80. data/spec/api/workers_api_spec.rb +1 -1
  81. data/spec/models/{artifact_spec.rb → artifact_read_spec.rb} +6 -6
  82. data/spec/models/{import_spec.rb → import_read_spec.rb} +6 -6
  83. data/spec/models/pulp_export_read_spec.rb +71 -0
  84. data/spec/models/pulp_export_spec.rb +24 -0
  85. data/spec/models/pulp_exporter_read_spec.rb +71 -0
  86. data/spec/models/pulp_importer_read_spec.rb +59 -0
  87. data/spec/models/{signing_service_spec.rb → signing_service_read_spec.rb} +6 -6
  88. data/spec/models/{task_group_spec.rb → task_group_read_spec.rb} +6 -6
  89. data/spec/models/task_read_spec.rb +119 -0
  90. data/spec/models/{upload_detail_spec.rb → upload_detail_read_spec.rb} +6 -6
  91. data/spec/models/upload_read_spec.rb +59 -0
  92. data/spec/models/worker_read_spec.rb +59 -0
  93. data/spec/models/worker_spec.rb +2 -2
  94. metadata +48 -24
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5990686e6954ea7449430b56f8e4db1270d6031ff348dbc525b88fb68e21056a
4
- data.tar.gz: b314b538d4a8ee36fec286b72c7bde7b34ab745cc04968f9922be489b613a087
3
+ metadata.gz: 9623129c0bff487c98200d2f1e869fe52ba3607eeefa5fe3eb9492e6a9b52ea9
4
+ data.tar.gz: bda24d599713e703d530f944cf1d4fbcf0875b493165d34b232d1cc98c04d403
5
5
  SHA512:
6
- metadata.gz: a74f2d78f8443967e78e327c9ddf0c5f1e14f9c6565671e24b6c9adf7de08fe13e50dff04226e16e97ed223c27c4eed71f155cce0e5a68cf17a3cec7bf299a89
7
- data.tar.gz: 432eeceba0e6cadcaf2298ccc3219c9c5c4a4edecbe326c08f5cd280ee481faace4f4fd22add810fe3fdc4b11038c2993b47a31558d95fb0a14796bdff46a1c8
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.dev01590527325
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.dev01590527325.gem
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.dev01590527325.gem` to install the development dependencies)
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.dev01590527325'
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::Artifact](docs/Artifact.md)
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::Import](docs/Import.md)
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::SigningService](docs/SigningService.md)
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::TaskGroup](docs/TaskGroup.md)
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::UploadDetail](docs/UploadDetail.md)
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::Artifact
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::Artifact.new(pulp_href: null,
23
+ instance = PulpcoreClient::ArtifactRead.new(pulp_href: null,
24
24
  pulp_created: null,
25
25
  file: null,
26
26
  size: null,
@@ -13,7 +13,7 @@ Method | HTTP request | Description
13
13
 
14
14
  ## create
15
15
 
16
- > Artifact create(file, opts)
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
- [**Artifact**](Artifact.md)
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
- > Artifact read(artifact_href, opts)
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
- [**Artifact**](Artifact.md)
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
- > PulpExport read(pulp_export_href, opts)
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
- [**PulpExport**](PulpExport.md)
233
+ [**PulpExportRead**](PulpExportRead.md)
234
234
 
235
235
  ### Authorization
236
236
 
@@ -15,7 +15,7 @@ Method | HTTP request | Description
15
15
 
16
16
  ## create
17
17
 
18
- > PulpExporter create(data)
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
- [**PulpExporter**](PulpExporter.md)
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
- > PulpExporter partial_update(pulp_exporter_href, data)
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
- [**PulpExporter**](PulpExporter.md)
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
- > PulpExporter read(pulp_exporter_href, opts)
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
- [**PulpExporter**](PulpExporter.md)
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
- > PulpExporter update(pulp_exporter_href, data)
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
- [**PulpExporter**](PulpExporter.md)
345
+ [**PulpExporterRead**](PulpExporterRead.md)
346
346
 
347
347
  ### Authorization
348
348
 
@@ -1,4 +1,4 @@
1
- # PulpcoreClient::Import
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::Import.new(pulp_href: null,
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
- > Import read(pulp_import_href, opts)
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
- [**Import**](Import.md)
233
+ [**ImportRead**](ImportRead.md)
234
234
 
235
235
  ### Authorization
236
236
 
@@ -15,7 +15,7 @@ Method | HTTP request | Description
15
15
 
16
16
  ## create
17
17
 
18
- > PulpImporter create(data)
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
- [**PulpImporter**](PulpImporter.md)
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
- > PulpImporter partial_update(pulp_importer_href, data)
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
- [**PulpImporter**](PulpImporter.md)
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
- > PulpImporter read(pulp_importer_href, opts)
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
- [**PulpImporter**](PulpImporter.md)
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
- > PulpImporter update(pulp_importer_href, data)
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
- [**PulpImporter**](PulpImporter.md)
345
+ [**PulpImporterRead**](PulpImporterRead.md)
346
346
 
347
347
  ### Authorization
348
348
 
@@ -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<Artifact>**](Artifact.md) | |
10
+ **results** | [**Array<ArtifactRead>**](ArtifactRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<PulpExporter>**](PulpExporter.md) | |
10
+ **results** | [**Array<PulpExporterRead>**](PulpExporterRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<PulpExport>**](PulpExport.md) | |
10
+ **results** | [**Array<PulpExportRead>**](PulpExportRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<PulpImporter>**](PulpImporter.md) | |
10
+ **results** | [**Array<PulpImporterRead>**](PulpImporterRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<Import>**](Import.md) | |
10
+ **results** | [**Array<ImportRead>**](ImportRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<SigningService>**](SigningService.md) | |
10
+ **results** | [**Array<SigningServiceRead>**](SigningServiceRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<TaskGroup>**](TaskGroup.md) | |
10
+ **results** | [**Array<TaskGroupRead>**](TaskGroupRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<Task>**](Task.md) | |
10
+ **results** | [**Array<TaskRead>**](TaskRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<Upload>**](Upload.md) | |
10
+ **results** | [**Array<UploadRead>**](UploadRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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<Worker>**](Worker.md) | |
10
+ **results** | [**Array<WorkerRead>**](WorkerRead.md) | |
11
11
 
12
12
  ## Code Sample
13
13
 
@@ -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