pulp_file_client 3.80.2 → 3.82.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -22,7 +22,7 @@ All URIs are relative to *http://localhost:24817*
22
22
 
23
23
  ## add_role
24
24
 
25
- > <NestedRoleResponse> add_role(file_file_repository_href, nested_role)
25
+ > <NestedRoleResponse> add_role(file_file_repository_href, nested_role, opts)
26
26
 
27
27
  Add a role
28
28
 
@@ -43,10 +43,13 @@ end
43
43
  api_instance = PulpFileClient::RepositoriesFileApi.new
44
44
  file_file_repository_href = 'file_file_repository_href_example' # String |
45
45
  nested_role = PulpFileClient::NestedRole.new({role: 'role_example'}) # NestedRole |
46
+ opts = {
47
+ x_task_diagnostics: ['inner_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(file_file_repository_href, nested_role)
52
+ result = api_instance.add_role(file_file_repository_href, nested_role, opts)
50
53
  p result
51
54
  rescue PulpFileClient::ApiError => e
52
55
  puts "Error when calling RepositoriesFileApi->add_role: #{e}"
@@ -57,12 +60,12 @@ end
57
60
 
58
61
  This returns an Array which contains the response data, status code and headers.
59
62
 
60
- > <Array(<NestedRoleResponse>, Integer, Hash)> add_role_with_http_info(file_file_repository_href, nested_role)
63
+ > <Array(<NestedRoleResponse>, Integer, Hash)> add_role_with_http_info(file_file_repository_href, nested_role, opts)
61
64
 
62
65
  ```ruby
63
66
  begin
64
67
  # Add a role
65
- data, status_code, headers = api_instance.add_role_with_http_info(file_file_repository_href, nested_role)
68
+ data, status_code, headers = api_instance.add_role_with_http_info(file_file_repository_href, nested_role, opts)
66
69
  p status_code # => 2xx
67
70
  p headers # => { ... }
68
71
  p data # => <NestedRoleResponse>
@@ -77,6 +80,7 @@ end
77
80
  | ---- | ---- | ----------- | ----- |
78
81
  | **file_file_repository_href** | **String** | | |
79
82
  | **nested_role** | [**NestedRole**](NestedRole.md) | | |
83
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
80
84
 
81
85
  ### Return type
82
86
 
@@ -94,7 +98,7 @@ end
94
98
 
95
99
  ## create
96
100
 
97
- > <FileFileRepositoryResponse> create(file_file_repository)
101
+ > <FileFileRepositoryResponse> create(file_file_repository, opts)
98
102
 
99
103
  Create a file repository
100
104
 
@@ -114,10 +118,13 @@ end
114
118
 
115
119
  api_instance = PulpFileClient::RepositoriesFileApi.new
116
120
  file_file_repository = PulpFileClient::FileFileRepository.new({name: 'name_example'}) # FileFileRepository |
121
+ opts = {
122
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
123
+ }
117
124
 
118
125
  begin
119
126
  # Create a file repository
120
- result = api_instance.create(file_file_repository)
127
+ result = api_instance.create(file_file_repository, opts)
121
128
  p result
122
129
  rescue PulpFileClient::ApiError => e
123
130
  puts "Error when calling RepositoriesFileApi->create: #{e}"
@@ -128,12 +135,12 @@ end
128
135
 
129
136
  This returns an Array which contains the response data, status code and headers.
130
137
 
131
- > <Array(<FileFileRepositoryResponse>, Integer, Hash)> create_with_http_info(file_file_repository)
138
+ > <Array(<FileFileRepositoryResponse>, Integer, Hash)> create_with_http_info(file_file_repository, opts)
132
139
 
133
140
  ```ruby
134
141
  begin
135
142
  # Create a file repository
136
- data, status_code, headers = api_instance.create_with_http_info(file_file_repository)
143
+ data, status_code, headers = api_instance.create_with_http_info(file_file_repository, opts)
137
144
  p status_code # => 2xx
138
145
  p headers # => { ... }
139
146
  p data # => <FileFileRepositoryResponse>
@@ -147,6 +154,7 @@ end
147
154
  | Name | Type | Description | Notes |
148
155
  | ---- | ---- | ----------- | ----- |
149
156
  | **file_file_repository** | [**FileFileRepository**](FileFileRepository.md) | | |
157
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
150
158
 
151
159
  ### Return type
152
160
 
@@ -164,7 +172,7 @@ end
164
172
 
165
173
  ## delete
166
174
 
167
- > <AsyncOperationResponse> delete(file_file_repository_href)
175
+ > <AsyncOperationResponse> delete(file_file_repository_href, opts)
168
176
 
169
177
  Delete a file repository
170
178
 
@@ -184,10 +192,13 @@ end
184
192
 
185
193
  api_instance = PulpFileClient::RepositoriesFileApi.new
186
194
  file_file_repository_href = 'file_file_repository_href_example' # String |
195
+ opts = {
196
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
197
+ }
187
198
 
188
199
  begin
189
200
  # Delete a file repository
190
- result = api_instance.delete(file_file_repository_href)
201
+ result = api_instance.delete(file_file_repository_href, opts)
191
202
  p result
192
203
  rescue PulpFileClient::ApiError => e
193
204
  puts "Error when calling RepositoriesFileApi->delete: #{e}"
@@ -198,12 +209,12 @@ end
198
209
 
199
210
  This returns an Array which contains the response data, status code and headers.
200
211
 
201
- > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(file_file_repository_href)
212
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(file_file_repository_href, opts)
202
213
 
203
214
  ```ruby
204
215
  begin
205
216
  # Delete a file repository
206
- data, status_code, headers = api_instance.delete_with_http_info(file_file_repository_href)
217
+ data, status_code, headers = api_instance.delete_with_http_info(file_file_repository_href, opts)
207
218
  p status_code # => 2xx
208
219
  p headers # => { ... }
209
220
  p data # => <AsyncOperationResponse>
@@ -217,6 +228,7 @@ end
217
228
  | Name | Type | Description | Notes |
218
229
  | ---- | ---- | ----------- | ----- |
219
230
  | **file_file_repository_href** | **String** | | |
231
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
220
232
 
221
233
  ### Return type
222
234
 
@@ -254,6 +266,7 @@ end
254
266
 
255
267
  api_instance = PulpFileClient::RepositoriesFileApi.new
256
268
  opts = {
269
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
257
270
  latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF/PRN
258
271
  limit: 56, # Integer | Number of results to return per page.
259
272
  name: 'name_example', # String | Filter results where name matches value
@@ -317,6 +330,7 @@ end
317
330
 
318
331
  | Name | Type | Description | Notes |
319
332
  | ---- | ---- | ----------- | ----- |
333
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
320
334
  | **latest_with_content** | **String** | Content Unit referenced by HREF/PRN | [optional] |
321
335
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
322
336
  | **name** | **String** | Filter results where name matches value | [optional] |
@@ -385,6 +399,7 @@ end
385
399
  api_instance = PulpFileClient::RepositoriesFileApi.new
386
400
  file_file_repository_href = 'file_file_repository_href_example' # String |
387
401
  opts = {
402
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
388
403
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
389
404
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
390
405
  }
@@ -421,6 +436,7 @@ end
421
436
  | Name | Type | Description | Notes |
422
437
  | ---- | ---- | ----------- | ----- |
423
438
  | **file_file_repository_href** | **String** | | |
439
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
424
440
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
425
441
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
426
442
 
@@ -440,7 +456,7 @@ end
440
456
 
441
457
  ## modify
442
458
 
443
- > <AsyncOperationResponse> modify(file_file_repository_href, repository_add_remove_content)
459
+ > <AsyncOperationResponse> modify(file_file_repository_href, repository_add_remove_content, opts)
444
460
 
445
461
  Modify Repository Content
446
462
 
@@ -461,10 +477,13 @@ end
461
477
  api_instance = PulpFileClient::RepositoriesFileApi.new
462
478
  file_file_repository_href = 'file_file_repository_href_example' # String |
463
479
  repository_add_remove_content = PulpFileClient::RepositoryAddRemoveContent.new # RepositoryAddRemoveContent |
480
+ opts = {
481
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
482
+ }
464
483
 
465
484
  begin
466
485
  # Modify Repository Content
467
- result = api_instance.modify(file_file_repository_href, repository_add_remove_content)
486
+ result = api_instance.modify(file_file_repository_href, repository_add_remove_content, opts)
468
487
  p result
469
488
  rescue PulpFileClient::ApiError => e
470
489
  puts "Error when calling RepositoriesFileApi->modify: #{e}"
@@ -475,12 +494,12 @@ end
475
494
 
476
495
  This returns an Array which contains the response data, status code and headers.
477
496
 
478
- > <Array(<AsyncOperationResponse>, Integer, Hash)> modify_with_http_info(file_file_repository_href, repository_add_remove_content)
497
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> modify_with_http_info(file_file_repository_href, repository_add_remove_content, opts)
479
498
 
480
499
  ```ruby
481
500
  begin
482
501
  # Modify Repository Content
483
- data, status_code, headers = api_instance.modify_with_http_info(file_file_repository_href, repository_add_remove_content)
502
+ data, status_code, headers = api_instance.modify_with_http_info(file_file_repository_href, repository_add_remove_content, opts)
484
503
  p status_code # => 2xx
485
504
  p headers # => { ... }
486
505
  p data # => <AsyncOperationResponse>
@@ -495,6 +514,7 @@ end
495
514
  | ---- | ---- | ----------- | ----- |
496
515
  | **file_file_repository_href** | **String** | | |
497
516
  | **repository_add_remove_content** | [**RepositoryAddRemoveContent**](RepositoryAddRemoveContent.md) | | |
517
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
498
518
 
499
519
  ### Return type
500
520
 
@@ -533,6 +553,7 @@ end
533
553
  api_instance = PulpFileClient::RepositoriesFileApi.new
534
554
  file_file_repository_href = 'file_file_repository_href_example' # String |
535
555
  opts = {
556
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
536
557
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
537
558
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
538
559
  }
@@ -569,6 +590,7 @@ end
569
590
  | Name | Type | Description | Notes |
570
591
  | ---- | ---- | ----------- | ----- |
571
592
  | **file_file_repository_href** | **String** | | |
593
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
572
594
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
573
595
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
574
596
 
@@ -588,7 +610,7 @@ end
588
610
 
589
611
  ## partial_update
590
612
 
591
- > <AsyncOperationResponse> partial_update(file_file_repository_href, patchedfile_file_repository)
613
+ > <AsyncOperationResponse> partial_update(file_file_repository_href, patchedfile_file_repository, opts)
592
614
 
593
615
  Update a file repository
594
616
 
@@ -609,10 +631,13 @@ end
609
631
  api_instance = PulpFileClient::RepositoriesFileApi.new
610
632
  file_file_repository_href = 'file_file_repository_href_example' # String |
611
633
  patchedfile_file_repository = PulpFileClient::PatchedfileFileRepository.new # PatchedfileFileRepository |
634
+ opts = {
635
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
636
+ }
612
637
 
613
638
  begin
614
639
  # Update a file repository
615
- result = api_instance.partial_update(file_file_repository_href, patchedfile_file_repository)
640
+ result = api_instance.partial_update(file_file_repository_href, patchedfile_file_repository, opts)
616
641
  p result
617
642
  rescue PulpFileClient::ApiError => e
618
643
  puts "Error when calling RepositoriesFileApi->partial_update: #{e}"
@@ -623,12 +648,12 @@ end
623
648
 
624
649
  This returns an Array which contains the response data, status code and headers.
625
650
 
626
- > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository)
651
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts)
627
652
 
628
653
  ```ruby
629
654
  begin
630
655
  # Update a file repository
631
- data, status_code, headers = api_instance.partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository)
656
+ data, status_code, headers = api_instance.partial_update_with_http_info(file_file_repository_href, patchedfile_file_repository, opts)
632
657
  p status_code # => 2xx
633
658
  p headers # => { ... }
634
659
  p data # => <AsyncOperationResponse>
@@ -643,6 +668,7 @@ end
643
668
  | ---- | ---- | ----------- | ----- |
644
669
  | **file_file_repository_href** | **String** | | |
645
670
  | **patchedfile_file_repository** | [**PatchedfileFileRepository**](PatchedfileFileRepository.md) | | |
671
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
646
672
 
647
673
  ### Return type
648
674
 
@@ -681,6 +707,7 @@ end
681
707
  api_instance = PulpFileClient::RepositoriesFileApi.new
682
708
  file_file_repository_href = 'file_file_repository_href_example' # String |
683
709
  opts = {
710
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
684
711
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
685
712
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
686
713
  }
@@ -717,6 +744,7 @@ end
717
744
  | Name | Type | Description | Notes |
718
745
  | ---- | ---- | ----------- | ----- |
719
746
  | **file_file_repository_href** | **String** | | |
747
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
720
748
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
721
749
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
722
750
 
@@ -736,7 +764,7 @@ end
736
764
 
737
765
  ## remove_role
738
766
 
739
- > <NestedRoleResponse> remove_role(file_file_repository_href, nested_role)
767
+ > <NestedRoleResponse> remove_role(file_file_repository_href, nested_role, opts)
740
768
 
741
769
  Remove a role
742
770
 
@@ -757,10 +785,13 @@ end
757
785
  api_instance = PulpFileClient::RepositoriesFileApi.new
758
786
  file_file_repository_href = 'file_file_repository_href_example' # String |
759
787
  nested_role = PulpFileClient::NestedRole.new({role: 'role_example'}) # NestedRole |
788
+ opts = {
789
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
790
+ }
760
791
 
761
792
  begin
762
793
  # Remove a role
763
- result = api_instance.remove_role(file_file_repository_href, nested_role)
794
+ result = api_instance.remove_role(file_file_repository_href, nested_role, opts)
764
795
  p result
765
796
  rescue PulpFileClient::ApiError => e
766
797
  puts "Error when calling RepositoriesFileApi->remove_role: #{e}"
@@ -771,12 +802,12 @@ end
771
802
 
772
803
  This returns an Array which contains the response data, status code and headers.
773
804
 
774
- > <Array(<NestedRoleResponse>, Integer, Hash)> remove_role_with_http_info(file_file_repository_href, nested_role)
805
+ > <Array(<NestedRoleResponse>, Integer, Hash)> remove_role_with_http_info(file_file_repository_href, nested_role, opts)
775
806
 
776
807
  ```ruby
777
808
  begin
778
809
  # Remove a role
779
- data, status_code, headers = api_instance.remove_role_with_http_info(file_file_repository_href, nested_role)
810
+ data, status_code, headers = api_instance.remove_role_with_http_info(file_file_repository_href, nested_role, opts)
780
811
  p status_code # => 2xx
781
812
  p headers # => { ... }
782
813
  p data # => <NestedRoleResponse>
@@ -791,6 +822,7 @@ end
791
822
  | ---- | ---- | ----------- | ----- |
792
823
  | **file_file_repository_href** | **String** | | |
793
824
  | **nested_role** | [**NestedRole**](NestedRole.md) | | |
825
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
794
826
 
795
827
  ### Return type
796
828
 
@@ -808,7 +840,7 @@ end
808
840
 
809
841
  ## set_label
810
842
 
811
- > <SetLabelResponse> set_label(file_file_repository_href, set_label)
843
+ > <SetLabelResponse> set_label(file_file_repository_href, set_label, opts)
812
844
 
813
845
  Set a label
814
846
 
@@ -829,10 +861,13 @@ end
829
861
  api_instance = PulpFileClient::RepositoriesFileApi.new
830
862
  file_file_repository_href = 'file_file_repository_href_example' # String |
831
863
  set_label = PulpFileClient::SetLabel.new({key: 'key_example', value: 'value_example'}) # SetLabel |
864
+ opts = {
865
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
866
+ }
832
867
 
833
868
  begin
834
869
  # Set a label
835
- result = api_instance.set_label(file_file_repository_href, set_label)
870
+ result = api_instance.set_label(file_file_repository_href, set_label, opts)
836
871
  p result
837
872
  rescue PulpFileClient::ApiError => e
838
873
  puts "Error when calling RepositoriesFileApi->set_label: #{e}"
@@ -843,12 +878,12 @@ end
843
878
 
844
879
  This returns an Array which contains the response data, status code and headers.
845
880
 
846
- > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(file_file_repository_href, set_label)
881
+ > <Array(<SetLabelResponse>, Integer, Hash)> set_label_with_http_info(file_file_repository_href, set_label, opts)
847
882
 
848
883
  ```ruby
849
884
  begin
850
885
  # Set a label
851
- data, status_code, headers = api_instance.set_label_with_http_info(file_file_repository_href, set_label)
886
+ data, status_code, headers = api_instance.set_label_with_http_info(file_file_repository_href, set_label, opts)
852
887
  p status_code # => 2xx
853
888
  p headers # => { ... }
854
889
  p data # => <SetLabelResponse>
@@ -863,6 +898,7 @@ end
863
898
  | ---- | ---- | ----------- | ----- |
864
899
  | **file_file_repository_href** | **String** | | |
865
900
  | **set_label** | [**SetLabel**](SetLabel.md) | | |
901
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
866
902
 
867
903
  ### Return type
868
904
 
@@ -880,7 +916,7 @@ end
880
916
 
881
917
  ## sync
882
918
 
883
- > <AsyncOperationResponse> sync(file_file_repository_href, repository_sync_url)
919
+ > <AsyncOperationResponse> sync(file_file_repository_href, repository_sync_url, opts)
884
920
 
885
921
  Sync from a remote
886
922
 
@@ -901,10 +937,13 @@ end
901
937
  api_instance = PulpFileClient::RepositoriesFileApi.new
902
938
  file_file_repository_href = 'file_file_repository_href_example' # String |
903
939
  repository_sync_url = PulpFileClient::RepositorySyncURL.new # RepositorySyncURL |
940
+ opts = {
941
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
942
+ }
904
943
 
905
944
  begin
906
945
  # Sync from a remote
907
- result = api_instance.sync(file_file_repository_href, repository_sync_url)
946
+ result = api_instance.sync(file_file_repository_href, repository_sync_url, opts)
908
947
  p result
909
948
  rescue PulpFileClient::ApiError => e
910
949
  puts "Error when calling RepositoriesFileApi->sync: #{e}"
@@ -915,12 +954,12 @@ end
915
954
 
916
955
  This returns an Array which contains the response data, status code and headers.
917
956
 
918
- > <Array(<AsyncOperationResponse>, Integer, Hash)> sync_with_http_info(file_file_repository_href, repository_sync_url)
957
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> sync_with_http_info(file_file_repository_href, repository_sync_url, opts)
919
958
 
920
959
  ```ruby
921
960
  begin
922
961
  # Sync from a remote
923
- data, status_code, headers = api_instance.sync_with_http_info(file_file_repository_href, repository_sync_url)
962
+ data, status_code, headers = api_instance.sync_with_http_info(file_file_repository_href, repository_sync_url, opts)
924
963
  p status_code # => 2xx
925
964
  p headers # => { ... }
926
965
  p data # => <AsyncOperationResponse>
@@ -935,6 +974,7 @@ end
935
974
  | ---- | ---- | ----------- | ----- |
936
975
  | **file_file_repository_href** | **String** | | |
937
976
  | **repository_sync_url** | [**RepositorySyncURL**](RepositorySyncURL.md) | | |
977
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
938
978
 
939
979
  ### Return type
940
980
 
@@ -952,7 +992,7 @@ end
952
992
 
953
993
  ## unset_label
954
994
 
955
- > <UnsetLabelResponse> unset_label(file_file_repository_href, unset_label)
995
+ > <UnsetLabelResponse> unset_label(file_file_repository_href, unset_label, opts)
956
996
 
957
997
  Unset a label
958
998
 
@@ -973,10 +1013,13 @@ end
973
1013
  api_instance = PulpFileClient::RepositoriesFileApi.new
974
1014
  file_file_repository_href = 'file_file_repository_href_example' # String |
975
1015
  unset_label = PulpFileClient::UnsetLabel.new({key: 'key_example'}) # UnsetLabel |
1016
+ opts = {
1017
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
1018
+ }
976
1019
 
977
1020
  begin
978
1021
  # Unset a label
979
- result = api_instance.unset_label(file_file_repository_href, unset_label)
1022
+ result = api_instance.unset_label(file_file_repository_href, unset_label, opts)
980
1023
  p result
981
1024
  rescue PulpFileClient::ApiError => e
982
1025
  puts "Error when calling RepositoriesFileApi->unset_label: #{e}"
@@ -987,12 +1030,12 @@ end
987
1030
 
988
1031
  This returns an Array which contains the response data, status code and headers.
989
1032
 
990
- > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(file_file_repository_href, unset_label)
1033
+ > <Array(<UnsetLabelResponse>, Integer, Hash)> unset_label_with_http_info(file_file_repository_href, unset_label, opts)
991
1034
 
992
1035
  ```ruby
993
1036
  begin
994
1037
  # Unset a label
995
- data, status_code, headers = api_instance.unset_label_with_http_info(file_file_repository_href, unset_label)
1038
+ data, status_code, headers = api_instance.unset_label_with_http_info(file_file_repository_href, unset_label, opts)
996
1039
  p status_code # => 2xx
997
1040
  p headers # => { ... }
998
1041
  p data # => <UnsetLabelResponse>
@@ -1007,6 +1050,7 @@ end
1007
1050
  | ---- | ---- | ----------- | ----- |
1008
1051
  | **file_file_repository_href** | **String** | | |
1009
1052
  | **unset_label** | [**UnsetLabel**](UnsetLabel.md) | | |
1053
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
1010
1054
 
1011
1055
  ### Return type
1012
1056
 
@@ -1024,7 +1068,7 @@ end
1024
1068
 
1025
1069
  ## update
1026
1070
 
1027
- > <AsyncOperationResponse> update(file_file_repository_href, file_file_repository)
1071
+ > <AsyncOperationResponse> update(file_file_repository_href, file_file_repository, opts)
1028
1072
 
1029
1073
  Update a file repository
1030
1074
 
@@ -1045,10 +1089,13 @@ end
1045
1089
  api_instance = PulpFileClient::RepositoriesFileApi.new
1046
1090
  file_file_repository_href = 'file_file_repository_href_example' # String |
1047
1091
  file_file_repository = PulpFileClient::FileFileRepository.new({name: 'name_example'}) # FileFileRepository |
1092
+ opts = {
1093
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
1094
+ }
1048
1095
 
1049
1096
  begin
1050
1097
  # Update a file repository
1051
- result = api_instance.update(file_file_repository_href, file_file_repository)
1098
+ result = api_instance.update(file_file_repository_href, file_file_repository, opts)
1052
1099
  p result
1053
1100
  rescue PulpFileClient::ApiError => e
1054
1101
  puts "Error when calling RepositoriesFileApi->update: #{e}"
@@ -1059,12 +1106,12 @@ end
1059
1106
 
1060
1107
  This returns an Array which contains the response data, status code and headers.
1061
1108
 
1062
- > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(file_file_repository_href, file_file_repository)
1109
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> update_with_http_info(file_file_repository_href, file_file_repository, opts)
1063
1110
 
1064
1111
  ```ruby
1065
1112
  begin
1066
1113
  # Update a file repository
1067
- data, status_code, headers = api_instance.update_with_http_info(file_file_repository_href, file_file_repository)
1114
+ data, status_code, headers = api_instance.update_with_http_info(file_file_repository_href, file_file_repository, opts)
1068
1115
  p status_code # => 2xx
1069
1116
  p headers # => { ... }
1070
1117
  p data # => <AsyncOperationResponse>
@@ -1079,6 +1126,7 @@ end
1079
1126
  | ---- | ---- | ----------- | ----- |
1080
1127
  | **file_file_repository_href** | **String** | | |
1081
1128
  | **file_file_repository** | [**FileFileRepository**](FileFileRepository.md) | | |
1129
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
1082
1130
 
1083
1131
  ### Return type
1084
1132
 
@@ -12,7 +12,7 @@ All URIs are relative to *http://localhost:24817*
12
12
 
13
13
  ## delete
14
14
 
15
- > <AsyncOperationResponse> delete(file_file_repository_version_href)
15
+ > <AsyncOperationResponse> delete(file_file_repository_version_href, opts)
16
16
 
17
17
  Delete a repository version
18
18
 
@@ -32,10 +32,13 @@ end
32
32
 
33
33
  api_instance = PulpFileClient::RepositoriesFileVersionsApi.new
34
34
  file_file_repository_version_href = 'file_file_repository_version_href_example' # String |
35
+ opts = {
36
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
37
+ }
35
38
 
36
39
  begin
37
40
  # Delete a repository version
38
- result = api_instance.delete(file_file_repository_version_href)
41
+ result = api_instance.delete(file_file_repository_version_href, opts)
39
42
  p result
40
43
  rescue PulpFileClient::ApiError => e
41
44
  puts "Error when calling RepositoriesFileVersionsApi->delete: #{e}"
@@ -46,12 +49,12 @@ end
46
49
 
47
50
  This returns an Array which contains the response data, status code and headers.
48
51
 
49
- > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(file_file_repository_version_href)
52
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(file_file_repository_version_href, opts)
50
53
 
51
54
  ```ruby
52
55
  begin
53
56
  # Delete a repository version
54
- data, status_code, headers = api_instance.delete_with_http_info(file_file_repository_version_href)
57
+ data, status_code, headers = api_instance.delete_with_http_info(file_file_repository_version_href, opts)
55
58
  p status_code # => 2xx
56
59
  p headers # => { ... }
57
60
  p data # => <AsyncOperationResponse>
@@ -65,6 +68,7 @@ end
65
68
  | Name | Type | Description | Notes |
66
69
  | ---- | ---- | ----------- | ----- |
67
70
  | **file_file_repository_version_href** | **String** | | |
71
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
68
72
 
69
73
  ### Return type
70
74
 
@@ -103,6 +107,7 @@ end
103
107
  api_instance = PulpFileClient::RepositoriesFileVersionsApi.new
104
108
  file_file_repository_href = 'file_file_repository_href_example' # String |
105
109
  opts = {
110
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
106
111
  content: 'content_example', # String | Content Unit referenced by HREF/PRN
107
112
  content__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
108
113
  limit: 56, # Integer | Number of results to return per page.
@@ -160,6 +165,7 @@ end
160
165
  | Name | Type | Description | Notes |
161
166
  | ---- | ---- | ----------- | ----- |
162
167
  | **file_file_repository_href** | **String** | | |
168
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
163
169
  | **content** | **String** | Content Unit referenced by HREF/PRN | [optional] |
164
170
  | **content__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
165
171
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
@@ -221,6 +227,7 @@ end
221
227
  api_instance = PulpFileClient::RepositoriesFileVersionsApi.new
222
228
  file_file_repository_version_href = 'file_file_repository_version_href_example' # String |
223
229
  opts = {
230
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
224
231
  fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
225
232
  exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
226
233
  }
@@ -257,6 +264,7 @@ end
257
264
  | Name | Type | Description | Notes |
258
265
  | ---- | ---- | ----------- | ----- |
259
266
  | **file_file_repository_version_href** | **String** | | |
267
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
260
268
  | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
261
269
  | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
262
270
 
@@ -276,7 +284,7 @@ end
276
284
 
277
285
  ## repair
278
286
 
279
- > <AsyncOperationResponse> repair(file_file_repository_version_href, repair)
287
+ > <AsyncOperationResponse> repair(file_file_repository_version_href, repair, opts)
280
288
 
281
289
 
282
290
 
@@ -297,10 +305,13 @@ end
297
305
  api_instance = PulpFileClient::RepositoriesFileVersionsApi.new
298
306
  file_file_repository_version_href = 'file_file_repository_version_href_example' # String |
299
307
  repair = PulpFileClient::Repair.new # Repair |
308
+ opts = {
309
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
310
+ }
300
311
 
301
312
  begin
302
313
 
303
- result = api_instance.repair(file_file_repository_version_href, repair)
314
+ result = api_instance.repair(file_file_repository_version_href, repair, opts)
304
315
  p result
305
316
  rescue PulpFileClient::ApiError => e
306
317
  puts "Error when calling RepositoriesFileVersionsApi->repair: #{e}"
@@ -311,12 +322,12 @@ end
311
322
 
312
323
  This returns an Array which contains the response data, status code and headers.
313
324
 
314
- > <Array(<AsyncOperationResponse>, Integer, Hash)> repair_with_http_info(file_file_repository_version_href, repair)
325
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> repair_with_http_info(file_file_repository_version_href, repair, opts)
315
326
 
316
327
  ```ruby
317
328
  begin
318
329
 
319
- data, status_code, headers = api_instance.repair_with_http_info(file_file_repository_version_href, repair)
330
+ data, status_code, headers = api_instance.repair_with_http_info(file_file_repository_version_href, repair, opts)
320
331
  p status_code # => 2xx
321
332
  p headers # => { ... }
322
333
  p data # => <AsyncOperationResponse>
@@ -331,6 +342,7 @@ end
331
342
  | ---- | ---- | ----------- | ----- |
332
343
  | **file_file_repository_version_href** | **String** | | |
333
344
  | **repair** | [**Repair**](Repair.md) | | |
345
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
334
346
 
335
347
  ### Return type
336
348