pulp_container_client 2.19.1 → 2.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +4 -4
- data/docs/ContainerContainerDistributionResponse.md +4 -4
- data/docs/ContainerContainerPullThroughDistribution.md +4 -4
- data/docs/ContainerContainerPullThroughDistributionResponse.md +4 -4
- data/docs/ContainerContainerPushRepositoryResponse.md +6 -6
- data/docs/PatchedcontainerContainerDistribution.md +4 -4
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
- data/lib/pulp_container_client/models/container_container_distribution.rb +18 -18
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +18 -18
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +18 -18
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +18 -18
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +24 -24
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +18 -18
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_distribution_spec.rb +5 -5
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
- data/spec/models/container_container_push_repository_response_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
- metadata +64 -64
data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb
CHANGED
|
@@ -18,13 +18,16 @@ module PulpContainerClient
|
|
|
18
18
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
19
19
|
attr_accessor :base_path
|
|
20
20
|
|
|
21
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
22
|
+
attr_accessor :name
|
|
23
|
+
|
|
21
24
|
attr_accessor :pulp_href
|
|
22
25
|
|
|
23
26
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
24
27
|
attr_accessor :content_guard
|
|
25
28
|
|
|
26
|
-
#
|
|
27
|
-
attr_accessor :
|
|
29
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
30
|
+
attr_accessor :repository
|
|
28
31
|
|
|
29
32
|
# Timestamp of creation.
|
|
30
33
|
attr_accessor :pulp_created
|
|
@@ -34,9 +37,6 @@ module PulpContainerClient
|
|
|
34
37
|
|
|
35
38
|
attr_accessor :pulp_labels
|
|
36
39
|
|
|
37
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
38
|
-
attr_accessor :repository
|
|
39
|
-
|
|
40
40
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
41
41
|
attr_accessor :remote
|
|
42
42
|
|
|
@@ -56,13 +56,13 @@ module PulpContainerClient
|
|
|
56
56
|
def self.attribute_map
|
|
57
57
|
{
|
|
58
58
|
:'base_path' => :'base_path',
|
|
59
|
+
:'name' => :'name',
|
|
59
60
|
:'pulp_href' => :'pulp_href',
|
|
60
61
|
:'content_guard' => :'content_guard',
|
|
61
|
-
:'
|
|
62
|
+
:'repository' => :'repository',
|
|
62
63
|
:'pulp_created' => :'pulp_created',
|
|
63
64
|
:'hidden' => :'hidden',
|
|
64
65
|
:'pulp_labels' => :'pulp_labels',
|
|
65
|
-
:'repository' => :'repository',
|
|
66
66
|
:'remote' => :'remote',
|
|
67
67
|
:'distributions' => :'distributions',
|
|
68
68
|
:'namespace' => :'namespace',
|
|
@@ -75,13 +75,13 @@ module PulpContainerClient
|
|
|
75
75
|
def self.openapi_types
|
|
76
76
|
{
|
|
77
77
|
:'base_path' => :'String',
|
|
78
|
+
:'name' => :'String',
|
|
78
79
|
:'pulp_href' => :'String',
|
|
79
80
|
:'content_guard' => :'String',
|
|
80
|
-
:'
|
|
81
|
+
:'repository' => :'String',
|
|
81
82
|
:'pulp_created' => :'DateTime',
|
|
82
83
|
:'hidden' => :'Boolean',
|
|
83
84
|
:'pulp_labels' => :'Hash<String, String>',
|
|
84
|
-
:'repository' => :'String',
|
|
85
85
|
:'remote' => :'String',
|
|
86
86
|
:'distributions' => :'Array<String>',
|
|
87
87
|
:'namespace' => :'String',
|
|
@@ -117,6 +117,10 @@ module PulpContainerClient
|
|
|
117
117
|
self.base_path = attributes[:'base_path']
|
|
118
118
|
end
|
|
119
119
|
|
|
120
|
+
if attributes.key?(:'name')
|
|
121
|
+
self.name = attributes[:'name']
|
|
122
|
+
end
|
|
123
|
+
|
|
120
124
|
if attributes.key?(:'pulp_href')
|
|
121
125
|
self.pulp_href = attributes[:'pulp_href']
|
|
122
126
|
end
|
|
@@ -125,8 +129,8 @@ module PulpContainerClient
|
|
|
125
129
|
self.content_guard = attributes[:'content_guard']
|
|
126
130
|
end
|
|
127
131
|
|
|
128
|
-
if attributes.key?(:'
|
|
129
|
-
self.
|
|
132
|
+
if attributes.key?(:'repository')
|
|
133
|
+
self.repository = attributes[:'repository']
|
|
130
134
|
end
|
|
131
135
|
|
|
132
136
|
if attributes.key?(:'pulp_created')
|
|
@@ -145,10 +149,6 @@ module PulpContainerClient
|
|
|
145
149
|
end
|
|
146
150
|
end
|
|
147
151
|
|
|
148
|
-
if attributes.key?(:'repository')
|
|
149
|
-
self.repository = attributes[:'repository']
|
|
150
|
-
end
|
|
151
|
-
|
|
152
152
|
if attributes.key?(:'remote')
|
|
153
153
|
self.remote = attributes[:'remote']
|
|
154
154
|
end
|
|
@@ -206,13 +206,13 @@ module PulpContainerClient
|
|
|
206
206
|
return true if self.equal?(o)
|
|
207
207
|
self.class == o.class &&
|
|
208
208
|
base_path == o.base_path &&
|
|
209
|
+
name == o.name &&
|
|
209
210
|
pulp_href == o.pulp_href &&
|
|
210
211
|
content_guard == o.content_guard &&
|
|
211
|
-
|
|
212
|
+
repository == o.repository &&
|
|
212
213
|
pulp_created == o.pulp_created &&
|
|
213
214
|
hidden == o.hidden &&
|
|
214
215
|
pulp_labels == o.pulp_labels &&
|
|
215
|
-
repository == o.repository &&
|
|
216
216
|
remote == o.remote &&
|
|
217
217
|
distributions == o.distributions &&
|
|
218
218
|
namespace == o.namespace &&
|
|
@@ -229,7 +229,7 @@ module PulpContainerClient
|
|
|
229
229
|
# Calculates hash code according to all attributes.
|
|
230
230
|
# @return [Integer] Hash code
|
|
231
231
|
def hash
|
|
232
|
-
[base_path, pulp_href, content_guard,
|
|
232
|
+
[base_path, name, pulp_href, content_guard, repository, pulp_created, hidden, pulp_labels, remote, distributions, namespace, private, description].hash
|
|
233
233
|
end
|
|
234
234
|
|
|
235
235
|
# Builds the object from hash
|
|
@@ -18,18 +18,18 @@ module PulpContainerClient
|
|
|
18
18
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
19
19
|
attr_accessor :retain_repo_versions
|
|
20
20
|
|
|
21
|
-
attr_accessor :versions_href
|
|
22
|
-
|
|
23
|
-
attr_accessor :latest_version_href
|
|
24
|
-
|
|
25
21
|
# A reference to an associated signing service.
|
|
26
22
|
attr_accessor :manifest_signing_service
|
|
27
23
|
|
|
28
|
-
attr_accessor :pulp_href
|
|
29
|
-
|
|
30
24
|
# A unique name for this repository.
|
|
31
25
|
attr_accessor :name
|
|
32
26
|
|
|
27
|
+
attr_accessor :latest_version_href
|
|
28
|
+
|
|
29
|
+
attr_accessor :pulp_href
|
|
30
|
+
|
|
31
|
+
attr_accessor :versions_href
|
|
32
|
+
|
|
33
33
|
# An optional description.
|
|
34
34
|
attr_accessor :description
|
|
35
35
|
|
|
@@ -42,11 +42,11 @@ module PulpContainerClient
|
|
|
42
42
|
def self.attribute_map
|
|
43
43
|
{
|
|
44
44
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
45
|
-
:'versions_href' => :'versions_href',
|
|
46
|
-
:'latest_version_href' => :'latest_version_href',
|
|
47
45
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
48
|
-
:'pulp_href' => :'pulp_href',
|
|
49
46
|
:'name' => :'name',
|
|
47
|
+
:'latest_version_href' => :'latest_version_href',
|
|
48
|
+
:'pulp_href' => :'pulp_href',
|
|
49
|
+
:'versions_href' => :'versions_href',
|
|
50
50
|
:'description' => :'description',
|
|
51
51
|
:'pulp_created' => :'pulp_created',
|
|
52
52
|
:'pulp_labels' => :'pulp_labels'
|
|
@@ -57,11 +57,11 @@ module PulpContainerClient
|
|
|
57
57
|
def self.openapi_types
|
|
58
58
|
{
|
|
59
59
|
:'retain_repo_versions' => :'Integer',
|
|
60
|
-
:'versions_href' => :'String',
|
|
61
|
-
:'latest_version_href' => :'String',
|
|
62
60
|
:'manifest_signing_service' => :'String',
|
|
63
|
-
:'pulp_href' => :'String',
|
|
64
61
|
:'name' => :'String',
|
|
62
|
+
:'latest_version_href' => :'String',
|
|
63
|
+
:'pulp_href' => :'String',
|
|
64
|
+
:'versions_href' => :'String',
|
|
65
65
|
:'description' => :'String',
|
|
66
66
|
:'pulp_created' => :'DateTime',
|
|
67
67
|
:'pulp_labels' => :'Hash<String, String>'
|
|
@@ -96,24 +96,24 @@ module PulpContainerClient
|
|
|
96
96
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
97
97
|
end
|
|
98
98
|
|
|
99
|
-
if attributes.key?(:'
|
|
100
|
-
self.
|
|
99
|
+
if attributes.key?(:'manifest_signing_service')
|
|
100
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
101
101
|
end
|
|
102
102
|
|
|
103
|
-
if attributes.key?(:'
|
|
104
|
-
self.
|
|
103
|
+
if attributes.key?(:'name')
|
|
104
|
+
self.name = attributes[:'name']
|
|
105
105
|
end
|
|
106
106
|
|
|
107
|
-
if attributes.key?(:'
|
|
108
|
-
self.
|
|
107
|
+
if attributes.key?(:'latest_version_href')
|
|
108
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
|
109
109
|
end
|
|
110
110
|
|
|
111
111
|
if attributes.key?(:'pulp_href')
|
|
112
112
|
self.pulp_href = attributes[:'pulp_href']
|
|
113
113
|
end
|
|
114
114
|
|
|
115
|
-
if attributes.key?(:'
|
|
116
|
-
self.
|
|
115
|
+
if attributes.key?(:'versions_href')
|
|
116
|
+
self.versions_href = attributes[:'versions_href']
|
|
117
117
|
end
|
|
118
118
|
|
|
119
119
|
if attributes.key?(:'description')
|
|
@@ -170,11 +170,11 @@ module PulpContainerClient
|
|
|
170
170
|
return true if self.equal?(o)
|
|
171
171
|
self.class == o.class &&
|
|
172
172
|
retain_repo_versions == o.retain_repo_versions &&
|
|
173
|
-
versions_href == o.versions_href &&
|
|
174
|
-
latest_version_href == o.latest_version_href &&
|
|
175
173
|
manifest_signing_service == o.manifest_signing_service &&
|
|
176
|
-
pulp_href == o.pulp_href &&
|
|
177
174
|
name == o.name &&
|
|
175
|
+
latest_version_href == o.latest_version_href &&
|
|
176
|
+
pulp_href == o.pulp_href &&
|
|
177
|
+
versions_href == o.versions_href &&
|
|
178
178
|
description == o.description &&
|
|
179
179
|
pulp_created == o.pulp_created &&
|
|
180
180
|
pulp_labels == o.pulp_labels
|
|
@@ -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
|
-
[retain_repo_versions,
|
|
192
|
+
[retain_repo_versions, manifest_signing_service, name, latest_version_href, pulp_href, versions_href, description, pulp_created, pulp_labels].hash
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
# Builds the object from hash
|
|
@@ -18,20 +18,20 @@ module PulpContainerClient
|
|
|
18
18
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
19
19
|
attr_accessor :base_path
|
|
20
20
|
|
|
21
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
22
|
+
attr_accessor :name
|
|
23
|
+
|
|
21
24
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
25
|
attr_accessor :content_guard
|
|
23
26
|
|
|
24
|
-
#
|
|
25
|
-
attr_accessor :
|
|
27
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
28
|
+
attr_accessor :repository
|
|
26
29
|
|
|
27
30
|
# Whether this distribution should be shown in the content app.
|
|
28
31
|
attr_accessor :hidden
|
|
29
32
|
|
|
30
33
|
attr_accessor :pulp_labels
|
|
31
34
|
|
|
32
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
33
|
-
attr_accessor :repository
|
|
34
|
-
|
|
35
35
|
# RepositoryVersion to be served
|
|
36
36
|
attr_accessor :repository_version
|
|
37
37
|
|
|
@@ -45,11 +45,11 @@ module PulpContainerClient
|
|
|
45
45
|
def self.attribute_map
|
|
46
46
|
{
|
|
47
47
|
:'base_path' => :'base_path',
|
|
48
|
-
:'content_guard' => :'content_guard',
|
|
49
48
|
:'name' => :'name',
|
|
49
|
+
:'content_guard' => :'content_guard',
|
|
50
|
+
:'repository' => :'repository',
|
|
50
51
|
:'hidden' => :'hidden',
|
|
51
52
|
:'pulp_labels' => :'pulp_labels',
|
|
52
|
-
:'repository' => :'repository',
|
|
53
53
|
:'repository_version' => :'repository_version',
|
|
54
54
|
:'private' => :'private',
|
|
55
55
|
:'description' => :'description'
|
|
@@ -60,11 +60,11 @@ module PulpContainerClient
|
|
|
60
60
|
def self.openapi_types
|
|
61
61
|
{
|
|
62
62
|
:'base_path' => :'String',
|
|
63
|
-
:'content_guard' => :'String',
|
|
64
63
|
:'name' => :'String',
|
|
64
|
+
:'content_guard' => :'String',
|
|
65
|
+
:'repository' => :'String',
|
|
65
66
|
:'hidden' => :'Boolean',
|
|
66
67
|
:'pulp_labels' => :'Hash<String, String>',
|
|
67
|
-
:'repository' => :'String',
|
|
68
68
|
:'repository_version' => :'String',
|
|
69
69
|
:'private' => :'Boolean',
|
|
70
70
|
:'description' => :'String'
|
|
@@ -99,12 +99,16 @@ module PulpContainerClient
|
|
|
99
99
|
self.base_path = attributes[:'base_path']
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
+
if attributes.key?(:'name')
|
|
103
|
+
self.name = attributes[:'name']
|
|
104
|
+
end
|
|
105
|
+
|
|
102
106
|
if attributes.key?(:'content_guard')
|
|
103
107
|
self.content_guard = attributes[:'content_guard']
|
|
104
108
|
end
|
|
105
109
|
|
|
106
|
-
if attributes.key?(:'
|
|
107
|
-
self.
|
|
110
|
+
if attributes.key?(:'repository')
|
|
111
|
+
self.repository = attributes[:'repository']
|
|
108
112
|
end
|
|
109
113
|
|
|
110
114
|
if attributes.key?(:'hidden')
|
|
@@ -119,10 +123,6 @@ module PulpContainerClient
|
|
|
119
123
|
end
|
|
120
124
|
end
|
|
121
125
|
|
|
122
|
-
if attributes.key?(:'repository')
|
|
123
|
-
self.repository = attributes[:'repository']
|
|
124
|
-
end
|
|
125
|
-
|
|
126
126
|
if attributes.key?(:'repository_version')
|
|
127
127
|
self.repository_version = attributes[:'repository_version']
|
|
128
128
|
end
|
|
@@ -200,11 +200,11 @@ module PulpContainerClient
|
|
|
200
200
|
return true if self.equal?(o)
|
|
201
201
|
self.class == o.class &&
|
|
202
202
|
base_path == o.base_path &&
|
|
203
|
-
content_guard == o.content_guard &&
|
|
204
203
|
name == o.name &&
|
|
204
|
+
content_guard == o.content_guard &&
|
|
205
|
+
repository == o.repository &&
|
|
205
206
|
hidden == o.hidden &&
|
|
206
207
|
pulp_labels == o.pulp_labels &&
|
|
207
|
-
repository == o.repository &&
|
|
208
208
|
repository_version == o.repository_version &&
|
|
209
209
|
private == o.private &&
|
|
210
210
|
description == o.description
|
|
@@ -219,7 +219,7 @@ module PulpContainerClient
|
|
|
219
219
|
# Calculates hash code according to all attributes.
|
|
220
220
|
# @return [Integer] Hash code
|
|
221
221
|
def hash
|
|
222
|
-
[base_path, content_guard,
|
|
222
|
+
[base_path, name, content_guard, repository, hidden, pulp_labels, repository_version, private, description].hash
|
|
223
223
|
end
|
|
224
224
|
|
|
225
225
|
# Builds the object from hash
|
data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb
CHANGED
|
@@ -18,20 +18,20 @@ module PulpContainerClient
|
|
|
18
18
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
19
19
|
attr_accessor :base_path
|
|
20
20
|
|
|
21
|
+
# A unique name. Ex, `rawhide` and `stable`.
|
|
22
|
+
attr_accessor :name
|
|
23
|
+
|
|
21
24
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
25
|
attr_accessor :content_guard
|
|
23
26
|
|
|
24
|
-
#
|
|
25
|
-
attr_accessor :
|
|
27
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
28
|
+
attr_accessor :repository
|
|
26
29
|
|
|
27
30
|
# Whether this distribution should be shown in the content app.
|
|
28
31
|
attr_accessor :hidden
|
|
29
32
|
|
|
30
33
|
attr_accessor :pulp_labels
|
|
31
34
|
|
|
32
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
33
|
-
attr_accessor :repository
|
|
34
|
-
|
|
35
35
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
36
36
|
attr_accessor :remote
|
|
37
37
|
|
|
@@ -48,11 +48,11 @@ module PulpContainerClient
|
|
|
48
48
|
def self.attribute_map
|
|
49
49
|
{
|
|
50
50
|
:'base_path' => :'base_path',
|
|
51
|
-
:'content_guard' => :'content_guard',
|
|
52
51
|
:'name' => :'name',
|
|
52
|
+
:'content_guard' => :'content_guard',
|
|
53
|
+
:'repository' => :'repository',
|
|
53
54
|
:'hidden' => :'hidden',
|
|
54
55
|
:'pulp_labels' => :'pulp_labels',
|
|
55
|
-
:'repository' => :'repository',
|
|
56
56
|
:'remote' => :'remote',
|
|
57
57
|
:'distributions' => :'distributions',
|
|
58
58
|
:'private' => :'private',
|
|
@@ -64,11 +64,11 @@ module PulpContainerClient
|
|
|
64
64
|
def self.openapi_types
|
|
65
65
|
{
|
|
66
66
|
:'base_path' => :'String',
|
|
67
|
-
:'content_guard' => :'String',
|
|
68
67
|
:'name' => :'String',
|
|
68
|
+
:'content_guard' => :'String',
|
|
69
|
+
:'repository' => :'String',
|
|
69
70
|
:'hidden' => :'Boolean',
|
|
70
71
|
:'pulp_labels' => :'Hash<String, String>',
|
|
71
|
-
:'repository' => :'String',
|
|
72
72
|
:'remote' => :'String',
|
|
73
73
|
:'distributions' => :'Array<String>',
|
|
74
74
|
:'private' => :'Boolean',
|
|
@@ -103,12 +103,16 @@ module PulpContainerClient
|
|
|
103
103
|
self.base_path = attributes[:'base_path']
|
|
104
104
|
end
|
|
105
105
|
|
|
106
|
+
if attributes.key?(:'name')
|
|
107
|
+
self.name = attributes[:'name']
|
|
108
|
+
end
|
|
109
|
+
|
|
106
110
|
if attributes.key?(:'content_guard')
|
|
107
111
|
self.content_guard = attributes[:'content_guard']
|
|
108
112
|
end
|
|
109
113
|
|
|
110
|
-
if attributes.key?(:'
|
|
111
|
-
self.
|
|
114
|
+
if attributes.key?(:'repository')
|
|
115
|
+
self.repository = attributes[:'repository']
|
|
112
116
|
end
|
|
113
117
|
|
|
114
118
|
if attributes.key?(:'hidden')
|
|
@@ -123,10 +127,6 @@ module PulpContainerClient
|
|
|
123
127
|
end
|
|
124
128
|
end
|
|
125
129
|
|
|
126
|
-
if attributes.key?(:'repository')
|
|
127
|
-
self.repository = attributes[:'repository']
|
|
128
|
-
end
|
|
129
|
-
|
|
130
130
|
if attributes.key?(:'remote')
|
|
131
131
|
self.remote = attributes[:'remote']
|
|
132
132
|
end
|
|
@@ -210,11 +210,11 @@ module PulpContainerClient
|
|
|
210
210
|
return true if self.equal?(o)
|
|
211
211
|
self.class == o.class &&
|
|
212
212
|
base_path == o.base_path &&
|
|
213
|
-
content_guard == o.content_guard &&
|
|
214
213
|
name == o.name &&
|
|
214
|
+
content_guard == o.content_guard &&
|
|
215
|
+
repository == o.repository &&
|
|
215
216
|
hidden == o.hidden &&
|
|
216
217
|
pulp_labels == o.pulp_labels &&
|
|
217
|
-
repository == o.repository &&
|
|
218
218
|
remote == o.remote &&
|
|
219
219
|
distributions == o.distributions &&
|
|
220
220
|
private == o.private &&
|
|
@@ -230,7 +230,7 @@ module PulpContainerClient
|
|
|
230
230
|
# Calculates hash code according to all attributes.
|
|
231
231
|
# @return [Integer] Hash code
|
|
232
232
|
def hash
|
|
233
|
-
[base_path, content_guard,
|
|
233
|
+
[base_path, name, content_guard, repository, hidden, pulp_labels, remote, distributions, private, description].hash
|
|
234
234
|
end
|
|
235
235
|
|
|
236
236
|
# Builds the object from hash
|
|
@@ -38,43 +38,43 @@ describe 'ContainerContainerDistributionResponse' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
41
|
+
describe 'test attribute "name"' 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 "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 "repository"' 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 "pulp_created"' 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 "hidden"' 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
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
-
describe 'test attribute "
|
|
77
|
+
describe 'test attribute "pulp_labels"' do
|
|
78
78
|
it 'should work' do
|
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
80
|
end
|
|
@@ -38,31 +38,31 @@ describe 'ContainerContainerDistribution' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
41
|
+
describe 'test attribute "name"' 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 "content_guard"' 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 "hidden"' 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 "pulp_labels"' 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
|
|
@@ -38,43 +38,43 @@ describe 'ContainerContainerPullThroughDistributionResponse' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
41
|
+
describe 'test attribute "name"' 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 "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 "repository"' 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 "pulp_created"' 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 "hidden"' 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
|
|
75
75
|
end
|
|
76
76
|
|
|
77
|
-
describe 'test attribute "
|
|
77
|
+
describe 'test attribute "pulp_labels"' do
|
|
78
78
|
it 'should work' do
|
|
79
79
|
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
80
80
|
end
|
|
@@ -38,31 +38,31 @@ describe 'ContainerContainerPullThroughDistribution' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
41
|
+
describe 'test attribute "name"' 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 "content_guard"' 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 "hidden"' 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 "pulp_labels"' 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
|
|
@@ -38,19 +38,19 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
|
38
38
|
end
|
|
39
39
|
end
|
|
40
40
|
|
|
41
|
-
describe 'test attribute "
|
|
41
|
+
describe 'test attribute "manifest_signing_service"' 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 "name"' 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 "latest_version_href"' 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
|
|
@@ -62,7 +62,7 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
-
describe 'test attribute "
|
|
65
|
+
describe 'test attribute "versions_href"' 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
|