pulp_container_client 2.20.6 → 2.20.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +7 -6
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPullThroughDistribution.md +5 -5
- data/docs/ContainerContainerPullThroughDistributionResponse.md +9 -9
- data/docs/ContainerContainerPullThroughRemote.md +1 -1
- data/docs/ContainerContainerPullThroughRemoteResponse.md +1 -1
- data/docs/ContainerContainerPushRepository.md +7 -7
- data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
- data/docs/ContainerContainerRemote.md +1 -1
- data/docs/ContainerContainerRemoteResponse.md +1 -1
- data/docs/ContentBlobsApi.md +4 -0
- data/docs/ContentManifestsApi.md +4 -0
- data/docs/ContentSignaturesApi.md +4 -0
- data/docs/ContentTagsApi.md +4 -0
- data/docs/DistributionsContainerApi.md +56 -16
- data/docs/DistributionsPullThroughApi.md +56 -16
- data/docs/OCIBuildImage.md +1 -1
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPullThroughRemote.md +1 -1
- data/docs/PatchedcontainerContainerPushRepository.md +7 -7
- data/docs/PatchedcontainerContainerRemote.md +1 -1
- data/docs/{Policy762Enum.md → Policy692Enum.md} +2 -2
- data/docs/{Policy8e2Enum.md → Policy7e0Enum.md} +2 -2
- data/docs/PulpContainerNamespacesApi.md +32 -8
- data/docs/RemotesContainerApi.md +56 -16
- data/docs/RemotesPullThroughApi.md +56 -16
- data/docs/RepositoriesContainerApi.md +108 -34
- data/docs/RepositoriesContainerPushApi.md +62 -18
- data/docs/RepositoriesContainerPushVersionsApi.md +16 -4
- data/docs/RepositoriesContainerVersionsApi.md +16 -4
- data/docs/TokenApi.md +13 -3
- data/lib/pulp_container_client/api/content_blobs_api.rb +6 -0
- data/lib/pulp_container_client/api/content_manifests_api.rb +6 -0
- data/lib/pulp_container_client/api/content_signatures_api.rb +6 -0
- data/lib/pulp_container_client/api/content_tags_api.rb +6 -0
- data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
- data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
- data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
- data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +65 -2
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +12 -0
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +12 -0
- data/lib/pulp_container_client/api/token_api.rb +9 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +22 -22
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +42 -42
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +22 -22
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +42 -42
- data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +1 -1
- data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +1 -1
- data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -44
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +49 -49
- data/lib/pulp_container_client/models/container_container_remote.rb +1 -1
- data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
- data/lib/pulp_container_client/models/oci_build_image.rb +1 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +22 -22
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +22 -22
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +1 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -44
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +1 -1
- data/lib/pulp_container_client/models/{policy762_enum.rb → policy692_enum.rb} +3 -3
- data/lib/pulp_container_client/models/{policy8e2_enum.rb → policy7e0_enum.rb} +3 -3
- data/lib/pulp_container_client/version.rb +1 -1
- data/lib/pulp_container_client.rb +2 -2
- data/spec/api/content_blobs_api_spec.rb +2 -0
- data/spec/api/content_manifests_api_spec.rb +2 -0
- data/spec/api/content_signatures_api_spec.rb +2 -0
- data/spec/api/content_tags_api_spec.rb +2 -0
- data/spec/api/distributions_container_api_spec.rb +12 -0
- data/spec/api/distributions_pull_through_api_spec.rb +12 -0
- data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
- data/spec/api/remotes_container_api_spec.rb +12 -0
- data/spec/api/remotes_pull_through_api_spec.rb +12 -0
- data/spec/api/repositories_container_api_spec.rb +22 -1
- data/spec/api/repositories_container_push_api_spec.rb +13 -0
- data/spec/api/repositories_container_push_versions_api_spec.rb +4 -0
- data/spec/api/repositories_container_versions_api_spec.rb +4 -0
- data/spec/api/token_api_spec.rb +3 -0
- data/spec/models/container_container_distribution_response_spec.rb +8 -8
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- data/spec/models/{policy762_enum_spec.rb → policy692_enum_spec.rb} +6 -6
- data/spec/models/{policy8e2_enum_spec.rb → policy7e0_enum_spec.rb} +6 -6
- metadata +67 -67
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.3.1
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module PulpContainerClient
|
|
16
|
-
class
|
|
16
|
+
class Policy692Enum
|
|
17
17
|
IMMEDIATE = "immediate".freeze
|
|
18
18
|
ON_DEMAND = "on_demand".freeze
|
|
19
19
|
STREAMED = "streamed".freeze
|
|
@@ -29,8 +29,8 @@ module PulpContainerClient
|
|
|
29
29
|
# @param [String] The enum value in the form of the string
|
|
30
30
|
# @return [String] The enum value
|
|
31
31
|
def build_from_hash(value)
|
|
32
|
-
constantValues =
|
|
33
|
-
raise "Invalid ENUM value #{value} for class #
|
|
32
|
+
constantValues = Policy692Enum.constants.select { |c| Policy692Enum::const_get(c) == value }
|
|
33
|
+
raise "Invalid ENUM value #{value} for class #Policy692Enum" if constantValues.empty?
|
|
34
34
|
value
|
|
35
35
|
end
|
|
36
36
|
end
|
|
@@ -13,7 +13,7 @@ OpenAPI Generator version: 4.3.1
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module PulpContainerClient
|
|
16
|
-
class
|
|
16
|
+
class Policy7e0Enum
|
|
17
17
|
ON_DEMAND = "on_demand".freeze
|
|
18
18
|
|
|
19
19
|
# Builds the enum from string
|
|
@@ -27,8 +27,8 @@ module PulpContainerClient
|
|
|
27
27
|
# @param [String] The enum value in the form of the string
|
|
28
28
|
# @return [String] The enum value
|
|
29
29
|
def build_from_hash(value)
|
|
30
|
-
constantValues =
|
|
31
|
-
raise "Invalid ENUM value #{value} for class #
|
|
30
|
+
constantValues = Policy7e0Enum.constants.select { |c| Policy7e0Enum::const_get(c) == value }
|
|
31
|
+
raise "Invalid ENUM value #{value} for class #Policy7e0Enum" if constantValues.empty?
|
|
32
32
|
value
|
|
33
33
|
end
|
|
34
34
|
end
|
|
@@ -64,8 +64,8 @@ require 'pulp_container_client/models/patchedcontainer_container_pull_through_re
|
|
|
64
64
|
require 'pulp_container_client/models/patchedcontainer_container_push_repository'
|
|
65
65
|
require 'pulp_container_client/models/patchedcontainer_container_remote'
|
|
66
66
|
require 'pulp_container_client/models/patchedcontainer_container_repository'
|
|
67
|
-
require 'pulp_container_client/models/
|
|
68
|
-
require 'pulp_container_client/models/
|
|
67
|
+
require 'pulp_container_client/models/policy692_enum'
|
|
68
|
+
require 'pulp_container_client/models/policy7e0_enum'
|
|
69
69
|
require 'pulp_container_client/models/recursive_manage'
|
|
70
70
|
require 'pulp_container_client/models/remove_image'
|
|
71
71
|
require 'pulp_container_client/models/remove_signatures'
|
|
@@ -36,6 +36,7 @@ describe 'ContentBlobsApi' do
|
|
|
36
36
|
# List blobs
|
|
37
37
|
# ViewSet for Blobs.
|
|
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] :digest Filter results where digest matches value
|
|
40
41
|
# @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
|
|
41
42
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -62,6 +63,7 @@ describe 'ContentBlobsApi' do
|
|
|
62
63
|
# ViewSet for Blobs.
|
|
63
64
|
# @param container_blob_href
|
|
64
65
|
# @param [Hash] opts the optional parameters
|
|
66
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
65
67
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
66
68
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
67
69
|
# @return [ContainerBlobResponse]
|
|
@@ -36,6 +36,7 @@ describe 'ContentManifestsApi' do
|
|
|
36
36
|
# List manifests
|
|
37
37
|
# ViewSet for Manifest.
|
|
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] :digest Filter results where digest matches value
|
|
40
41
|
# @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
|
|
41
42
|
# @option opts [Boolean] :is_bootable Filter results where is_bootable matches value
|
|
@@ -65,6 +66,7 @@ describe 'ContentManifestsApi' do
|
|
|
65
66
|
# ViewSet for Manifest.
|
|
66
67
|
# @param container_manifest_href
|
|
67
68
|
# @param [Hash] opts the optional parameters
|
|
69
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
68
70
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
69
71
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
70
72
|
# @return [ContainerManifestResponse]
|
|
@@ -36,6 +36,7 @@ describe 'ContentSignaturesApi' do
|
|
|
36
36
|
# List manifest signatures
|
|
37
37
|
# ViewSet for image signatures.
|
|
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] :digest Filter results where digest matches value
|
|
40
41
|
# @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
|
|
41
42
|
# @option opts [String] :key_id Filter results where key_id matches value
|
|
@@ -74,6 +75,7 @@ describe 'ContentSignaturesApi' do
|
|
|
74
75
|
# ViewSet for image signatures.
|
|
75
76
|
# @param container_manifest_signature_href
|
|
76
77
|
# @param [Hash] opts the optional parameters
|
|
78
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
77
79
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
78
80
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
79
81
|
# @return [ContainerManifestSignatureResponse]
|
|
@@ -36,6 +36,7 @@ describe 'ContentTagsApi' do
|
|
|
36
36
|
# List tags
|
|
37
37
|
# ViewSet for Tag.
|
|
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 [Array<String>] :digest Multiple values may be separated by commas.
|
|
40
41
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
41
42
|
# @option opts [Array<String>] :media_type * `application/vnd.docker.distribution.manifest.v1+json` - application/vnd.docker.distribution.manifest.v1+json * `application/vnd.docker.distribution.manifest.v2+json` - application/vnd.docker.distribution.manifest.v2+json * `application/vnd.docker.distribution.manifest.list.v2+json` - application/vnd.docker.distribution.manifest.list.v2+json * `application/vnd.oci.image.manifest.v1+json` - application/vnd.oci.image.manifest.v1+json * `application/vnd.oci.image.index.v1+json` - application/vnd.oci.image.index.v1+json
|
|
@@ -64,6 +65,7 @@ describe 'ContentTagsApi' do
|
|
|
64
65
|
# ViewSet for Tag.
|
|
65
66
|
# @param container_tag_href
|
|
66
67
|
# @param [Hash] opts the optional parameters
|
|
68
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
67
69
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
68
70
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
69
71
|
# @return [ContainerTagResponse]
|
|
@@ -38,6 +38,7 @@ describe 'DistributionsContainerApi' do
|
|
|
38
38
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
50
51
|
# Trigger an asynchronous create task
|
|
51
52
|
# @param container_container_distribution
|
|
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 [AsyncOperationResponse]
|
|
54
56
|
describe 'create test' do
|
|
55
57
|
it 'should work' do
|
|
@@ -62,6 +64,7 @@ describe 'DistributionsContainerApi' do
|
|
|
62
64
|
# Trigger an asynchronous delete task
|
|
63
65
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
73
76
|
# List container distributions
|
|
74
77
|
# The Container Distribution will serve the latest version of a Repository if ``repository`` is specified. The Container Distribution will serve a specific repository version if ``repository_version``. Note that **either** ``repository`` or ``repository_version`` can be set on a Container Distribution, but not both.
|
|
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 [String] :base_path Filter results where base_path matches value
|
|
77
81
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
|
78
82
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
|
@@ -111,6 +115,7 @@ describe 'DistributionsContainerApi' do
|
|
|
111
115
|
# List roles assigned to this object.
|
|
112
116
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
125
130
|
# List permissions available to the current user on this object.
|
|
126
131
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
140
146
|
# @param container_container_distribution_href
|
|
141
147
|
# @param patchedcontainer_container_distribution
|
|
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 'DistributionsContainerApi' do
|
|
|
152
159
|
# The Container Distribution will serve the latest version of a Repository if ``repository`` is specified. The Container Distribution will serve a specific repository version if ``repository_version``. Note that **either** ``repository`` or ``repository_version`` can be set on a Container Distribution, but not both.
|
|
153
160
|
# @param container_container_distribution_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 [ContainerContainerDistributionResponse]
|
|
@@ -167,6 +175,7 @@ describe 'DistributionsContainerApi' do
|
|
|
167
175
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
180
189
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
193
203
|
# @param container_container_distribution_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 'DistributionsContainerApi' do
|
|
|
206
217
|
# @param container_container_distribution_href
|
|
207
218
|
# @param container_container_distribution
|
|
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 'DistributionsPullThroughApi' do
|
|
|
38
38
|
# @param container_container_pull_through_distribution_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 'DistributionsPullThroughApi' do
|
|
|
50
51
|
# Trigger an asynchronous create task
|
|
51
52
|
# @param container_container_pull_through_distribution
|
|
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 [AsyncOperationResponse]
|
|
54
56
|
describe 'create test' do
|
|
55
57
|
it 'should work' do
|
|
@@ -62,6 +64,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
62
64
|
# Trigger an asynchronous delete task
|
|
63
65
|
# @param container_container_pull_through_distribution_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 'DistributionsPullThroughApi' do
|
|
|
73
76
|
# List container pull through distributions
|
|
74
77
|
# A special pull-through Container Distribution that will reference distributions serving content.
|
|
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 [String] :base_path Filter results where base_path matches value
|
|
77
81
|
# @option opts [String] :base_path__contains Filter results where base_path contains value
|
|
78
82
|
# @option opts [String] :base_path__icontains Filter results where base_path contains value
|
|
@@ -110,6 +114,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
110
114
|
# List roles assigned to this object.
|
|
111
115
|
# @param container_container_pull_through_distribution_href
|
|
112
116
|
# @param [Hash] opts the optional parameters
|
|
117
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
113
118
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
114
119
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
115
120
|
# @return [ObjectRolesResponse]
|
|
@@ -124,6 +129,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
124
129
|
# List permissions available to the current user on this object.
|
|
125
130
|
# @param container_container_pull_through_distribution_href
|
|
126
131
|
# @param [Hash] opts the optional parameters
|
|
132
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
127
133
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
128
134
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
129
135
|
# @return [MyPermissionsResponse]
|
|
@@ -139,6 +145,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
139
145
|
# @param container_container_pull_through_distribution_href
|
|
140
146
|
# @param patchedcontainer_container_pull_through_distribution
|
|
141
147
|
# @param [Hash] opts the optional parameters
|
|
148
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
142
149
|
# @return [AsyncOperationResponse]
|
|
143
150
|
describe 'partial_update test' do
|
|
144
151
|
it 'should work' do
|
|
@@ -151,6 +158,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
151
158
|
# A special pull-through Container Distribution that will reference distributions serving content.
|
|
152
159
|
# @param container_container_pull_through_distribution_href
|
|
153
160
|
# @param [Hash] opts the optional parameters
|
|
161
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
154
162
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
155
163
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
156
164
|
# @return [ContainerContainerPullThroughDistributionResponse]
|
|
@@ -166,6 +174,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
166
174
|
# @param container_container_pull_through_distribution_href
|
|
167
175
|
# @param nested_role
|
|
168
176
|
# @param [Hash] opts the optional parameters
|
|
177
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
169
178
|
# @return [NestedRoleResponse]
|
|
170
179
|
describe 'remove_role test' do
|
|
171
180
|
it 'should work' do
|
|
@@ -179,6 +188,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
179
188
|
# @param container_container_pull_through_distribution_href
|
|
180
189
|
# @param set_label
|
|
181
190
|
# @param [Hash] opts the optional parameters
|
|
191
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
182
192
|
# @return [SetLabelResponse]
|
|
183
193
|
describe 'set_label test' do
|
|
184
194
|
it 'should work' do
|
|
@@ -192,6 +202,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
192
202
|
# @param container_container_pull_through_distribution_href
|
|
193
203
|
# @param unset_label
|
|
194
204
|
# @param [Hash] opts the optional parameters
|
|
205
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
195
206
|
# @return [UnsetLabelResponse]
|
|
196
207
|
describe 'unset_label test' do
|
|
197
208
|
it 'should work' do
|
|
@@ -205,6 +216,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
205
216
|
# @param container_container_pull_through_distribution_href
|
|
206
217
|
# @param container_container_pull_through_distribution
|
|
207
218
|
# @param [Hash] opts the optional parameters
|
|
219
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
208
220
|
# @return [AsyncOperationResponse]
|
|
209
221
|
describe 'update test' do
|
|
210
222
|
it 'should work' do
|
|
@@ -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
|
|
@@ -102,6 +106,7 @@ describe 'PulpContainerNamespacesApi' do
|
|
|
102
106
|
# List roles assigned to this object.
|
|
103
107
|
# @param container_container_namespace_href
|
|
104
108
|
# @param [Hash] opts the optional parameters
|
|
109
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
105
110
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
106
111
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
107
112
|
# @return [ObjectRolesResponse]
|
|
@@ -116,6 +121,7 @@ describe 'PulpContainerNamespacesApi' do
|
|
|
116
121
|
# List permissions available to the current user on this object.
|
|
117
122
|
# @param container_container_namespace_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 [MyPermissionsResponse]
|
|
@@ -130,6 +136,7 @@ describe 'PulpContainerNamespacesApi' do
|
|
|
130
136
|
# ViewSet for ContainerNamespaces.
|
|
131
137
|
# @param container_container_namespace_href
|
|
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
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
134
141
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
135
142
|
# @return [ContainerContainerNamespaceResponse]
|
|
@@ -145,6 +152,7 @@ describe 'PulpContainerNamespacesApi' do
|
|
|
145
152
|
# @param container_container_namespace_href
|
|
146
153
|
# @param nested_role
|
|
147
154
|
# @param [Hash] opts the optional parameters
|
|
155
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
148
156
|
# @return [NestedRoleResponse]
|
|
149
157
|
describe 'remove_role test' do
|
|
150
158
|
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 ``policy`` field. ``on_demand`` and ``streamed`` 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 ``policy`` field. ``on_demand`` and ``streamed`` 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
|
|
@@ -109,6 +113,7 @@ describe 'RemotesContainerApi' do
|
|
|
109
113
|
# List roles assigned to this object.
|
|
110
114
|
# @param container_container_remote_href
|
|
111
115
|
# @param [Hash] opts the optional parameters
|
|
116
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
112
117
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
113
118
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
114
119
|
# @return [ObjectRolesResponse]
|
|
@@ -123,6 +128,7 @@ describe 'RemotesContainerApi' do
|
|
|
123
128
|
# List permissions available to the current user on this object.
|
|
124
129
|
# @param container_container_remote_href
|
|
125
130
|
# @param [Hash] opts the optional parameters
|
|
131
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
126
132
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
127
133
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
128
134
|
# @return [MyPermissionsResponse]
|
|
@@ -138,6 +144,7 @@ describe 'RemotesContainerApi' do
|
|
|
138
144
|
# @param container_container_remote_href
|
|
139
145
|
# @param patchedcontainer_container_remote
|
|
140
146
|
# @param [Hash] opts the optional parameters
|
|
147
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
141
148
|
# @return [AsyncOperationResponse]
|
|
142
149
|
describe 'partial_update test' do
|
|
143
150
|
it 'should work' do
|
|
@@ -150,6 +157,7 @@ describe 'RemotesContainerApi' do
|
|
|
150
157
|
# Container remotes represent an external repository that implements the Container Registry API. Container remotes support deferred downloading by configuring the ``policy`` field. ``on_demand`` and ``streamed`` policies can provide significant disk space savings.
|
|
151
158
|
# @param container_container_remote_href
|
|
152
159
|
# @param [Hash] opts the optional parameters
|
|
160
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
153
161
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
154
162
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
155
163
|
# @return [ContainerContainerRemoteResponse]
|
|
@@ -165,6 +173,7 @@ describe 'RemotesContainerApi' do
|
|
|
165
173
|
# @param container_container_remote_href
|
|
166
174
|
# @param nested_role
|
|
167
175
|
# @param [Hash] opts the optional parameters
|
|
176
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
168
177
|
# @return [NestedRoleResponse]
|
|
169
178
|
describe 'remove_role test' do
|
|
170
179
|
it 'should work' do
|
|
@@ -178,6 +187,7 @@ describe 'RemotesContainerApi' do
|
|
|
178
187
|
# @param container_container_remote_href
|
|
179
188
|
# @param set_label
|
|
180
189
|
# @param [Hash] opts the optional parameters
|
|
190
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
181
191
|
# @return [SetLabelResponse]
|
|
182
192
|
describe 'set_label test' do
|
|
183
193
|
it 'should work' do
|
|
@@ -191,6 +201,7 @@ describe 'RemotesContainerApi' do
|
|
|
191
201
|
# @param container_container_remote_href
|
|
192
202
|
# @param unset_label
|
|
193
203
|
# @param [Hash] opts the optional parameters
|
|
204
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
194
205
|
# @return [UnsetLabelResponse]
|
|
195
206
|
describe 'unset_label test' do
|
|
196
207
|
it 'should work' do
|
|
@@ -204,6 +215,7 @@ describe 'RemotesContainerApi' do
|
|
|
204
215
|
# @param container_container_remote_href
|
|
205
216
|
# @param container_container_remote
|
|
206
217
|
# @param [Hash] opts the optional parameters
|
|
218
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
207
219
|
# @return [AsyncOperationResponse]
|
|
208
220
|
describe 'update test' do
|
|
209
221
|
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
|
|
@@ -109,6 +113,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
109
113
|
# List roles assigned to this object.
|
|
110
114
|
# @param container_container_pull_through_remote_href
|
|
111
115
|
# @param [Hash] opts the optional parameters
|
|
116
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
112
117
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
113
118
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
114
119
|
# @return [ObjectRolesResponse]
|
|
@@ -123,6 +128,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
123
128
|
# List permissions available to the current user on this object.
|
|
124
129
|
# @param container_container_pull_through_remote_href
|
|
125
130
|
# @param [Hash] opts the optional parameters
|
|
131
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
126
132
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
127
133
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
128
134
|
# @return [MyPermissionsResponse]
|
|
@@ -138,6 +144,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
138
144
|
# @param container_container_pull_through_remote_href
|
|
139
145
|
# @param patchedcontainer_container_pull_through_remote
|
|
140
146
|
# @param [Hash] opts the optional parameters
|
|
147
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
141
148
|
# @return [AsyncOperationResponse]
|
|
142
149
|
describe 'partial_update test' do
|
|
143
150
|
it 'should work' do
|
|
@@ -150,6 +157,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
150
157
|
# A Container Remote referencing a remote registry used as a source for the pull-through caching.
|
|
151
158
|
# @param container_container_pull_through_remote_href
|
|
152
159
|
# @param [Hash] opts the optional parameters
|
|
160
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
153
161
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
|
154
162
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
|
155
163
|
# @return [ContainerContainerPullThroughRemoteResponse]
|
|
@@ -165,6 +173,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
165
173
|
# @param container_container_pull_through_remote_href
|
|
166
174
|
# @param nested_role
|
|
167
175
|
# @param [Hash] opts the optional parameters
|
|
176
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
168
177
|
# @return [NestedRoleResponse]
|
|
169
178
|
describe 'remove_role test' do
|
|
170
179
|
it 'should work' do
|
|
@@ -178,6 +187,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
178
187
|
# @param container_container_pull_through_remote_href
|
|
179
188
|
# @param set_label
|
|
180
189
|
# @param [Hash] opts the optional parameters
|
|
190
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
181
191
|
# @return [SetLabelResponse]
|
|
182
192
|
describe 'set_label test' do
|
|
183
193
|
it 'should work' do
|
|
@@ -191,6 +201,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
191
201
|
# @param container_container_pull_through_remote_href
|
|
192
202
|
# @param unset_label
|
|
193
203
|
# @param [Hash] opts the optional parameters
|
|
204
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
194
205
|
# @return [UnsetLabelResponse]
|
|
195
206
|
describe 'unset_label test' do
|
|
196
207
|
it 'should work' do
|
|
@@ -204,6 +215,7 @@ describe 'RemotesPullThroughApi' do
|
|
|
204
215
|
# @param container_container_pull_through_remote_href
|
|
205
216
|
# @param container_container_pull_through_remote
|
|
206
217
|
# @param [Hash] opts the optional parameters
|
|
218
|
+
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
207
219
|
# @return [AsyncOperationResponse]
|
|
208
220
|
describe 'update test' do
|
|
209
221
|
it 'should work' do
|