pulpcore_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.
Files changed (161) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +5 -4
  3. data/docs/AccessPoliciesApi.md +28 -12
  4. data/docs/ArtifactDistributionResponse.md +13 -13
  5. data/docs/ArtifactsApi.md +14 -4
  6. data/docs/ContentApi.md +2 -0
  7. data/docs/ContentOpenpgpPublickeyApi.md +22 -8
  8. data/docs/ContentOpenpgpPublicsubkeyApi.md +20 -8
  9. data/docs/ContentOpenpgpSignatureApi.md +20 -8
  10. data/docs/ContentOpenpgpUserattributeApi.md +20 -8
  11. data/docs/ContentOpenpgpUseridApi.md +20 -8
  12. data/docs/ContentguardsApi.md +2 -0
  13. data/docs/ContentguardsCompositeApi.md +56 -24
  14. data/docs/ContentguardsContentRedirectApi.md +56 -24
  15. data/docs/ContentguardsHeaderApi.md +56 -24
  16. data/docs/ContentguardsRbacApi.md +56 -24
  17. data/docs/DistributionsApi.md +2 -0
  18. data/docs/DistributionsArtifactsApi.md +4 -0
  19. data/docs/DistributionsOpenpgpApi.md +52 -24
  20. data/docs/DomainsApi.md +60 -28
  21. data/docs/ExportersFilesystemApi.md +36 -16
  22. data/docs/ExportersFilesystemExportsApi.md +20 -8
  23. data/docs/ExportersPulpApi.md +36 -16
  24. data/docs/ExportersPulpExportsApi.md +20 -8
  25. data/docs/GroupsApi.md +56 -24
  26. data/docs/GroupsRolesApi.md +20 -8
  27. data/docs/GroupsUsersApi.md +18 -8
  28. data/docs/ImportersPulpApi.md +36 -16
  29. data/docs/ImportersPulpImportCheckApi.md +8 -4
  30. data/docs/ImportersPulpImportsApi.md +20 -8
  31. data/docs/LivezApi.md +14 -5
  32. data/docs/LoginApi.md +34 -15
  33. data/docs/OrphansApi.md +10 -5
  34. data/docs/OrphansCleanupApi.md +8 -4
  35. data/docs/PublicationsApi.md +2 -0
  36. data/docs/RemotesApi.md +2 -0
  37. data/docs/RepairApi.md +8 -4
  38. data/docs/RepositoriesApi.md +2 -0
  39. data/docs/RepositoriesOpenpgpKeyringApi.md +80 -36
  40. data/docs/RepositoriesReclaimSpaceApi.md +8 -4
  41. data/docs/RepositoryVersionsApi.md +2 -0
  42. data/docs/RolesApi.md +36 -16
  43. data/docs/SigningServicesApi.md +4 -0
  44. data/docs/StatusApi.md +14 -5
  45. data/docs/TaskGroupsApi.md +12 -4
  46. data/docs/TaskSchedulesApi.md +24 -8
  47. data/docs/TasksApi.md +52 -22
  48. data/docs/UploadsApi.md +50 -20
  49. data/docs/UpstreamPulpsApi.md +64 -28
  50. data/docs/UsersApi.md +36 -16
  51. data/docs/UsersRolesApi.md +20 -8
  52. data/docs/WorkersApi.md +4 -0
  53. data/lib/pulpcore_client/api/access_policies_api.rb +15 -0
  54. data/lib/pulpcore_client/api/artifacts_api.rb +12 -0
  55. data/lib/pulpcore_client/api/content_api.rb +3 -0
  56. data/lib/pulpcore_client/api/content_openpgp_publickey_api.rb +15 -0
  57. data/lib/pulpcore_client/api/content_openpgp_publicsubkey_api.rb +12 -0
  58. data/lib/pulpcore_client/api/content_openpgp_signature_api.rb +12 -0
  59. data/lib/pulpcore_client/api/content_openpgp_userattribute_api.rb +12 -0
  60. data/lib/pulpcore_client/api/content_openpgp_userid_api.rb +12 -0
  61. data/lib/pulpcore_client/api/contentguards_api.rb +3 -0
  62. data/lib/pulpcore_client/api/contentguards_composite_api.rb +30 -0
  63. data/lib/pulpcore_client/api/contentguards_content_redirect_api.rb +30 -0
  64. data/lib/pulpcore_client/api/contentguards_header_api.rb +30 -0
  65. data/lib/pulpcore_client/api/contentguards_rbac_api.rb +30 -0
  66. data/lib/pulpcore_client/api/distributions_api.rb +3 -0
  67. data/lib/pulpcore_client/api/distributions_artifacts_api.rb +6 -0
  68. data/lib/pulpcore_client/api/distributions_openpgp_api.rb +24 -0
  69. data/lib/pulpcore_client/api/domains_api.rb +27 -0
  70. data/lib/pulpcore_client/api/exporters_filesystem_api.rb +18 -0
  71. data/lib/pulpcore_client/api/exporters_filesystem_exports_api.rb +12 -0
  72. data/lib/pulpcore_client/api/exporters_pulp_api.rb +18 -0
  73. data/lib/pulpcore_client/api/exporters_pulp_exports_api.rb +12 -0
  74. data/lib/pulpcore_client/api/groups_api.rb +30 -0
  75. data/lib/pulpcore_client/api/groups_roles_api.rb +12 -0
  76. data/lib/pulpcore_client/api/groups_users_api.rb +9 -0
  77. data/lib/pulpcore_client/api/importers_pulp_api.rb +18 -0
  78. data/lib/pulpcore_client/api/importers_pulp_import_check_api.rb +3 -0
  79. data/lib/pulpcore_client/api/importers_pulp_imports_api.rb +12 -0
  80. data/lib/pulpcore_client/api/livez_api.rb +9 -0
  81. data/lib/pulpcore_client/api/login_api.rb +15 -0
  82. data/lib/pulpcore_client/api/orphans_api.rb +3 -0
  83. data/lib/pulpcore_client/api/orphans_cleanup_api.rb +3 -0
  84. data/lib/pulpcore_client/api/publications_api.rb +3 -0
  85. data/lib/pulpcore_client/api/remotes_api.rb +3 -0
  86. data/lib/pulpcore_client/api/repair_api.rb +3 -0
  87. data/lib/pulpcore_client/api/repositories_api.rb +3 -0
  88. data/lib/pulpcore_client/api/repositories_openpgp_keyring_api.rb +39 -0
  89. data/lib/pulpcore_client/api/repositories_reclaim_space_api.rb +3 -0
  90. data/lib/pulpcore_client/api/repository_versions_api.rb +3 -0
  91. data/lib/pulpcore_client/api/roles_api.rb +18 -0
  92. data/lib/pulpcore_client/api/signing_services_api.rb +6 -0
  93. data/lib/pulpcore_client/api/status_api.rb +9 -0
  94. data/lib/pulpcore_client/api/task_groups_api.rb +9 -0
  95. data/lib/pulpcore_client/api/task_schedules_api.rb +18 -0
  96. data/lib/pulpcore_client/api/tasks_api.rb +33 -3
  97. data/lib/pulpcore_client/api/uploads_api.rb +30 -0
  98. data/lib/pulpcore_client/api/upstream_pulps_api.rb +33 -0
  99. data/lib/pulpcore_client/api/users_api.rb +18 -0
  100. data/lib/pulpcore_client/api/users_roles_api.rb +12 -0
  101. data/lib/pulpcore_client/api/workers_api.rb +6 -0
  102. data/lib/pulpcore_client/models/artifact_distribution_response.rb +61 -61
  103. data/lib/pulpcore_client/models/composite_content_guard.rb +1 -1
  104. data/lib/pulpcore_client/models/composite_content_guard_response.rb +1 -1
  105. data/lib/pulpcore_client/models/content_guard_response.rb +1 -1
  106. data/lib/pulpcore_client/models/patched_composite_content_guard.rb +1 -1
  107. data/lib/pulpcore_client/models/patched_rbac_content_guard.rb +1 -1
  108. data/lib/pulpcore_client/models/rbac_content_guard.rb +1 -1
  109. data/lib/pulpcore_client/models/rbac_content_guard_response.rb +1 -1
  110. data/lib/pulpcore_client/version.rb +1 -1
  111. data/spec/api/access_policies_api_spec.rb +5 -0
  112. data/spec/api/artifacts_api_spec.rb +4 -0
  113. data/spec/api/content_api_spec.rb +1 -0
  114. data/spec/api/content_openpgp_publickey_api_spec.rb +5 -0
  115. data/spec/api/content_openpgp_publicsubkey_api_spec.rb +4 -0
  116. data/spec/api/content_openpgp_signature_api_spec.rb +4 -0
  117. data/spec/api/content_openpgp_userattribute_api_spec.rb +4 -0
  118. data/spec/api/content_openpgp_userid_api_spec.rb +4 -0
  119. data/spec/api/contentguards_api_spec.rb +1 -0
  120. data/spec/api/contentguards_composite_api_spec.rb +10 -0
  121. data/spec/api/contentguards_content_redirect_api_spec.rb +10 -0
  122. data/spec/api/contentguards_header_api_spec.rb +10 -0
  123. data/spec/api/contentguards_rbac_api_spec.rb +10 -0
  124. data/spec/api/distributions_api_spec.rb +1 -0
  125. data/spec/api/distributions_artifacts_api_spec.rb +2 -0
  126. data/spec/api/distributions_openpgp_api_spec.rb +8 -0
  127. data/spec/api/domains_api_spec.rb +9 -0
  128. data/spec/api/exporters_filesystem_api_spec.rb +6 -0
  129. data/spec/api/exporters_filesystem_exports_api_spec.rb +4 -0
  130. data/spec/api/exporters_pulp_api_spec.rb +6 -0
  131. data/spec/api/exporters_pulp_exports_api_spec.rb +4 -0
  132. data/spec/api/groups_api_spec.rb +10 -0
  133. data/spec/api/groups_roles_api_spec.rb +4 -0
  134. data/spec/api/groups_users_api_spec.rb +3 -0
  135. data/spec/api/importers_pulp_api_spec.rb +6 -0
  136. data/spec/api/importers_pulp_import_check_api_spec.rb +1 -0
  137. data/spec/api/importers_pulp_imports_api_spec.rb +4 -0
  138. data/spec/api/livez_api_spec.rb +3 -0
  139. data/spec/api/login_api_spec.rb +5 -0
  140. data/spec/api/orphans_api_spec.rb +1 -0
  141. data/spec/api/orphans_cleanup_api_spec.rb +1 -0
  142. data/spec/api/publications_api_spec.rb +1 -0
  143. data/spec/api/remotes_api_spec.rb +1 -0
  144. data/spec/api/repair_api_spec.rb +1 -0
  145. data/spec/api/repositories_api_spec.rb +1 -0
  146. data/spec/api/repositories_openpgp_keyring_api_spec.rb +13 -0
  147. data/spec/api/repositories_reclaim_space_api_spec.rb +1 -0
  148. data/spec/api/repository_versions_api_spec.rb +1 -0
  149. data/spec/api/roles_api_spec.rb +6 -0
  150. data/spec/api/signing_services_api_spec.rb +2 -0
  151. data/spec/api/status_api_spec.rb +3 -0
  152. data/spec/api/task_groups_api_spec.rb +3 -0
  153. data/spec/api/task_schedules_api_spec.rb +6 -0
  154. data/spec/api/tasks_api_spec.rb +11 -1
  155. data/spec/api/uploads_api_spec.rb +10 -0
  156. data/spec/api/upstream_pulps_api_spec.rb +11 -0
  157. data/spec/api/users_api_spec.rb +6 -0
  158. data/spec/api/users_roles_api_spec.rb +4 -0
  159. data/spec/api/workers_api_spec.rb +2 -0
  160. data/spec/models/artifact_distribution_response_spec.rb +11 -11
  161. metadata +190 -190
data/docs/LoginApi.md CHANGED
@@ -11,7 +11,7 @@ All URIs are relative to *http://localhost:24817*
11
11
 
12
12
  ## login
13
13
 
14
- > <LoginResponse> login
14
+ > <LoginResponse> login(opts)
15
15
 
16
16
 
17
17
 
@@ -28,10 +28,13 @@ PulpcoreClient.configure do |config|
28
28
  end
29
29
 
30
30
  api_instance = PulpcoreClient::LoginApi.new
31
+ opts = {
32
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
33
+ }
31
34
 
32
35
  begin
33
36
 
34
- result = api_instance.login
37
+ result = api_instance.login(opts)
35
38
  p result
36
39
  rescue PulpcoreClient::ApiError => e
37
40
  puts "Error when calling LoginApi->login: #{e}"
@@ -42,12 +45,12 @@ end
42
45
 
43
46
  This returns an Array which contains the response data, status code and headers.
44
47
 
45
- > <Array(<LoginResponse>, Integer, Hash)> login_with_http_info
48
+ > <Array(<LoginResponse>, Integer, Hash)> login_with_http_info(opts)
46
49
 
47
50
  ```ruby
48
51
  begin
49
52
 
50
- data, status_code, headers = api_instance.login_with_http_info
53
+ data, status_code, headers = api_instance.login_with_http_info(opts)
51
54
  p status_code # => 2xx
52
55
  p headers # => { ... }
53
56
  p data # => <LoginResponse>
@@ -58,7 +61,9 @@ end
58
61
 
59
62
  ### Parameters
60
63
 
61
- This endpoint does not need any parameter.
64
+ | Name | Type | Description | Notes |
65
+ | ---- | ---- | ----------- | ----- |
66
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
62
67
 
63
68
  ### Return type
64
69
 
@@ -76,7 +81,7 @@ This endpoint does not need any parameter.
76
81
 
77
82
  ## login_read
78
83
 
79
- > <LoginResponse> login_read
84
+ > <LoginResponse> login_read(opts)
80
85
 
81
86
 
82
87
 
@@ -93,10 +98,15 @@ PulpcoreClient.configure do |config|
93
98
  end
94
99
 
95
100
  api_instance = PulpcoreClient::LoginApi.new
101
+ opts = {
102
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
103
+ fields: ['inner_example'], # Array<String> | A list of fields to include in the response.
104
+ exclude_fields: ['inner_example'] # Array<String> | A list of fields to exclude from the response.
105
+ }
96
106
 
97
107
  begin
98
108
 
99
- result = api_instance.login_read
109
+ result = api_instance.login_read(opts)
100
110
  p result
101
111
  rescue PulpcoreClient::ApiError => e
102
112
  puts "Error when calling LoginApi->login_read: #{e}"
@@ -107,12 +117,12 @@ end
107
117
 
108
118
  This returns an Array which contains the response data, status code and headers.
109
119
 
110
- > <Array(<LoginResponse>, Integer, Hash)> login_read_with_http_info
120
+ > <Array(<LoginResponse>, Integer, Hash)> login_read_with_http_info(opts)
111
121
 
112
122
  ```ruby
113
123
  begin
114
124
 
115
- data, status_code, headers = api_instance.login_read_with_http_info
125
+ data, status_code, headers = api_instance.login_read_with_http_info(opts)
116
126
  p status_code # => 2xx
117
127
  p headers # => { ... }
118
128
  p data # => <LoginResponse>
@@ -123,7 +133,11 @@ end
123
133
 
124
134
  ### Parameters
125
135
 
126
- This endpoint does not need any parameter.
136
+ | Name | Type | Description | Notes |
137
+ | ---- | ---- | ----------- | ----- |
138
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
139
+ | **fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to include in the response. | [optional] |
140
+ | **exclude_fields** | [**Array&lt;String&gt;**](String.md) | A list of fields to exclude from the response. | [optional] |
127
141
 
128
142
  ### Return type
129
143
 
@@ -141,7 +155,7 @@ This endpoint does not need any parameter.
141
155
 
142
156
  ## logout
143
157
 
144
- > logout
158
+ > logout(opts)
145
159
 
146
160
 
147
161
 
@@ -158,10 +172,13 @@ PulpcoreClient.configure do |config|
158
172
  end
159
173
 
160
174
  api_instance = PulpcoreClient::LoginApi.new
175
+ opts = {
176
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
177
+ }
161
178
 
162
179
  begin
163
180
 
164
- api_instance.logout
181
+ api_instance.logout(opts)
165
182
  rescue PulpcoreClient::ApiError => e
166
183
  puts "Error when calling LoginApi->logout: #{e}"
167
184
  end
@@ -171,12 +188,12 @@ end
171
188
 
172
189
  This returns an Array which contains the response data (`nil` in this case), status code and headers.
173
190
 
174
- > <Array(nil, Integer, Hash)> logout_with_http_info
191
+ > <Array(nil, Integer, Hash)> logout_with_http_info(opts)
175
192
 
176
193
  ```ruby
177
194
  begin
178
195
 
179
- data, status_code, headers = api_instance.logout_with_http_info
196
+ data, status_code, headers = api_instance.logout_with_http_info(opts)
180
197
  p status_code # => 2xx
181
198
  p headers # => { ... }
182
199
  p data # => nil
@@ -187,7 +204,9 @@ end
187
204
 
188
205
  ### Parameters
189
206
 
190
- This endpoint does not need any parameter.
207
+ | Name | Type | Description | Notes |
208
+ | ---- | ---- | ----------- | ----- |
209
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
191
210
 
192
211
  ### Return type
193
212
 
data/docs/OrphansApi.md CHANGED
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:24817*
9
9
 
10
10
  ## delete
11
11
 
12
- > <AsyncOperationResponse> delete
12
+ > <AsyncOperationResponse> delete(opts)
13
13
 
14
14
  Delete orphans
15
15
 
@@ -28,10 +28,13 @@ PulpcoreClient.configure do |config|
28
28
  end
29
29
 
30
30
  api_instance = PulpcoreClient::OrphansApi.new
31
+ opts = {
32
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
33
+ }
31
34
 
32
35
  begin
33
36
  # Delete orphans
34
- result = api_instance.delete
37
+ result = api_instance.delete(opts)
35
38
  p result
36
39
  rescue PulpcoreClient::ApiError => e
37
40
  puts "Error when calling OrphansApi->delete: #{e}"
@@ -42,12 +45,12 @@ end
42
45
 
43
46
  This returns an Array which contains the response data, status code and headers.
44
47
 
45
- > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info
48
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> delete_with_http_info(opts)
46
49
 
47
50
  ```ruby
48
51
  begin
49
52
  # Delete orphans
50
- data, status_code, headers = api_instance.delete_with_http_info
53
+ data, status_code, headers = api_instance.delete_with_http_info(opts)
51
54
  p status_code # => 2xx
52
55
  p headers # => { ... }
53
56
  p data # => <AsyncOperationResponse>
@@ -58,7 +61,9 @@ end
58
61
 
59
62
  ### Parameters
60
63
 
61
- This endpoint does not need any parameter.
64
+ | Name | Type | Description | Notes |
65
+ | ---- | ---- | ----------- | ----- |
66
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
62
67
 
63
68
  ### Return type
64
69
 
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:24817*
9
9
 
10
10
  ## cleanup
11
11
 
12
- > <AsyncOperationResponse> cleanup(orphans_cleanup)
12
+ > <AsyncOperationResponse> cleanup(orphans_cleanup, opts)
13
13
 
14
14
 
15
15
 
@@ -29,10 +29,13 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::OrphansCleanupApi.new
31
31
  orphans_cleanup = PulpcoreClient::OrphansCleanup.new # OrphansCleanup |
32
+ opts = {
33
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
34
+ }
32
35
 
33
36
  begin
34
37
 
35
- result = api_instance.cleanup(orphans_cleanup)
38
+ result = api_instance.cleanup(orphans_cleanup, opts)
36
39
  p result
37
40
  rescue PulpcoreClient::ApiError => e
38
41
  puts "Error when calling OrphansCleanupApi->cleanup: #{e}"
@@ -43,12 +46,12 @@ end
43
46
 
44
47
  This returns an Array which contains the response data, status code and headers.
45
48
 
46
- > <Array(<AsyncOperationResponse>, Integer, Hash)> cleanup_with_http_info(orphans_cleanup)
49
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> cleanup_with_http_info(orphans_cleanup, opts)
47
50
 
48
51
  ```ruby
49
52
  begin
50
53
 
51
- data, status_code, headers = api_instance.cleanup_with_http_info(orphans_cleanup)
54
+ data, status_code, headers = api_instance.cleanup_with_http_info(orphans_cleanup, opts)
52
55
  p status_code # => 2xx
53
56
  p headers # => { ... }
54
57
  p data # => <AsyncOperationResponse>
@@ -62,6 +65,7 @@ end
62
65
  | Name | Type | Description | Notes |
63
66
  | ---- | ---- | ----------- | ----- |
64
67
  | **orphans_cleanup** | [**OrphansCleanup**](OrphansCleanup.md) | | |
68
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
65
69
 
66
70
  ### Return type
67
71
 
@@ -29,6 +29,7 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::PublicationsApi.new
31
31
  opts = {
32
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
32
33
  checkpoint: true, # Boolean | Filter results where checkpoint matches value
33
34
  content: 'content_example', # String | Content Unit referenced by HREF/PRN
34
35
  content__in: ['inner_example'], # Array<String> | Multiple values may be separated by commas.
@@ -85,6 +86,7 @@ end
85
86
 
86
87
  | Name | Type | Description | Notes |
87
88
  | ---- | ---- | ----------- | ----- |
89
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
88
90
  | **checkpoint** | **Boolean** | Filter results where checkpoint matches value | [optional] |
89
91
  | **content** | **String** | Content Unit referenced by HREF/PRN | [optional] |
90
92
  | **content__in** | [**Array&lt;String&gt;**](String.md) | Multiple values may be separated by commas. | [optional] |
data/docs/RemotesApi.md CHANGED
@@ -29,6 +29,7 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::RemotesApi.new
31
31
  opts = {
32
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
32
33
  limit: 56, # Integer | Number of results to return per page.
33
34
  name: 'name_example', # String | Filter results where name matches value
34
35
  name__contains: 'name__contains_example', # String | Filter results where name contains value
@@ -90,6 +91,7 @@ end
90
91
 
91
92
  | Name | Type | Description | Notes |
92
93
  | ---- | ---- | ----------- | ----- |
94
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
93
95
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
94
96
  | **name** | **String** | Filter results where name matches value | [optional] |
95
97
  | **name__contains** | **String** | Filter results where name contains value | [optional] |
data/docs/RepairApi.md CHANGED
@@ -9,7 +9,7 @@ All URIs are relative to *http://localhost:24817*
9
9
 
10
10
  ## post
11
11
 
12
- > <AsyncOperationResponse> post(repair)
12
+ > <AsyncOperationResponse> post(repair, opts)
13
13
 
14
14
  Repair Artifact Storage
15
15
 
@@ -29,10 +29,13 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::RepairApi.new
31
31
  repair = PulpcoreClient::Repair.new # Repair |
32
+ opts = {
33
+ x_task_diagnostics: ['inner_example'] # Array<String> | List of profilers to use on tasks.
34
+ }
32
35
 
33
36
  begin
34
37
  # Repair Artifact Storage
35
- result = api_instance.post(repair)
38
+ result = api_instance.post(repair, opts)
36
39
  p result
37
40
  rescue PulpcoreClient::ApiError => e
38
41
  puts "Error when calling RepairApi->post: #{e}"
@@ -43,12 +46,12 @@ end
43
46
 
44
47
  This returns an Array which contains the response data, status code and headers.
45
48
 
46
- > <Array(<AsyncOperationResponse>, Integer, Hash)> post_with_http_info(repair)
49
+ > <Array(<AsyncOperationResponse>, Integer, Hash)> post_with_http_info(repair, opts)
47
50
 
48
51
  ```ruby
49
52
  begin
50
53
  # Repair Artifact Storage
51
- data, status_code, headers = api_instance.post_with_http_info(repair)
54
+ data, status_code, headers = api_instance.post_with_http_info(repair, opts)
52
55
  p status_code # => 2xx
53
56
  p headers # => { ... }
54
57
  p data # => <AsyncOperationResponse>
@@ -62,6 +65,7 @@ end
62
65
  | Name | Type | Description | Notes |
63
66
  | ---- | ---- | ----------- | ----- |
64
67
  | **repair** | [**Repair**](Repair.md) | | |
68
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
65
69
 
66
70
  ### Return type
67
71
 
@@ -29,6 +29,7 @@ end
29
29
 
30
30
  api_instance = PulpcoreClient::RepositoriesApi.new
31
31
  opts = {
32
+ x_task_diagnostics: ['inner_example'], # Array<String> | List of profilers to use on tasks.
32
33
  latest_with_content: 'latest_with_content_example', # String | Content Unit referenced by HREF/PRN
33
34
  limit: 56, # Integer | Number of results to return per page.
34
35
  name: 'name_example', # String | Filter results where name matches value
@@ -94,6 +95,7 @@ end
94
95
 
95
96
  | Name | Type | Description | Notes |
96
97
  | ---- | ---- | ----------- | ----- |
98
+ | **x_task_diagnostics** | [**Array&lt;String&gt;**](String.md) | List of profilers to use on tasks. | [optional] |
97
99
  | **latest_with_content** | **String** | Content Unit referenced by HREF/PRN | [optional] |
98
100
  | **limit** | **Integer** | Number of results to return per page. | [optional] |
99
101
  | **name** | **String** | Filter results where name matches value | [optional] |