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.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -14
  3. data/docs/{Artifact.md → ArtifactRead.md} +2 -2
  4. data/docs/ArtifactsApi.md +5 -5
  5. data/docs/ExportersCoreExportsApi.md +13 -13
  6. data/docs/ExportersPulpApi.md +9 -9
  7. data/docs/{Import.md → ImportRead.md} +2 -2
  8. data/docs/ImportersCoreImportsApi.md +13 -13
  9. data/docs/ImportersPulpApi.md +9 -9
  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/OrphansApi.md +1 -1
  21. data/docs/PulpExport.md +12 -6
  22. data/docs/PulpExportRead.md +27 -0
  23. data/docs/PulpExporterRead.md +27 -0
  24. data/docs/PulpImporterRead.md +23 -0
  25. data/docs/{SigningService.md → SigningServiceRead.md} +2 -2
  26. data/docs/SigningServicesApi.md +3 -3
  27. data/docs/StatusApi.md +1 -1
  28. data/docs/{TaskGroup.md → TaskGroupRead.md} +4 -2
  29. data/docs/TaskGroupsApi.md +3 -3
  30. data/docs/TaskRead.md +43 -0
  31. data/docs/TasksApi.md +3 -3
  32. data/docs/{UploadDetail.md → UploadDetailRead.md} +2 -2
  33. data/docs/UploadRead.md +23 -0
  34. data/docs/UploadsApi.md +5 -5
  35. data/docs/Worker.md +3 -3
  36. data/docs/WorkerRead.md +23 -0
  37. data/docs/WorkersApi.md +3 -3
  38. data/lib/pulpcore_client/api/artifacts_api.rb +6 -6
  39. data/lib/pulpcore_client/api/exporters_core_exports_api.rb +21 -21
  40. data/lib/pulpcore_client/api/exporters_pulp_api.rb +12 -12
  41. data/lib/pulpcore_client/api/importers_core_imports_api.rb +21 -21
  42. data/lib/pulpcore_client/api/importers_pulp_api.rb +12 -12
  43. data/lib/pulpcore_client/api/signing_services_api.rb +3 -3
  44. data/lib/pulpcore_client/api/task_groups_api.rb +3 -3
  45. data/lib/pulpcore_client/api/tasks_api.rb +3 -3
  46. data/lib/pulpcore_client/api/uploads_api.rb +6 -6
  47. data/lib/pulpcore_client/api/workers_api.rb +3 -3
  48. data/lib/pulpcore_client/configuration.rb +2 -2
  49. data/lib/pulpcore_client/models/{artifact.rb → artifact_read.rb} +3 -3
  50. data/lib/pulpcore_client/models/{import.rb → import_read.rb} +3 -3
  51. data/lib/pulpcore_client/models/inline_response200.rb +1 -1
  52. data/lib/pulpcore_client/models/inline_response2001.rb +1 -1
  53. data/lib/pulpcore_client/models/inline_response2002.rb +1 -1
  54. data/lib/pulpcore_client/models/inline_response2003.rb +1 -1
  55. data/lib/pulpcore_client/models/inline_response2004.rb +1 -1
  56. data/lib/pulpcore_client/models/inline_response2005.rb +1 -1
  57. data/lib/pulpcore_client/models/inline_response2006.rb +1 -1
  58. data/lib/pulpcore_client/models/inline_response2007.rb +1 -1
  59. data/lib/pulpcore_client/models/inline_response2008.rb +1 -1
  60. data/lib/pulpcore_client/models/inline_response2009.rb +1 -1
  61. data/lib/pulpcore_client/models/pulp_export.rb +59 -49
  62. data/lib/pulpcore_client/models/pulp_export_read.rb +259 -0
  63. data/lib/pulpcore_client/models/pulp_exporter.rb +1 -0
  64. data/lib/pulpcore_client/models/pulp_exporter_read.rb +311 -0
  65. data/lib/pulpcore_client/models/pulp_importer_read.rb +262 -0
  66. data/lib/pulpcore_client/models/{signing_service.rb → signing_service_read.rb} +3 -3
  67. data/lib/pulpcore_client/models/{task_group.rb → task_group_read.rb} +19 -4
  68. data/lib/pulpcore_client/models/task_read.rb +383 -0
  69. data/lib/pulpcore_client/models/{upload_detail.rb → upload_detail_read.rb} +3 -3
  70. data/lib/pulpcore_client/models/upload_read.rb +241 -0
  71. data/lib/pulpcore_client/models/worker.rb +10 -10
  72. data/lib/pulpcore_client/models/worker_read.rb +251 -0
  73. data/lib/pulpcore_client/version.rb +1 -1
  74. data/lib/pulpcore_client.rb +11 -5
  75. data/spec/api/artifacts_api_spec.rb +2 -2
  76. data/spec/api/exporters_core_exports_api_spec.rb +3 -3
  77. data/spec/api/exporters_pulp_api_spec.rb +4 -4
  78. data/spec/api/importers_core_imports_api_spec.rb +3 -3
  79. data/spec/api/importers_pulp_api_spec.rb +4 -4
  80. data/spec/api/signing_services_api_spec.rb +1 -1
  81. data/spec/api/task_groups_api_spec.rb +1 -1
  82. data/spec/api/tasks_api_spec.rb +1 -1
  83. data/spec/api/uploads_api_spec.rb +2 -2
  84. data/spec/api/workers_api_spec.rb +1 -1
  85. data/spec/configuration_spec.rb +3 -3
  86. data/spec/models/{artifact_spec.rb → artifact_read_spec.rb} +6 -6
  87. data/spec/models/{import_spec.rb → import_read_spec.rb} +6 -6
  88. data/spec/models/pulp_export_read_spec.rb +71 -0
  89. data/spec/models/pulp_export_spec.rb +20 -2
  90. data/spec/models/pulp_exporter_read_spec.rb +71 -0
  91. data/spec/models/pulp_importer_read_spec.rb +59 -0
  92. data/spec/models/{signing_service_spec.rb → signing_service_read_spec.rb} +6 -6
  93. data/spec/models/{task_group_spec.rb → task_group_read_spec.rb} +12 -6
  94. data/spec/models/task_read_spec.rb +119 -0
  95. data/spec/models/{upload_detail_spec.rb → upload_detail_read_spec.rb} +6 -6
  96. data/spec/models/upload_read_spec.rb +59 -0
  97. data/spec/models/worker_read_spec.rb +59 -0
  98. data/spec/models/worker_spec.rb +2 -2
  99. metadata +46 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72c9ae4c95a26fff8f008ea385178a91a4b660b1e8de6fb71dacf385eed8193a
4
- data.tar.gz: 4945fc1b1df1ba3d370d0575c0512e5d3423945c74cbd34358b0d0e401ed1310
3
+ metadata.gz: 9623129c0bff487c98200d2f1e869fe52ba3607eeefa5fe3eb9492e6a9b52ea9
4
+ data.tar.gz: bda24d599713e703d530f944cf1d4fbcf0875b493165d34b232d1cc98c04d403
5
5
  SHA512:
6
- metadata.gz: c443f00df7da394f4d2f234d77c5ef113e9da0cb8341048617b073156e0de58a2602f4110f29f1d713ee09cd75c585877477318c093b51af4297575987d41dac
7
- data.tar.gz: 39d04d2d839ead6842c07b85c2a8f38b1bf01622f3b74a40479c193a81424b7078bde104c2e412700580b6b71e03869500de278f5ef0b53c9a322f6be6a8461a
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.3.1
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.3.1.gem
26
+ gem install ./pulpcore_client-3.4.0.gem
27
27
  ```
28
28
 
29
- (for development, run `gem install --dev ./pulpcore_client-3.3.1.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.3.1'
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://localhost:24817*
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** /pulp/api/v3/exporters/core/pulp/{exporter_pk}/exports/ | Create a pulp export
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** /pulp/api/v3/exporters/core/pulp/{exporter_pk}/exports/ | List pulp exports
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** /pulp/api/v3/importers/core/pulp/{importer_pk}/imports/ | Create a pulp import
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** /pulp/api/v3/importers/core/pulp/{importer_pk}/imports/ | List pulp imports
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::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,
data/docs/ArtifactsApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ArtifactsApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
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
- > 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
 
@@ -1,19 +1,19 @@
1
1
  # PulpcoreClient::ExportersCoreExportsApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
- [**create**](ExportersCoreExportsApi.md#create) | **POST** /pulp/api/v3/exporters/core/pulp/{exporter_pk}/exports/ | Create a pulp export
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** /pulp/api/v3/exporters/core/pulp/{exporter_pk}/exports/ | List pulp exports
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(exporter_pk, data)
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
- exporter_pk = 'exporter_pk_example' # String |
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(exporter_pk, data)
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
- **exporter_pk** | **String**| |
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(exporter_pk, opts)
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
- exporter_pk = 'exporter_pk_example' # String |
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(exporter_pk, opts)
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
- **exporter_pk** | **String**| |
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
- > 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
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ExportersPulpApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
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
- > 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)
@@ -1,19 +1,19 @@
1
1
  # PulpcoreClient::ImportersCoreImportsApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------
7
- [**create**](ImportersCoreImportsApi.md#create) | **POST** /pulp/api/v3/importers/core/pulp/{importer_pk}/imports/ | Create a pulp import
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** /pulp/api/v3/importers/core/pulp/{importer_pk}/imports/ | List pulp imports
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(importer_pk, data)
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
- importer_pk = 'importer_pk_example' # String |
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(importer_pk, data)
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
- **importer_pk** | **String**| |
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(importer_pk, opts)
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
- importer_pk = 'importer_pk_example' # String |
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(importer_pk, opts)
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
- **importer_pk** | **String**| |
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
- > 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
 
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::ImportersPulpApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
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
- > 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
 
data/docs/OrphansApi.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PulpcoreClient::OrphansApi
2
2
 
3
- All URIs are relative to *http://localhost:24817*
3
+ All URIs are relative to *http://pulp*
4
4
 
5
5
  Method | HTTP request | Description
6
6
  ------------- | ------------- | -------------