pulp_container_client 2.20.6 → 2.20.7
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 +7 -6
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPullThroughDistribution.md +5 -5
- data/docs/ContainerContainerPullThroughDistributionResponse.md +9 -9
- data/docs/ContainerContainerPullThroughRemote.md +1 -1
- data/docs/ContainerContainerPullThroughRemoteResponse.md +1 -1
- data/docs/ContainerContainerPushRepository.md +7 -7
- data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
- data/docs/ContainerContainerRemote.md +1 -1
- data/docs/ContainerContainerRemoteResponse.md +1 -1
- data/docs/ContentBlobsApi.md +4 -0
- data/docs/ContentManifestsApi.md +4 -0
- data/docs/ContentSignaturesApi.md +4 -0
- data/docs/ContentTagsApi.md +4 -0
- data/docs/DistributionsContainerApi.md +56 -16
- data/docs/DistributionsPullThroughApi.md +56 -16
- data/docs/OCIBuildImage.md +1 -1
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPullThroughRemote.md +1 -1
- data/docs/PatchedcontainerContainerPushRepository.md +7 -7
- data/docs/PatchedcontainerContainerRemote.md +1 -1
- data/docs/{Policy762Enum.md → Policy692Enum.md} +2 -2
- data/docs/{Policy8e2Enum.md → Policy7e0Enum.md} +2 -2
- data/docs/PulpContainerNamespacesApi.md +32 -8
- data/docs/RemotesContainerApi.md +56 -16
- data/docs/RemotesPullThroughApi.md +56 -16
- data/docs/RepositoriesContainerApi.md +108 -34
- data/docs/RepositoriesContainerPushApi.md +62 -18
- data/docs/RepositoriesContainerPushVersionsApi.md +16 -4
- data/docs/RepositoriesContainerVersionsApi.md +16 -4
- data/docs/TokenApi.md +13 -3
- data/lib/pulp_container_client/api/content_blobs_api.rb +6 -0
- data/lib/pulp_container_client/api/content_manifests_api.rb +6 -0
- data/lib/pulp_container_client/api/content_signatures_api.rb +6 -0
- data/lib/pulp_container_client/api/content_tags_api.rb +6 -0
- data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
- data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
- data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +65 -2
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +12 -0
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +12 -0
- data/lib/pulp_container_client/api/token_api.rb +9 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +42 -42
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +42 -42
- data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +1 -1
- data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +1 -1
- data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -44
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +49 -49
- data/lib/pulp_container_client/models/container_container_remote.rb +1 -1
- data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
- data/lib/pulp_container_client/models/oci_build_image.rb +1 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +22 -22
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +22 -22
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +1 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -44
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +1 -1
- data/lib/pulp_container_client/models/{policy762_enum.rb → policy692_enum.rb} +3 -3
- data/lib/pulp_container_client/models/{policy8e2_enum.rb → policy7e0_enum.rb} +3 -3
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +2 -2
- data/spec/api/content_blobs_api_spec.rb +2 -0
- data/spec/api/content_manifests_api_spec.rb +2 -0
- data/spec/api/content_signatures_api_spec.rb +2 -0
- data/spec/api/content_tags_api_spec.rb +2 -0
- data/spec/api/distributions_container_api_spec.rb +12 -0
- data/spec/api/distributions_pull_through_api_spec.rb +12 -0
- data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
- data/spec/api/remotes_container_api_spec.rb +12 -0
- data/spec/api/remotes_pull_through_api_spec.rb +12 -0
- data/spec/api/repositories_container_api_spec.rb +22 -1
- data/spec/api/repositories_container_push_api_spec.rb +13 -0
- data/spec/api/repositories_container_push_versions_api_spec.rb +4 -0
- data/spec/api/repositories_container_versions_api_spec.rb +4 -0
- data/spec/api/token_api_spec.rb +3 -0
- data/spec/models/container_container_distribution_response_spec.rb +8 -8
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- data/spec/models/{policy762_enum_spec.rb → policy692_enum_spec.rb} +6 -6
- data/spec/models/{policy8e2_enum_spec.rb → policy7e0_enum_spec.rb} +6 -6
- metadata +67 -67
|
@@ -21,7 +21,7 @@ Method | HTTP request | Description
|
|
|
21
21
|
|
|
22
22
|
## add_role
|
|
23
23
|
|
|
24
|
-
> NestedRoleResponse add_role(container_container_pull_through_remote_href, nested_role)
|
|
24
|
+
> NestedRoleResponse add_role(container_container_pull_through_remote_href, nested_role, opts)
|
|
25
25
|
|
|
26
26
|
Add a role
|
|
27
27
|
|
|
@@ -42,10 +42,13 @@ end
|
|
|
42
42
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
43
43
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
44
44
|
nested_role = PulpContainerClient::NestedRole.new # NestedRole |
|
|
45
|
+
opts = {
|
|
46
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
47
|
+
}
|
|
45
48
|
|
|
46
49
|
begin
|
|
47
50
|
#Add a role
|
|
48
|
-
result = api_instance.add_role(container_container_pull_through_remote_href, nested_role)
|
|
51
|
+
result = api_instance.add_role(container_container_pull_through_remote_href, nested_role, opts)
|
|
49
52
|
p result
|
|
50
53
|
rescue PulpContainerClient::ApiError => e
|
|
51
54
|
puts "Exception when calling RemotesPullThroughApi->add_role: #{e}"
|
|
@@ -59,6 +62,7 @@ Name | Type | Description | Notes
|
|
|
59
62
|
------------- | ------------- | ------------- | -------------
|
|
60
63
|
**container_container_pull_through_remote_href** | **String**| |
|
|
61
64
|
**nested_role** | [**NestedRole**](NestedRole.md)| |
|
|
65
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
62
66
|
|
|
63
67
|
### Return type
|
|
64
68
|
|
|
@@ -76,7 +80,7 @@ Name | Type | Description | Notes
|
|
|
76
80
|
|
|
77
81
|
## create
|
|
78
82
|
|
|
79
|
-
> ContainerContainerPullThroughRemoteResponse create(container_container_pull_through_remote)
|
|
83
|
+
> ContainerContainerPullThroughRemoteResponse create(container_container_pull_through_remote, opts)
|
|
80
84
|
|
|
81
85
|
Create a container pull through remote
|
|
82
86
|
|
|
@@ -96,10 +100,13 @@ end
|
|
|
96
100
|
|
|
97
101
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
98
102
|
container_container_pull_through_remote = PulpContainerClient::ContainerContainerPullThroughRemote.new # ContainerContainerPullThroughRemote |
|
|
103
|
+
opts = {
|
|
104
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
105
|
+
}
|
|
99
106
|
|
|
100
107
|
begin
|
|
101
108
|
#Create a container pull through remote
|
|
102
|
-
result = api_instance.create(container_container_pull_through_remote)
|
|
109
|
+
result = api_instance.create(container_container_pull_through_remote, opts)
|
|
103
110
|
p result
|
|
104
111
|
rescue PulpContainerClient::ApiError => e
|
|
105
112
|
puts "Exception when calling RemotesPullThroughApi->create: #{e}"
|
|
@@ -112,6 +119,7 @@ end
|
|
|
112
119
|
Name | Type | Description | Notes
|
|
113
120
|
------------- | ------------- | ------------- | -------------
|
|
114
121
|
**container_container_pull_through_remote** | [**ContainerContainerPullThroughRemote**](ContainerContainerPullThroughRemote.md)| |
|
|
122
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
115
123
|
|
|
116
124
|
### Return type
|
|
117
125
|
|
|
@@ -129,7 +137,7 @@ Name | Type | Description | Notes
|
|
|
129
137
|
|
|
130
138
|
## delete
|
|
131
139
|
|
|
132
|
-
> AsyncOperationResponse delete(container_container_pull_through_remote_href)
|
|
140
|
+
> AsyncOperationResponse delete(container_container_pull_through_remote_href, opts)
|
|
133
141
|
|
|
134
142
|
Delete a container pull through remote
|
|
135
143
|
|
|
@@ -149,10 +157,13 @@ end
|
|
|
149
157
|
|
|
150
158
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
151
159
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
160
|
+
opts = {
|
|
161
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
162
|
+
}
|
|
152
163
|
|
|
153
164
|
begin
|
|
154
165
|
#Delete a container pull through remote
|
|
155
|
-
result = api_instance.delete(container_container_pull_through_remote_href)
|
|
166
|
+
result = api_instance.delete(container_container_pull_through_remote_href, opts)
|
|
156
167
|
p result
|
|
157
168
|
rescue PulpContainerClient::ApiError => e
|
|
158
169
|
puts "Exception when calling RemotesPullThroughApi->delete: #{e}"
|
|
@@ -165,6 +176,7 @@ end
|
|
|
165
176
|
Name | Type | Description | Notes
|
|
166
177
|
------------- | ------------- | ------------- | -------------
|
|
167
178
|
**container_container_pull_through_remote_href** | **String**| |
|
|
179
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
168
180
|
|
|
169
181
|
### Return type
|
|
170
182
|
|
|
@@ -202,6 +214,7 @@ end
|
|
|
202
214
|
|
|
203
215
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
204
216
|
opts = {
|
|
217
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
205
218
|
limit: 56, # Integer | Number of results to return per page.
|
|
206
219
|
name: 'name_example', # String | Filter results where name matches value
|
|
207
220
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
@@ -242,6 +255,7 @@ end
|
|
|
242
255
|
|
|
243
256
|
Name | Type | Description | Notes
|
|
244
257
|
------------- | ------------- | ------------- | -------------
|
|
258
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
245
259
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
246
260
|
**name** | **String**| Filter results where name matches value | [optional]
|
|
247
261
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
@@ -304,6 +318,7 @@ end
|
|
|
304
318
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
305
319
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
306
320
|
opts = {
|
|
321
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
307
322
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
308
323
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
309
324
|
}
|
|
@@ -323,6 +338,7 @@ end
|
|
|
323
338
|
Name | Type | Description | Notes
|
|
324
339
|
------------- | ------------- | ------------- | -------------
|
|
325
340
|
**container_container_pull_through_remote_href** | **String**| |
|
|
341
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
326
342
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
327
343
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
328
344
|
|
|
@@ -363,6 +379,7 @@ end
|
|
|
363
379
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
364
380
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
365
381
|
opts = {
|
|
382
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
366
383
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
367
384
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
368
385
|
}
|
|
@@ -382,6 +399,7 @@ end
|
|
|
382
399
|
Name | Type | Description | Notes
|
|
383
400
|
------------- | ------------- | ------------- | -------------
|
|
384
401
|
**container_container_pull_through_remote_href** | **String**| |
|
|
402
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
385
403
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
386
404
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
387
405
|
|
|
@@ -401,7 +419,7 @@ Name | Type | Description | Notes
|
|
|
401
419
|
|
|
402
420
|
## partial_update
|
|
403
421
|
|
|
404
|
-
> AsyncOperationResponse partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote)
|
|
422
|
+
> AsyncOperationResponse partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
|
|
405
423
|
|
|
406
424
|
Update a container pull through remote
|
|
407
425
|
|
|
@@ -422,10 +440,13 @@ end
|
|
|
422
440
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
423
441
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
424
442
|
patchedcontainer_container_pull_through_remote = PulpContainerClient::PatchedcontainerContainerPullThroughRemote.new # PatchedcontainerContainerPullThroughRemote |
|
|
443
|
+
opts = {
|
|
444
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
445
|
+
}
|
|
425
446
|
|
|
426
447
|
begin
|
|
427
448
|
#Update a container pull through remote
|
|
428
|
-
result = api_instance.partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote)
|
|
449
|
+
result = api_instance.partial_update(container_container_pull_through_remote_href, patchedcontainer_container_pull_through_remote, opts)
|
|
429
450
|
p result
|
|
430
451
|
rescue PulpContainerClient::ApiError => e
|
|
431
452
|
puts "Exception when calling RemotesPullThroughApi->partial_update: #{e}"
|
|
@@ -439,6 +460,7 @@ Name | Type | Description | Notes
|
|
|
439
460
|
------------- | ------------- | ------------- | -------------
|
|
440
461
|
**container_container_pull_through_remote_href** | **String**| |
|
|
441
462
|
**patchedcontainer_container_pull_through_remote** | [**PatchedcontainerContainerPullThroughRemote**](PatchedcontainerContainerPullThroughRemote.md)| |
|
|
463
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
442
464
|
|
|
443
465
|
### Return type
|
|
444
466
|
|
|
@@ -477,6 +499,7 @@ end
|
|
|
477
499
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
478
500
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
479
501
|
opts = {
|
|
502
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
480
503
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
481
504
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
482
505
|
}
|
|
@@ -496,6 +519,7 @@ end
|
|
|
496
519
|
Name | Type | Description | Notes
|
|
497
520
|
------------- | ------------- | ------------- | -------------
|
|
498
521
|
**container_container_pull_through_remote_href** | **String**| |
|
|
522
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
499
523
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
500
524
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
501
525
|
|
|
@@ -515,7 +539,7 @@ Name | Type | Description | Notes
|
|
|
515
539
|
|
|
516
540
|
## remove_role
|
|
517
541
|
|
|
518
|
-
> NestedRoleResponse remove_role(container_container_pull_through_remote_href, nested_role)
|
|
542
|
+
> NestedRoleResponse remove_role(container_container_pull_through_remote_href, nested_role, opts)
|
|
519
543
|
|
|
520
544
|
Remove a role
|
|
521
545
|
|
|
@@ -536,10 +560,13 @@ end
|
|
|
536
560
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
537
561
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
538
562
|
nested_role = PulpContainerClient::NestedRole.new # NestedRole |
|
|
563
|
+
opts = {
|
|
564
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
565
|
+
}
|
|
539
566
|
|
|
540
567
|
begin
|
|
541
568
|
#Remove a role
|
|
542
|
-
result = api_instance.remove_role(container_container_pull_through_remote_href, nested_role)
|
|
569
|
+
result = api_instance.remove_role(container_container_pull_through_remote_href, nested_role, opts)
|
|
543
570
|
p result
|
|
544
571
|
rescue PulpContainerClient::ApiError => e
|
|
545
572
|
puts "Exception when calling RemotesPullThroughApi->remove_role: #{e}"
|
|
@@ -553,6 +580,7 @@ Name | Type | Description | Notes
|
|
|
553
580
|
------------- | ------------- | ------------- | -------------
|
|
554
581
|
**container_container_pull_through_remote_href** | **String**| |
|
|
555
582
|
**nested_role** | [**NestedRole**](NestedRole.md)| |
|
|
583
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
556
584
|
|
|
557
585
|
### Return type
|
|
558
586
|
|
|
@@ -570,7 +598,7 @@ Name | Type | Description | Notes
|
|
|
570
598
|
|
|
571
599
|
## set_label
|
|
572
600
|
|
|
573
|
-
> SetLabelResponse set_label(container_container_pull_through_remote_href, set_label)
|
|
601
|
+
> SetLabelResponse set_label(container_container_pull_through_remote_href, set_label, opts)
|
|
574
602
|
|
|
575
603
|
Set a label
|
|
576
604
|
|
|
@@ -591,10 +619,13 @@ end
|
|
|
591
619
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
592
620
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
593
621
|
set_label = PulpContainerClient::SetLabel.new # SetLabel |
|
|
622
|
+
opts = {
|
|
623
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
624
|
+
}
|
|
594
625
|
|
|
595
626
|
begin
|
|
596
627
|
#Set a label
|
|
597
|
-
result = api_instance.set_label(container_container_pull_through_remote_href, set_label)
|
|
628
|
+
result = api_instance.set_label(container_container_pull_through_remote_href, set_label, opts)
|
|
598
629
|
p result
|
|
599
630
|
rescue PulpContainerClient::ApiError => e
|
|
600
631
|
puts "Exception when calling RemotesPullThroughApi->set_label: #{e}"
|
|
@@ -608,6 +639,7 @@ Name | Type | Description | Notes
|
|
|
608
639
|
------------- | ------------- | ------------- | -------------
|
|
609
640
|
**container_container_pull_through_remote_href** | **String**| |
|
|
610
641
|
**set_label** | [**SetLabel**](SetLabel.md)| |
|
|
642
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
611
643
|
|
|
612
644
|
### Return type
|
|
613
645
|
|
|
@@ -625,7 +657,7 @@ Name | Type | Description | Notes
|
|
|
625
657
|
|
|
626
658
|
## unset_label
|
|
627
659
|
|
|
628
|
-
> UnsetLabelResponse unset_label(container_container_pull_through_remote_href, unset_label)
|
|
660
|
+
> UnsetLabelResponse unset_label(container_container_pull_through_remote_href, unset_label, opts)
|
|
629
661
|
|
|
630
662
|
Unset a label
|
|
631
663
|
|
|
@@ -646,10 +678,13 @@ end
|
|
|
646
678
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
647
679
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
648
680
|
unset_label = PulpContainerClient::UnsetLabel.new # UnsetLabel |
|
|
681
|
+
opts = {
|
|
682
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
683
|
+
}
|
|
649
684
|
|
|
650
685
|
begin
|
|
651
686
|
#Unset a label
|
|
652
|
-
result = api_instance.unset_label(container_container_pull_through_remote_href, unset_label)
|
|
687
|
+
result = api_instance.unset_label(container_container_pull_through_remote_href, unset_label, opts)
|
|
653
688
|
p result
|
|
654
689
|
rescue PulpContainerClient::ApiError => e
|
|
655
690
|
puts "Exception when calling RemotesPullThroughApi->unset_label: #{e}"
|
|
@@ -663,6 +698,7 @@ Name | Type | Description | Notes
|
|
|
663
698
|
------------- | ------------- | ------------- | -------------
|
|
664
699
|
**container_container_pull_through_remote_href** | **String**| |
|
|
665
700
|
**unset_label** | [**UnsetLabel**](UnsetLabel.md)| |
|
|
701
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
666
702
|
|
|
667
703
|
### Return type
|
|
668
704
|
|
|
@@ -680,7 +716,7 @@ Name | Type | Description | Notes
|
|
|
680
716
|
|
|
681
717
|
## update
|
|
682
718
|
|
|
683
|
-
> AsyncOperationResponse update(container_container_pull_through_remote_href, container_container_pull_through_remote)
|
|
719
|
+
> AsyncOperationResponse update(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
|
|
684
720
|
|
|
685
721
|
Update a container pull through remote
|
|
686
722
|
|
|
@@ -701,10 +737,13 @@ end
|
|
|
701
737
|
api_instance = PulpContainerClient::RemotesPullThroughApi.new
|
|
702
738
|
container_container_pull_through_remote_href = 'container_container_pull_through_remote_href_example' # String |
|
|
703
739
|
container_container_pull_through_remote = PulpContainerClient::ContainerContainerPullThroughRemote.new # ContainerContainerPullThroughRemote |
|
|
740
|
+
opts = {
|
|
741
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
742
|
+
}
|
|
704
743
|
|
|
705
744
|
begin
|
|
706
745
|
#Update a container pull through remote
|
|
707
|
-
result = api_instance.update(container_container_pull_through_remote_href, container_container_pull_through_remote)
|
|
746
|
+
result = api_instance.update(container_container_pull_through_remote_href, container_container_pull_through_remote, opts)
|
|
708
747
|
p result
|
|
709
748
|
rescue PulpContainerClient::ApiError => e
|
|
710
749
|
puts "Exception when calling RemotesPullThroughApi->update: #{e}"
|
|
@@ -718,6 +757,7 @@ Name | Type | Description | Notes
|
|
|
718
757
|
------------- | ------------- | ------------- | -------------
|
|
719
758
|
**container_container_pull_through_remote_href** | **String**| |
|
|
720
759
|
**container_container_pull_through_remote** | [**ContainerContainerPullThroughRemote**](ContainerContainerPullThroughRemote.md)| |
|
|
760
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
721
761
|
|
|
722
762
|
### Return type
|
|
723
763
|
|