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.
Files changed (94) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/docs/ContainerContainerDistribution.md +5 -5
  4. data/docs/ContainerContainerDistributionResponse.md +9 -9
  5. data/docs/ContainerContainerPullThroughDistribution.md +5 -5
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +9 -9
  7. data/docs/ContainerContainerPullThroughRemote.md +1 -1
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +1 -1
  9. data/docs/ContainerContainerPushRepository.md +7 -7
  10. data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
  11. data/docs/ContainerContainerRemote.md +1 -1
  12. data/docs/ContainerContainerRemoteResponse.md +1 -1
  13. data/docs/ContentBlobsApi.md +4 -0
  14. data/docs/ContentManifestsApi.md +4 -0
  15. data/docs/ContentSignaturesApi.md +4 -0
  16. data/docs/ContentTagsApi.md +4 -0
  17. data/docs/DistributionsContainerApi.md +56 -16
  18. data/docs/DistributionsPullThroughApi.md +56 -16
  19. data/docs/OCIBuildImage.md +1 -1
  20. data/docs/PatchedcontainerContainerDistribution.md +5 -5
  21. data/docs/PatchedcontainerContainerPullThroughDistribution.md +5 -5
  22. data/docs/PatchedcontainerContainerPullThroughRemote.md +1 -1
  23. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  24. data/docs/PatchedcontainerContainerRemote.md +1 -1
  25. data/docs/{Policy762Enum.md → Policy692Enum.md} +2 -2
  26. data/docs/{Policy8e2Enum.md → Policy7e0Enum.md} +2 -2
  27. data/docs/PulpContainerNamespacesApi.md +32 -8
  28. data/docs/RemotesContainerApi.md +56 -16
  29. data/docs/RemotesPullThroughApi.md +56 -16
  30. data/docs/RepositoriesContainerApi.md +108 -34
  31. data/docs/RepositoriesContainerPushApi.md +62 -18
  32. data/docs/RepositoriesContainerPushVersionsApi.md +16 -4
  33. data/docs/RepositoriesContainerVersionsApi.md +16 -4
  34. data/docs/TokenApi.md +13 -3
  35. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -0
  36. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -0
  37. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -0
  38. data/lib/pulp_container_client/api/content_tags_api.rb +6 -0
  39. data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
  40. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
  41. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
  42. data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
  43. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
  44. data/lib/pulp_container_client/api/repositories_container_api.rb +65 -2
  45. data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
  46. data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +12 -0
  47. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +12 -0
  48. data/lib/pulp_container_client/api/token_api.rb +9 -0
  49. data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
  50. data/lib/pulp_container_client/models/container_container_distribution_response.rb +42 -42
  51. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
  52. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +42 -42
  53. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +1 -1
  54. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +1 -1
  55. data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -44
  56. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +49 -49
  57. data/lib/pulp_container_client/models/container_container_remote.rb +1 -1
  58. data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
  59. data/lib/pulp_container_client/models/oci_build_image.rb +1 -1
  60. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +22 -22
  61. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +22 -22
  62. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +1 -1
  63. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -44
  64. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +1 -1
  65. data/lib/pulp_container_client/models/{policy762_enum.rb → policy692_enum.rb} +3 -3
  66. data/lib/pulp_container_client/models/{policy8e2_enum.rb → policy7e0_enum.rb} +3 -3
  67. data/lib/pulp_container_client/version.rb +1 -1
  68. data/lib/pulp_container_client.rb +2 -2
  69. data/spec/api/content_blobs_api_spec.rb +2 -0
  70. data/spec/api/content_manifests_api_spec.rb +2 -0
  71. data/spec/api/content_signatures_api_spec.rb +2 -0
  72. data/spec/api/content_tags_api_spec.rb +2 -0
  73. data/spec/api/distributions_container_api_spec.rb +12 -0
  74. data/spec/api/distributions_pull_through_api_spec.rb +12 -0
  75. data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
  76. data/spec/api/remotes_container_api_spec.rb +12 -0
  77. data/spec/api/remotes_pull_through_api_spec.rb +12 -0
  78. data/spec/api/repositories_container_api_spec.rb +22 -1
  79. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  80. data/spec/api/repositories_container_push_versions_api_spec.rb +4 -0
  81. data/spec/api/repositories_container_versions_api_spec.rb +4 -0
  82. data/spec/api/token_api_spec.rb +3 -0
  83. data/spec/models/container_container_distribution_response_spec.rb +8 -8
  84. data/spec/models/container_container_distribution_spec.rb +6 -6
  85. data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
  86. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  87. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  88. data/spec/models/container_container_push_repository_spec.rb +4 -4
  89. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  90. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  91. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  92. data/spec/models/{policy762_enum_spec.rb → policy692_enum_spec.rb} +6 -6
  93. data/spec/models/{policy8e2_enum_spec.rb → policy7e0_enum_spec.rb} +6 -6
  94. metadata +67 -67
@@ -22,7 +22,7 @@ Method | HTTP request | Description
22
22
 
23
23
  ## add_role
24
24
 
25
- > NestedRoleResponse add_role(container_container_push_repository_href, nested_role)
25
+ > NestedRoleResponse add_role(container_container_push_repository_href, nested_role, opts)
26
26
 
27
27
  Add a role
28
28
 
@@ -43,10 +43,13 @@ end
43
43
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
44
44
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
45
45
  nested_role = PulpContainerClient::NestedRole.new # NestedRole |
46
+ opts = {
47
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
48
+ }
46
49
 
47
50
  begin
48
51
  #Add a role
49
- result = api_instance.add_role(container_container_push_repository_href, nested_role)
52
+ result = api_instance.add_role(container_container_push_repository_href, nested_role, opts)
50
53
  p result
51
54
  rescue PulpContainerClient::ApiError => e
52
55
  puts "Exception when calling RepositoriesContainerPushApi->add_role: #{e}"
@@ -60,6 +63,7 @@ Name | Type | Description | Notes
60
63
  ------------- | ------------- | ------------- | -------------
61
64
  **container_container_push_repository_href** | **String**| |
62
65
  **nested_role** | [**NestedRole**](NestedRole.md)| |
66
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
63
67
 
64
68
  ### Return type
65
69
 
@@ -97,6 +101,7 @@ end
97
101
 
98
102
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
99
103
  opts = {
104
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
100
105
  latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF
101
106
  limit: 56, # Integer | Number of results to return per page.
102
107
  name: 'name_example', # String | Filter results where name matches value
@@ -142,6 +147,7 @@ end
142
147
 
143
148
  Name | Type | Description | Notes
144
149
  ------------- | ------------- | ------------- | -------------
150
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
145
151
  **latest_with_content** | **String**| Content Unit referenced by HREF | [optional]
146
152
  **limit** | **Integer**| Number of results to return per page. | [optional]
147
153
  **name** | **String**| Filter results where name matches value | [optional]
@@ -209,6 +215,7 @@ end
209
215
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
210
216
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
211
217
  opts = {
218
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
212
219
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
213
220
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
214
221
  }
@@ -228,6 +235,7 @@ end
228
235
  Name | Type | Description | Notes
229
236
  ------------- | ------------- | ------------- | -------------
230
237
  **container_container_push_repository_href** | **String**| |
238
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
231
239
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
232
240
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
233
241
 
@@ -268,6 +276,7 @@ end
268
276
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
269
277
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
270
278
  opts = {
279
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
271
280
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
272
281
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
273
282
  }
@@ -287,6 +296,7 @@ end
287
296
  Name | Type | Description | Notes
288
297
  ------------- | ------------- | ------------- | -------------
289
298
  **container_container_push_repository_href** | **String**| |
299
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
290
300
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
291
301
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
292
302
 
@@ -306,7 +316,7 @@ Name | Type | Description | Notes
306
316
 
307
317
  ## partial_update
308
318
 
309
- > AsyncOperationResponse partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository)
319
+ > AsyncOperationResponse partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
310
320
 
311
321
  Update a container push repository
312
322
 
@@ -327,10 +337,13 @@ end
327
337
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
328
338
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
329
339
  patchedcontainer_container_push_repository = PulpContainerClient::PatchedcontainerContainerPushRepository.new # PatchedcontainerContainerPushRepository |
340
+ opts = {
341
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
342
+ }
330
343
 
331
344
  begin
332
345
  #Update a container push repository
333
- result = api_instance.partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository)
346
+ result = api_instance.partial_update(container_container_push_repository_href, patchedcontainer_container_push_repository, opts)
334
347
  p result
335
348
  rescue PulpContainerClient::ApiError => e
336
349
  puts "Exception when calling RepositoriesContainerPushApi->partial_update: #{e}"
@@ -344,6 +357,7 @@ Name | Type | Description | Notes
344
357
  ------------- | ------------- | ------------- | -------------
345
358
  **container_container_push_repository_href** | **String**| |
346
359
  **patchedcontainer_container_push_repository** | [**PatchedcontainerContainerPushRepository**](PatchedcontainerContainerPushRepository.md)| |
360
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
347
361
 
348
362
  ### Return type
349
363
 
@@ -382,6 +396,7 @@ end
382
396
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
383
397
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
384
398
  opts = {
399
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
385
400
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
386
401
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
387
402
  }
@@ -401,6 +416,7 @@ end
401
416
  Name | Type | Description | Notes
402
417
  ------------- | ------------- | ------------- | -------------
403
418
  **container_container_push_repository_href** | **String**| |
419
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
404
420
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
405
421
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
406
422
 
@@ -420,7 +436,7 @@ Name | Type | Description | Notes
420
436
 
421
437
  ## remove_image
422
438
 
423
- > AsyncOperationResponse remove_image(container_container_push_repository_href, remove_image)
439
+ > AsyncOperationResponse remove_image(container_container_push_repository_href, remove_image, opts)
424
440
 
425
441
  Delete an image from a repository
426
442
 
@@ -441,10 +457,13 @@ end
441
457
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
442
458
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
443
459
  remove_image = PulpContainerClient::RemoveImage.new # RemoveImage |
460
+ opts = {
461
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
462
+ }
444
463
 
445
464
  begin
446
465
  #Delete an image from a repository
447
- result = api_instance.remove_image(container_container_push_repository_href, remove_image)
466
+ result = api_instance.remove_image(container_container_push_repository_href, remove_image, opts)
448
467
  p result
449
468
  rescue PulpContainerClient::ApiError => e
450
469
  puts "Exception when calling RepositoriesContainerPushApi->remove_image: #{e}"
@@ -458,6 +477,7 @@ Name | Type | Description | Notes
458
477
  ------------- | ------------- | ------------- | -------------
459
478
  **container_container_push_repository_href** | **String**| |
460
479
  **remove_image** | [**RemoveImage**](RemoveImage.md)| |
480
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
461
481
 
462
482
  ### Return type
463
483
 
@@ -475,7 +495,7 @@ Name | Type | Description | Notes
475
495
 
476
496
  ## remove_role
477
497
 
478
- > NestedRoleResponse remove_role(container_container_push_repository_href, nested_role)
498
+ > NestedRoleResponse remove_role(container_container_push_repository_href, nested_role, opts)
479
499
 
480
500
  Remove a role
481
501
 
@@ -496,10 +516,13 @@ end
496
516
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
497
517
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
498
518
  nested_role = PulpContainerClient::NestedRole.new # NestedRole |
519
+ opts = {
520
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
521
+ }
499
522
 
500
523
  begin
501
524
  #Remove a role
502
- result = api_instance.remove_role(container_container_push_repository_href, nested_role)
525
+ result = api_instance.remove_role(container_container_push_repository_href, nested_role, opts)
503
526
  p result
504
527
  rescue PulpContainerClient::ApiError => e
505
528
  puts "Exception when calling RepositoriesContainerPushApi->remove_role: #{e}"
@@ -513,6 +536,7 @@ Name | Type | Description | Notes
513
536
  ------------- | ------------- | ------------- | -------------
514
537
  **container_container_push_repository_href** | **String**| |
515
538
  **nested_role** | [**NestedRole**](NestedRole.md)| |
539
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
516
540
 
517
541
  ### Return type
518
542
 
@@ -530,7 +554,7 @@ Name | Type | Description | Notes
530
554
 
531
555
  ## remove_signatures
532
556
 
533
- > RemoveSignaturesResponse remove_signatures(container_container_push_repository_href, remove_signatures)
557
+ > RemoveSignaturesResponse remove_signatures(container_container_push_repository_href, remove_signatures, opts)
534
558
 
535
559
 
536
560
 
@@ -551,9 +575,12 @@ end
551
575
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
552
576
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
553
577
  remove_signatures = PulpContainerClient::RemoveSignatures.new # RemoveSignatures |
578
+ opts = {
579
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
580
+ }
554
581
 
555
582
  begin
556
- result = api_instance.remove_signatures(container_container_push_repository_href, remove_signatures)
583
+ result = api_instance.remove_signatures(container_container_push_repository_href, remove_signatures, opts)
557
584
  p result
558
585
  rescue PulpContainerClient::ApiError => e
559
586
  puts "Exception when calling RepositoriesContainerPushApi->remove_signatures: #{e}"
@@ -567,6 +594,7 @@ Name | Type | Description | Notes
567
594
  ------------- | ------------- | ------------- | -------------
568
595
  **container_container_push_repository_href** | **String**| |
569
596
  **remove_signatures** | [**RemoveSignatures**](RemoveSignatures.md)| |
597
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
570
598
 
571
599
  ### Return type
572
600
 
@@ -584,7 +612,7 @@ Name | Type | Description | Notes
584
612
 
585
613
  ## sign
586
614
 
587
- > AsyncOperationResponse sign(container_container_push_repository_href, repository_sign)
615
+ > AsyncOperationResponse sign(container_container_push_repository_href, repository_sign, opts)
588
616
 
589
617
  Sign images in the repo
590
618
 
@@ -605,10 +633,13 @@ end
605
633
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
606
634
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
607
635
  repository_sign = PulpContainerClient::RepositorySign.new # RepositorySign |
636
+ opts = {
637
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
638
+ }
608
639
 
609
640
  begin
610
641
  #Sign images in the repo
611
- result = api_instance.sign(container_container_push_repository_href, repository_sign)
642
+ result = api_instance.sign(container_container_push_repository_href, repository_sign, opts)
612
643
  p result
613
644
  rescue PulpContainerClient::ApiError => e
614
645
  puts "Exception when calling RepositoriesContainerPushApi->sign: #{e}"
@@ -622,6 +653,7 @@ Name | Type | Description | Notes
622
653
  ------------- | ------------- | ------------- | -------------
623
654
  **container_container_push_repository_href** | **String**| |
624
655
  **repository_sign** | [**RepositorySign**](RepositorySign.md)| |
656
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
625
657
 
626
658
  ### Return type
627
659
 
@@ -639,7 +671,7 @@ Name | Type | Description | Notes
639
671
 
640
672
  ## tag
641
673
 
642
- > AsyncOperationResponse tag(container_container_push_repository_href, tag_image)
674
+ > AsyncOperationResponse tag(container_container_push_repository_href, tag_image, opts)
643
675
 
644
676
  Create a Tag
645
677
 
@@ -660,10 +692,13 @@ end
660
692
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
661
693
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
662
694
  tag_image = PulpContainerClient::TagImage.new # TagImage |
695
+ opts = {
696
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
697
+ }
663
698
 
664
699
  begin
665
700
  #Create a Tag
666
- result = api_instance.tag(container_container_push_repository_href, tag_image)
701
+ result = api_instance.tag(container_container_push_repository_href, tag_image, opts)
667
702
  p result
668
703
  rescue PulpContainerClient::ApiError => e
669
704
  puts "Exception when calling RepositoriesContainerPushApi->tag: #{e}"
@@ -677,6 +712,7 @@ Name | Type | Description | Notes
677
712
  ------------- | ------------- | ------------- | -------------
678
713
  **container_container_push_repository_href** | **String**| |
679
714
  **tag_image** | [**TagImage**](TagImage.md)| |
715
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
680
716
 
681
717
  ### Return type
682
718
 
@@ -694,7 +730,7 @@ Name | Type | Description | Notes
694
730
 
695
731
  ## untag
696
732
 
697
- > AsyncOperationResponse untag(container_container_push_repository_href, un_tag_image)
733
+ > AsyncOperationResponse untag(container_container_push_repository_href, un_tag_image, opts)
698
734
 
699
735
  Delete a tag
700
736
 
@@ -715,10 +751,13 @@ end
715
751
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
716
752
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
717
753
  un_tag_image = PulpContainerClient::UnTagImage.new # UnTagImage |
754
+ opts = {
755
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
756
+ }
718
757
 
719
758
  begin
720
759
  #Delete a tag
721
- result = api_instance.untag(container_container_push_repository_href, un_tag_image)
760
+ result = api_instance.untag(container_container_push_repository_href, un_tag_image, opts)
722
761
  p result
723
762
  rescue PulpContainerClient::ApiError => e
724
763
  puts "Exception when calling RepositoriesContainerPushApi->untag: #{e}"
@@ -732,6 +771,7 @@ Name | Type | Description | Notes
732
771
  ------------- | ------------- | ------------- | -------------
733
772
  **container_container_push_repository_href** | **String**| |
734
773
  **un_tag_image** | [**UnTagImage**](UnTagImage.md)| |
774
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
735
775
 
736
776
  ### Return type
737
777
 
@@ -749,7 +789,7 @@ Name | Type | Description | Notes
749
789
 
750
790
  ## update
751
791
 
752
- > AsyncOperationResponse update(container_container_push_repository_href, container_container_push_repository)
792
+ > AsyncOperationResponse update(container_container_push_repository_href, container_container_push_repository, opts)
753
793
 
754
794
  Update a container push repository
755
795
 
@@ -770,10 +810,13 @@ end
770
810
  api_instance = PulpContainerClient::RepositoriesContainerPushApi.new
771
811
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
772
812
  container_container_push_repository = PulpContainerClient::ContainerContainerPushRepository.new # ContainerContainerPushRepository |
813
+ opts = {
814
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
815
+ }
773
816
 
774
817
  begin
775
818
  #Update a container push repository
776
- result = api_instance.update(container_container_push_repository_href, container_container_push_repository)
819
+ result = api_instance.update(container_container_push_repository_href, container_container_push_repository, opts)
777
820
  p result
778
821
  rescue PulpContainerClient::ApiError => e
779
822
  puts "Exception when calling RepositoriesContainerPushApi->update: #{e}"
@@ -787,6 +830,7 @@ Name | Type | Description | Notes
787
830
  ------------- | ------------- | ------------- | -------------
788
831
  **container_container_push_repository_href** | **String**| |
789
832
  **container_container_push_repository** | [**ContainerContainerPushRepository**](ContainerContainerPushRepository.md)| |
833
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
790
834
 
791
835
  ### Return type
792
836
 
@@ -13,7 +13,7 @@ Method | HTTP request | Description
13
13
 
14
14
  ## delete
15
15
 
16
- > AsyncOperationResponse delete(container_container_push_repository_version_href)
16
+ > AsyncOperationResponse delete(container_container_push_repository_version_href, opts)
17
17
 
18
18
  Delete a repository version
19
19
 
@@ -33,10 +33,13 @@ end
33
33
 
34
34
  api_instance = PulpContainerClient::RepositoriesContainerPushVersionsApi.new
35
35
  container_container_push_repository_version_href = 'container_container_push_repository_version_href_example' # String |
36
+ opts = {
37
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
38
+ }
36
39
 
37
40
  begin
38
41
  #Delete a repository version
39
- result = api_instance.delete(container_container_push_repository_version_href)
42
+ result = api_instance.delete(container_container_push_repository_version_href, opts)
40
43
  p result
41
44
  rescue PulpContainerClient::ApiError => e
42
45
  puts "Exception when calling RepositoriesContainerPushVersionsApi->delete: #{e}"
@@ -49,6 +52,7 @@ end
49
52
  Name | Type | Description | Notes
50
53
  ------------- | ------------- | ------------- | -------------
51
54
  **container_container_push_repository_version_href** | **String**| |
55
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
52
56
 
53
57
  ### Return type
54
58
 
@@ -87,6 +91,7 @@ end
87
91
  api_instance = PulpContainerClient::RepositoriesContainerPushVersionsApi.new
88
92
  container_container_push_repository_href = 'container_container_push_repository_href_example' # String |
89
93
  opts = {
94
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
90
95
  content: 'content_example', # String | Content Unit referenced by HREF
91
96
  content__in: 'content__in_example', # String | Content Unit referenced by HREF
92
97
  limit: 56, # Integer | Number of results to return per page.
@@ -125,6 +130,7 @@ end
125
130
  Name | Type | Description | Notes
126
131
  ------------- | ------------- | ------------- | -------------
127
132
  **container_container_push_repository_href** | **String**| |
133
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
128
134
  **content** | **String**| Content Unit referenced by HREF | [optional]
129
135
  **content__in** | **String**| Content Unit referenced by HREF | [optional]
130
136
  **limit** | **Integer**| Number of results to return per page. | [optional]
@@ -184,6 +190,7 @@ end
184
190
  api_instance = PulpContainerClient::RepositoriesContainerPushVersionsApi.new
185
191
  container_container_push_repository_version_href = 'container_container_push_repository_version_href_example' # String |
186
192
  opts = {
193
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
187
194
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
188
195
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
189
196
  }
@@ -203,6 +210,7 @@ end
203
210
  Name | Type | Description | Notes
204
211
  ------------- | ------------- | ------------- | -------------
205
212
  **container_container_push_repository_version_href** | **String**| |
213
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
206
214
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
207
215
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
208
216
 
@@ -222,7 +230,7 @@ Name | Type | Description | Notes
222
230
 
223
231
  ## repair
224
232
 
225
- > AsyncOperationResponse repair(container_container_push_repository_version_href, repair)
233
+ > AsyncOperationResponse repair(container_container_push_repository_version_href, repair, opts)
226
234
 
227
235
 
228
236
 
@@ -243,9 +251,12 @@ end
243
251
  api_instance = PulpContainerClient::RepositoriesContainerPushVersionsApi.new
244
252
  container_container_push_repository_version_href = 'container_container_push_repository_version_href_example' # String |
245
253
  repair = PulpContainerClient::Repair.new # Repair |
254
+ opts = {
255
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
256
+ }
246
257
 
247
258
  begin
248
- result = api_instance.repair(container_container_push_repository_version_href, repair)
259
+ result = api_instance.repair(container_container_push_repository_version_href, repair, opts)
249
260
  p result
250
261
  rescue PulpContainerClient::ApiError => e
251
262
  puts "Exception when calling RepositoriesContainerPushVersionsApi->repair: #{e}"
@@ -259,6 +270,7 @@ Name | Type | Description | Notes
259
270
  ------------- | ------------- | ------------- | -------------
260
271
  **container_container_push_repository_version_href** | **String**| |
261
272
  **repair** | [**Repair**](Repair.md)| |
273
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
262
274
 
263
275
  ### Return type
264
276
 
@@ -13,7 +13,7 @@ Method | HTTP request | Description
13
13
 
14
14
  ## delete
15
15
 
16
- > AsyncOperationResponse delete(container_container_repository_version_href)
16
+ > AsyncOperationResponse delete(container_container_repository_version_href, opts)
17
17
 
18
18
  Delete a repository version
19
19
 
@@ -33,10 +33,13 @@ end
33
33
 
34
34
  api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new
35
35
  container_container_repository_version_href = 'container_container_repository_version_href_example' # String |
36
+ opts = {
37
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
38
+ }
36
39
 
37
40
  begin
38
41
  #Delete a repository version
39
- result = api_instance.delete(container_container_repository_version_href)
42
+ result = api_instance.delete(container_container_repository_version_href, opts)
40
43
  p result
41
44
  rescue PulpContainerClient::ApiError => e
42
45
  puts "Exception when calling RepositoriesContainerVersionsApi->delete: #{e}"
@@ -49,6 +52,7 @@ end
49
52
  Name | Type | Description | Notes
50
53
  ------------- | ------------- | ------------- | -------------
51
54
  **container_container_repository_version_href** | **String**| |
55
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
52
56
 
53
57
  ### Return type
54
58
 
@@ -87,6 +91,7 @@ end
87
91
  api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new
88
92
  container_container_repository_href = 'container_container_repository_href_example' # String |
89
93
  opts = {
94
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
90
95
  content: 'content_example', # String | Content Unit referenced by HREF
91
96
  content__in: 'content__in_example', # String | Content Unit referenced by HREF
92
97
  limit: 56, # Integer | Number of results to return per page.
@@ -125,6 +130,7 @@ end
125
130
  Name | Type | Description | Notes
126
131
  ------------- | ------------- | ------------- | -------------
127
132
  **container_container_repository_href** | **String**| |
133
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
128
134
  **content** | **String**| Content Unit referenced by HREF | [optional]
129
135
  **content__in** | **String**| Content Unit referenced by HREF | [optional]
130
136
  **limit** | **Integer**| Number of results to return per page. | [optional]
@@ -184,6 +190,7 @@ end
184
190
  api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new
185
191
  container_container_repository_version_href = 'container_container_repository_version_href_example' # String |
186
192
  opts = {
193
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
187
194
  fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
188
195
  exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
189
196
  }
@@ -203,6 +210,7 @@ end
203
210
  Name | Type | Description | Notes
204
211
  ------------- | ------------- | ------------- | -------------
205
212
  **container_container_repository_version_href** | **String**| |
213
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
206
214
  **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
207
215
  **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
208
216
 
@@ -222,7 +230,7 @@ Name | Type | Description | Notes
222
230
 
223
231
  ## repair
224
232
 
225
- > AsyncOperationResponse repair(container_container_repository_version_href, repair)
233
+ > AsyncOperationResponse repair(container_container_repository_version_href, repair, opts)
226
234
 
227
235
 
228
236
 
@@ -243,9 +251,12 @@ end
243
251
  api_instance = PulpContainerClient::RepositoriesContainerVersionsApi.new
244
252
  container_container_repository_version_href = 'container_container_repository_version_href_example' # String |
245
253
  repair = PulpContainerClient::Repair.new # Repair |
254
+ opts = {
255
+ x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
256
+ }
246
257
 
247
258
  begin
248
- result = api_instance.repair(container_container_repository_version_href, repair)
259
+ result = api_instance.repair(container_container_repository_version_href, repair, opts)
249
260
  p result
250
261
  rescue PulpContainerClient::ApiError => e
251
262
  puts "Exception when calling RepositoriesContainerVersionsApi->repair: #{e}"
@@ -259,6 +270,7 @@ Name | Type | Description | Notes
259
270
  ------------- | ------------- | ------------- | -------------
260
271
  **container_container_repository_version_href** | **String**| |
261
272
  **repair** | [**Repair**](Repair.md)| |
273
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
262
274
 
263
275
  ### Return type
264
276
 
data/docs/TokenApi.md CHANGED
@@ -10,7 +10,7 @@ Method | HTTP request | Description
10
10
 
11
11
  ## get
12
12
 
13
- > get
13
+ > get(opts)
14
14
 
15
15
 
16
16
 
@@ -29,9 +29,14 @@ PulpContainerClient.configure do |config|
29
29
  end
30
30
 
31
31
  api_instance = PulpContainerClient::TokenApi.new
32
+ opts = {
33
+ x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
34
+ fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
35
+ exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
36
+ }
32
37
 
33
38
  begin
34
- api_instance.get
39
+ api_instance.get(opts)
35
40
  rescue PulpContainerClient::ApiError => e
36
41
  puts "Exception when calling TokenApi->get: #{e}"
37
42
  end
@@ -39,7 +44,12 @@ end
39
44
 
40
45
  ### Parameters
41
46
 
42
- This endpoint does not need any parameter.
47
+
48
+ Name | Type | Description | Notes
49
+ ------------- | ------------- | ------------- | -------------
50
+ **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md)| List of profilers to use on tasks. | [optional]
51
+ **fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to include in the response. | [optional]
52
+ **exclude_fields** | [**Array&lt;String&gt;**](String.md)| A list of fields to exclude from the response. | [optional]
43
53
 
44
54
  ### Return type
45
55
 
@@ -22,6 +22,7 @@ module PulpContainerClient
22
22
  # List blobs
23
23
  # ViewSet for Blobs.
24
24
  # @param [Hash] opts the optional parameters
25
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
25
26
  # @option opts [String] :digest Filter results where digest matches value
26
27
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
27
28
  # @option opts [Integer] :limit Number of results to return per page.
@@ -45,6 +46,7 @@ module PulpContainerClient
45
46
  # List blobs
46
47
  # ViewSet for Blobs.
47
48
  # @param [Hash] opts the optional parameters
49
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
48
50
  # @option opts [String] :digest Filter results where digest matches value
49
51
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
50
52
  # @option opts [Integer] :limit Number of results to return per page.
@@ -92,6 +94,7 @@ module PulpContainerClient
92
94
  header_params = opts[:header_params] || {}
93
95
  # HTTP header 'Accept' (if needed)
94
96
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
97
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
95
98
 
96
99
  # form parameters
97
100
  form_params = opts[:form_params] || {}
@@ -125,6 +128,7 @@ module PulpContainerClient
125
128
  # ViewSet for Blobs.
126
129
  # @param container_blob_href [String]
127
130
  # @param [Hash] opts the optional parameters
131
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
132
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
133
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
130
134
  # @return [ContainerBlobResponse]
@@ -137,6 +141,7 @@ module PulpContainerClient
137
141
  # ViewSet for Blobs.
138
142
  # @param container_blob_href [String]
139
143
  # @param [Hash] opts the optional parameters
144
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
140
145
  # @option opts [Array<String>] :fields A list of fields to include in the response.
141
146
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
142
147
  # @return [Array<(ContainerBlobResponse, Integer, Hash)>] ContainerBlobResponse data, response status code and response headers
@@ -160,6 +165,7 @@ module PulpContainerClient
160
165
  header_params = opts[:header_params] || {}
161
166
  # HTTP header 'Accept' (if needed)
162
167
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
168
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
163
169
 
164
170
  # form parameters
165
171
  form_params = opts[:form_params] || {}
@@ -22,6 +22,7 @@ module PulpContainerClient
22
22
  # List manifests
23
23
  # ViewSet for Manifest.
24
24
  # @param [Hash] opts the optional parameters
25
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
25
26
  # @option opts [String] :digest Filter results where digest matches value
26
27
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
27
28
  # @option opts [Boolean] :is_bootable Filter results where is_bootable matches value
@@ -48,6 +49,7 @@ module PulpContainerClient
48
49
  # List manifests
49
50
  # ViewSet for Manifest.
50
51
  # @param [Hash] opts the optional parameters
52
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
51
53
  # @option opts [String] :digest Filter results where digest matches value
52
54
  # @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
53
55
  # @option opts [Boolean] :is_bootable Filter results where is_bootable matches value
@@ -105,6 +107,7 @@ module PulpContainerClient
105
107
  header_params = opts[:header_params] || {}
106
108
  # HTTP header 'Accept' (if needed)
107
109
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
110
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
108
111
 
109
112
  # form parameters
110
113
  form_params = opts[:form_params] || {}
@@ -138,6 +141,7 @@ module PulpContainerClient
138
141
  # ViewSet for Manifest.
139
142
  # @param container_manifest_href [String]
140
143
  # @param [Hash] opts the optional parameters
144
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
141
145
  # @option opts [Array<String>] :fields A list of fields to include in the response.
142
146
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
143
147
  # @return [ContainerManifestResponse]
@@ -150,6 +154,7 @@ module PulpContainerClient
150
154
  # ViewSet for Manifest.
151
155
  # @param container_manifest_href [String]
152
156
  # @param [Hash] opts the optional parameters
157
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
153
158
  # @option opts [Array<String>] :fields A list of fields to include in the response.
154
159
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
155
160
  # @return [Array<(ContainerManifestResponse, Integer, Hash)>] ContainerManifestResponse data, response status code and response headers
@@ -173,6 +178,7 @@ module PulpContainerClient
173
178
  header_params = opts[:header_params] || {}
174
179
  # HTTP header 'Accept' (if needed)
175
180
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
181
+ header_params[:'X-Task-Diagnostics'] = @api_client.build_collection_param(opts[:'x_task_diagnostics'], :csv) if !opts[:'x_task_diagnostics'].nil?
176
182
 
177
183
  # form parameters
178
184
  form_params = opts[:form_params] || {}