pulp_container_client 2.14.13 → 2.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +4 -4
- data/docs/ContainerContainerDistributionResponse.md +8 -8
- data/docs/ContainerContainerPushRepository.md +3 -3
- data/docs/ContainerContainerPushRepositoryResponse.md +8 -8
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPushRepository.md +3 -3
- data/docs/RepositoriesContainerApi.md +4 -0
- data/docs/RepositoriesContainerPushApi.md +4 -0
- data/lib/pulp_container_client/api/repositories_container_api.rb +6 -0
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +6 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +19 -19
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +38 -38
- data/lib/pulp_container_client/models/container_container_push_repository.rb +14 -14
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +35 -35
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +19 -19
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +14 -14
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/repositories_container_api_spec.rb +2 -0
- data/spec/api/repositories_container_push_api_spec.rb +2 -0
- data/spec/models/container_container_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/container_container_push_repository_response_spec.rb +6 -6
- data/spec/models/container_container_push_repository_spec.rb +2 -2
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +2 -2
- metadata +48 -48
@@ -24,19 +24,19 @@ module PulpContainerClient
|
|
24
24
|
# A unique name for this repository.
|
25
25
|
attr_accessor :name
|
26
26
|
|
27
|
-
attr_accessor :pulp_labels
|
28
|
-
|
29
27
|
# A reference to an associated signing service.
|
30
28
|
attr_accessor :manifest_signing_service
|
31
29
|
|
30
|
+
attr_accessor :pulp_labels
|
31
|
+
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
35
|
:'retain_repo_versions' => :'retain_repo_versions',
|
36
36
|
:'description' => :'description',
|
37
37
|
:'name' => :'name',
|
38
|
-
:'
|
39
|
-
:'
|
38
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
39
|
+
:'pulp_labels' => :'pulp_labels'
|
40
40
|
}
|
41
41
|
end
|
42
42
|
|
@@ -46,8 +46,8 @@ module PulpContainerClient
|
|
46
46
|
:'retain_repo_versions' => :'Integer',
|
47
47
|
:'description' => :'String',
|
48
48
|
:'name' => :'String',
|
49
|
-
:'
|
50
|
-
:'
|
49
|
+
:'manifest_signing_service' => :'String',
|
50
|
+
:'pulp_labels' => :'Hash<String, String>'
|
51
51
|
}
|
52
52
|
end
|
53
53
|
|
@@ -56,7 +56,7 @@ module PulpContainerClient
|
|
56
56
|
Set.new([
|
57
57
|
:'retain_repo_versions',
|
58
58
|
:'description',
|
59
|
-
:'manifest_signing_service'
|
59
|
+
:'manifest_signing_service',
|
60
60
|
])
|
61
61
|
end
|
62
62
|
|
@@ -87,15 +87,15 @@ module PulpContainerClient
|
|
87
87
|
self.name = attributes[:'name']
|
88
88
|
end
|
89
89
|
|
90
|
+
if attributes.key?(:'manifest_signing_service')
|
91
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
92
|
+
end
|
93
|
+
|
90
94
|
if attributes.key?(:'pulp_labels')
|
91
95
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
92
96
|
self.pulp_labels = value
|
93
97
|
end
|
94
98
|
end
|
95
|
-
|
96
|
-
if attributes.key?(:'manifest_signing_service')
|
97
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
98
|
-
end
|
99
99
|
end
|
100
100
|
|
101
101
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -173,8 +173,8 @@ module PulpContainerClient
|
|
173
173
|
retain_repo_versions == o.retain_repo_versions &&
|
174
174
|
description == o.description &&
|
175
175
|
name == o.name &&
|
176
|
-
|
177
|
-
|
176
|
+
manifest_signing_service == o.manifest_signing_service &&
|
177
|
+
pulp_labels == o.pulp_labels
|
178
178
|
end
|
179
179
|
|
180
180
|
# @see the `==` method
|
@@ -186,7 +186,7 @@ module PulpContainerClient
|
|
186
186
|
# Calculates hash code according to all attributes.
|
187
187
|
# @return [Integer] Hash code
|
188
188
|
def hash
|
189
|
-
[retain_repo_versions, description, name,
|
189
|
+
[retain_repo_versions, description, name, manifest_signing_service, pulp_labels].hash
|
190
190
|
end
|
191
191
|
|
192
192
|
# Builds the object from hash
|
@@ -17,39 +17,39 @@ module PulpContainerClient
|
|
17
17
|
class ContainerContainerPushRepositoryResponse
|
18
18
|
attr_accessor :versions_href
|
19
19
|
|
20
|
+
# Timestamp of creation.
|
21
|
+
attr_accessor :pulp_created
|
22
|
+
|
23
|
+
attr_accessor :pulp_href
|
24
|
+
|
25
|
+
attr_accessor :latest_version_href
|
26
|
+
|
20
27
|
# Retain X versions of the repository. Default is null which retains all versions.
|
21
28
|
attr_accessor :retain_repo_versions
|
22
29
|
|
23
30
|
# An optional description.
|
24
31
|
attr_accessor :description
|
25
32
|
|
26
|
-
attr_accessor :latest_version_href
|
27
|
-
|
28
33
|
# A unique name for this repository.
|
29
34
|
attr_accessor :name
|
30
35
|
|
31
|
-
# Timestamp of creation.
|
32
|
-
attr_accessor :pulp_created
|
33
|
-
|
34
|
-
attr_accessor :pulp_labels
|
35
|
-
|
36
36
|
# A reference to an associated signing service.
|
37
37
|
attr_accessor :manifest_signing_service
|
38
38
|
|
39
|
-
attr_accessor :
|
39
|
+
attr_accessor :pulp_labels
|
40
40
|
|
41
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
44
|
:'versions_href' => :'versions_href',
|
45
|
+
:'pulp_created' => :'pulp_created',
|
46
|
+
:'pulp_href' => :'pulp_href',
|
47
|
+
:'latest_version_href' => :'latest_version_href',
|
45
48
|
:'retain_repo_versions' => :'retain_repo_versions',
|
46
49
|
:'description' => :'description',
|
47
|
-
:'latest_version_href' => :'latest_version_href',
|
48
50
|
:'name' => :'name',
|
49
|
-
:'pulp_created' => :'pulp_created',
|
50
|
-
:'pulp_labels' => :'pulp_labels',
|
51
51
|
:'manifest_signing_service' => :'manifest_signing_service',
|
52
|
-
:'
|
52
|
+
:'pulp_labels' => :'pulp_labels'
|
53
53
|
}
|
54
54
|
end
|
55
55
|
|
@@ -57,14 +57,14 @@ module PulpContainerClient
|
|
57
57
|
def self.openapi_types
|
58
58
|
{
|
59
59
|
:'versions_href' => :'String',
|
60
|
+
:'pulp_created' => :'DateTime',
|
61
|
+
:'pulp_href' => :'String',
|
62
|
+
:'latest_version_href' => :'String',
|
60
63
|
:'retain_repo_versions' => :'Integer',
|
61
64
|
:'description' => :'String',
|
62
|
-
:'latest_version_href' => :'String',
|
63
65
|
:'name' => :'String',
|
64
|
-
:'pulp_created' => :'DateTime',
|
65
|
-
:'pulp_labels' => :'Hash<String, String>',
|
66
66
|
:'manifest_signing_service' => :'String',
|
67
|
-
:'
|
67
|
+
:'pulp_labels' => :'Hash<String, String>'
|
68
68
|
}
|
69
69
|
end
|
70
70
|
|
@@ -96,38 +96,38 @@ module PulpContainerClient
|
|
96
96
|
self.versions_href = attributes[:'versions_href']
|
97
97
|
end
|
98
98
|
|
99
|
-
if attributes.key?(:'
|
100
|
-
self.
|
99
|
+
if attributes.key?(:'pulp_created')
|
100
|
+
self.pulp_created = attributes[:'pulp_created']
|
101
101
|
end
|
102
102
|
|
103
|
-
if attributes.key?(:'
|
104
|
-
self.
|
103
|
+
if attributes.key?(:'pulp_href')
|
104
|
+
self.pulp_href = attributes[:'pulp_href']
|
105
105
|
end
|
106
106
|
|
107
107
|
if attributes.key?(:'latest_version_href')
|
108
108
|
self.latest_version_href = attributes[:'latest_version_href']
|
109
109
|
end
|
110
110
|
|
111
|
-
if attributes.key?(:'
|
112
|
-
self.
|
111
|
+
if attributes.key?(:'retain_repo_versions')
|
112
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
113
113
|
end
|
114
114
|
|
115
|
-
if attributes.key?(:'
|
116
|
-
self.
|
115
|
+
if attributes.key?(:'description')
|
116
|
+
self.description = attributes[:'description']
|
117
117
|
end
|
118
118
|
|
119
|
-
if attributes.key?(:'
|
120
|
-
|
121
|
-
self.pulp_labels = value
|
122
|
-
end
|
119
|
+
if attributes.key?(:'name')
|
120
|
+
self.name = attributes[:'name']
|
123
121
|
end
|
124
122
|
|
125
123
|
if attributes.key?(:'manifest_signing_service')
|
126
124
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
127
125
|
end
|
128
126
|
|
129
|
-
if attributes.key?(:'
|
130
|
-
|
127
|
+
if attributes.key?(:'pulp_labels')
|
128
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
129
|
+
self.pulp_labels = value
|
130
|
+
end
|
131
131
|
end
|
132
132
|
end
|
133
133
|
|
@@ -170,14 +170,14 @@ module PulpContainerClient
|
|
170
170
|
return true if self.equal?(o)
|
171
171
|
self.class == o.class &&
|
172
172
|
versions_href == o.versions_href &&
|
173
|
+
pulp_created == o.pulp_created &&
|
174
|
+
pulp_href == o.pulp_href &&
|
175
|
+
latest_version_href == o.latest_version_href &&
|
173
176
|
retain_repo_versions == o.retain_repo_versions &&
|
174
177
|
description == o.description &&
|
175
|
-
latest_version_href == o.latest_version_href &&
|
176
178
|
name == o.name &&
|
177
|
-
pulp_created == o.pulp_created &&
|
178
|
-
pulp_labels == o.pulp_labels &&
|
179
179
|
manifest_signing_service == o.manifest_signing_service &&
|
180
|
-
|
180
|
+
pulp_labels == o.pulp_labels
|
181
181
|
end
|
182
182
|
|
183
183
|
# @see the `==` method
|
@@ -189,7 +189,7 @@ module PulpContainerClient
|
|
189
189
|
# Calculates hash code according to all attributes.
|
190
190
|
# @return [Integer] Hash code
|
191
191
|
def hash
|
192
|
-
[versions_href,
|
192
|
+
[versions_href, pulp_created, pulp_href, latest_version_href, retain_repo_versions, description, name, manifest_signing_service, pulp_labels].hash
|
193
193
|
end
|
194
194
|
|
195
195
|
# Builds the object from hash
|
@@ -15,8 +15,7 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# A serializer for ContainerDistribution.
|
17
17
|
class PatchedcontainerContainerDistribution
|
18
|
-
|
19
|
-
attr_accessor :content_guard
|
18
|
+
attr_accessor :pulp_labels
|
20
19
|
|
21
20
|
# The latest RepositoryVersion for this Repository will be served.
|
22
21
|
attr_accessor :repository
|
@@ -24,11 +23,12 @@ module PulpContainerClient
|
|
24
23
|
# A unique name. Ex, `rawhide` and `stable`.
|
25
24
|
attr_accessor :name
|
26
25
|
|
26
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
27
|
+
attr_accessor :content_guard
|
28
|
+
|
27
29
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
28
30
|
attr_accessor :base_path
|
29
31
|
|
30
|
-
attr_accessor :pulp_labels
|
31
|
-
|
32
32
|
# RepositoryVersion to be served
|
33
33
|
attr_accessor :repository_version
|
34
34
|
|
@@ -41,11 +41,11 @@ module PulpContainerClient
|
|
41
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
|
-
:'
|
44
|
+
:'pulp_labels' => :'pulp_labels',
|
45
45
|
:'repository' => :'repository',
|
46
46
|
:'name' => :'name',
|
47
|
+
:'content_guard' => :'content_guard',
|
47
48
|
:'base_path' => :'base_path',
|
48
|
-
:'pulp_labels' => :'pulp_labels',
|
49
49
|
:'repository_version' => :'repository_version',
|
50
50
|
:'private' => :'private',
|
51
51
|
:'description' => :'description'
|
@@ -55,11 +55,11 @@ module PulpContainerClient
|
|
55
55
|
# Attribute type mapping.
|
56
56
|
def self.openapi_types
|
57
57
|
{
|
58
|
-
:'
|
58
|
+
:'pulp_labels' => :'Hash<String, String>',
|
59
59
|
:'repository' => :'String',
|
60
60
|
:'name' => :'String',
|
61
|
+
:'content_guard' => :'String',
|
61
62
|
:'base_path' => :'String',
|
62
|
-
:'pulp_labels' => :'Hash<String, String>',
|
63
63
|
:'repository_version' => :'String',
|
64
64
|
:'private' => :'Boolean',
|
65
65
|
:'description' => :'String'
|
@@ -90,8 +90,10 @@ module PulpContainerClient
|
|
90
90
|
h[k.to_sym] = v
|
91
91
|
}
|
92
92
|
|
93
|
-
if attributes.key?(:'
|
94
|
-
|
93
|
+
if attributes.key?(:'pulp_labels')
|
94
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
95
|
+
self.pulp_labels = value
|
96
|
+
end
|
95
97
|
end
|
96
98
|
|
97
99
|
if attributes.key?(:'repository')
|
@@ -102,14 +104,12 @@ module PulpContainerClient
|
|
102
104
|
self.name = attributes[:'name']
|
103
105
|
end
|
104
106
|
|
105
|
-
if attributes.key?(:'
|
106
|
-
self.
|
107
|
+
if attributes.key?(:'content_guard')
|
108
|
+
self.content_guard = attributes[:'content_guard']
|
107
109
|
end
|
108
110
|
|
109
|
-
if attributes.key?(:'
|
110
|
-
|
111
|
-
self.pulp_labels = value
|
112
|
-
end
|
111
|
+
if attributes.key?(:'base_path')
|
112
|
+
self.base_path = attributes[:'base_path']
|
113
113
|
end
|
114
114
|
|
115
115
|
if attributes.key?(:'repository_version')
|
@@ -188,11 +188,11 @@ module PulpContainerClient
|
|
188
188
|
def ==(o)
|
189
189
|
return true if self.equal?(o)
|
190
190
|
self.class == o.class &&
|
191
|
-
|
191
|
+
pulp_labels == o.pulp_labels &&
|
192
192
|
repository == o.repository &&
|
193
193
|
name == o.name &&
|
194
|
+
content_guard == o.content_guard &&
|
194
195
|
base_path == o.base_path &&
|
195
|
-
pulp_labels == o.pulp_labels &&
|
196
196
|
repository_version == o.repository_version &&
|
197
197
|
private == o.private &&
|
198
198
|
description == o.description
|
@@ -207,7 +207,7 @@ module PulpContainerClient
|
|
207
207
|
# Calculates hash code according to all attributes.
|
208
208
|
# @return [Integer] Hash code
|
209
209
|
def hash
|
210
|
-
[
|
210
|
+
[pulp_labels, repository, name, content_guard, base_path, repository_version, private, description].hash
|
211
211
|
end
|
212
212
|
|
213
213
|
# Builds the object from hash
|
@@ -24,19 +24,19 @@ module PulpContainerClient
|
|
24
24
|
# A unique name for this repository.
|
25
25
|
attr_accessor :name
|
26
26
|
|
27
|
-
attr_accessor :pulp_labels
|
28
|
-
|
29
27
|
# A reference to an associated signing service.
|
30
28
|
attr_accessor :manifest_signing_service
|
31
29
|
|
30
|
+
attr_accessor :pulp_labels
|
31
|
+
|
32
32
|
# Attribute mapping from ruby-style variable name to JSON key.
|
33
33
|
def self.attribute_map
|
34
34
|
{
|
35
35
|
:'retain_repo_versions' => :'retain_repo_versions',
|
36
36
|
:'description' => :'description',
|
37
37
|
:'name' => :'name',
|
38
|
-
:'
|
39
|
-
:'
|
38
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
39
|
+
:'pulp_labels' => :'pulp_labels'
|
40
40
|
}
|
41
41
|
end
|
42
42
|
|
@@ -46,8 +46,8 @@ module PulpContainerClient
|
|
46
46
|
:'retain_repo_versions' => :'Integer',
|
47
47
|
:'description' => :'String',
|
48
48
|
:'name' => :'String',
|
49
|
-
:'
|
50
|
-
:'
|
49
|
+
:'manifest_signing_service' => :'String',
|
50
|
+
:'pulp_labels' => :'Hash<String, String>'
|
51
51
|
}
|
52
52
|
end
|
53
53
|
|
@@ -56,7 +56,7 @@ module PulpContainerClient
|
|
56
56
|
Set.new([
|
57
57
|
:'retain_repo_versions',
|
58
58
|
:'description',
|
59
|
-
:'manifest_signing_service'
|
59
|
+
:'manifest_signing_service',
|
60
60
|
])
|
61
61
|
end
|
62
62
|
|
@@ -87,15 +87,15 @@ module PulpContainerClient
|
|
87
87
|
self.name = attributes[:'name']
|
88
88
|
end
|
89
89
|
|
90
|
+
if attributes.key?(:'manifest_signing_service')
|
91
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
92
|
+
end
|
93
|
+
|
90
94
|
if attributes.key?(:'pulp_labels')
|
91
95
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
92
96
|
self.pulp_labels = value
|
93
97
|
end
|
94
98
|
end
|
95
|
-
|
96
|
-
if attributes.key?(:'manifest_signing_service')
|
97
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
98
|
-
end
|
99
99
|
end
|
100
100
|
|
101
101
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -164,8 +164,8 @@ module PulpContainerClient
|
|
164
164
|
retain_repo_versions == o.retain_repo_versions &&
|
165
165
|
description == o.description &&
|
166
166
|
name == o.name &&
|
167
|
-
|
168
|
-
|
167
|
+
manifest_signing_service == o.manifest_signing_service &&
|
168
|
+
pulp_labels == o.pulp_labels
|
169
169
|
end
|
170
170
|
|
171
171
|
# @see the `==` method
|
@@ -177,7 +177,7 @@ module PulpContainerClient
|
|
177
177
|
# Calculates hash code according to all attributes.
|
178
178
|
# @return [Integer] Hash code
|
179
179
|
def hash
|
180
|
-
[retain_repo_versions, description, name,
|
180
|
+
[retain_repo_versions, description, name, manifest_signing_service, pulp_labels].hash
|
181
181
|
end
|
182
182
|
|
183
183
|
# Builds the object from hash
|
@@ -127,6 +127,7 @@ describe 'RepositoriesContainerApi' do
|
|
127
127
|
# List container repositorys
|
128
128
|
# ViewSet for container repo.
|
129
129
|
# @param [Hash] opts the optional parameters
|
130
|
+
# @option opts [String] :latest_with_content Content Unit referenced by HREF
|
130
131
|
# @option opts [Integer] :limit Number of results to return per page.
|
131
132
|
# @option opts [String] :name Filter results where name matches value
|
132
133
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -147,6 +148,7 @@ describe 'RepositoriesContainerApi' do
|
|
147
148
|
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
148
149
|
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
149
150
|
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
151
|
+
# @option opts [String] :with_content Content Unit referenced by HREF
|
150
152
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
151
153
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
152
154
|
# @return [PaginatedcontainerContainerRepositoryResponseList]
|
@@ -48,6 +48,7 @@ describe 'RepositoriesContainerPushApi' do
|
|
48
48
|
# List container push repositorys
|
49
49
|
# 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.
|
50
50
|
# @param [Hash] opts the optional parameters
|
51
|
+
# @option opts [String] :latest_with_content Content Unit referenced by HREF
|
51
52
|
# @option opts [Integer] :limit Number of results to return per page.
|
52
53
|
# @option opts [String] :name Filter results where name matches value
|
53
54
|
# @option opts [String] :name__contains Filter results where name contains value
|
@@ -68,6 +69,7 @@ describe 'RepositoriesContainerPushApi' do
|
|
68
69
|
# @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
|
69
70
|
# @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
|
70
71
|
# @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
|
72
|
+
# @option opts [String] :with_content Content Unit referenced by HREF
|
71
73
|
# @option opts [Array<String>] :fields A list of fields to include in the response.
|
72
74
|
# @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
|
73
75
|
# @return [PaginatedcontainerContainerPushRepositoryResponseList]
|
@@ -32,43 +32,43 @@ describe 'ContainerContainerDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_created"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_labels"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "repository"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "name"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "content_guard"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "base_path"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_labels"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
@@ -50,13 +50,13 @@ describe 'ContainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "content_guard"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "base_path"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -38,13 +38,13 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
41
|
+
describe 'test attribute "pulp_created"' do
|
42
42
|
it 'should work' do
|
43
43
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "pulp_href"' do
|
48
48
|
it 'should work' do
|
49
49
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
50
|
end
|
@@ -56,19 +56,19 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "retain_repo_versions"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
-
describe 'test attribute "
|
65
|
+
describe 'test attribute "description"' do
|
66
66
|
it 'should work' do
|
67
67
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
68
|
end
|
69
69
|
end
|
70
70
|
|
71
|
-
describe 'test attribute "
|
71
|
+
describe 'test attribute "name"' do
|
72
72
|
it 'should work' do
|
73
73
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
74
74
|
end
|
@@ -80,7 +80,7 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
80
80
|
end
|
81
81
|
end
|
82
82
|
|
83
|
-
describe 'test attribute "
|
83
|
+
describe 'test attribute "pulp_labels"' do
|
84
84
|
it 'should work' do
|
85
85
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
86
86
|
end
|
@@ -50,13 +50,13 @@ describe 'ContainerContainerPushRepository' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "manifest_signing_service"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "pulp_labels"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -32,7 +32,7 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "pulp_labels"' do
|
36
36
|
it 'should work' do
|
37
37
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
38
|
end
|
@@ -50,13 +50,13 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "content_guard"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "base_path"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|
@@ -50,13 +50,13 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "manifest_signing_service"' do
|
54
54
|
it 'should work' do
|
55
55
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "pulp_labels"' do
|
60
60
|
it 'should work' do
|
61
61
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
62
|
end
|