pulp_container_client 2.29.0 → 2.29.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -6
- data/docs/ContainerContainerDistribution.md +6 -6
- data/docs/ContainerContainerDistributionResponse.md +12 -12
- data/docs/ContainerContainerPullThroughDistribution.md +6 -6
- data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
- data/docs/ContainerContainerPushRepository.md +7 -7
- data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
- data/docs/ContainerRepositorySyncURL.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/DistributionsPullThroughApi.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPushRepository.md +7 -7
- 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_pull_through_api.rb +4 -8
- data/lib/pulp_container_client/models/container_container_distribution.rb +34 -34
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +53 -53
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +34 -34
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +53 -53
- data/lib/pulp_container_client/models/container_container_push_repository.rb +59 -59
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +71 -71
- data/lib/pulp_container_client/models/container_repository_sync_url.rb +1 -1
- data/lib/pulp_container_client/models/nested_role.rb +1 -1
- data/lib/pulp_container_client/models/nested_role_response.rb +1 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +30 -30
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +30 -30
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +52 -52
- data/lib/pulp_container_client/models/repository_version_response.rb +1 -1
- data/lib/pulp_container_client/version.rb +1 -1
- 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_pull_through_api_spec.rb +2 -4
- data/spec/models/container_container_distribution_response_spec.rb +10 -10
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
- 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 +6 -6
- 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 +6 -6
- metadata +59 -59
|
@@ -16,32 +16,32 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# Serializer for Container Push Repositories.
|
|
18
18
|
class PatchedcontainerContainerPushRepository
|
|
19
|
-
#
|
|
20
|
-
attr_accessor :
|
|
19
|
+
# A unique name for this repository.
|
|
20
|
+
attr_accessor :name
|
|
21
|
+
|
|
22
|
+
# A reference to an associated signing service.
|
|
23
|
+
attr_accessor :manifest_signing_service
|
|
21
24
|
|
|
22
25
|
attr_accessor :pulp_labels
|
|
23
26
|
|
|
27
|
+
# An optional description.
|
|
28
|
+
attr_accessor :description
|
|
29
|
+
|
|
24
30
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
25
31
|
attr_accessor :retain_repo_versions
|
|
26
32
|
|
|
27
|
-
# A unique name for this repository.
|
|
28
|
-
attr_accessor :name
|
|
29
|
-
|
|
30
33
|
# Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
|
|
31
34
|
attr_accessor :retain_checkpoints
|
|
32
35
|
|
|
33
|
-
# A reference to an associated signing service.
|
|
34
|
-
attr_accessor :manifest_signing_service
|
|
35
|
-
|
|
36
36
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
37
37
|
def self.attribute_map
|
|
38
38
|
{
|
|
39
|
-
:'
|
|
39
|
+
:'name' => :'name',
|
|
40
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
|
40
41
|
:'pulp_labels' => :'pulp_labels',
|
|
42
|
+
:'description' => :'description',
|
|
41
43
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
42
|
-
:'
|
|
43
|
-
:'retain_checkpoints' => :'retain_checkpoints',
|
|
44
|
-
:'manifest_signing_service' => :'manifest_signing_service'
|
|
44
|
+
:'retain_checkpoints' => :'retain_checkpoints'
|
|
45
45
|
}
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -53,22 +53,22 @@ module PulpContainerClient
|
|
|
53
53
|
# Attribute type mapping.
|
|
54
54
|
def self.openapi_types
|
|
55
55
|
{
|
|
56
|
-
:'
|
|
56
|
+
:'name' => :'String',
|
|
57
|
+
:'manifest_signing_service' => :'String',
|
|
57
58
|
:'pulp_labels' => :'Hash<String, String>',
|
|
59
|
+
:'description' => :'String',
|
|
58
60
|
:'retain_repo_versions' => :'Integer',
|
|
59
|
-
:'
|
|
60
|
-
:'retain_checkpoints' => :'Integer',
|
|
61
|
-
:'manifest_signing_service' => :'String'
|
|
61
|
+
:'retain_checkpoints' => :'Integer'
|
|
62
62
|
}
|
|
63
63
|
end
|
|
64
64
|
|
|
65
65
|
# List of attributes with nullable: true
|
|
66
66
|
def self.openapi_nullable
|
|
67
67
|
Set.new([
|
|
68
|
+
:'manifest_signing_service',
|
|
68
69
|
:'description',
|
|
69
70
|
:'retain_repo_versions',
|
|
70
|
-
:'retain_checkpoints'
|
|
71
|
-
:'manifest_signing_service'
|
|
71
|
+
:'retain_checkpoints'
|
|
72
72
|
])
|
|
73
73
|
end
|
|
74
74
|
|
|
@@ -87,8 +87,12 @@ module PulpContainerClient
|
|
|
87
87
|
h[k.to_sym] = v
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
if attributes.key?(:'
|
|
91
|
-
self.
|
|
90
|
+
if attributes.key?(:'name')
|
|
91
|
+
self.name = attributes[:'name']
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
if attributes.key?(:'manifest_signing_service')
|
|
95
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
92
96
|
end
|
|
93
97
|
|
|
94
98
|
if attributes.key?(:'pulp_labels')
|
|
@@ -97,21 +101,17 @@ module PulpContainerClient
|
|
|
97
101
|
end
|
|
98
102
|
end
|
|
99
103
|
|
|
100
|
-
if attributes.key?(:'
|
|
101
|
-
self.
|
|
104
|
+
if attributes.key?(:'description')
|
|
105
|
+
self.description = attributes[:'description']
|
|
102
106
|
end
|
|
103
107
|
|
|
104
|
-
if attributes.key?(:'
|
|
105
|
-
self.
|
|
108
|
+
if attributes.key?(:'retain_repo_versions')
|
|
109
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
106
110
|
end
|
|
107
111
|
|
|
108
112
|
if attributes.key?(:'retain_checkpoints')
|
|
109
113
|
self.retain_checkpoints = attributes[:'retain_checkpoints']
|
|
110
114
|
end
|
|
111
|
-
|
|
112
|
-
if attributes.key?(:'manifest_signing_service')
|
|
113
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
114
|
-
end
|
|
115
115
|
end
|
|
116
116
|
|
|
117
117
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -119,6 +119,10 @@ module PulpContainerClient
|
|
|
119
119
|
def list_invalid_properties
|
|
120
120
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
|
121
121
|
invalid_properties = Array.new
|
|
122
|
+
if !@name.nil? && @name.to_s.length < 1
|
|
123
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
124
|
+
end
|
|
125
|
+
|
|
122
126
|
if !@description.nil? && @description.to_s.length < 1
|
|
123
127
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
124
128
|
end
|
|
@@ -127,10 +131,6 @@ module PulpContainerClient
|
|
|
127
131
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
128
132
|
end
|
|
129
133
|
|
|
130
|
-
if !@name.nil? && @name.to_s.length < 1
|
|
131
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
|
132
|
-
end
|
|
133
|
-
|
|
134
134
|
if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
135
135
|
invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
|
|
136
136
|
end
|
|
@@ -142,13 +142,27 @@ module PulpContainerClient
|
|
|
142
142
|
# @return true if the model is valid
|
|
143
143
|
def valid?
|
|
144
144
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
145
|
+
return false if !@name.nil? && @name.to_s.length < 1
|
|
145
146
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
146
147
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
147
|
-
return false if !@name.nil? && @name.to_s.length < 1
|
|
148
148
|
return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
149
149
|
true
|
|
150
150
|
end
|
|
151
151
|
|
|
152
|
+
# Custom attribute writer method with validation
|
|
153
|
+
# @param [Object] name Value to be assigned
|
|
154
|
+
def name=(name)
|
|
155
|
+
if name.nil?
|
|
156
|
+
fail ArgumentError, 'name cannot be nil'
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
if name.to_s.length < 1
|
|
160
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
@name = name
|
|
164
|
+
end
|
|
165
|
+
|
|
152
166
|
# Custom attribute writer method with validation
|
|
153
167
|
# @param [Object] description Value to be assigned
|
|
154
168
|
def description=(description)
|
|
@@ -169,20 +183,6 @@ module PulpContainerClient
|
|
|
169
183
|
@retain_repo_versions = retain_repo_versions
|
|
170
184
|
end
|
|
171
185
|
|
|
172
|
-
# Custom attribute writer method with validation
|
|
173
|
-
# @param [Object] name Value to be assigned
|
|
174
|
-
def name=(name)
|
|
175
|
-
if name.nil?
|
|
176
|
-
fail ArgumentError, 'name cannot be nil'
|
|
177
|
-
end
|
|
178
|
-
|
|
179
|
-
if name.to_s.length < 1
|
|
180
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
|
181
|
-
end
|
|
182
|
-
|
|
183
|
-
@name = name
|
|
184
|
-
end
|
|
185
|
-
|
|
186
186
|
# Custom attribute writer method with validation
|
|
187
187
|
# @param [Object] retain_checkpoints Value to be assigned
|
|
188
188
|
def retain_checkpoints=(retain_checkpoints)
|
|
@@ -198,12 +198,12 @@ module PulpContainerClient
|
|
|
198
198
|
def ==(o)
|
|
199
199
|
return true if self.equal?(o)
|
|
200
200
|
self.class == o.class &&
|
|
201
|
-
|
|
201
|
+
name == o.name &&
|
|
202
|
+
manifest_signing_service == o.manifest_signing_service &&
|
|
202
203
|
pulp_labels == o.pulp_labels &&
|
|
204
|
+
description == o.description &&
|
|
203
205
|
retain_repo_versions == o.retain_repo_versions &&
|
|
204
|
-
|
|
205
|
-
retain_checkpoints == o.retain_checkpoints &&
|
|
206
|
-
manifest_signing_service == o.manifest_signing_service
|
|
206
|
+
retain_checkpoints == o.retain_checkpoints
|
|
207
207
|
end
|
|
208
208
|
|
|
209
209
|
# @see the `==` method
|
|
@@ -215,7 +215,7 @@ module PulpContainerClient
|
|
|
215
215
|
# Calculates hash code according to all attributes.
|
|
216
216
|
# @return [Integer] Hash code
|
|
217
217
|
def hash
|
|
218
|
-
[
|
|
218
|
+
[name, manifest_signing_service, pulp_labels, description, retain_repo_versions, retain_checkpoints].hash
|
|
219
219
|
end
|
|
220
220
|
|
|
221
221
|
# Builds the object from hash
|
|
@@ -14,7 +14,7 @@ require 'date'
|
|
|
14
14
|
require 'time'
|
|
15
15
|
|
|
16
16
|
module PulpContainerClient
|
|
17
|
-
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the
|
|
17
|
+
# Base serializer for use with [pulpcore.app.models.Model][] This ensures that all Serializers provide values for the 'pulp_href` field. The class provides a default for the `ref_name` attribute in the ModelSerializers's `Meta` class. This ensures that the OpenAPI definitions of plugins are namespaced properly.
|
|
18
18
|
class RepositoryVersionResponse
|
|
19
19
|
attr_accessor :pulp_href
|
|
20
20
|
|
|
@@ -37,6 +37,7 @@ describe 'ContentBlobsApi' do
|
|
|
37
37
|
# ViewSet for Blobs.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
|
+
# @option opts [Array<String>] :added_between
|
|
40
41
|
# @option opts [String] :digest Filter results where digest matches value
|
|
41
42
|
# @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
|
|
42
43
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
@@ -48,6 +49,7 @@ describe 'ContentBlobsApi' do
|
|
|
48
49
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
49
50
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
50
51
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
52
|
+
# @option opts [Array<String>] :removed_between
|
|
51
53
|
# @option opts [String] :repository_version
|
|
52
54
|
# @option opts [String] :repository_version_added
|
|
53
55
|
# @option opts [String] :repository_version_removed
|
|
@@ -37,6 +37,7 @@ describe 'ContentManifestsApi' do
|
|
|
37
37
|
# ViewSet for Manifest.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
|
+
# @option opts [Array<String>] :added_between
|
|
40
41
|
# @option opts [String] :digest Filter results where digest matches value
|
|
41
42
|
# @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
|
|
42
43
|
# @option opts [Boolean] :is_bootable Filter results where is_bootable matches value
|
|
@@ -51,6 +52,7 @@ describe 'ContentManifestsApi' do
|
|
|
51
52
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
52
53
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
53
54
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
55
|
+
# @option opts [Array<String>] :removed_between
|
|
54
56
|
# @option opts [String] :repository_version
|
|
55
57
|
# @option opts [String] :repository_version_added
|
|
56
58
|
# @option opts [String] :repository_version_removed
|
|
@@ -37,6 +37,7 @@ describe 'ContentSignaturesApi' do
|
|
|
37
37
|
# ViewSet for image signatures.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
|
+
# @option opts [Array<String>] :added_between
|
|
40
41
|
# @option opts [String] :digest Filter results where digest matches value
|
|
41
42
|
# @option opts [Array<String>] :digest__in Filter results where digest is in a comma-separated list of values
|
|
42
43
|
# @option opts [String] :key_id Filter results where key_id matches value
|
|
@@ -60,6 +61,7 @@ describe 'ContentSignaturesApi' do
|
|
|
60
61
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
61
62
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
62
63
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
64
|
+
# @option opts [Array<String>] :removed_between
|
|
63
65
|
# @option opts [String] :repository_version
|
|
64
66
|
# @option opts [String] :repository_version_added
|
|
65
67
|
# @option opts [String] :repository_version_removed
|
|
@@ -37,6 +37,7 @@ describe 'ContentTagsApi' do
|
|
|
37
37
|
# ViewSet for Tag.
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
|
39
39
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
|
40
|
+
# @option opts [Array<String>] :added_between
|
|
40
41
|
# @option opts [Array<String>] :digest Multiple values may be separated by commas.
|
|
41
42
|
# @option opts [Integer] :limit Number of results to return per page.
|
|
42
43
|
# @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
|
|
@@ -50,6 +51,7 @@ describe 'ContentTagsApi' do
|
|
|
50
51
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
|
51
52
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
|
52
53
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
|
54
|
+
# @option opts [Array<String>] :removed_between
|
|
53
55
|
# @option opts [String] :repository_version
|
|
54
56
|
# @option opts [String] :repository_version_added
|
|
55
57
|
# @option opts [String] :repository_version_removed
|
|
@@ -185,8 +185,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
185
185
|
end
|
|
186
186
|
|
|
187
187
|
# unit tests for set_label
|
|
188
|
-
#
|
|
189
|
-
# Set a single pulp_label on the object to a specific value or null.
|
|
188
|
+
# Prevent clients from changing the internal pull-through marker.
|
|
190
189
|
# @param container_container_pull_through_distribution_href
|
|
191
190
|
# @param set_label
|
|
192
191
|
# @param [Hash] opts the optional parameters
|
|
@@ -199,8 +198,7 @@ describe 'DistributionsPullThroughApi' do
|
|
|
199
198
|
end
|
|
200
199
|
|
|
201
200
|
# unit tests for unset_label
|
|
202
|
-
#
|
|
203
|
-
# Unset a single pulp_label on the object.
|
|
201
|
+
# Prevent clients from removing the internal pull-through marker.
|
|
204
202
|
# @param container_container_pull_through_distribution_href
|
|
205
203
|
# @param unset_label
|
|
206
204
|
# @param [Hash] opts the optional parameters
|
|
@@ -33,55 +33,55 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "name"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "repository"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "pulp_href"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "content_guard_prn"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "base_path"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "hidden"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "pulp_created"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "prn"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
@@ -93,7 +93,7 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "content_guard"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
@@ -33,37 +33,37 @@ describe PulpContainerClient::ContainerContainerDistribution do
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "name"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "repository"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "base_path"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "pulp_labels"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "hidden"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "content_guard"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
@@ -33,55 +33,55 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "name"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "repository"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "pulp_href"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "content_guard_prn"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "base_path"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
70
70
|
end
|
|
71
71
|
|
|
72
|
-
describe 'test attribute "
|
|
72
|
+
describe 'test attribute "hidden"' do
|
|
73
73
|
it 'should work' do
|
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "pulp_created"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "prn"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
@@ -93,7 +93,7 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
|
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "content_guard"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|
|
@@ -33,37 +33,37 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
|
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "name"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "repository"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "base_path"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
describe 'test attribute "
|
|
54
|
+
describe 'test attribute "pulp_labels"' do
|
|
55
55
|
it 'should work' do
|
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "hidden"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "content_guard"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
@@ -27,25 +27,25 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test attribute "
|
|
30
|
+
describe 'test attribute "versions_href"' do
|
|
31
31
|
it 'should work' do
|
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
33
33
|
end
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
-
describe 'test attribute "
|
|
36
|
+
describe 'test attribute "name"' do
|
|
37
37
|
it 'should work' do
|
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "manifest_signing_service"' do
|
|
43
43
|
it 'should work' do
|
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
-
describe 'test attribute "
|
|
48
|
+
describe 'test attribute "pulp_href"' do
|
|
49
49
|
it 'should work' do
|
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
51
51
|
end
|
|
@@ -57,13 +57,13 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
|
|
|
57
57
|
end
|
|
58
58
|
end
|
|
59
59
|
|
|
60
|
-
describe 'test attribute "
|
|
60
|
+
describe 'test attribute "pulp_labels"' do
|
|
61
61
|
it 'should work' do
|
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
63
63
|
end
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
describe 'test attribute "
|
|
66
|
+
describe 'test attribute "description"' do
|
|
67
67
|
it 'should work' do
|
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
69
69
|
end
|
|
@@ -75,25 +75,25 @@ describe PulpContainerClient::ContainerContainerPushRepositoryResponse do
|
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
describe 'test attribute "
|
|
78
|
+
describe 'test attribute "prn"' do
|
|
79
79
|
it 'should work' do
|
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
81
81
|
end
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
describe 'test attribute "
|
|
84
|
+
describe 'test attribute "pulp_last_updated"' do
|
|
85
85
|
it 'should work' do
|
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
87
87
|
end
|
|
88
88
|
end
|
|
89
89
|
|
|
90
|
-
describe 'test attribute "
|
|
90
|
+
describe 'test attribute "retain_repo_versions"' do
|
|
91
91
|
it 'should work' do
|
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
93
93
|
end
|
|
94
94
|
end
|
|
95
95
|
|
|
96
|
-
describe 'test attribute "
|
|
96
|
+
describe 'test attribute "retain_checkpoints"' do
|
|
97
97
|
it 'should work' do
|
|
98
98
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
|
99
99
|
end
|