pulp_container_client 2.0.1 → 2.0.2
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 +4 -4
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +8 -8
- data/docs/DistributionsContainerApi.md +6 -54
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/RemotesContainerApi.md +6 -66
- data/docs/RepositoriesContainerApi.md +6 -30
- data/docs/RepositoriesContainerPushApi.md +2 -10
- data/docs/RepositoriesContainerVersionsApi.md +4 -68
- data/lib/pulp_container_client/api/distributions_container_api.rb +0 -63
- data/lib/pulp_container_client/api/remotes_container_api.rb +0 -81
- data/lib/pulp_container_client/api/repositories_container_api.rb +0 -27
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +0 -9
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +0 -90
- data/lib/pulp_container_client/models/container_container_distribution.rb +19 -19
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +31 -31
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +19 -19
- data/lib/pulp_container_client/models/repository_sync_url.rb +1 -0
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/distributions_container_api_spec.rb +0 -21
- data/spec/api/remotes_container_api_spec.rb +0 -27
- data/spec/api/repositories_container_api_spec.rb +0 -9
- data/spec/api/repositories_container_push_api_spec.rb +0 -3
- data/spec/api/repositories_container_versions_api_spec.rb +0 -30
- data/spec/models/container_container_distribution_response_spec.rb +6 -6
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e9367d0283a61046e3242d0f5a4b945e5d1af27f8f8380a72467b0ff921cc43a
|
4
|
+
data.tar.gz: d2d0ac4405d0ac4b6f7a8f37b359e2cc8f3f4cb511f6a5753b2777b3a4068be8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69036003741b2d8f0e06e39474df10cc1b246cc54acca65cdae31f84d298e62adfa899ada426d266736c9fa76e0ce77c0ec807f799e425b982c94a942eb42d08
|
7
|
+
data.tar.gz: c41543158fb90548e9d86c8a2ad4490ffdfa811ebfcd1f88ddae99de7f7e0401afd0fb7a5cf7283bde14e4317d434d07ce8332262170ecea100822425fa49460
|
data/README.md
CHANGED
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
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: 2.0.
|
10
|
+
- Package version: 2.0.2
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
13
13
|
|
@@ -24,16 +24,16 @@ gem build pulp_container_client.gemspec
|
|
24
24
|
Then either install the gem locally:
|
25
25
|
|
26
26
|
```shell
|
27
|
-
gem install ./pulp_container_client-2.0.
|
27
|
+
gem install ./pulp_container_client-2.0.2.gem
|
28
28
|
```
|
29
29
|
|
30
|
-
(for development, run `gem install --dev ./pulp_container_client-2.0.
|
30
|
+
(for development, run `gem install --dev ./pulp_container_client-2.0.2.gem` to install the development dependencies)
|
31
31
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
33
33
|
|
34
34
|
Finally add this to the Gemfile:
|
35
35
|
|
36
|
-
gem 'pulp_container_client', '~> 2.0.
|
36
|
+
gem 'pulp_container_client', '~> 2.0.2'
|
37
37
|
|
38
38
|
### Install from Git
|
39
39
|
|
@@ -4,22 +4,22 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
7
8
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
8
|
-
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
9
9
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
10
10
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
11
|
-
**
|
11
|
+
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
15
15
|
```ruby
|
16
16
|
require 'PulpContainerClient'
|
17
17
|
|
18
|
-
instance = PulpContainerClient::ContainerContainerDistribution.new(
|
19
|
-
|
18
|
+
instance = PulpContainerClient::ContainerContainerDistribution.new(content_guard: null,
|
19
|
+
repository: null,
|
20
20
|
base_path: null,
|
21
21
|
name: null,
|
22
|
-
|
22
|
+
repository_version: null)
|
23
23
|
```
|
24
24
|
|
25
25
|
|
@@ -4,13 +4,13 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
-
**
|
8
|
-
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
7
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
9
8
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
10
|
-
**
|
9
|
+
**pulp_created** | **DateTime** | Timestamp of creation. | [optional] [readonly]
|
11
10
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") |
|
11
|
+
**pulp_href** | **String** | | [optional] [readonly]
|
12
12
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. |
|
13
|
-
**
|
13
|
+
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
14
14
|
**registry_path** | **String** | The Registry hostame/name/ to use with docker pull command defined by this distribution. | [optional] [readonly]
|
15
15
|
|
16
16
|
## Code Sample
|
@@ -18,13 +18,13 @@ Name | Type | Description | Notes
|
|
18
18
|
```ruby
|
19
19
|
require 'PulpContainerClient'
|
20
20
|
|
21
|
-
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(
|
22
|
-
pulp_created: null,
|
21
|
+
instance = PulpContainerClient::ContainerContainerDistributionResponse.new(content_guard: null,
|
23
22
|
repository: null,
|
24
|
-
|
23
|
+
pulp_created: null,
|
25
24
|
base_path: null,
|
25
|
+
pulp_href: null,
|
26
26
|
name: null,
|
27
|
-
|
27
|
+
repository_version: null,
|
28
28
|
registry_path: null)
|
29
29
|
```
|
30
30
|
|
@@ -68,7 +68,7 @@ Name | Type | Description | Notes
|
|
68
68
|
|
69
69
|
## delete
|
70
70
|
|
71
|
-
> AsyncOperationResponse delete(container_container_distribution_href
|
71
|
+
> AsyncOperationResponse delete(container_container_distribution_href)
|
72
72
|
|
73
73
|
Delete a container distribution
|
74
74
|
|
@@ -88,19 +88,10 @@ end
|
|
88
88
|
|
89
89
|
api_instance = PulpContainerClient::DistributionsContainerApi.new
|
90
90
|
container_container_distribution_href = 'container_container_distribution_href_example' # String |
|
91
|
-
opts = {
|
92
|
-
base_path: 'base_path_example', # String | base_path
|
93
|
-
base_path__contains: 'base_path__contains_example', # String | base_path__contains
|
94
|
-
base_path__icontains: 'base_path__icontains_example', # String | base_path__icontains
|
95
|
-
base_path__in: 'base_path__in_example', # String | base_path__in
|
96
|
-
name: 'name_example', # String | name
|
97
|
-
name__in: 'name__in_example', # String | name__in
|
98
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
99
|
-
}
|
100
91
|
|
101
92
|
begin
|
102
93
|
#Delete a container distribution
|
103
|
-
result = api_instance.delete(container_container_distribution_href
|
94
|
+
result = api_instance.delete(container_container_distribution_href)
|
104
95
|
p result
|
105
96
|
rescue PulpContainerClient::ApiError => e
|
106
97
|
puts "Exception when calling DistributionsContainerApi->delete: #{e}"
|
@@ -113,13 +104,6 @@ end
|
|
113
104
|
Name | Type | Description | Notes
|
114
105
|
------------- | ------------- | ------------- | -------------
|
115
106
|
**container_container_distribution_href** | **String**| |
|
116
|
-
**base_path** | **String**| base_path | [optional]
|
117
|
-
**base_path__contains** | **String**| base_path__contains | [optional]
|
118
|
-
**base_path__icontains** | **String**| base_path__icontains | [optional]
|
119
|
-
**base_path__in** | **String**| base_path__in | [optional]
|
120
|
-
**name** | **String**| name | [optional]
|
121
|
-
**name__in** | **String**| name__in | [optional]
|
122
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
123
107
|
|
124
108
|
### Return type
|
125
109
|
|
@@ -212,7 +196,7 @@ Name | Type | Description | Notes
|
|
212
196
|
|
213
197
|
## partial_update
|
214
198
|
|
215
|
-
> AsyncOperationResponse partial_update(container_container_distribution_href, patchedcontainer_container_distribution
|
199
|
+
> AsyncOperationResponse partial_update(container_container_distribution_href, patchedcontainer_container_distribution)
|
216
200
|
|
217
201
|
Update a container distribution
|
218
202
|
|
@@ -233,19 +217,10 @@ end
|
|
233
217
|
api_instance = PulpContainerClient::DistributionsContainerApi.new
|
234
218
|
container_container_distribution_href = 'container_container_distribution_href_example' # String |
|
235
219
|
patchedcontainer_container_distribution = PulpContainerClient::PatchedcontainerContainerDistribution.new # PatchedcontainerContainerDistribution |
|
236
|
-
opts = {
|
237
|
-
base_path: 'base_path_example', # String | base_path
|
238
|
-
base_path__contains: 'base_path__contains_example', # String | base_path__contains
|
239
|
-
base_path__icontains: 'base_path__icontains_example', # String | base_path__icontains
|
240
|
-
base_path__in: 'base_path__in_example', # String | base_path__in
|
241
|
-
name: 'name_example', # String | name
|
242
|
-
name__in: 'name__in_example', # String | name__in
|
243
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
244
|
-
}
|
245
220
|
|
246
221
|
begin
|
247
222
|
#Update a container distribution
|
248
|
-
result = api_instance.partial_update(container_container_distribution_href, patchedcontainer_container_distribution
|
223
|
+
result = api_instance.partial_update(container_container_distribution_href, patchedcontainer_container_distribution)
|
249
224
|
p result
|
250
225
|
rescue PulpContainerClient::ApiError => e
|
251
226
|
puts "Exception when calling DistributionsContainerApi->partial_update: #{e}"
|
@@ -259,13 +234,6 @@ Name | Type | Description | Notes
|
|
259
234
|
------------- | ------------- | ------------- | -------------
|
260
235
|
**container_container_distribution_href** | **String**| |
|
261
236
|
**patchedcontainer_container_distribution** | [**PatchedcontainerContainerDistribution**](PatchedcontainerContainerDistribution.md)| |
|
262
|
-
**base_path** | **String**| base_path | [optional]
|
263
|
-
**base_path__contains** | **String**| base_path__contains | [optional]
|
264
|
-
**base_path__icontains** | **String**| base_path__icontains | [optional]
|
265
|
-
**base_path__in** | **String**| base_path__in | [optional]
|
266
|
-
**name** | **String**| name | [optional]
|
267
|
-
**name__in** | **String**| name__in | [optional]
|
268
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
269
237
|
|
270
238
|
### Return type
|
271
239
|
|
@@ -342,7 +310,7 @@ Name | Type | Description | Notes
|
|
342
310
|
|
343
311
|
## update
|
344
312
|
|
345
|
-
> AsyncOperationResponse update(container_container_distribution_href, container_container_distribution
|
313
|
+
> AsyncOperationResponse update(container_container_distribution_href, container_container_distribution)
|
346
314
|
|
347
315
|
Update a container distribution
|
348
316
|
|
@@ -363,19 +331,10 @@ end
|
|
363
331
|
api_instance = PulpContainerClient::DistributionsContainerApi.new
|
364
332
|
container_container_distribution_href = 'container_container_distribution_href_example' # String |
|
365
333
|
container_container_distribution = PulpContainerClient::ContainerContainerDistribution.new # ContainerContainerDistribution |
|
366
|
-
opts = {
|
367
|
-
base_path: 'base_path_example', # String | base_path
|
368
|
-
base_path__contains: 'base_path__contains_example', # String | base_path__contains
|
369
|
-
base_path__icontains: 'base_path__icontains_example', # String | base_path__icontains
|
370
|
-
base_path__in: 'base_path__in_example', # String | base_path__in
|
371
|
-
name: 'name_example', # String | name
|
372
|
-
name__in: 'name__in_example', # String | name__in
|
373
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
374
|
-
}
|
375
334
|
|
376
335
|
begin
|
377
336
|
#Update a container distribution
|
378
|
-
result = api_instance.update(container_container_distribution_href, container_container_distribution
|
337
|
+
result = api_instance.update(container_container_distribution_href, container_container_distribution)
|
379
338
|
p result
|
380
339
|
rescue PulpContainerClient::ApiError => e
|
381
340
|
puts "Exception when calling DistributionsContainerApi->update: #{e}"
|
@@ -389,13 +348,6 @@ Name | Type | Description | Notes
|
|
389
348
|
------------- | ------------- | ------------- | -------------
|
390
349
|
**container_container_distribution_href** | **String**| |
|
391
350
|
**container_container_distribution** | [**ContainerContainerDistribution**](ContainerContainerDistribution.md)| |
|
392
|
-
**base_path** | **String**| base_path | [optional]
|
393
|
-
**base_path__contains** | **String**| base_path__contains | [optional]
|
394
|
-
**base_path__icontains** | **String**| base_path__icontains | [optional]
|
395
|
-
**base_path__in** | **String**| base_path__in | [optional]
|
396
|
-
**name** | **String**| name | [optional]
|
397
|
-
**name__in** | **String**| name__in | [optional]
|
398
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
399
351
|
|
400
352
|
### Return type
|
401
353
|
|
@@ -4,22 +4,22 @@
|
|
4
4
|
|
5
5
|
Name | Type | Description | Notes
|
6
6
|
------------ | ------------- | ------------- | -------------
|
7
|
+
**content_guard** | **String** | An optional content-guard. If none is specified, a default one will be used. | [optional]
|
7
8
|
**repository** | **String** | The latest RepositoryVersion for this Repository will be served. | [optional]
|
8
|
-
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
9
9
|
**base_path** | **String** | The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\") | [optional]
|
10
10
|
**name** | **String** | A unique name. Ex, `rawhide` and `stable`. | [optional]
|
11
|
-
**
|
11
|
+
**repository_version** | **String** | RepositoryVersion to be served | [optional]
|
12
12
|
|
13
13
|
## Code Sample
|
14
14
|
|
15
15
|
```ruby
|
16
16
|
require 'PulpContainerClient'
|
17
17
|
|
18
|
-
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(
|
19
|
-
|
18
|
+
instance = PulpContainerClient::PatchedcontainerContainerDistribution.new(content_guard: null,
|
19
|
+
repository: null,
|
20
20
|
base_path: null,
|
21
21
|
name: null,
|
22
|
-
|
22
|
+
repository_version: null)
|
23
23
|
```
|
24
24
|
|
25
25
|
|
data/docs/RemotesContainerApi.md
CHANGED
@@ -68,7 +68,7 @@ Name | Type | Description | Notes
|
|
68
68
|
|
69
69
|
## delete
|
70
70
|
|
71
|
-
> AsyncOperationResponse delete(container_container_remote_href
|
71
|
+
> AsyncOperationResponse delete(container_container_remote_href)
|
72
72
|
|
73
73
|
Delete a container remote
|
74
74
|
|
@@ -88,21 +88,10 @@ end
|
|
88
88
|
|
89
89
|
api_instance = PulpContainerClient::RemotesContainerApi.new
|
90
90
|
container_container_remote_href = 'container_container_remote_href_example' # String |
|
91
|
-
opts = {
|
92
|
-
name: 'name_example', # String | name
|
93
|
-
name__in: 'name__in_example', # String | name__in
|
94
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
95
|
-
pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
|
96
|
-
pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
|
97
|
-
pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
|
98
|
-
pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
|
99
|
-
pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
|
100
|
-
pulp_last_updated__range: 'pulp_last_updated__range_example' # String | pulp_last_updated__range
|
101
|
-
}
|
102
91
|
|
103
92
|
begin
|
104
93
|
#Delete a container remote
|
105
|
-
result = api_instance.delete(container_container_remote_href
|
94
|
+
result = api_instance.delete(container_container_remote_href)
|
106
95
|
p result
|
107
96
|
rescue PulpContainerClient::ApiError => e
|
108
97
|
puts "Exception when calling RemotesContainerApi->delete: #{e}"
|
@@ -115,15 +104,6 @@ end
|
|
115
104
|
Name | Type | Description | Notes
|
116
105
|
------------- | ------------- | ------------- | -------------
|
117
106
|
**container_container_remote_href** | **String**| |
|
118
|
-
**name** | **String**| name | [optional]
|
119
|
-
**name__in** | **String**| name__in | [optional]
|
120
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
121
|
-
**pulp_last_updated** | **String**| pulp_last_updated | [optional]
|
122
|
-
**pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
|
123
|
-
**pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
|
124
|
-
**pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
|
125
|
-
**pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
|
126
|
-
**pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
|
127
107
|
|
128
108
|
### Return type
|
129
109
|
|
@@ -220,7 +200,7 @@ Name | Type | Description | Notes
|
|
220
200
|
|
221
201
|
## partial_update
|
222
202
|
|
223
|
-
> AsyncOperationResponse partial_update(container_container_remote_href, patchedcontainer_container_remote
|
203
|
+
> AsyncOperationResponse partial_update(container_container_remote_href, patchedcontainer_container_remote)
|
224
204
|
|
225
205
|
Update a container remote
|
226
206
|
|
@@ -241,21 +221,10 @@ end
|
|
241
221
|
api_instance = PulpContainerClient::RemotesContainerApi.new
|
242
222
|
container_container_remote_href = 'container_container_remote_href_example' # String |
|
243
223
|
patchedcontainer_container_remote = PulpContainerClient::PatchedcontainerContainerRemote.new # PatchedcontainerContainerRemote |
|
244
|
-
opts = {
|
245
|
-
name: 'name_example', # String | name
|
246
|
-
name__in: 'name__in_example', # String | name__in
|
247
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
248
|
-
pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
|
249
|
-
pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
|
250
|
-
pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
|
251
|
-
pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
|
252
|
-
pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
|
253
|
-
pulp_last_updated__range: 'pulp_last_updated__range_example' # String | pulp_last_updated__range
|
254
|
-
}
|
255
224
|
|
256
225
|
begin
|
257
226
|
#Update a container remote
|
258
|
-
result = api_instance.partial_update(container_container_remote_href, patchedcontainer_container_remote
|
227
|
+
result = api_instance.partial_update(container_container_remote_href, patchedcontainer_container_remote)
|
259
228
|
p result
|
260
229
|
rescue PulpContainerClient::ApiError => e
|
261
230
|
puts "Exception when calling RemotesContainerApi->partial_update: #{e}"
|
@@ -269,15 +238,6 @@ Name | Type | Description | Notes
|
|
269
238
|
------------- | ------------- | ------------- | -------------
|
270
239
|
**container_container_remote_href** | **String**| |
|
271
240
|
**patchedcontainer_container_remote** | [**PatchedcontainerContainerRemote**](PatchedcontainerContainerRemote.md)| |
|
272
|
-
**name** | **String**| name | [optional]
|
273
|
-
**name__in** | **String**| name__in | [optional]
|
274
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
275
|
-
**pulp_last_updated** | **String**| pulp_last_updated | [optional]
|
276
|
-
**pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
|
277
|
-
**pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
|
278
|
-
**pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
|
279
|
-
**pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
|
280
|
-
**pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
|
281
241
|
|
282
242
|
### Return type
|
283
243
|
|
@@ -354,7 +314,7 @@ Name | Type | Description | Notes
|
|
354
314
|
|
355
315
|
## update
|
356
316
|
|
357
|
-
> AsyncOperationResponse update(container_container_remote_href, container_container_remote
|
317
|
+
> AsyncOperationResponse update(container_container_remote_href, container_container_remote)
|
358
318
|
|
359
319
|
Update a container remote
|
360
320
|
|
@@ -375,21 +335,10 @@ end
|
|
375
335
|
api_instance = PulpContainerClient::RemotesContainerApi.new
|
376
336
|
container_container_remote_href = 'container_container_remote_href_example' # String |
|
377
337
|
container_container_remote = PulpContainerClient::ContainerContainerRemote.new # ContainerContainerRemote |
|
378
|
-
opts = {
|
379
|
-
name: 'name_example', # String | name
|
380
|
-
name__in: 'name__in_example', # String | name__in
|
381
|
-
ordering: 'ordering_example', # String | Which field to use when ordering the results.
|
382
|
-
pulp_last_updated: 'pulp_last_updated_example', # String | pulp_last_updated
|
383
|
-
pulp_last_updated__gt: 'pulp_last_updated__gt_example', # String | pulp_last_updated__gt
|
384
|
-
pulp_last_updated__gte: 'pulp_last_updated__gte_example', # String | pulp_last_updated__gte
|
385
|
-
pulp_last_updated__lt: 'pulp_last_updated__lt_example', # String | pulp_last_updated__lt
|
386
|
-
pulp_last_updated__lte: 'pulp_last_updated__lte_example', # String | pulp_last_updated__lte
|
387
|
-
pulp_last_updated__range: 'pulp_last_updated__range_example' # String | pulp_last_updated__range
|
388
|
-
}
|
389
338
|
|
390
339
|
begin
|
391
340
|
#Update a container remote
|
392
|
-
result = api_instance.update(container_container_remote_href, container_container_remote
|
341
|
+
result = api_instance.update(container_container_remote_href, container_container_remote)
|
393
342
|
p result
|
394
343
|
rescue PulpContainerClient::ApiError => e
|
395
344
|
puts "Exception when calling RemotesContainerApi->update: #{e}"
|
@@ -403,15 +352,6 @@ Name | Type | Description | Notes
|
|
403
352
|
------------- | ------------- | ------------- | -------------
|
404
353
|
**container_container_remote_href** | **String**| |
|
405
354
|
**container_container_remote** | [**ContainerContainerRemote**](ContainerContainerRemote.md)| |
|
406
|
-
**name** | **String**| name | [optional]
|
407
|
-
**name__in** | **String**| name__in | [optional]
|
408
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
409
|
-
**pulp_last_updated** | **String**| pulp_last_updated | [optional]
|
410
|
-
**pulp_last_updated__gt** | **String**| pulp_last_updated__gt | [optional]
|
411
|
-
**pulp_last_updated__gte** | **String**| pulp_last_updated__gte | [optional]
|
412
|
-
**pulp_last_updated__lt** | **String**| pulp_last_updated__lt | [optional]
|
413
|
-
**pulp_last_updated__lte** | **String**| pulp_last_updated__lte | [optional]
|
414
|
-
**pulp_last_updated__range** | **String**| pulp_last_updated__range | [optional]
|
415
355
|
|
416
356
|
### Return type
|
417
357
|
|
@@ -304,7 +304,7 @@ Name | Type | Description | Notes
|
|
304
304
|
|
305
305
|
## delete
|
306
306
|
|
307
|
-
> AsyncOperationResponse delete(container_container_repository_href
|
307
|
+
> AsyncOperationResponse delete(container_container_repository_href)
|
308
308
|
|
309
309
|
Delete a container repository
|
310
310
|
|
@@ -324,15 +324,10 @@ end
|
|
324
324
|
|
325
325
|
api_instance = PulpContainerClient::RepositoriesContainerApi.new
|
326
326
|
container_container_repository_href = 'container_container_repository_href_example' # String |
|
327
|
-
opts = {
|
328
|
-
name: 'name_example', # String | name
|
329
|
-
name__in: 'name__in_example', # String | name__in
|
330
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
331
|
-
}
|
332
327
|
|
333
328
|
begin
|
334
329
|
#Delete a container repository
|
335
|
-
result = api_instance.delete(container_container_repository_href
|
330
|
+
result = api_instance.delete(container_container_repository_href)
|
336
331
|
p result
|
337
332
|
rescue PulpContainerClient::ApiError => e
|
338
333
|
puts "Exception when calling RepositoriesContainerApi->delete: #{e}"
|
@@ -345,9 +340,6 @@ end
|
|
345
340
|
Name | Type | Description | Notes
|
346
341
|
------------- | ------------- | ------------- | -------------
|
347
342
|
**container_container_repository_href** | **String**| |
|
348
|
-
**name** | **String**| name | [optional]
|
349
|
-
**name__in** | **String**| name__in | [optional]
|
350
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
351
343
|
|
352
344
|
### Return type
|
353
345
|
|
@@ -432,7 +424,7 @@ Name | Type | Description | Notes
|
|
432
424
|
|
433
425
|
## partial_update
|
434
426
|
|
435
|
-
> AsyncOperationResponse partial_update(container_container_repository_href, patchedcontainer_container_repository
|
427
|
+
> AsyncOperationResponse partial_update(container_container_repository_href, patchedcontainer_container_repository)
|
436
428
|
|
437
429
|
Update a container repository
|
438
430
|
|
@@ -453,15 +445,10 @@ end
|
|
453
445
|
api_instance = PulpContainerClient::RepositoriesContainerApi.new
|
454
446
|
container_container_repository_href = 'container_container_repository_href_example' # String |
|
455
447
|
patchedcontainer_container_repository = PulpContainerClient::PatchedcontainerContainerRepository.new # PatchedcontainerContainerRepository |
|
456
|
-
opts = {
|
457
|
-
name: 'name_example', # String | name
|
458
|
-
name__in: 'name__in_example', # String | name__in
|
459
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
460
|
-
}
|
461
448
|
|
462
449
|
begin
|
463
450
|
#Update a container repository
|
464
|
-
result = api_instance.partial_update(container_container_repository_href, patchedcontainer_container_repository
|
451
|
+
result = api_instance.partial_update(container_container_repository_href, patchedcontainer_container_repository)
|
465
452
|
p result
|
466
453
|
rescue PulpContainerClient::ApiError => e
|
467
454
|
puts "Exception when calling RepositoriesContainerApi->partial_update: #{e}"
|
@@ -475,9 +462,6 @@ Name | Type | Description | Notes
|
|
475
462
|
------------- | ------------- | ------------- | -------------
|
476
463
|
**container_container_repository_href** | **String**| |
|
477
464
|
**patchedcontainer_container_repository** | [**PatchedcontainerContainerRepository**](PatchedcontainerContainerRepository.md)| |
|
478
|
-
**name** | **String**| name | [optional]
|
479
|
-
**name__in** | **String**| name__in | [optional]
|
480
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
481
465
|
|
482
466
|
### Return type
|
483
467
|
|
@@ -774,7 +758,7 @@ Name | Type | Description | Notes
|
|
774
758
|
|
775
759
|
## update
|
776
760
|
|
777
|
-
> AsyncOperationResponse update(container_container_repository_href, container_container_repository
|
761
|
+
> AsyncOperationResponse update(container_container_repository_href, container_container_repository)
|
778
762
|
|
779
763
|
Update a container repository
|
780
764
|
|
@@ -795,15 +779,10 @@ end
|
|
795
779
|
api_instance = PulpContainerClient::RepositoriesContainerApi.new
|
796
780
|
container_container_repository_href = 'container_container_repository_href_example' # String |
|
797
781
|
container_container_repository = PulpContainerClient::ContainerContainerRepository.new # ContainerContainerRepository |
|
798
|
-
opts = {
|
799
|
-
name: 'name_example', # String | name
|
800
|
-
name__in: 'name__in_example', # String | name__in
|
801
|
-
ordering: 'ordering_example' # String | Which field to use when ordering the results.
|
802
|
-
}
|
803
782
|
|
804
783
|
begin
|
805
784
|
#Update a container repository
|
806
|
-
result = api_instance.update(container_container_repository_href, container_container_repository
|
785
|
+
result = api_instance.update(container_container_repository_href, container_container_repository)
|
807
786
|
p result
|
808
787
|
rescue PulpContainerClient::ApiError => e
|
809
788
|
puts "Exception when calling RepositoriesContainerApi->update: #{e}"
|
@@ -817,9 +796,6 @@ Name | Type | Description | Notes
|
|
817
796
|
------------- | ------------- | ------------- | -------------
|
818
797
|
**container_container_repository_href** | **String**| |
|
819
798
|
**container_container_repository** | [**ContainerContainerRepository**](ContainerContainerRepository.md)| |
|
820
|
-
**name** | **String**| name | [optional]
|
821
|
-
**name__in** | **String**| name__in | [optional]
|
822
|
-
**ordering** | **String**| Which field to use when ordering the results. | [optional]
|
823
799
|
|
824
800
|
### Return type
|
825
801
|
|