pulp_container_client 2.24.1 → 2.24.3

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 (76) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -4
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +10 -10
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +10 -10
  7. data/docs/ContainerContainerPushRepository.md +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  9. data/docs/ContentBlobsApi.md +158 -0
  10. data/docs/ContentManifestsApi.md +158 -0
  11. data/docs/ContentSignaturesApi.md +158 -0
  12. data/docs/ContentTagsApi.md +158 -0
  13. data/docs/DistributionsContainerApi.md +76 -34
  14. data/docs/DistributionsPullThroughApi.md +76 -34
  15. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  16. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  17. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  18. data/docs/PulpContainerNamespacesApi.md +40 -16
  19. data/docs/RemotesContainerApi.md +72 -32
  20. data/docs/RemotesPullThroughApi.md +72 -32
  21. data/docs/RepositoriesContainerApi.md +138 -64
  22. data/docs/RepositoriesContainerPushApi.md +80 -36
  23. data/docs/RepositoriesContainerPushVersionsApi.md +22 -10
  24. data/docs/RepositoriesContainerVersionsApi.md +22 -10
  25. data/docs/TokenApi.md +14 -5
  26. data/lib/pulp_container_client/api/content_blobs_api.rb +160 -0
  27. data/lib/pulp_container_client/api/content_manifests_api.rb +160 -0
  28. data/lib/pulp_container_client/api/content_signatures_api.rb +160 -0
  29. data/lib/pulp_container_client/api/content_tags_api.rb +160 -0
  30. data/lib/pulp_container_client/api/distributions_container_api.rb +42 -3
  31. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +42 -3
  32. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
  33. data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
  34. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
  35. data/lib/pulp_container_client/api/repositories_container_api.rb +63 -0
  36. data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
  37. data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +15 -3
  38. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +15 -3
  39. data/lib/pulp_container_client/api/token_api.rb +9 -0
  40. data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
  41. data/lib/pulp_container_client/models/container_container_distribution_response.rb +49 -49
  42. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
  43. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +49 -49
  44. data/lib/pulp_container_client/models/container_container_push_repository.rb +46 -46
  45. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +69 -69
  46. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +22 -22
  47. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +22 -22
  48. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +46 -46
  49. data/lib/pulp_container_client/models/unset_label.rb +1 -1
  50. data/lib/pulp_container_client/models/unset_label_response.rb +1 -1
  51. data/lib/pulp_container_client/version.rb +1 -1
  52. data/pulp_container_client.gemspec +0 -1
  53. data/spec/api/content_blobs_api_spec.rb +30 -0
  54. data/spec/api/content_manifests_api_spec.rb +30 -0
  55. data/spec/api/content_signatures_api_spec.rb +30 -0
  56. data/spec/api/content_tags_api_spec.rb +30 -0
  57. data/spec/api/distributions_container_api_spec.rb +14 -1
  58. data/spec/api/distributions_pull_through_api_spec.rb +14 -1
  59. data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
  60. data/spec/api/remotes_container_api_spec.rb +12 -0
  61. data/spec/api/remotes_pull_through_api_spec.rb +12 -0
  62. data/spec/api/repositories_container_api_spec.rb +21 -0
  63. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  64. data/spec/api/repositories_container_push_versions_api_spec.rb +5 -1
  65. data/spec/api/repositories_container_versions_api_spec.rb +5 -1
  66. data/spec/api/token_api_spec.rb +3 -0
  67. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  68. data/spec/models/container_container_distribution_spec.rb +5 -5
  69. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  70. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  71. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  72. data/spec/models/container_container_push_repository_spec.rb +4 -4
  73. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  74. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  75. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  76. metadata +60 -80
@@ -38,6 +38,7 @@ describe 'PulpContainerNamespacesApi' do
38
38
  # @param container_container_namespace_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 'PulpContainerNamespacesApi' do
50
51
  # ViewSet for ContainerNamespaces.
51
52
  # @param container_container_namespace
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 [ContainerContainerNamespaceResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'PulpContainerNamespacesApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_namespace_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 [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'PulpContainerNamespacesApi' do
73
76
  # List container namespaces
74
77
  # ViewSet for ContainerNamespaces.
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 'PulpContainerNamespacesApi' do
103
107
  # List roles assigned to this object.
104
108
  # @param container_container_namespace_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 'PulpContainerNamespacesApi' do
117
122
  # List permissions available to the current user on this object.
118
123
  # @param container_container_namespace_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]
@@ -131,6 +137,7 @@ describe 'PulpContainerNamespacesApi' do
131
137
  # ViewSet for ContainerNamespaces.
132
138
  # @param container_container_namespace_href
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
  # @option opts [Array<String>] :fields A list of fields to include in the response.
135
142
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
136
143
  # @return [ContainerContainerNamespaceResponse]
@@ -146,6 +153,7 @@ describe 'PulpContainerNamespacesApi' do
146
153
  # @param container_container_namespace_href
147
154
  # @param nested_role
148
155
  # @param [Hash] opts the optional parameters
156
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
149
157
  # @return [NestedRoleResponse]
150
158
  describe 'remove_role test' do
151
159
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RemotesContainerApi' do
38
38
  # @param container_container_remote_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 'RemotesContainerApi' do
50
51
  # Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the &#x60;&#x60;policy&#x60;&#x60; field. &#x60;&#x60;on_demand&#x60;&#x60; and &#x60;&#x60;streamed&#x60;&#x60; policies can provide significant disk space savings.
51
52
  # @param container_container_remote
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 [ContainerContainerRemoteResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'RemotesContainerApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_remote_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 [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'RemotesContainerApi' do
73
76
  # List container remotes
74
77
  # Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the &#x60;&#x60;policy&#x60;&#x60; field. &#x60;&#x60;on_demand&#x60;&#x60; and &#x60;&#x60;streamed&#x60;&#x60; policies can provide significant disk space savings.
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
@@ -111,6 +115,7 @@ describe 'RemotesContainerApi' do
111
115
  # List roles assigned to this object.
112
116
  # @param container_container_remote_href
113
117
  # @param [Hash] opts the optional parameters
118
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
114
119
  # @option opts [Array<String>] :fields A list of fields to include in the response.
115
120
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
116
121
  # @return [ObjectRolesResponse]
@@ -125,6 +130,7 @@ describe 'RemotesContainerApi' do
125
130
  # List permissions available to the current user on this object.
126
131
  # @param container_container_remote_href
127
132
  # @param [Hash] opts the optional parameters
133
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
134
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
135
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
130
136
  # @return [MyPermissionsResponse]
@@ -140,6 +146,7 @@ describe 'RemotesContainerApi' do
140
146
  # @param container_container_remote_href
141
147
  # @param patchedcontainer_container_remote
142
148
  # @param [Hash] opts the optional parameters
149
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
143
150
  # @return [AsyncOperationResponse]
144
151
  describe 'partial_update test' do
145
152
  it 'should work' do
@@ -152,6 +159,7 @@ describe 'RemotesContainerApi' do
152
159
  # Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the &#x60;&#x60;policy&#x60;&#x60; field. &#x60;&#x60;on_demand&#x60;&#x60; and &#x60;&#x60;streamed&#x60;&#x60; policies can provide significant disk space savings.
153
160
  # @param container_container_remote_href
154
161
  # @param [Hash] opts the optional parameters
162
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
155
163
  # @option opts [Array<String>] :fields A list of fields to include in the response.
156
164
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
157
165
  # @return [ContainerContainerRemoteResponse]
@@ -167,6 +175,7 @@ describe 'RemotesContainerApi' do
167
175
  # @param container_container_remote_href
168
176
  # @param nested_role
169
177
  # @param [Hash] opts the optional parameters
178
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
170
179
  # @return [NestedRoleResponse]
171
180
  describe 'remove_role test' do
172
181
  it 'should work' do
@@ -180,6 +189,7 @@ describe 'RemotesContainerApi' do
180
189
  # @param container_container_remote_href
181
190
  # @param set_label
182
191
  # @param [Hash] opts the optional parameters
192
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
183
193
  # @return [SetLabelResponse]
184
194
  describe 'set_label test' do
185
195
  it 'should work' do
@@ -193,6 +203,7 @@ describe 'RemotesContainerApi' do
193
203
  # @param container_container_remote_href
194
204
  # @param unset_label
195
205
  # @param [Hash] opts the optional parameters
206
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
196
207
  # @return [UnsetLabelResponse]
197
208
  describe 'unset_label test' do
198
209
  it 'should work' do
@@ -206,6 +217,7 @@ describe 'RemotesContainerApi' do
206
217
  # @param container_container_remote_href
207
218
  # @param container_container_remote
208
219
  # @param [Hash] opts the optional parameters
220
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
209
221
  # @return [AsyncOperationResponse]
210
222
  describe 'update test' do
211
223
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RemotesPullThroughApi' do
38
38
  # @param container_container_pull_through_remote_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 'RemotesPullThroughApi' do
50
51
  # A Container Remote referencing a remote registry used as a source for the pull-through caching.
51
52
  # @param container_container_pull_through_remote
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 [ContainerContainerPullThroughRemoteResponse]
54
56
  describe 'create test' do
55
57
  it 'should work' do
@@ -62,6 +64,7 @@ describe 'RemotesPullThroughApi' do
62
64
  # Trigger an asynchronous delete task
63
65
  # @param container_container_pull_through_remote_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 [AsyncOperationResponse]
66
69
  describe 'delete test' do
67
70
  it 'should work' do
@@ -73,6 +76,7 @@ describe 'RemotesPullThroughApi' do
73
76
  # List container pull through remotes
74
77
  # A Container Remote referencing a remote registry used as a source for the pull-through caching.
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
@@ -111,6 +115,7 @@ describe 'RemotesPullThroughApi' do
111
115
  # List roles assigned to this object.
112
116
  # @param container_container_pull_through_remote_href
113
117
  # @param [Hash] opts the optional parameters
118
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
114
119
  # @option opts [Array<String>] :fields A list of fields to include in the response.
115
120
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
116
121
  # @return [ObjectRolesResponse]
@@ -125,6 +130,7 @@ describe 'RemotesPullThroughApi' do
125
130
  # List permissions available to the current user on this object.
126
131
  # @param container_container_pull_through_remote_href
127
132
  # @param [Hash] opts the optional parameters
133
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
128
134
  # @option opts [Array<String>] :fields A list of fields to include in the response.
129
135
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
130
136
  # @return [MyPermissionsResponse]
@@ -140,6 +146,7 @@ describe 'RemotesPullThroughApi' do
140
146
  # @param container_container_pull_through_remote_href
141
147
  # @param patchedcontainer_container_pull_through_remote
142
148
  # @param [Hash] opts the optional parameters
149
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
143
150
  # @return [AsyncOperationResponse]
144
151
  describe 'partial_update test' do
145
152
  it 'should work' do
@@ -152,6 +159,7 @@ describe 'RemotesPullThroughApi' do
152
159
  # A Container Remote referencing a remote registry used as a source for the pull-through caching.
153
160
  # @param container_container_pull_through_remote_href
154
161
  # @param [Hash] opts the optional parameters
162
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
155
163
  # @option opts [Array<String>] :fields A list of fields to include in the response.
156
164
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
157
165
  # @return [ContainerContainerPullThroughRemoteResponse]
@@ -167,6 +175,7 @@ describe 'RemotesPullThroughApi' do
167
175
  # @param container_container_pull_through_remote_href
168
176
  # @param nested_role
169
177
  # @param [Hash] opts the optional parameters
178
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
170
179
  # @return [NestedRoleResponse]
171
180
  describe 'remove_role test' do
172
181
  it 'should work' do
@@ -180,6 +189,7 @@ describe 'RemotesPullThroughApi' do
180
189
  # @param container_container_pull_through_remote_href
181
190
  # @param set_label
182
191
  # @param [Hash] opts the optional parameters
192
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
183
193
  # @return [SetLabelResponse]
184
194
  describe 'set_label test' do
185
195
  it 'should work' do
@@ -193,6 +203,7 @@ describe 'RemotesPullThroughApi' do
193
203
  # @param container_container_pull_through_remote_href
194
204
  # @param unset_label
195
205
  # @param [Hash] opts the optional parameters
206
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
196
207
  # @return [UnsetLabelResponse]
197
208
  describe 'unset_label test' do
198
209
  it 'should work' do
@@ -206,6 +217,7 @@ describe 'RemotesPullThroughApi' do
206
217
  # @param container_container_pull_through_remote_href
207
218
  # @param container_container_pull_through_remote
208
219
  # @param [Hash] opts the optional parameters
220
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
209
221
  # @return [AsyncOperationResponse]
210
222
  describe 'update test' do
211
223
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RepositoriesContainerApi' do
38
38
  # @param container_container_repository_href
39
39
  # @param recursive_manage
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 'add test' do
43
44
  it 'should work' do
@@ -51,6 +52,7 @@ describe 'RepositoriesContainerApi' do
51
52
  # @param container_container_repository_href
52
53
  # @param nested_role
53
54
  # @param [Hash] opts the optional parameters
55
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
54
56
  # @return [NestedRoleResponse]
55
57
  describe 'add_role test' do
56
58
  it 'should work' do
@@ -63,6 +65,7 @@ describe 'RepositoriesContainerApi' do
63
65
  # Trigger an asynchronous task to build an OCI image from a Containerfile. A new repository version is created with the new image and tag. This API is in tech preview. Backwards compatibility when upgrading is not guaranteed.
64
66
  # @param container_container_repository_href
65
67
  # @param [Hash] opts the optional parameters
68
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
66
69
  # @option opts [String] :containerfile_name Name of the Containerfile, from build_context, that should be used to run podman-build.
67
70
  # @option opts [File] :containerfile An uploaded Containerfile that should be used to run podman-build.
68
71
  # @option opts [String] :tag A tag name for the new image being built.
@@ -80,6 +83,7 @@ describe 'RepositoriesContainerApi' do
80
83
  # @param container_container_repository_href
81
84
  # @param manifest_copy
82
85
  # @param [Hash] opts the optional parameters
86
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
83
87
  # @return [AsyncOperationResponse]
84
88
  describe 'copy_manifests test' do
85
89
  it 'should work' do
@@ -93,6 +97,7 @@ describe 'RepositoriesContainerApi' do
93
97
  # @param container_container_repository_href
94
98
  # @param tag_copy
95
99
  # @param [Hash] opts the optional parameters
100
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
96
101
  # @return [AsyncOperationResponse]
97
102
  describe 'copy_tags test' do
98
103
  it 'should work' do
@@ -105,6 +110,7 @@ describe 'RepositoriesContainerApi' do
105
110
  # ViewSet for container repo.
106
111
  # @param container_container_repository
107
112
  # @param [Hash] opts the optional parameters
113
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
108
114
  # @return [ContainerContainerRepositoryResponse]
109
115
  describe 'create test' do
110
116
  it 'should work' do
@@ -117,6 +123,7 @@ describe 'RepositoriesContainerApi' do
117
123
  # Trigger an asynchronous delete task
118
124
  # @param container_container_repository_href
119
125
  # @param [Hash] opts the optional parameters
126
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
120
127
  # @return [AsyncOperationResponse]
121
128
  describe 'delete test' do
122
129
  it 'should work' do
@@ -128,6 +135,7 @@ describe 'RepositoriesContainerApi' do
128
135
  # List container repositorys
129
136
  # ViewSet for container repo.
130
137
  # @param [Hash] opts the optional parameters
138
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
131
139
  # @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
132
140
  # @option opts [Integer] :limit Number of results to return per page.
133
141
  # @option opts [String] :name Filter results where name matches value
@@ -170,6 +178,7 @@ describe 'RepositoriesContainerApi' do
170
178
  # List roles assigned to this object.
171
179
  # @param container_container_repository_href
172
180
  # @param [Hash] opts the optional parameters
181
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
173
182
  # @option opts [Array<String>] :fields A list of fields to include in the response.
174
183
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
175
184
  # @return [ObjectRolesResponse]
@@ -184,6 +193,7 @@ describe 'RepositoriesContainerApi' do
184
193
  # List permissions available to the current user on this object.
185
194
  # @param container_container_repository_href
186
195
  # @param [Hash] opts the optional parameters
196
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
187
197
  # @option opts [Array<String>] :fields A list of fields to include in the response.
188
198
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
189
199
  # @return [MyPermissionsResponse]
@@ -199,6 +209,7 @@ describe 'RepositoriesContainerApi' do
199
209
  # @param container_container_repository_href
200
210
  # @param patchedcontainer_container_repository
201
211
  # @param [Hash] opts the optional parameters
212
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
202
213
  # @return [AsyncOperationResponse]
203
214
  describe 'partial_update test' do
204
215
  it 'should work' do
@@ -211,6 +222,7 @@ describe 'RepositoriesContainerApi' do
211
222
  # ViewSet for container repo.
212
223
  # @param container_container_repository_href
213
224
  # @param [Hash] opts the optional parameters
225
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
214
226
  # @option opts [Array<String>] :fields A list of fields to include in the response.
215
227
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
216
228
  # @return [ContainerContainerRepositoryResponse]
@@ -226,6 +238,7 @@ describe 'RepositoriesContainerApi' do
226
238
  # @param container_container_repository_href
227
239
  # @param recursive_manage
228
240
  # @param [Hash] opts the optional parameters
241
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
229
242
  # @return [AsyncOperationResponse]
230
243
  describe 'remove test' do
231
244
  it 'should work' do
@@ -239,6 +252,7 @@ describe 'RepositoriesContainerApi' do
239
252
  # @param container_container_repository_href
240
253
  # @param nested_role
241
254
  # @param [Hash] opts the optional parameters
255
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
242
256
  # @return [NestedRoleResponse]
243
257
  describe 'remove_role test' do
244
258
  it 'should work' do
@@ -252,6 +266,7 @@ describe 'RepositoriesContainerApi' do
252
266
  # @param container_container_repository_href
253
267
  # @param set_label
254
268
  # @param [Hash] opts the optional parameters
269
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
255
270
  # @return [SetLabelResponse]
256
271
  describe 'set_label test' do
257
272
  it 'should work' do
@@ -265,6 +280,7 @@ describe 'RepositoriesContainerApi' do
265
280
  # @param container_container_repository_href
266
281
  # @param repository_sign
267
282
  # @param [Hash] opts the optional parameters
283
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
268
284
  # @return [AsyncOperationResponse]
269
285
  describe 'sign test' do
270
286
  it 'should work' do
@@ -278,6 +294,7 @@ describe 'RepositoriesContainerApi' do
278
294
  # @param container_container_repository_href
279
295
  # @param container_repository_sync_url
280
296
  # @param [Hash] opts the optional parameters
297
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
281
298
  # @return [AsyncOperationResponse]
282
299
  describe 'sync test' do
283
300
  it 'should work' do
@@ -291,6 +308,7 @@ describe 'RepositoriesContainerApi' do
291
308
  # @param container_container_repository_href
292
309
  # @param tag_image
293
310
  # @param [Hash] opts the optional parameters
311
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
294
312
  # @return [AsyncOperationResponse]
295
313
  describe 'tag test' do
296
314
  it 'should work' do
@@ -304,6 +322,7 @@ describe 'RepositoriesContainerApi' do
304
322
  # @param container_container_repository_href
305
323
  # @param unset_label
306
324
  # @param [Hash] opts the optional parameters
325
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
307
326
  # @return [UnsetLabelResponse]
308
327
  describe 'unset_label test' do
309
328
  it 'should work' do
@@ -317,6 +336,7 @@ describe 'RepositoriesContainerApi' do
317
336
  # @param container_container_repository_href
318
337
  # @param un_tag_image
319
338
  # @param [Hash] opts the optional parameters
339
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
320
340
  # @return [AsyncOperationResponse]
321
341
  describe 'untag test' do
322
342
  it 'should work' do
@@ -330,6 +350,7 @@ describe 'RepositoriesContainerApi' do
330
350
  # @param container_container_repository_href
331
351
  # @param container_container_repository
332
352
  # @param [Hash] opts the optional parameters
353
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
333
354
  # @return [AsyncOperationResponse]
334
355
  describe 'update test' do
335
356
  it 'should work' do
@@ -38,6 +38,7 @@ describe 'RepositoriesContainerPushApi' do
38
38
  # @param container_container_push_repository_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
@@ -49,6 +50,7 @@ describe 'RepositoriesContainerPushApi' do
49
50
  # List container push repositorys
50
51
  # ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
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
  # @option opts [String] :latest_with_content Content Unit referenced by HREF/PRN
53
55
  # @option opts [Integer] :limit Number of results to return per page.
54
56
  # @option opts [String] :name Filter results where name matches value
@@ -91,6 +93,7 @@ describe 'RepositoriesContainerPushApi' do
91
93
  # List roles assigned to this object.
92
94
  # @param container_container_push_repository_href
93
95
  # @param [Hash] opts the optional parameters
96
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
94
97
  # @option opts [Array<String>] :fields A list of fields to include in the response.
95
98
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
96
99
  # @return [ObjectRolesResponse]
@@ -105,6 +108,7 @@ describe 'RepositoriesContainerPushApi' do
105
108
  # List permissions available to the current user on this object.
106
109
  # @param container_container_push_repository_href
107
110
  # @param [Hash] opts the optional parameters
111
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
108
112
  # @option opts [Array<String>] :fields A list of fields to include in the response.
109
113
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
110
114
  # @return [MyPermissionsResponse]
@@ -120,6 +124,7 @@ describe 'RepositoriesContainerPushApi' do
120
124
  # @param container_container_push_repository_href
121
125
  # @param patchedcontainer_container_push_repository
122
126
  # @param [Hash] opts the optional parameters
127
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
123
128
  # @return [AsyncOperationResponse]
124
129
  describe 'partial_update test' do
125
130
  it 'should work' do
@@ -132,6 +137,7 @@ describe 'RepositoriesContainerPushApi' do
132
137
  # ViewSet for a container push repository. POST and DELETE are disallowed because a push repository is tightly coupled with a ContainerDistribution which handles it automatically. Created - during push operation, removed - with ContainerDistribution removal.
133
138
  # @param container_container_push_repository_href
134
139
  # @param [Hash] opts the optional parameters
140
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
135
141
  # @option opts [Array<String>] :fields A list of fields to include in the response.
136
142
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
137
143
  # @return [ContainerContainerPushRepositoryResponse]
@@ -147,6 +153,7 @@ describe 'RepositoriesContainerPushApi' do
147
153
  # @param container_container_push_repository_href
148
154
  # @param remove_image
149
155
  # @param [Hash] opts the optional parameters
156
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
150
157
  # @return [AsyncOperationResponse]
151
158
  describe 'remove_image test' do
152
159
  it 'should work' do
@@ -160,6 +167,7 @@ describe 'RepositoriesContainerPushApi' do
160
167
  # @param container_container_push_repository_href
161
168
  # @param nested_role
162
169
  # @param [Hash] opts the optional parameters
170
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
163
171
  # @return [NestedRoleResponse]
164
172
  describe 'remove_role test' do
165
173
  it 'should work' do
@@ -172,6 +180,7 @@ describe 'RepositoriesContainerPushApi' do
172
180
  # @param container_container_push_repository_href
173
181
  # @param remove_signatures
174
182
  # @param [Hash] opts the optional parameters
183
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
175
184
  # @return [RemoveSignaturesResponse]
176
185
  describe 'remove_signatures test' do
177
186
  it 'should work' do
@@ -185,6 +194,7 @@ describe 'RepositoriesContainerPushApi' do
185
194
  # @param container_container_push_repository_href
186
195
  # @param repository_sign
187
196
  # @param [Hash] opts the optional parameters
197
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
188
198
  # @return [AsyncOperationResponse]
189
199
  describe 'sign test' do
190
200
  it 'should work' do
@@ -198,6 +208,7 @@ describe 'RepositoriesContainerPushApi' do
198
208
  # @param container_container_push_repository_href
199
209
  # @param tag_image
200
210
  # @param [Hash] opts the optional parameters
211
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
201
212
  # @return [AsyncOperationResponse]
202
213
  describe 'tag test' do
203
214
  it 'should work' do
@@ -211,6 +222,7 @@ describe 'RepositoriesContainerPushApi' do
211
222
  # @param container_container_push_repository_href
212
223
  # @param un_tag_image
213
224
  # @param [Hash] opts the optional parameters
225
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
214
226
  # @return [AsyncOperationResponse]
215
227
  describe 'untag test' do
216
228
  it 'should work' do
@@ -224,6 +236,7 @@ describe 'RepositoriesContainerPushApi' do
224
236
  # @param container_container_push_repository_href
225
237
  # @param container_container_push_repository
226
238
  # @param [Hash] opts the optional parameters
239
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
227
240
  # @return [AsyncOperationResponse]
228
241
  describe 'update test' do
229
242
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'RepositoriesContainerPushVersionsApi' do
37
37
  # Trigger an asynchronous task to delete a repository version.
38
38
  # @param container_container_push_repository_version_href
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 'delete test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'RepositoriesContainerPushVersionsApi' do
49
50
  # ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
50
51
  # @param container_container_push_repository_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
  # @option opts [String] :content Content Unit referenced by HREF/PRN
53
55
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
54
56
  # @option opts [Integer] :limit Number of results to return per page.
@@ -59,7 +61,7 @@ describe 'RepositoriesContainerPushVersionsApi' do
59
61
  # @option opts [Integer] :number__lte Filter results where number is less than or equal to value
60
62
  # @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
61
63
  # @option opts [Integer] :offset The initial index from which to return the results.
62
- # @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;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
64
+ # @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;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;content_ids&#x60; - Content ids * &#x60;-content_ids&#x60; - Content ids (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
63
65
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
64
66
  # @option opts [Time] :pulp_created Filter results where pulp_created matches value
65
67
  # @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
@@ -84,6 +86,7 @@ describe 'RepositoriesContainerPushVersionsApi' do
84
86
  # ContainerPushRepositoryVersion represents a single container push repository version. Repository versions of a push repository are not allowed to be deleted. Versioning of such repositories, as well as creation/removal, happens automatically without explicit user actions. Users could make a repository not functional by accident if allowed to delete repository versions.
85
87
  # @param container_container_push_repository_version_href
86
88
  # @param [Hash] opts the optional parameters
89
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
87
90
  # @option opts [Array<String>] :fields A list of fields to include in the response.
88
91
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
89
92
  # @return [RepositoryVersionResponse]
@@ -98,6 +101,7 @@ describe 'RepositoriesContainerPushVersionsApi' do
98
101
  # @param container_container_push_repository_version_href
99
102
  # @param repair
100
103
  # @param [Hash] opts the optional parameters
104
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
101
105
  # @return [AsyncOperationResponse]
102
106
  describe 'repair test' do
103
107
  it 'should work' do
@@ -37,6 +37,7 @@ describe 'RepositoriesContainerVersionsApi' do
37
37
  # Trigger an asynchronous task to delete a repository version.
38
38
  # @param container_container_repository_version_href
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 'delete test' do
42
43
  it 'should work' do
@@ -49,6 +50,7 @@ describe 'RepositoriesContainerVersionsApi' do
49
50
  # ContainerRepositoryVersion represents a single container repository version.
50
51
  # @param container_container_repository_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
  # @option opts [String] :content Content Unit referenced by HREF/PRN
53
55
  # @option opts [Array<String>] :content__in Multiple values may be separated by commas.
54
56
  # @option opts [Integer] :limit Number of results to return per page.
@@ -59,7 +61,7 @@ describe 'RepositoriesContainerVersionsApi' do
59
61
  # @option opts [Integer] :number__lte Filter results where number is less than or equal to value
60
62
  # @option opts [Array<Integer>] :number__range Filter results where number is between two comma separated values
61
63
  # @option opts [Integer] :offset The initial index from which to return the results.
62
- # @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;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
64
+ # @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;number&#x60; - Number * &#x60;-number&#x60; - Number (descending) * &#x60;complete&#x60; - Complete * &#x60;-complete&#x60; - Complete (descending) * &#x60;info&#x60; - Info * &#x60;-info&#x60; - Info (descending) * &#x60;content_ids&#x60; - Content ids * &#x60;-content_ids&#x60; - Content ids (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
63
65
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
64
66
  # @option opts [Time] :pulp_created Filter results where pulp_created matches value
65
67
  # @option opts [Time] :pulp_created__gt Filter results where pulp_created is greater than value
@@ -84,6 +86,7 @@ describe 'RepositoriesContainerVersionsApi' do
84
86
  # ContainerRepositoryVersion represents a single container repository version.
85
87
  # @param container_container_repository_version_href
86
88
  # @param [Hash] opts the optional parameters
89
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
87
90
  # @option opts [Array<String>] :fields A list of fields to include in the response.
88
91
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
89
92
  # @return [RepositoryVersionResponse]
@@ -98,6 +101,7 @@ describe 'RepositoriesContainerVersionsApi' do
98
101
  # @param container_container_repository_version_href
99
102
  # @param repair
100
103
  # @param [Hash] opts the optional parameters
104
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
101
105
  # @return [AsyncOperationResponse]
102
106
  describe 'repair test' do
103
107
  it 'should work' do
@@ -35,6 +35,9 @@ describe 'TokenApi' do
35
35
  # unit tests for get
36
36
  # Handles GET requests for the /token/ endpoint.
37
37
  # @param [Hash] opts the optional parameters
38
+ # @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
39
+ # @option opts [Array<String>] :fields A list of fields to include in the response.
40
+ # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
38
41
  # @return [nil]
39
42
  describe 'get test' do
40
43
  it 'should work' do