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
@@ -38,6 +38,7 @@ describe 'ContentguardsContentRedirectApi' do
38
38
  # @param content_redirect_content_guard_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'ContentguardsContentRedirectApi' do
50
51
  # Content guard to protect preauthenticated redirects to the content app.
51
52
  # @param content_redirect_content_guard
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [ContentRedirectContentGuardResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'ContentguardsContentRedirectApi' do
62
64
  # Content guard to protect preauthenticated redirects to the content app.
63
65
  # @param content_redirect_content_guard_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [nil]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'ContentguardsContentRedirectApi' do
73
76
  # List content redirect content guards
74
77
  # Content guard to protect preauthenticated redirects to the content app.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -103,6 +107,7 @@ describe 'ContentguardsContentRedirectApi' do
103
107
  # List roles assigned to this object.
104
108
  # @param content_redirect_content_guard_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [ObjectRolesResponse]
@@ -117,6 +122,7 @@ describe 'ContentguardsContentRedirectApi' do
117
122
  # List permissions available to the current user on this object.
118
123
  # @param content_redirect_content_guard_href
119
124
  # @param [Hash] opts the optional parameters
125
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
126
  # @option opts [Array<String>] :fields A list of fields to include in the response.
121
127
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
122
128
  # @return [MyPermissionsResponse]
@@ -132,6 +138,7 @@ describe 'ContentguardsContentRedirectApi' do
132
138
  # @param content_redirect_content_guard_href
133
139
  # @param patched_content_redirect_content_guard
134
140
  # @param [Hash] opts the optional parameters
141
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
135
142
  # @return [ContentRedirectContentGuardResponse]
136
143
  describe 'partial_update test' do
137
144
  it 'should work' do
@@ -144,6 +151,7 @@ describe 'ContentguardsContentRedirectApi' do
144
151
  # Content guard to protect preauthenticated redirects to the content app.
145
152
  # @param content_redirect_content_guard_href
146
153
  # @param [Hash] opts the optional parameters
154
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
147
155
  # @option opts [Array<String>] :fields A list of fields to include in the response.
148
156
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
149
157
  # @return [ContentRedirectContentGuardResponse]
@@ -159,6 +167,7 @@ describe 'ContentguardsContentRedirectApi' do
159
167
  # @param content_redirect_content_guard_href
160
168
  # @param nested_role
161
169
  # @param [Hash] opts the optional parameters
170
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
162
171
  # @return [NestedRoleResponse]
163
172
  describe 'remove_role test' do
164
173
  it 'should work' do
@@ -172,6 +181,7 @@ describe 'ContentguardsContentRedirectApi' do
172
181
  # @param content_redirect_content_guard_href
173
182
  # @param content_redirect_content_guard
174
183
  # @param [Hash] opts the optional parameters
184
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
175
185
  # @return [ContentRedirectContentGuardResponse]
176
186
  describe 'update test' do
177
187
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'ContentguardsHeaderApi' do
38
38
  # @param header_content_guard_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'ContentguardsHeaderApi' do
50
51
  # Content guard to protect the content app using a specific header.
51
52
  # @param header_content_guard
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [HeaderContentGuardResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'ContentguardsHeaderApi' do
62
64
  # Content guard to protect the content app using a specific header.
63
65
  # @param header_content_guard_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [nil]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'ContentguardsHeaderApi' do
73
76
  # List header content guards
74
77
  # Content guard to protect the content app using a specific header.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -103,6 +107,7 @@ describe 'ContentguardsHeaderApi' do
103
107
  # List roles assigned to this object.
104
108
  # @param header_content_guard_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [ObjectRolesResponse]
@@ -117,6 +122,7 @@ describe 'ContentguardsHeaderApi' do
117
122
  # List permissions available to the current user on this object.
118
123
  # @param header_content_guard_href
119
124
  # @param [Hash] opts the optional parameters
125
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
126
  # @option opts [Array<String>] :fields A list of fields to include in the response.
121
127
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
122
128
  # @return [MyPermissionsResponse]
@@ -132,6 +138,7 @@ describe 'ContentguardsHeaderApi' do
132
138
  # @param header_content_guard_href
133
139
  # @param patched_header_content_guard
134
140
  # @param [Hash] opts the optional parameters
141
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
135
142
  # @return [HeaderContentGuardResponse]
136
143
  describe 'partial_update test' do
137
144
  it 'should work' do
@@ -144,6 +151,7 @@ describe 'ContentguardsHeaderApi' do
144
151
  # Content guard to protect the content app using a specific header.
145
152
  # @param header_content_guard_href
146
153
  # @param [Hash] opts the optional parameters
154
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
147
155
  # @option opts [Array<String>] :fields A list of fields to include in the response.
148
156
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
149
157
  # @return [HeaderContentGuardResponse]
@@ -159,6 +167,7 @@ describe 'ContentguardsHeaderApi' do
159
167
  # @param header_content_guard_href
160
168
  # @param nested_role
161
169
  # @param [Hash] opts the optional parameters
170
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
162
171
  # @return [NestedRoleResponse]
163
172
  describe 'remove_role test' do
164
173
  it 'should work' do
@@ -172,6 +181,7 @@ describe 'ContentguardsHeaderApi' do
172
181
  # @param header_content_guard_href
173
182
  # @param header_content_guard
174
183
  # @param [Hash] opts the optional parameters
184
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
175
185
  # @return [HeaderContentGuardResponse]
176
186
  describe 'update test' do
177
187
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'ContentguardsRbacApi' do
38
38
  # @param r_b_a_c_content_guard_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'ContentguardsRbacApi' do
50
51
  # Viewset for creating contentguards that use RBAC to protect content. Has add and remove actions for managing permission for users and groups to download content protected by this guard.
51
52
  # @param rbac_content_guard
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [RBACContentGuardResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'ContentguardsRbacApi' do
62
64
  # Viewset for creating contentguards that use RBAC to protect content. Has add and remove actions for managing permission for users and groups to download content protected by this guard.
63
65
  # @param r_b_a_c_content_guard_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [nil]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'ContentguardsRbacApi' do
73
76
  # List rbac content guards
74
77
  # Viewset for creating contentguards that use RBAC to protect content. Has add and remove actions for managing permission for users and groups to download content protected by this guard.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :limit Number of results to return per page.
77
81
  # @option opts [String] :name Filter results where name matches value
78
82
  # @option opts [String] :name__contains Filter results where name contains value
@@ -103,6 +107,7 @@ describe 'ContentguardsRbacApi' do
103
107
  # List roles assigned to this object.
104
108
  # @param r_b_a_c_content_guard_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [ObjectRolesResponse]
@@ -117,6 +122,7 @@ describe 'ContentguardsRbacApi' do
117
122
  # List permissions available to the current user on this object.
118
123
  # @param r_b_a_c_content_guard_href
119
124
  # @param [Hash] opts the optional parameters
125
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
126
  # @option opts [Array<String>] :fields A list of fields to include in the response.
121
127
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
122
128
  # @return [MyPermissionsResponse]
@@ -132,6 +138,7 @@ describe 'ContentguardsRbacApi' do
132
138
  # @param r_b_a_c_content_guard_href
133
139
  # @param patched_rbac_content_guard
134
140
  # @param [Hash] opts the optional parameters
141
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
135
142
  # @return [RBACContentGuardResponse]
136
143
  describe 'partial_update test' do
137
144
  it 'should work' do
@@ -144,6 +151,7 @@ describe 'ContentguardsRbacApi' do
144
151
  # Viewset for creating contentguards that use RBAC to protect content. Has add and remove actions for managing permission for users and groups to download content protected by this guard.
145
152
  # @param r_b_a_c_content_guard_href
146
153
  # @param [Hash] opts the optional parameters
154
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
147
155
  # @option opts [Array<String>] :fields A list of fields to include in the response.
148
156
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
149
157
  # @return [RBACContentGuardResponse]
@@ -159,6 +167,7 @@ describe 'ContentguardsRbacApi' do
159
167
  # @param r_b_a_c_content_guard_href
160
168
  # @param nested_role
161
169
  # @param [Hash] opts the optional parameters
170
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
162
171
  # @return [NestedRoleResponse]
163
172
  describe 'remove_role test' do
164
173
  it 'should work' do
@@ -172,6 +181,7 @@ describe 'ContentguardsRbacApi' do
172
181
  # @param r_b_a_c_content_guard_href
173
182
  # @param rbac_content_guard
174
183
  # @param [Hash] opts the optional parameters
184
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
175
185
  # @return [RBACContentGuardResponse]
176
186
  describe 'update test' do
177
187
  it 'should work' do
@@ -36,6 +36,7 @@ describe 'DistributionsApi' do
36
36
  # List distributions
37
37
  # Provides base viewset for Distributions.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :base_path Filter results where base_path matches value
40
41
  # @option opts [String] :base_path__contains Filter results where base_path contains value
41
42
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
@@ -36,6 +36,7 @@ describe 'DistributionsArtifactsApi' do
36
36
  # List artifact distributions
37
37
  # ViewSet for ArtifactDistribution.
38
38
  # @param [Hash] opts the optional parameters
39
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
40
  # @option opts [String] :base_path Filter results where base_path matches value
40
41
  # @option opts [String] :base_path__contains Filter results where base_path contains value
41
42
  # @option opts [String] :base_path__icontains Filter results where base_path contains value
@@ -75,6 +76,7 @@ describe 'DistributionsArtifactsApi' do
75
76
  # ViewSet for ArtifactDistribution.
76
77
  # @param artifact_distribution_href
77
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
78
80
  # @option opts [Array<String>] :fields A list of fields to include in the response.
79
81
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
80
82
  # @return [ArtifactDistributionResponse]
@@ -37,6 +37,7 @@ describe 'DistributionsOpenpgpApi' do
37
37
  # Trigger an asynchronous create task
38
38
  # @param open_pgp_distribution
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [AsyncOperationResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'DistributionsOpenpgpApi' do
49
50
  # Trigger an asynchronous delete task
50
51
  # @param open_p_g_p_distribution_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @return [AsyncOperationResponse]
53
55
  describe 'delete test' do
54
56
  it 'should work' do
@@ -60,6 +62,7 @@ describe 'DistributionsOpenpgpApi' do
60
62
  # List open pgp distributions
61
63
  # Provides read and list methods and also provides asynchronous CUD methods to dispatch tasks with reservation that lock all Distributions preventing race conditions during base_path checking.
62
64
  # @param [Hash] opts the optional parameters
65
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
63
66
  # @option opts [Integer] :limit Number of results to return per page.
64
67
  # @option opts [Integer] :offset The initial index from which to return the results.
65
68
  # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;name&#x60; - Name * &#x60;-name&#x60; - Name (descending) * &#x60;pulp_labels&#x60; - Pulp labels * &#x60;-pulp_labels&#x60; - Pulp labels (descending) * &#x60;base_path&#x60; - Base path * &#x60;-base_path&#x60; - Base path (descending) * &#x60;hidden&#x60; - Hidden * &#x60;-hidden&#x60; - Hidden (descending) * &#x60;checkpoint&#x60; - Checkpoint * &#x60;-checkpoint&#x60; - Checkpoint (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
@@ -85,6 +88,7 @@ describe 'DistributionsOpenpgpApi' do
85
88
  # @param open_p_g_p_distribution_href
86
89
  # @param patched_open_pgp_distribution
87
90
  # @param [Hash] opts the optional parameters
91
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
88
92
  # @return [AsyncOperationResponse]
89
93
  describe 'partial_update test' do
90
94
  it 'should work' do
@@ -97,6 +101,7 @@ describe 'DistributionsOpenpgpApi' do
97
101
  # Provides read and list methods and also provides asynchronous CUD methods to dispatch tasks with reservation that lock all Distributions preventing race conditions during base_path checking.
98
102
  # @param open_p_g_p_distribution_href
99
103
  # @param [Hash] opts the optional parameters
104
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
100
105
  # @option opts [Array<String>] :fields A list of fields to include in the response.
101
106
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
102
107
  # @return [OpenPGPDistributionResponse]
@@ -112,6 +117,7 @@ describe 'DistributionsOpenpgpApi' do
112
117
  # @param open_p_g_p_distribution_href
113
118
  # @param set_label
114
119
  # @param [Hash] opts the optional parameters
120
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
115
121
  # @return [SetLabelResponse]
116
122
  describe 'set_label test' do
117
123
  it 'should work' do
@@ -125,6 +131,7 @@ describe 'DistributionsOpenpgpApi' do
125
131
  # @param open_p_g_p_distribution_href
126
132
  # @param unset_label
127
133
  # @param [Hash] opts the optional parameters
134
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
135
  # @return [UnsetLabelResponse]
129
136
  describe 'unset_label test' do
130
137
  it 'should work' do
@@ -138,6 +145,7 @@ describe 'DistributionsOpenpgpApi' do
138
145
  # @param open_p_g_p_distribution_href
139
146
  # @param open_pgp_distribution
140
147
  # @param [Hash] opts the optional parameters
148
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
141
149
  # @return [AsyncOperationResponse]
142
150
  describe 'update test' do
143
151
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'DomainsApi' do
37
37
  # ViewSet for Domain. NOTE: This API endpoint is in \&quot;tech preview\&quot; and subject to change
38
38
  # @param domain
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [DomainResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'DomainsApi' do
49
50
  # Trigger an asynchronous delete task
50
51
  # @param domain_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @return [AsyncOperationResponse]
53
55
  describe 'delete test' do
54
56
  it 'should work' do
@@ -60,6 +62,7 @@ describe 'DomainsApi' do
60
62
  # List domains
61
63
  # ViewSet for Domain. NOTE: This API endpoint is in \&quot;tech preview\&quot; and subject to change
62
64
  # @param [Hash] opts the optional parameters
65
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
63
66
  # @option opts [Integer] :limit Number of results to return per page.
64
67
  # @option opts [String] :name Filter results where name matches value
65
68
  # @option opts [String] :name__contains Filter results where name contains value
@@ -91,6 +94,7 @@ describe 'DomainsApi' do
91
94
  # Migrate the domain&#39;s storage backend to a new one. Launches a background task to copy the domain&#39;s artifacts over to the supplied storage backend. Then updates the domain&#39;s storage settings to the new storage backend. This task does not delete the stored files of the artifacts from the previous backend. **IMPORTANT** This task will block all other tasks within the domain until the migration is completed, essentially putting the domain into a read only state. Content will still be served from the old storage backend until the migration has completed, so don&#39;t remove the old backend until then. Note, this endpoint is not allowed on the default domain. This feature is in Tech Preview and is subject to future change and thus not guaranteed to be backwards compatible.
92
95
  # @param domain_backend_migrator
93
96
  # @param [Hash] opts the optional parameters
97
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
98
  # @return [AsyncOperationResponse]
95
99
  describe 'migrate test' do
96
100
  it 'should work' do
@@ -104,6 +108,7 @@ describe 'DomainsApi' do
104
108
  # @param domain_href
105
109
  # @param patched_domain
106
110
  # @param [Hash] opts the optional parameters
111
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
107
112
  # @return [AsyncOperationResponse]
108
113
  describe 'partial_update test' do
109
114
  it 'should work' do
@@ -116,6 +121,7 @@ describe 'DomainsApi' do
116
121
  # ViewSet for Domain. NOTE: This API endpoint is in \&quot;tech preview\&quot; and subject to change
117
122
  # @param domain_href
118
123
  # @param [Hash] opts the optional parameters
124
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
119
125
  # @option opts [Array<String>] :fields A list of fields to include in the response.
120
126
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
121
127
  # @return [DomainResponse]
@@ -131,6 +137,7 @@ describe 'DomainsApi' do
131
137
  # @param domain_href
132
138
  # @param set_label
133
139
  # @param [Hash] opts the optional parameters
140
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
134
141
  # @return [SetLabelResponse]
135
142
  describe 'set_label test' do
136
143
  it 'should work' do
@@ -144,6 +151,7 @@ describe 'DomainsApi' do
144
151
  # @param domain_href
145
152
  # @param unset_label
146
153
  # @param [Hash] opts the optional parameters
154
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
147
155
  # @return [UnsetLabelResponse]
148
156
  describe 'unset_label test' do
149
157
  it 'should work' do
@@ -157,6 +165,7 @@ describe 'DomainsApi' do
157
165
  # @param domain_href
158
166
  # @param domain
159
167
  # @param [Hash] opts the optional parameters
168
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
160
169
  # @return [AsyncOperationResponse]
161
170
  describe 'update test' do
162
171
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'ExportersFilesystemApi' do
37
37
  # Endpoint for managing FilesystemExporters.
38
38
  # @param filesystem_exporter
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [FilesystemExporterResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'ExportersFilesystemApi' do
49
50
  # Trigger an asynchronous delete task
50
51
  # @param filesystem_exporter_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @return [AsyncOperationResponse]
53
55
  describe 'delete test' do
54
56
  it 'should work' do
@@ -60,6 +62,7 @@ describe 'ExportersFilesystemApi' do
60
62
  # List filesystem exporters
61
63
  # Endpoint for managing FilesystemExporters.
62
64
  # @param [Hash] opts the optional parameters
65
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
63
66
  # @option opts [Integer] :limit Number of results to return per page.
64
67
  # @option opts [String] :name Filter results where name matches value
65
68
  # @option opts [String] :name__contains Filter results where name contains value
@@ -91,6 +94,7 @@ describe 'ExportersFilesystemApi' do
91
94
  # @param filesystem_exporter_href
92
95
  # @param patched_filesystem_exporter
93
96
  # @param [Hash] opts the optional parameters
97
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
98
  # @return [AsyncOperationResponse]
95
99
  describe 'partial_update test' do
96
100
  it 'should work' do
@@ -103,6 +107,7 @@ describe 'ExportersFilesystemApi' do
103
107
  # Endpoint for managing FilesystemExporters.
104
108
  # @param filesystem_exporter_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [FilesystemExporterResponse]
@@ -118,6 +123,7 @@ describe 'ExportersFilesystemApi' do
118
123
  # @param filesystem_exporter_href
119
124
  # @param filesystem_exporter
120
125
  # @param [Hash] opts the optional parameters
126
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
121
127
  # @return [AsyncOperationResponse]
122
128
  describe 'update test' do
123
129
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'ExportersFilesystemExportsApi' do
38
38
  # @param filesystem_exporter_href
39
39
  # @param filesystem_export
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [AsyncOperationResponse]
42
43
  describe 'create test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'ExportersFilesystemExportsApi' do
50
51
  # Endpoint for managing FilesystemExports.
51
52
  # @param filesystem_filesystem_export_href
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [nil]
54
56
  describe 'delete test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'ExportersFilesystemExportsApi' do
62
64
  # Endpoint for managing FilesystemExports.
63
65
  # @param filesystem_exporter_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @option opts [Integer] :limit Number of results to return per page.
66
69
  # @option opts [Integer] :offset The initial index from which to return the results.
67
70
  # @option opts [Array<String>] :fields A list of fields to include in the response.
@@ -78,6 +81,7 @@ describe 'ExportersFilesystemExportsApi' do
78
81
  # Endpoint for managing FilesystemExports.
79
82
  # @param filesystem_filesystem_export_href
80
83
  # @param [Hash] opts the optional parameters
84
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
81
85
  # @option opts [Array<String>] :fields A list of fields to include in the response.
82
86
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
83
87
  # @return [FilesystemExportResponse]
@@ -37,6 +37,7 @@ describe 'ExportersPulpApi' do
37
37
  # ViewSet for viewing PulpExporters.
38
38
  # @param pulp_exporter
39
39
  # @param [Hash] opts the optional parameters
40
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
40
41
  # @return [PulpExporterResponse]
41
42
  describe 'create test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'ExportersPulpApi' do
49
50
  # Trigger an asynchronous delete task
50
51
  # @param pulp_exporter_href
51
52
  # @param [Hash] opts the optional parameters
53
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
52
54
  # @return [AsyncOperationResponse]
53
55
  describe 'delete test' do
54
56
  it 'should work' do
@@ -60,6 +62,7 @@ describe 'ExportersPulpApi' do
60
62
  # List pulp exporters
61
63
  # ViewSet for viewing PulpExporters.
62
64
  # @param [Hash] opts the optional parameters
65
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
63
66
  # @option opts [Integer] :limit Number of results to return per page.
64
67
  # @option opts [String] :name Filter results where name matches value
65
68
  # @option opts [String] :name__contains Filter results where name contains value
@@ -91,6 +94,7 @@ describe 'ExportersPulpApi' do
91
94
  # @param pulp_exporter_href
92
95
  # @param patched_pulp_exporter
93
96
  # @param [Hash] opts the optional parameters
97
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
98
  # @return [AsyncOperationResponse]
95
99
  describe 'partial_update test' do
96
100
  it 'should work' do
@@ -103,6 +107,7 @@ describe 'ExportersPulpApi' do
103
107
  # ViewSet for viewing PulpExporters.
104
108
  # @param pulp_exporter_href
105
109
  # @param [Hash] opts the optional parameters
110
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
106
111
  # @option opts [Array<String>] :fields A list of fields to include in the response.
107
112
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
108
113
  # @return [PulpExporterResponse]
@@ -118,6 +123,7 @@ describe 'ExportersPulpApi' do
118
123
  # @param pulp_exporter_href
119
124
  # @param pulp_exporter
120
125
  # @param [Hash] opts the optional parameters
126
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
121
127
  # @return [AsyncOperationResponse]
122
128
  describe 'update test' do
123
129
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'ExportersPulpExportsApi' do
38
38
  # @param pulp_exporter_href
39
39
  # @param pulp_export
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [AsyncOperationResponse]
42
43
  describe 'create test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'ExportersPulpExportsApi' do
50
51
  # ViewSet for viewing exports from a PulpExporter.
51
52
  # @param pulp_pulp_export_href
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [nil]
54
56
  describe 'delete test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'ExportersPulpExportsApi' do
62
64
  # ViewSet for viewing exports from a PulpExporter.
63
65
  # @param pulp_exporter_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @option opts [Integer] :limit Number of results to return per page.
66
69
  # @option opts [Integer] :offset The initial index from which to return the results.
67
70
  # @option opts [Array<String>] :fields A list of fields to include in the response.
@@ -78,6 +81,7 @@ describe 'ExportersPulpExportsApi' do
78
81
  # ViewSet for viewing exports from a PulpExporter.
79
82
  # @param pulp_pulp_export_href
80
83
  # @param [Hash] opts the optional parameters
84
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
81
85
  # @option opts [Array<String>] :fields A list of fields to include in the response.
82
86
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
83
87
  # @return [PulpExportResponse]
@@ -38,6 +38,7 @@ describe 'GroupsApi' do
38
38
  # @param group_href
39
39
  # @param nested_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [NestedRoleResponse]
42
43
  describe 'add_role test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'GroupsApi' do
50
51
  # ViewSet for Group.
51
52
  # @param group
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [GroupResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'GroupsApi' do
62
64
  # ViewSet for Group.
63
65
  # @param group_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @return [nil]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'GroupsApi' do
73
76
  # List groups
74
77
  # ViewSet for Group.
75
78
  # @param [Hash] opts the optional parameters
79
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
76
80
  # @option opts [Integer] :id Filter results where id matches value
77
81
  # @option opts [Array<Integer>] :id__in Filter results where id is in a comma-separated list of values
78
82
  # @option opts [Integer] :limit Number of results to return per page.
@@ -101,6 +105,7 @@ describe 'GroupsApi' do
101
105
  # List roles assigned to this object.
102
106
  # @param group_href
103
107
  # @param [Hash] opts the optional parameters
108
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
104
109
  # @option opts [Array<String>] :fields A list of fields to include in the response.
105
110
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
106
111
  # @return [ObjectRolesResponse]
@@ -115,6 +120,7 @@ describe 'GroupsApi' do
115
120
  # List permissions available to the current user on this object.
116
121
  # @param group_href
117
122
  # @param [Hash] opts the optional parameters
123
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
118
124
  # @option opts [Array<String>] :fields A list of fields to include in the response.
119
125
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
120
126
  # @return [MyPermissionsResponse]
@@ -130,6 +136,7 @@ describe 'GroupsApi' do
130
136
  # @param group_href
131
137
  # @param patched_group
132
138
  # @param [Hash] opts the optional parameters
139
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
133
140
  # @return [GroupResponse]
134
141
  describe 'partial_update test' do
135
142
  it 'should work' do
@@ -142,6 +149,7 @@ describe 'GroupsApi' do
142
149
  # ViewSet for Group.
143
150
  # @param group_href
144
151
  # @param [Hash] opts the optional parameters
152
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
145
153
  # @option opts [Array<String>] :fields A list of fields to include in the response.
146
154
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
147
155
  # @return [GroupResponse]
@@ -157,6 +165,7 @@ describe 'GroupsApi' do
157
165
  # @param group_href
158
166
  # @param nested_role
159
167
  # @param [Hash] opts the optional parameters
168
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
160
169
  # @return [NestedRoleResponse]
161
170
  describe 'remove_role test' do
162
171
  it 'should work' do
@@ -170,6 +179,7 @@ describe 'GroupsApi' do
170
179
  # @param group_href
171
180
  # @param group
172
181
  # @param [Hash] opts the optional parameters
182
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
173
183
  # @return [GroupResponse]
174
184
  describe 'update test' do
175
185
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'GroupsRolesApi' do
38
38
  # @param group_href
39
39
  # @param group_role
40
40
  # @param [Hash] opts the optional parameters
41
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
41
42
  # @return [GroupRoleResponse]
42
43
  describe 'create test' do
43
44
  it 'should work' do
@@ -50,6 +51,7 @@ describe 'GroupsRolesApi' do
50
51
  # ViewSet for GroupRole.
51
52
  # @param groups_group_role_href
52
53
  # @param [Hash] opts the optional parameters
54
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
53
55
  # @return [nil]
54
56
  describe 'delete test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'GroupsRolesApi' do
62
64
  # ViewSet for GroupRole.
63
65
  # @param group_href
64
66
  # @param [Hash] opts the optional parameters
67
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
65
68
  # @option opts [String] :content_object content_object
66
69
  # @option opts [String] :domain Foreign Key referenced by HREF
67
70
  # @option opts [Integer] :limit Number of results to return per page.
@@ -90,6 +93,7 @@ describe 'GroupsRolesApi' do
90
93
  # ViewSet for GroupRole.
91
94
  # @param groups_group_role_href
92
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
93
97
  # @option opts [Array<String>] :fields A list of fields to include in the response.
94
98
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
95
99
  # @return [GroupRoleResponse]