pulpcore_client 3.3.1 → 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 +20 -14
- data/docs/{Artifact.md → ArtifactRead.md} +2 -2
- data/docs/ArtifactsApi.md +5 -5
- data/docs/ExportersCoreExportsApi.md +13 -13
- data/docs/ExportersPulpApi.md +9 -9
- data/docs/{Import.md → ImportRead.md} +2 -2
- data/docs/ImportersCoreImportsApi.md +13 -13
- data/docs/ImportersPulpApi.md +9 -9
- 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/OrphansApi.md +1 -1
- data/docs/PulpExport.md +12 -6
- 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 +3 -3
- data/docs/StatusApi.md +1 -1
- data/docs/{TaskGroup.md → TaskGroupRead.md} +4 -2
- data/docs/TaskGroupsApi.md +3 -3
- data/docs/TaskRead.md +43 -0
- data/docs/TasksApi.md +3 -3
- data/docs/{UploadDetail.md → UploadDetailRead.md} +2 -2
- data/docs/UploadRead.md +23 -0
- data/docs/UploadsApi.md +5 -5
- data/docs/Worker.md +3 -3
- data/docs/WorkerRead.md +23 -0
- data/docs/WorkersApi.md +3 -3
- data/lib/pulpcore_client/api/artifacts_api.rb +6 -6
- data/lib/pulpcore_client/api/exporters_core_exports_api.rb +21 -21
- data/lib/pulpcore_client/api/exporters_pulp_api.rb +12 -12
- data/lib/pulpcore_client/api/importers_core_imports_api.rb +21 -21
- 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/configuration.rb +2 -2
- 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 +59 -49
- data/lib/pulpcore_client/models/pulp_export_read.rb +259 -0
- data/lib/pulpcore_client/models/pulp_exporter.rb +1 -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} +19 -4
- 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/lib/pulpcore_client.rb +11 -5
- data/spec/api/artifacts_api_spec.rb +2 -2
- data/spec/api/exporters_core_exports_api_spec.rb +3 -3
- data/spec/api/exporters_pulp_api_spec.rb +4 -4
- data/spec/api/importers_core_imports_api_spec.rb +3 -3
- 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/configuration_spec.rb +3 -3
- 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 +20 -2
- 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} +12 -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 +46 -22
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.
|
|
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.
|
|
26
|
+
gem install ./pulpcore_client-3.4.0.gem
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
(for development, run `gem install --dev ./pulpcore_client-3.
|
|
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.
|
|
35
|
+
gem 'pulpcore_client', '~> 3.4.0'
|
|
36
36
|
|
|
37
37
|
### Install from Git
|
|
38
38
|
|
|
@@ -87,7 +87,7 @@ end
|
|
|
87
87
|
|
|
88
88
|
## Documentation for API Endpoints
|
|
89
89
|
|
|
90
|
-
All URIs are relative to *http://
|
|
90
|
+
All URIs are relative to *http://pulp*
|
|
91
91
|
|
|
92
92
|
Class | Method | HTTP request | Description
|
|
93
93
|
------------ | ------------- | ------------- | -------------
|
|
@@ -95,9 +95,9 @@ Class | Method | HTTP request | Description
|
|
|
95
95
|
*PulpcoreClient::ArtifactsApi* | [**delete**](docs/ArtifactsApi.md#delete) | **DELETE** {artifact_href} | Delete an artifact
|
|
96
96
|
*PulpcoreClient::ArtifactsApi* | [**list**](docs/ArtifactsApi.md#list) | **GET** /pulp/api/v3/artifacts/ | List artifacts
|
|
97
97
|
*PulpcoreClient::ArtifactsApi* | [**read**](docs/ArtifactsApi.md#read) | **GET** {artifact_href} | Inspect an artifact
|
|
98
|
-
*PulpcoreClient::ExportersCoreExportsApi* | [**create**](docs/ExportersCoreExportsApi.md#create) | **POST**
|
|
98
|
+
*PulpcoreClient::ExportersCoreExportsApi* | [**create**](docs/ExportersCoreExportsApi.md#create) | **POST** {pulp_exporter_href}exports/ | Create a pulp export
|
|
99
99
|
*PulpcoreClient::ExportersCoreExportsApi* | [**delete**](docs/ExportersCoreExportsApi.md#delete) | **DELETE** {pulp_export_href} | Delete a pulp export
|
|
100
|
-
*PulpcoreClient::ExportersCoreExportsApi* | [**list**](docs/ExportersCoreExportsApi.md#list) | **GET**
|
|
100
|
+
*PulpcoreClient::ExportersCoreExportsApi* | [**list**](docs/ExportersCoreExportsApi.md#list) | **GET** {pulp_exporter_href}exports/ | List pulp exports
|
|
101
101
|
*PulpcoreClient::ExportersCoreExportsApi* | [**read**](docs/ExportersCoreExportsApi.md#read) | **GET** {pulp_export_href} | Inspect a pulp export
|
|
102
102
|
*PulpcoreClient::ExportersPulpApi* | [**create**](docs/ExportersPulpApi.md#create) | **POST** /pulp/api/v3/exporters/core/pulp/ | Create a pulp exporter
|
|
103
103
|
*PulpcoreClient::ExportersPulpApi* | [**delete**](docs/ExportersPulpApi.md#delete) | **DELETE** {pulp_exporter_href} | Delete a pulp exporter
|
|
@@ -105,9 +105,9 @@ Class | Method | HTTP request | Description
|
|
|
105
105
|
*PulpcoreClient::ExportersPulpApi* | [**partial_update**](docs/ExportersPulpApi.md#partial_update) | **PATCH** {pulp_exporter_href} | Partially update a pulp exporter
|
|
106
106
|
*PulpcoreClient::ExportersPulpApi* | [**read**](docs/ExportersPulpApi.md#read) | **GET** {pulp_exporter_href} | Inspect a pulp exporter
|
|
107
107
|
*PulpcoreClient::ExportersPulpApi* | [**update**](docs/ExportersPulpApi.md#update) | **PUT** {pulp_exporter_href} | Update a pulp exporter
|
|
108
|
-
*PulpcoreClient::ImportersCoreImportsApi* | [**create**](docs/ImportersCoreImportsApi.md#create) | **POST**
|
|
108
|
+
*PulpcoreClient::ImportersCoreImportsApi* | [**create**](docs/ImportersCoreImportsApi.md#create) | **POST** {pulp_importer_href}imports/ | Create a pulp import
|
|
109
109
|
*PulpcoreClient::ImportersCoreImportsApi* | [**delete**](docs/ImportersCoreImportsApi.md#delete) | **DELETE** {pulp_import_href} | Delete a pulp import
|
|
110
|
-
*PulpcoreClient::ImportersCoreImportsApi* | [**list**](docs/ImportersCoreImportsApi.md#list) | **GET**
|
|
110
|
+
*PulpcoreClient::ImportersCoreImportsApi* | [**list**](docs/ImportersCoreImportsApi.md#list) | **GET** {pulp_importer_href}imports/ | List pulp imports
|
|
111
111
|
*PulpcoreClient::ImportersCoreImportsApi* | [**read**](docs/ImportersCoreImportsApi.md#read) | **GET** {pulp_import_href} | Inspect a pulp import
|
|
112
112
|
*PulpcoreClient::ImportersPulpApi* | [**create**](docs/ImportersPulpApi.md#create) | **POST** /pulp/api/v3/importers/core/pulp/ | Create a pulp importer
|
|
113
113
|
*PulpcoreClient::ImportersPulpApi* | [**delete**](docs/ImportersPulpApi.md#delete) | **DELETE** {pulp_importer_href} | Delete a pulp importer
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::ArtifactsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *http://
|
|
3
|
+
All URIs are relative to *http://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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
|
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# PulpcoreClient::ExportersCoreExportsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *http://
|
|
3
|
+
All URIs are relative to *http://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
7
|
-
[**create**](ExportersCoreExportsApi.md#create) | **POST**
|
|
7
|
+
[**create**](ExportersCoreExportsApi.md#create) | **POST** {pulp_exporter_href}exports/ | Create a pulp export
|
|
8
8
|
[**delete**](ExportersCoreExportsApi.md#delete) | **DELETE** {pulp_export_href} | Delete a pulp export
|
|
9
|
-
[**list**](ExportersCoreExportsApi.md#list) | **GET**
|
|
9
|
+
[**list**](ExportersCoreExportsApi.md#list) | **GET** {pulp_exporter_href}exports/ | List pulp exports
|
|
10
10
|
[**read**](ExportersCoreExportsApi.md#read) | **GET** {pulp_export_href} | Inspect a pulp export
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
## create
|
|
15
15
|
|
|
16
|
-
> AsyncOperationResponse create(
|
|
16
|
+
> AsyncOperationResponse create(pulp_exporter_href, data)
|
|
17
17
|
|
|
18
18
|
Create a pulp export
|
|
19
19
|
|
|
@@ -32,12 +32,12 @@ PulpcoreClient.configure do |config|
|
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
api_instance = PulpcoreClient::ExportersCoreExportsApi.new
|
|
35
|
-
|
|
35
|
+
pulp_exporter_href = 'pulp_exporter_href_example' # String | URI of Pulp Exporter. e.g.: /pulp/api/v3/exporters/core/pulp/1/
|
|
36
36
|
data = PulpcoreClient::PulpExport.new # PulpExport |
|
|
37
37
|
|
|
38
38
|
begin
|
|
39
39
|
#Create a pulp export
|
|
40
|
-
result = api_instance.create(
|
|
40
|
+
result = api_instance.create(pulp_exporter_href, data)
|
|
41
41
|
p result
|
|
42
42
|
rescue PulpcoreClient::ApiError => e
|
|
43
43
|
puts "Exception when calling ExportersCoreExportsApi->create: #{e}"
|
|
@@ -49,7 +49,7 @@ end
|
|
|
49
49
|
|
|
50
50
|
Name | Type | Description | Notes
|
|
51
51
|
------------- | ------------- | ------------- | -------------
|
|
52
|
-
**
|
|
52
|
+
**pulp_exporter_href** | **String**| URI of Pulp Exporter. e.g.: /pulp/api/v3/exporters/core/pulp/1/ |
|
|
53
53
|
**data** | [**PulpExport**](PulpExport.md)| |
|
|
54
54
|
|
|
55
55
|
### Return type
|
|
@@ -120,7 +120,7 @@ nil (empty response body)
|
|
|
120
120
|
|
|
121
121
|
## list
|
|
122
122
|
|
|
123
|
-
> InlineResponse2002 list(
|
|
123
|
+
> InlineResponse2002 list(pulp_exporter_href, opts)
|
|
124
124
|
|
|
125
125
|
List pulp exports
|
|
126
126
|
|
|
@@ -139,7 +139,7 @@ PulpcoreClient.configure do |config|
|
|
|
139
139
|
end
|
|
140
140
|
|
|
141
141
|
api_instance = PulpcoreClient::ExportersCoreExportsApi.new
|
|
142
|
-
|
|
142
|
+
pulp_exporter_href = 'pulp_exporter_href_example' # String | URI of Pulp Exporter. e.g.: /pulp/api/v3/exporters/core/pulp/1/
|
|
143
143
|
opts = {
|
|
144
144
|
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
|
145
145
|
limit: 56, # Integer | Number of results to return per page.
|
|
@@ -150,7 +150,7 @@ opts = {
|
|
|
150
150
|
|
|
151
151
|
begin
|
|
152
152
|
#List pulp exports
|
|
153
|
-
result = api_instance.list(
|
|
153
|
+
result = api_instance.list(pulp_exporter_href, opts)
|
|
154
154
|
p result
|
|
155
155
|
rescue PulpcoreClient::ApiError => e
|
|
156
156
|
puts "Exception when calling ExportersCoreExportsApi->list: #{e}"
|
|
@@ -162,7 +162,7 @@ end
|
|
|
162
162
|
|
|
163
163
|
Name | Type | Description | Notes
|
|
164
164
|
------------- | ------------- | ------------- | -------------
|
|
165
|
-
**
|
|
165
|
+
**pulp_exporter_href** | **String**| URI of Pulp Exporter. e.g.: /pulp/api/v3/exporters/core/pulp/1/ |
|
|
166
166
|
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
|
167
167
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
168
168
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::ExportersPulpApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *http://
|
|
3
|
+
All URIs are relative to *http://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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)
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
# PulpcoreClient::ImportersCoreImportsApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *http://
|
|
3
|
+
All URIs are relative to *http://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
7
|
-
[**create**](ImportersCoreImportsApi.md#create) | **POST**
|
|
7
|
+
[**create**](ImportersCoreImportsApi.md#create) | **POST** {pulp_importer_href}imports/ | Create a pulp import
|
|
8
8
|
[**delete**](ImportersCoreImportsApi.md#delete) | **DELETE** {pulp_import_href} | Delete a pulp import
|
|
9
|
-
[**list**](ImportersCoreImportsApi.md#list) | **GET**
|
|
9
|
+
[**list**](ImportersCoreImportsApi.md#list) | **GET** {pulp_importer_href}imports/ | List pulp imports
|
|
10
10
|
[**read**](ImportersCoreImportsApi.md#read) | **GET** {pulp_import_href} | Inspect a pulp import
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
## create
|
|
15
15
|
|
|
16
|
-
> AsyncOperationResponse create(
|
|
16
|
+
> AsyncOperationResponse create(pulp_importer_href, data)
|
|
17
17
|
|
|
18
18
|
Create a pulp import
|
|
19
19
|
|
|
@@ -32,12 +32,12 @@ PulpcoreClient.configure do |config|
|
|
|
32
32
|
end
|
|
33
33
|
|
|
34
34
|
api_instance = PulpcoreClient::ImportersCoreImportsApi.new
|
|
35
|
-
|
|
35
|
+
pulp_importer_href = 'pulp_importer_href_example' # String | URI of Pulp Importer. e.g.: /pulp/api/v3/importers/core/pulp/1/
|
|
36
36
|
data = PulpcoreClient::PulpImport.new # PulpImport |
|
|
37
37
|
|
|
38
38
|
begin
|
|
39
39
|
#Create a pulp import
|
|
40
|
-
result = api_instance.create(
|
|
40
|
+
result = api_instance.create(pulp_importer_href, data)
|
|
41
41
|
p result
|
|
42
42
|
rescue PulpcoreClient::ApiError => e
|
|
43
43
|
puts "Exception when calling ImportersCoreImportsApi->create: #{e}"
|
|
@@ -49,7 +49,7 @@ end
|
|
|
49
49
|
|
|
50
50
|
Name | Type | Description | Notes
|
|
51
51
|
------------- | ------------- | ------------- | -------------
|
|
52
|
-
**
|
|
52
|
+
**pulp_importer_href** | **String**| URI of Pulp Importer. e.g.: /pulp/api/v3/importers/core/pulp/1/ |
|
|
53
53
|
**data** | [**PulpImport**](PulpImport.md)| |
|
|
54
54
|
|
|
55
55
|
### Return type
|
|
@@ -120,7 +120,7 @@ nil (empty response body)
|
|
|
120
120
|
|
|
121
121
|
## list
|
|
122
122
|
|
|
123
|
-
> InlineResponse2004 list(
|
|
123
|
+
> InlineResponse2004 list(pulp_importer_href, opts)
|
|
124
124
|
|
|
125
125
|
List pulp imports
|
|
126
126
|
|
|
@@ -139,7 +139,7 @@ PulpcoreClient.configure do |config|
|
|
|
139
139
|
end
|
|
140
140
|
|
|
141
141
|
api_instance = PulpcoreClient::ImportersCoreImportsApi.new
|
|
142
|
-
|
|
142
|
+
pulp_importer_href = 'pulp_importer_href_example' # String | URI of Pulp Importer. e.g.: /pulp/api/v3/importers/core/pulp/1/
|
|
143
143
|
opts = {
|
|
144
144
|
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
|
145
145
|
limit: 56, # Integer | Number of results to return per page.
|
|
@@ -150,7 +150,7 @@ opts = {
|
|
|
150
150
|
|
|
151
151
|
begin
|
|
152
152
|
#List pulp imports
|
|
153
|
-
result = api_instance.list(
|
|
153
|
+
result = api_instance.list(pulp_importer_href, opts)
|
|
154
154
|
p result
|
|
155
155
|
rescue PulpcoreClient::ApiError => e
|
|
156
156
|
puts "Exception when calling ImportersCoreImportsApi->list: #{e}"
|
|
@@ -162,7 +162,7 @@ end
|
|
|
162
162
|
|
|
163
163
|
Name | Type | Description | Notes
|
|
164
164
|
------------- | ------------- | ------------- | -------------
|
|
165
|
-
**
|
|
165
|
+
**pulp_importer_href** | **String**| URI of Pulp Importer. e.g.: /pulp/api/v3/importers/core/pulp/1/ |
|
|
166
166
|
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
|
167
167
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
168
168
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
@@ -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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PulpcoreClient::ImportersPulpApi
|
|
2
2
|
|
|
3
|
-
All URIs are relative to *http://
|
|
3
|
+
All URIs are relative to *http://pulp*
|
|
4
4
|
|
|
5
5
|
Method | HTTP request | Description
|
|
6
6
|
------------- | ------------- | -------------
|
|
@@ -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
|
|