pulp_file_client 3.49.53 → 3.49.54
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 +8 -5
- data/docs/AcsFileApi.md +50 -14
- data/docs/ContentFilesApi.md +6 -0
- data/docs/DistributionsFileApi.md +56 -16
- data/docs/PublicationsFileApi.md +32 -8
- data/docs/RemotesFileApi.md +56 -16
- data/docs/RepositoriesFileApi.md +68 -20
- data/docs/RepositoriesFileVersionsApi.md +16 -4
- data/lib/pulp_file_client/api/acs_file_api.rb +33 -0
- data/lib/pulp_file_client/api/content_files_api.rb +9 -0
- data/lib/pulp_file_client/api/distributions_file_api.rb +36 -0
- data/lib/pulp_file_client/api/publications_file_api.rb +24 -0
- data/lib/pulp_file_client/api/remotes_file_api.rb +36 -0
- data/lib/pulp_file_client/api/repositories_file_api.rb +42 -0
- data/lib/pulp_file_client/api/repositories_file_versions_api.rb +12 -0
- data/lib/pulp_file_client/version.rb +1 -1
- data/spec/api/acs_file_api_spec.rb +11 -0
- data/spec/api/content_files_api_spec.rb +3 -0
- data/spec/api/distributions_file_api_spec.rb +12 -0
- data/spec/api/publications_file_api_spec.rb +8 -0
- data/spec/api/remotes_file_api_spec.rb +12 -0
- data/spec/api/repositories_file_api_spec.rb +14 -0
- data/spec/api/repositories_file_versions_api_spec.rb +4 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a0bc71cd05fffeb392d4c76b66dfdfac417faa9ae3426709dda44fe1cc69f468
|
|
4
|
+
data.tar.gz: 5ca140393bbbbc1e268ec8bfcbe4e2e0252f6bee0b7c005a017a4addbc2cfc98
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd598454a340ed1079a7e8d729a746fc59de4f24f2f625cbc7ee50eeab2e35ba17f6a46cb39839ca158df3cfa042e4d74f48fb3854f8be2b593b9c5433c2e05a
|
|
7
|
+
data.tar.gz: 50fdc838888e54da4a63eb9bc579252b31ad067c222b620134640f28f7b26b90dc75c5f992039a6b453ac785dc61c66f84d59694ce92e4653dc30ad077c8fdcc
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ Fetch, Upload, Organize, and Distribute Software Packages
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: v3
|
|
10
|
-
- Package version: 3.49.
|
|
10
|
+
- Package version: 3.49.54
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [https://pulpproject.org](https://pulpproject.org)
|
|
13
13
|
|
|
@@ -24,16 +24,16 @@ gem build pulp_file_client.gemspec
|
|
|
24
24
|
Then either install the gem locally:
|
|
25
25
|
|
|
26
26
|
```shell
|
|
27
|
-
gem install ./pulp_file_client-3.49.
|
|
27
|
+
gem install ./pulp_file_client-3.49.54.gem
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
(for development, run `gem install --dev ./pulp_file_client-3.49.
|
|
30
|
+
(for development, run `gem install --dev ./pulp_file_client-3.49.54.gem` to install the development dependencies)
|
|
31
31
|
|
|
32
32
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
33
33
|
|
|
34
34
|
Finally add this to the Gemfile:
|
|
35
35
|
|
|
36
|
-
gem 'pulp_file_client', '~> 3.49.
|
|
36
|
+
gem 'pulp_file_client', '~> 3.49.54'
|
|
37
37
|
|
|
38
38
|
### Install from Git
|
|
39
39
|
|
|
@@ -67,10 +67,13 @@ end
|
|
|
67
67
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
68
68
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
69
69
|
nested_role = PulpFileClient::NestedRole.new # NestedRole |
|
|
70
|
+
opts = {
|
|
71
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
72
|
+
}
|
|
70
73
|
|
|
71
74
|
begin
|
|
72
75
|
#Add a role
|
|
73
|
-
result = api_instance.add_role(file_file_alternate_content_source_href, nested_role)
|
|
76
|
+
result = api_instance.add_role(file_file_alternate_content_source_href, nested_role, opts)
|
|
74
77
|
p result
|
|
75
78
|
rescue PulpFileClient::ApiError => e
|
|
76
79
|
puts "Exception when calling AcsFileApi->add_role: #{e}"
|
data/docs/AcsFileApi.md
CHANGED
|
@@ -20,7 +20,7 @@ Method | HTTP request | Description
|
|
|
20
20
|
|
|
21
21
|
## add_role
|
|
22
22
|
|
|
23
|
-
> NestedRoleResponse add_role(file_file_alternate_content_source_href, nested_role)
|
|
23
|
+
> NestedRoleResponse add_role(file_file_alternate_content_source_href, nested_role, opts)
|
|
24
24
|
|
|
25
25
|
Add a role
|
|
26
26
|
|
|
@@ -41,10 +41,13 @@ end
|
|
|
41
41
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
42
42
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
43
43
|
nested_role = PulpFileClient::NestedRole.new # NestedRole |
|
|
44
|
+
opts = {
|
|
45
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
46
|
+
}
|
|
44
47
|
|
|
45
48
|
begin
|
|
46
49
|
#Add a role
|
|
47
|
-
result = api_instance.add_role(file_file_alternate_content_source_href, nested_role)
|
|
50
|
+
result = api_instance.add_role(file_file_alternate_content_source_href, nested_role, opts)
|
|
48
51
|
p result
|
|
49
52
|
rescue PulpFileClient::ApiError => e
|
|
50
53
|
puts "Exception when calling AcsFileApi->add_role: #{e}"
|
|
@@ -58,6 +61,7 @@ Name | Type | Description | Notes
|
|
|
58
61
|
------------- | ------------- | ------------- | -------------
|
|
59
62
|
**file_file_alternate_content_source_href** | **String**| |
|
|
60
63
|
**nested_role** | [**NestedRole**](NestedRole.md)| |
|
|
64
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
61
65
|
|
|
62
66
|
### Return type
|
|
63
67
|
|
|
@@ -75,7 +79,7 @@ Name | Type | Description | Notes
|
|
|
75
79
|
|
|
76
80
|
## create
|
|
77
81
|
|
|
78
|
-
> FileFileAlternateContentSourceResponse create(file_file_alternate_content_source)
|
|
82
|
+
> FileFileAlternateContentSourceResponse create(file_file_alternate_content_source, opts)
|
|
79
83
|
|
|
80
84
|
Create a file alternate content source
|
|
81
85
|
|
|
@@ -95,10 +99,13 @@ end
|
|
|
95
99
|
|
|
96
100
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
97
101
|
file_file_alternate_content_source = PulpFileClient::FileFileAlternateContentSource.new # FileFileAlternateContentSource |
|
|
102
|
+
opts = {
|
|
103
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
104
|
+
}
|
|
98
105
|
|
|
99
106
|
begin
|
|
100
107
|
#Create a file alternate content source
|
|
101
|
-
result = api_instance.create(file_file_alternate_content_source)
|
|
108
|
+
result = api_instance.create(file_file_alternate_content_source, opts)
|
|
102
109
|
p result
|
|
103
110
|
rescue PulpFileClient::ApiError => e
|
|
104
111
|
puts "Exception when calling AcsFileApi->create: #{e}"
|
|
@@ -111,6 +118,7 @@ end
|
|
|
111
118
|
Name | Type | Description | Notes
|
|
112
119
|
------------- | ------------- | ------------- | -------------
|
|
113
120
|
**file_file_alternate_content_source** | [**FileFileAlternateContentSource**](FileFileAlternateContentSource.md)| |
|
|
121
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
114
122
|
|
|
115
123
|
### Return type
|
|
116
124
|
|
|
@@ -128,7 +136,7 @@ Name | Type | Description | Notes
|
|
|
128
136
|
|
|
129
137
|
## delete
|
|
130
138
|
|
|
131
|
-
> AsyncOperationResponse delete(file_file_alternate_content_source_href)
|
|
139
|
+
> AsyncOperationResponse delete(file_file_alternate_content_source_href, opts)
|
|
132
140
|
|
|
133
141
|
Delete a file alternate content source
|
|
134
142
|
|
|
@@ -148,10 +156,13 @@ end
|
|
|
148
156
|
|
|
149
157
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
150
158
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
159
|
+
opts = {
|
|
160
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
161
|
+
}
|
|
151
162
|
|
|
152
163
|
begin
|
|
153
164
|
#Delete a file alternate content source
|
|
154
|
-
result = api_instance.delete(file_file_alternate_content_source_href)
|
|
165
|
+
result = api_instance.delete(file_file_alternate_content_source_href, opts)
|
|
155
166
|
p result
|
|
156
167
|
rescue PulpFileClient::ApiError => e
|
|
157
168
|
puts "Exception when calling AcsFileApi->delete: #{e}"
|
|
@@ -164,6 +175,7 @@ end
|
|
|
164
175
|
Name | Type | Description | Notes
|
|
165
176
|
------------- | ------------- | ------------- | -------------
|
|
166
177
|
**file_file_alternate_content_source_href** | **String**| |
|
|
178
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
167
179
|
|
|
168
180
|
### Return type
|
|
169
181
|
|
|
@@ -201,6 +213,7 @@ end
|
|
|
201
213
|
|
|
202
214
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
203
215
|
opts = {
|
|
216
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
204
217
|
limit: 56, # Integer | Number of results to return per page.
|
|
205
218
|
name: 'name_example', # String | Filter results where name matches value
|
|
206
219
|
name__contains: 'name__contains_example', # String | Filter results where name contains value
|
|
@@ -234,6 +247,7 @@ end
|
|
|
234
247
|
|
|
235
248
|
Name | Type | Description | Notes
|
|
236
249
|
------------- | ------------- | ------------- | -------------
|
|
250
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
237
251
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
238
252
|
**name** | **String**| Filter results where name matches value | [optional]
|
|
239
253
|
**name__contains** | **String**| Filter results where name contains value | [optional]
|
|
@@ -289,6 +303,7 @@ end
|
|
|
289
303
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
290
304
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
291
305
|
opts = {
|
|
306
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
292
307
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
293
308
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
294
309
|
}
|
|
@@ -308,6 +323,7 @@ end
|
|
|
308
323
|
Name | Type | Description | Notes
|
|
309
324
|
------------- | ------------- | ------------- | -------------
|
|
310
325
|
**file_file_alternate_content_source_href** | **String**| |
|
|
326
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
311
327
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
312
328
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
313
329
|
|
|
@@ -348,6 +364,7 @@ end
|
|
|
348
364
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
349
365
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
350
366
|
opts = {
|
|
367
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
351
368
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
352
369
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
353
370
|
}
|
|
@@ -367,6 +384,7 @@ end
|
|
|
367
384
|
Name | Type | Description | Notes
|
|
368
385
|
------------- | ------------- | ------------- | -------------
|
|
369
386
|
**file_file_alternate_content_source_href** | **String**| |
|
|
387
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
370
388
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
371
389
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
372
390
|
|
|
@@ -386,7 +404,7 @@ Name | Type | Description | Notes
|
|
|
386
404
|
|
|
387
405
|
## partial_update
|
|
388
406
|
|
|
389
|
-
> AsyncOperationResponse partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source)
|
|
407
|
+
> AsyncOperationResponse partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
|
|
390
408
|
|
|
391
409
|
Update a file alternate content source
|
|
392
410
|
|
|
@@ -407,10 +425,13 @@ end
|
|
|
407
425
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
408
426
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
409
427
|
patchedfile_file_alternate_content_source = PulpFileClient::PatchedfileFileAlternateContentSource.new # PatchedfileFileAlternateContentSource |
|
|
428
|
+
opts = {
|
|
429
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
430
|
+
}
|
|
410
431
|
|
|
411
432
|
begin
|
|
412
433
|
#Update a file alternate content source
|
|
413
|
-
result = api_instance.partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source)
|
|
434
|
+
result = api_instance.partial_update(file_file_alternate_content_source_href, patchedfile_file_alternate_content_source, opts)
|
|
414
435
|
p result
|
|
415
436
|
rescue PulpFileClient::ApiError => e
|
|
416
437
|
puts "Exception when calling AcsFileApi->partial_update: #{e}"
|
|
@@ -424,6 +445,7 @@ Name | Type | Description | Notes
|
|
|
424
445
|
------------- | ------------- | ------------- | -------------
|
|
425
446
|
**file_file_alternate_content_source_href** | **String**| |
|
|
426
447
|
**patchedfile_file_alternate_content_source** | [**PatchedfileFileAlternateContentSource**](PatchedfileFileAlternateContentSource.md)| |
|
|
448
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
427
449
|
|
|
428
450
|
### Return type
|
|
429
451
|
|
|
@@ -462,6 +484,7 @@ end
|
|
|
462
484
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
463
485
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
464
486
|
opts = {
|
|
487
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
465
488
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
466
489
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
467
490
|
}
|
|
@@ -481,6 +504,7 @@ end
|
|
|
481
504
|
Name | Type | Description | Notes
|
|
482
505
|
------------- | ------------- | ------------- | -------------
|
|
483
506
|
**file_file_alternate_content_source_href** | **String**| |
|
|
507
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
484
508
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
485
509
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
486
510
|
|
|
@@ -500,7 +524,7 @@ Name | Type | Description | Notes
|
|
|
500
524
|
|
|
501
525
|
## refresh
|
|
502
526
|
|
|
503
|
-
> TaskGroupOperationResponse refresh(file_file_alternate_content_source_href)
|
|
527
|
+
> TaskGroupOperationResponse refresh(file_file_alternate_content_source_href, opts)
|
|
504
528
|
|
|
505
529
|
Refresh metadata
|
|
506
530
|
|
|
@@ -520,10 +544,13 @@ end
|
|
|
520
544
|
|
|
521
545
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
522
546
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
547
|
+
opts = {
|
|
548
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
549
|
+
}
|
|
523
550
|
|
|
524
551
|
begin
|
|
525
552
|
#Refresh metadata
|
|
526
|
-
result = api_instance.refresh(file_file_alternate_content_source_href)
|
|
553
|
+
result = api_instance.refresh(file_file_alternate_content_source_href, opts)
|
|
527
554
|
p result
|
|
528
555
|
rescue PulpFileClient::ApiError => e
|
|
529
556
|
puts "Exception when calling AcsFileApi->refresh: #{e}"
|
|
@@ -536,6 +563,7 @@ end
|
|
|
536
563
|
Name | Type | Description | Notes
|
|
537
564
|
------------- | ------------- | ------------- | -------------
|
|
538
565
|
**file_file_alternate_content_source_href** | **String**| |
|
|
566
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
539
567
|
|
|
540
568
|
### Return type
|
|
541
569
|
|
|
@@ -553,7 +581,7 @@ Name | Type | Description | Notes
|
|
|
553
581
|
|
|
554
582
|
## remove_role
|
|
555
583
|
|
|
556
|
-
> NestedRoleResponse remove_role(file_file_alternate_content_source_href, nested_role)
|
|
584
|
+
> NestedRoleResponse remove_role(file_file_alternate_content_source_href, nested_role, opts)
|
|
557
585
|
|
|
558
586
|
Remove a role
|
|
559
587
|
|
|
@@ -574,10 +602,13 @@ end
|
|
|
574
602
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
575
603
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
576
604
|
nested_role = PulpFileClient::NestedRole.new # NestedRole |
|
|
605
|
+
opts = {
|
|
606
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
607
|
+
}
|
|
577
608
|
|
|
578
609
|
begin
|
|
579
610
|
#Remove a role
|
|
580
|
-
result = api_instance.remove_role(file_file_alternate_content_source_href, nested_role)
|
|
611
|
+
result = api_instance.remove_role(file_file_alternate_content_source_href, nested_role, opts)
|
|
581
612
|
p result
|
|
582
613
|
rescue PulpFileClient::ApiError => e
|
|
583
614
|
puts "Exception when calling AcsFileApi->remove_role: #{e}"
|
|
@@ -591,6 +622,7 @@ Name | Type | Description | Notes
|
|
|
591
622
|
------------- | ------------- | ------------- | -------------
|
|
592
623
|
**file_file_alternate_content_source_href** | **String**| |
|
|
593
624
|
**nested_role** | [**NestedRole**](NestedRole.md)| |
|
|
625
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
594
626
|
|
|
595
627
|
### Return type
|
|
596
628
|
|
|
@@ -608,7 +640,7 @@ Name | Type | Description | Notes
|
|
|
608
640
|
|
|
609
641
|
## update
|
|
610
642
|
|
|
611
|
-
> AsyncOperationResponse update(file_file_alternate_content_source_href, file_file_alternate_content_source)
|
|
643
|
+
> AsyncOperationResponse update(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
|
|
612
644
|
|
|
613
645
|
Update a file alternate content source
|
|
614
646
|
|
|
@@ -629,10 +661,13 @@ end
|
|
|
629
661
|
api_instance = PulpFileClient::AcsFileApi.new
|
|
630
662
|
file_file_alternate_content_source_href = 'file_file_alternate_content_source_href_example' # String |
|
|
631
663
|
file_file_alternate_content_source = PulpFileClient::FileFileAlternateContentSource.new # FileFileAlternateContentSource |
|
|
664
|
+
opts = {
|
|
665
|
+
x_task_diagnostics: ['x_task_diagnostics_example'] # Array<String> | List of profilers to use on tasks.
|
|
666
|
+
}
|
|
632
667
|
|
|
633
668
|
begin
|
|
634
669
|
#Update a file alternate content source
|
|
635
|
-
result = api_instance.update(file_file_alternate_content_source_href, file_file_alternate_content_source)
|
|
670
|
+
result = api_instance.update(file_file_alternate_content_source_href, file_file_alternate_content_source, opts)
|
|
636
671
|
p result
|
|
637
672
|
rescue PulpFileClient::ApiError => e
|
|
638
673
|
puts "Exception when calling AcsFileApi->update: #{e}"
|
|
@@ -646,6 +681,7 @@ Name | Type | Description | Notes
|
|
|
646
681
|
------------- | ------------- | ------------- | -------------
|
|
647
682
|
**file_file_alternate_content_source_href** | **String**| |
|
|
648
683
|
**file_file_alternate_content_source** | [**FileFileAlternateContentSource**](FileFileAlternateContentSource.md)| |
|
|
684
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
649
685
|
|
|
650
686
|
### Return type
|
|
651
687
|
|
data/docs/ContentFilesApi.md
CHANGED
|
@@ -33,6 +33,7 @@ end
|
|
|
33
33
|
api_instance = PulpFileClient::ContentFilesApi.new
|
|
34
34
|
relative_path = 'relative_path_example' # String | Path where the artifact is located relative to distributions base_path
|
|
35
35
|
opts = {
|
|
36
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
36
37
|
repository: 'repository_example', # String | A URI of a repository the new content unit should be associated with.
|
|
37
38
|
artifact: 'artifact_example', # String | Artifact file representing the physical content
|
|
38
39
|
file: File.new('/path/to/file'), # File | An uploaded file that may be turned into the content unit.
|
|
@@ -54,6 +55,7 @@ end
|
|
|
54
55
|
Name | Type | Description | Notes
|
|
55
56
|
------------- | ------------- | ------------- | -------------
|
|
56
57
|
**relative_path** | **String**| Path where the artifact is located relative to distributions base_path |
|
|
58
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
57
59
|
**repository** | **String**| A URI of a repository the new content unit should be associated with. | [optional]
|
|
58
60
|
**artifact** | **String**| Artifact file representing the physical content | [optional]
|
|
59
61
|
**file** | **File**| An uploaded file that may be turned into the content unit. | [optional]
|
|
@@ -95,6 +97,7 @@ end
|
|
|
95
97
|
|
|
96
98
|
api_instance = PulpFileClient::ContentFilesApi.new
|
|
97
99
|
opts = {
|
|
100
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
98
101
|
limit: 56, # Integer | Number of results to return per page.
|
|
99
102
|
offset: 56, # Integer | The initial index from which to return the results.
|
|
100
103
|
ordering: ['ordering_example'], # Array<String> | Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `digest` - Digest * `-digest` - Digest (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
|
@@ -125,6 +128,7 @@ end
|
|
|
125
128
|
|
|
126
129
|
Name | Type | Description | Notes
|
|
127
130
|
------------- | ------------- | ------------- | -------------
|
|
131
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
128
132
|
**limit** | **Integer**| Number of results to return per page. | [optional]
|
|
129
133
|
**offset** | **Integer**| The initial index from which to return the results. | [optional]
|
|
130
134
|
**ordering** | [**Array<String>**](String.md)| Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `relative_path` - Relative path * `-relative_path` - Relative path (descending) * `digest` - Digest * `-digest` - Digest (descending) * `pk` - Pk * `-pk` - Pk (descending) | [optional]
|
|
@@ -177,6 +181,7 @@ end
|
|
|
177
181
|
api_instance = PulpFileClient::ContentFilesApi.new
|
|
178
182
|
file_file_content_href = 'file_file_content_href_example' # String |
|
|
179
183
|
opts = {
|
|
184
|
+
x_task_diagnostics: ['x_task_diagnostics_example'], # Array<String> | List of profilers to use on tasks.
|
|
180
185
|
fields: ['fields_example'], # Array<String> | A list of fields to include in the response.
|
|
181
186
|
exclude_fields: ['exclude_fields_example'] # Array<String> | A list of fields to exclude from the response.
|
|
182
187
|
}
|
|
@@ -196,6 +201,7 @@ end
|
|
|
196
201
|
Name | Type | Description | Notes
|
|
197
202
|
------------- | ------------- | ------------- | -------------
|
|
198
203
|
**file_file_content_href** | **String**| |
|
|
204
|
+
**x_task_diagnostics** | [**Array<String>**](String.md)| List of profilers to use on tasks. | [optional]
|
|
199
205
|
**fields** | [**Array<String>**](String.md)| A list of fields to include in the response. | [optional]
|
|
200
206
|
**exclude_fields** | [**Array<String>**](String.md)| A list of fields to exclude from the response. | [optional]
|
|
201
207
|
|