pulp_container_client 2.24.6 → 2.24.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 +4 -4
- data/docs/ContainerContainerDistribution.md +8 -8
- data/docs/ContainerContainerDistributionResponse.md +12 -12
- data/docs/ContainerContainerPullThroughDistribution.md +8 -8
- data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
- data/docs/ContainerContainerPushRepository.md +4 -4
- data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
- data/docs/PatchedcontainerContainerDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPushRepository.md +4 -4
- data/lib/pulp_container_client/models/container_container_distribution.rb +32 -32
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +52 -52
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +32 -32
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +52 -52
- data/lib/pulp_container_client/models/container_container_push_repository.rb +21 -21
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +53 -53
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +32 -32
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +32 -32
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +19 -19
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +10 -10
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
- data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +9 -9
- data/spec/models/container_container_push_repository_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
- metadata +59 -59
|
@@ -16,48 +16,48 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# Serializer for Container Push Repositories.
|
|
18
18
|
class ContainerContainerPushRepositoryResponse
|
|
19
|
-
# A unique name for this repository.
|
|
20
|
-
attr_accessor :name
|
|
21
|
-
|
|
22
|
-
attr_accessor :pulp_labels
|
|
23
|
-
|
|
24
19
|
attr_accessor :versions_href
|
|
25
20
|
|
|
26
|
-
#
|
|
27
|
-
attr_accessor :
|
|
21
|
+
# A reference to an associated signing service.
|
|
22
|
+
attr_accessor :manifest_signing_service
|
|
28
23
|
|
|
29
|
-
attr_accessor :
|
|
24
|
+
attr_accessor :pulp_labels
|
|
30
25
|
|
|
31
26
|
attr_accessor :latest_version_href
|
|
32
27
|
|
|
33
|
-
#
|
|
34
|
-
attr_accessor :
|
|
28
|
+
# A unique name for this repository.
|
|
29
|
+
attr_accessor :name
|
|
35
30
|
|
|
36
31
|
# Timestamp of creation.
|
|
37
32
|
attr_accessor :pulp_created
|
|
38
33
|
|
|
34
|
+
# Retain X versions of the repository. Default is null which retains all versions.
|
|
35
|
+
attr_accessor :retain_repo_versions
|
|
36
|
+
|
|
37
|
+
# Timestamp of the last time this resource was updated. Note: for immutable resources - like content, repository versions, and publication - pulp_created and pulp_last_updated dates will be the same.
|
|
38
|
+
attr_accessor :pulp_last_updated
|
|
39
|
+
|
|
40
|
+
attr_accessor :pulp_href
|
|
41
|
+
|
|
39
42
|
# The Pulp Resource Name (PRN).
|
|
40
43
|
attr_accessor :prn
|
|
41
44
|
|
|
42
|
-
# A reference to an associated signing service.
|
|
43
|
-
attr_accessor :manifest_signing_service
|
|
44
|
-
|
|
45
45
|
# An optional description.
|
|
46
46
|
attr_accessor :description
|
|
47
47
|
|
|
48
48
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
49
|
def self.attribute_map
|
|
50
50
|
{
|
|
51
|
-
:'name' => :'name',
|
|
52
|
-
:'pulp_labels' => :'pulp_labels',
|
|
53
51
|
:'versions_href' => :'versions_href',
|
|
54
|
-
:'
|
|
55
|
-
:'
|
|
52
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
|
53
|
+
:'pulp_labels' => :'pulp_labels',
|
|
56
54
|
:'latest_version_href' => :'latest_version_href',
|
|
57
|
-
:'
|
|
55
|
+
:'name' => :'name',
|
|
58
56
|
:'pulp_created' => :'pulp_created',
|
|
57
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
|
58
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
59
|
+
:'pulp_href' => :'pulp_href',
|
|
59
60
|
:'prn' => :'prn',
|
|
60
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
|
61
61
|
:'description' => :'description'
|
|
62
62
|
}
|
|
63
63
|
end
|
|
@@ -70,16 +70,16 @@ module PulpContainerClient
|
|
|
70
70
|
# Attribute type mapping.
|
|
71
71
|
def self.openapi_types
|
|
72
72
|
{
|
|
73
|
-
:'name' => :'String',
|
|
74
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
75
73
|
:'versions_href' => :'String',
|
|
76
|
-
:'
|
|
77
|
-
:'
|
|
74
|
+
:'manifest_signing_service' => :'String',
|
|
75
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
78
76
|
:'latest_version_href' => :'String',
|
|
79
|
-
:'
|
|
77
|
+
:'name' => :'String',
|
|
80
78
|
:'pulp_created' => :'Time',
|
|
79
|
+
:'retain_repo_versions' => :'Integer',
|
|
80
|
+
:'pulp_last_updated' => :'Time',
|
|
81
|
+
:'pulp_href' => :'String',
|
|
81
82
|
:'prn' => :'String',
|
|
82
|
-
:'manifest_signing_service' => :'String',
|
|
83
83
|
:'description' => :'String'
|
|
84
84
|
}
|
|
85
85
|
end
|
|
@@ -87,8 +87,8 @@ module PulpContainerClient
|
|
|
87
87
|
# List of attributes with nullable: true
|
|
88
88
|
def self.openapi_nullable
|
|
89
89
|
Set.new([
|
|
90
|
-
:'retain_repo_versions',
|
|
91
90
|
:'manifest_signing_service',
|
|
91
|
+
:'retain_repo_versions',
|
|
92
92
|
:'description'
|
|
93
93
|
])
|
|
94
94
|
end
|
|
@@ -108,10 +108,12 @@ module PulpContainerClient
|
|
|
108
108
|
h[k.to_sym] = v
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
if attributes.key?(:'
|
|
112
|
-
self.
|
|
113
|
-
|
|
114
|
-
|
|
111
|
+
if attributes.key?(:'versions_href')
|
|
112
|
+
self.versions_href = attributes[:'versions_href']
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
if attributes.key?(:'manifest_signing_service')
|
|
116
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
115
117
|
end
|
|
116
118
|
|
|
117
119
|
if attributes.key?(:'pulp_labels')
|
|
@@ -120,36 +122,34 @@ module PulpContainerClient
|
|
|
120
122
|
end
|
|
121
123
|
end
|
|
122
124
|
|
|
123
|
-
if attributes.key?(:'
|
|
124
|
-
self.
|
|
125
|
-
end
|
|
126
|
-
|
|
127
|
-
if attributes.key?(:'pulp_last_updated')
|
|
128
|
-
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
125
|
+
if attributes.key?(:'latest_version_href')
|
|
126
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
|
129
127
|
end
|
|
130
128
|
|
|
131
|
-
if attributes.key?(:'
|
|
132
|
-
self.
|
|
129
|
+
if attributes.key?(:'name')
|
|
130
|
+
self.name = attributes[:'name']
|
|
131
|
+
else
|
|
132
|
+
self.name = nil
|
|
133
133
|
end
|
|
134
134
|
|
|
135
|
-
if attributes.key?(:'
|
|
136
|
-
self.
|
|
135
|
+
if attributes.key?(:'pulp_created')
|
|
136
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
137
137
|
end
|
|
138
138
|
|
|
139
139
|
if attributes.key?(:'retain_repo_versions')
|
|
140
140
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
141
141
|
end
|
|
142
142
|
|
|
143
|
-
if attributes.key?(:'
|
|
144
|
-
self.
|
|
143
|
+
if attributes.key?(:'pulp_last_updated')
|
|
144
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
145
145
|
end
|
|
146
146
|
|
|
147
|
-
if attributes.key?(:'
|
|
148
|
-
self.
|
|
147
|
+
if attributes.key?(:'pulp_href')
|
|
148
|
+
self.pulp_href = attributes[:'pulp_href']
|
|
149
149
|
end
|
|
150
150
|
|
|
151
|
-
if attributes.key?(:'
|
|
152
|
-
self.
|
|
151
|
+
if attributes.key?(:'prn')
|
|
152
|
+
self.prn = attributes[:'prn']
|
|
153
153
|
end
|
|
154
154
|
|
|
155
155
|
if attributes.key?(:'description')
|
|
@@ -197,16 +197,16 @@ module PulpContainerClient
|
|
|
197
197
|
def ==(o)
|
|
198
198
|
return true if self.equal?(o)
|
|
199
199
|
self.class == o.class &&
|
|
200
|
-
name == o.name &&
|
|
201
|
-
pulp_labels == o.pulp_labels &&
|
|
202
200
|
versions_href == o.versions_href &&
|
|
203
|
-
|
|
204
|
-
|
|
201
|
+
manifest_signing_service == o.manifest_signing_service &&
|
|
202
|
+
pulp_labels == o.pulp_labels &&
|
|
205
203
|
latest_version_href == o.latest_version_href &&
|
|
206
|
-
|
|
204
|
+
name == o.name &&
|
|
207
205
|
pulp_created == o.pulp_created &&
|
|
206
|
+
retain_repo_versions == o.retain_repo_versions &&
|
|
207
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
208
|
+
pulp_href == o.pulp_href &&
|
|
208
209
|
prn == o.prn &&
|
|
209
|
-
manifest_signing_service == o.manifest_signing_service &&
|
|
210
210
|
description == o.description
|
|
211
211
|
end
|
|
212
212
|
|
|
@@ -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
|
-
[
|
|
222
|
+
[versions_href, manifest_signing_service, pulp_labels, latest_version_href, name, pulp_created, retain_repo_versions, pulp_last_updated, pulp_href, prn, description].hash
|
|
223
223
|
end
|
|
224
224
|
|
|
225
225
|
# Builds the object from hash
|
|
@@ -16,22 +16,22 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for ContainerDistribution.
|
|
18
18
|
class PatchedcontainerContainerDistribution
|
|
19
|
-
|
|
20
|
-
attr_accessor :content_guard
|
|
19
|
+
attr_accessor :pulp_labels
|
|
21
20
|
|
|
22
21
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
23
22
|
attr_accessor :name
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
25
|
+
attr_accessor :content_guard
|
|
26
26
|
|
|
27
|
-
#
|
|
28
|
-
attr_accessor :
|
|
27
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
28
|
+
attr_accessor :repository
|
|
29
29
|
|
|
30
30
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
31
31
|
attr_accessor :base_path
|
|
32
32
|
|
|
33
|
-
#
|
|
34
|
-
attr_accessor :
|
|
33
|
+
# Whether this distribution should be shown in the content app.
|
|
34
|
+
attr_accessor :hidden
|
|
35
35
|
|
|
36
36
|
# RepositoryVersion to be served
|
|
37
37
|
attr_accessor :repository_version
|
|
@@ -45,12 +45,12 @@ module PulpContainerClient
|
|
|
45
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
46
46
|
def self.attribute_map
|
|
47
47
|
{
|
|
48
|
-
:'content_guard' => :'content_guard',
|
|
49
|
-
:'name' => :'name',
|
|
50
48
|
:'pulp_labels' => :'pulp_labels',
|
|
51
|
-
:'
|
|
52
|
-
:'
|
|
49
|
+
:'name' => :'name',
|
|
50
|
+
:'content_guard' => :'content_guard',
|
|
53
51
|
:'repository' => :'repository',
|
|
52
|
+
:'base_path' => :'base_path',
|
|
53
|
+
:'hidden' => :'hidden',
|
|
54
54
|
:'repository_version' => :'repository_version',
|
|
55
55
|
:'private' => :'private',
|
|
56
56
|
:'description' => :'description'
|
|
@@ -65,12 +65,12 @@ module PulpContainerClient
|
|
|
65
65
|
# Attribute type mapping.
|
|
66
66
|
def self.openapi_types
|
|
67
67
|
{
|
|
68
|
-
:'content_guard' => :'String',
|
|
69
|
-
:'name' => :'String',
|
|
70
68
|
:'pulp_labels' => :'Hash<String, String>',
|
|
71
|
-
:'
|
|
72
|
-
:'
|
|
69
|
+
:'name' => :'String',
|
|
70
|
+
:'content_guard' => :'String',
|
|
73
71
|
:'repository' => :'String',
|
|
72
|
+
:'base_path' => :'String',
|
|
73
|
+
:'hidden' => :'Boolean',
|
|
74
74
|
:'repository_version' => :'String',
|
|
75
75
|
:'private' => :'Boolean',
|
|
76
76
|
:'description' => :'String'
|
|
@@ -101,32 +101,32 @@ module PulpContainerClient
|
|
|
101
101
|
h[k.to_sym] = v
|
|
102
102
|
}
|
|
103
103
|
|
|
104
|
-
if attributes.key?(:'
|
|
105
|
-
|
|
104
|
+
if attributes.key?(:'pulp_labels')
|
|
105
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
106
|
+
self.pulp_labels = value
|
|
107
|
+
end
|
|
106
108
|
end
|
|
107
109
|
|
|
108
110
|
if attributes.key?(:'name')
|
|
109
111
|
self.name = attributes[:'name']
|
|
110
112
|
end
|
|
111
113
|
|
|
112
|
-
if attributes.key?(:'
|
|
113
|
-
|
|
114
|
-
self.pulp_labels = value
|
|
115
|
-
end
|
|
114
|
+
if attributes.key?(:'content_guard')
|
|
115
|
+
self.content_guard = attributes[:'content_guard']
|
|
116
116
|
end
|
|
117
117
|
|
|
118
|
-
if attributes.key?(:'
|
|
119
|
-
self.
|
|
120
|
-
else
|
|
121
|
-
self.hidden = false
|
|
118
|
+
if attributes.key?(:'repository')
|
|
119
|
+
self.repository = attributes[:'repository']
|
|
122
120
|
end
|
|
123
121
|
|
|
124
122
|
if attributes.key?(:'base_path')
|
|
125
123
|
self.base_path = attributes[:'base_path']
|
|
126
124
|
end
|
|
127
125
|
|
|
128
|
-
if attributes.key?(:'
|
|
129
|
-
self.
|
|
126
|
+
if attributes.key?(:'hidden')
|
|
127
|
+
self.hidden = attributes[:'hidden']
|
|
128
|
+
else
|
|
129
|
+
self.hidden = false
|
|
130
130
|
end
|
|
131
131
|
|
|
132
132
|
if attributes.key?(:'repository_version')
|
|
@@ -215,12 +215,12 @@ module PulpContainerClient
|
|
|
215
215
|
def ==(o)
|
|
216
216
|
return true if self.equal?(o)
|
|
217
217
|
self.class == o.class &&
|
|
218
|
-
content_guard == o.content_guard &&
|
|
219
|
-
name == o.name &&
|
|
220
218
|
pulp_labels == o.pulp_labels &&
|
|
221
|
-
|
|
222
|
-
|
|
219
|
+
name == o.name &&
|
|
220
|
+
content_guard == o.content_guard &&
|
|
223
221
|
repository == o.repository &&
|
|
222
|
+
base_path == o.base_path &&
|
|
223
|
+
hidden == o.hidden &&
|
|
224
224
|
repository_version == o.repository_version &&
|
|
225
225
|
private == o.private &&
|
|
226
226
|
description == o.description
|
|
@@ -235,7 +235,7 @@ module PulpContainerClient
|
|
|
235
235
|
# Calculates hash code according to all attributes.
|
|
236
236
|
# @return [Integer] Hash code
|
|
237
237
|
def hash
|
|
238
|
-
[
|
|
238
|
+
[pulp_labels, name, content_guard, repository, base_path, hidden, repository_version, private, description].hash
|
|
239
239
|
end
|
|
240
240
|
|
|
241
241
|
# Builds the object from hash
|
data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb
CHANGED
|
@@ -16,22 +16,22 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# A serializer for a specialized pull-through distribution referencing sub-distributions.
|
|
18
18
|
class PatchedcontainerContainerPullThroughDistribution
|
|
19
|
-
|
|
20
|
-
attr_accessor :content_guard
|
|
19
|
+
attr_accessor :pulp_labels
|
|
21
20
|
|
|
22
21
|
# A unique name. Ex, `rawhide` and `stable`.
|
|
23
22
|
attr_accessor :name
|
|
24
23
|
|
|
25
|
-
|
|
24
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
|
25
|
+
attr_accessor :content_guard
|
|
26
26
|
|
|
27
|
-
#
|
|
28
|
-
attr_accessor :
|
|
27
|
+
# The latest RepositoryVersion for this Repository will be served.
|
|
28
|
+
attr_accessor :repository
|
|
29
29
|
|
|
30
30
|
# The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
|
|
31
31
|
attr_accessor :base_path
|
|
32
32
|
|
|
33
|
-
#
|
|
34
|
-
attr_accessor :
|
|
33
|
+
# Whether this distribution should be shown in the content app.
|
|
34
|
+
attr_accessor :hidden
|
|
35
35
|
|
|
36
36
|
# Remote that can be used to fetch content when using pull-through caching.
|
|
37
37
|
attr_accessor :remote
|
|
@@ -48,12 +48,12 @@ module PulpContainerClient
|
|
|
48
48
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
49
49
|
def self.attribute_map
|
|
50
50
|
{
|
|
51
|
-
:'content_guard' => :'content_guard',
|
|
52
|
-
:'name' => :'name',
|
|
53
51
|
:'pulp_labels' => :'pulp_labels',
|
|
54
|
-
:'
|
|
55
|
-
:'
|
|
52
|
+
:'name' => :'name',
|
|
53
|
+
:'content_guard' => :'content_guard',
|
|
56
54
|
:'repository' => :'repository',
|
|
55
|
+
:'base_path' => :'base_path',
|
|
56
|
+
:'hidden' => :'hidden',
|
|
57
57
|
:'remote' => :'remote',
|
|
58
58
|
:'distributions' => :'distributions',
|
|
59
59
|
:'private' => :'private',
|
|
@@ -69,12 +69,12 @@ module PulpContainerClient
|
|
|
69
69
|
# Attribute type mapping.
|
|
70
70
|
def self.openapi_types
|
|
71
71
|
{
|
|
72
|
-
:'content_guard' => :'String',
|
|
73
|
-
:'name' => :'String',
|
|
74
72
|
:'pulp_labels' => :'Hash<String, String>',
|
|
75
|
-
:'
|
|
76
|
-
:'
|
|
73
|
+
:'name' => :'String',
|
|
74
|
+
:'content_guard' => :'String',
|
|
77
75
|
:'repository' => :'String',
|
|
76
|
+
:'base_path' => :'String',
|
|
77
|
+
:'hidden' => :'Boolean',
|
|
78
78
|
:'remote' => :'String',
|
|
79
79
|
:'distributions' => :'Array<String>',
|
|
80
80
|
:'private' => :'Boolean',
|
|
@@ -105,32 +105,32 @@ module PulpContainerClient
|
|
|
105
105
|
h[k.to_sym] = v
|
|
106
106
|
}
|
|
107
107
|
|
|
108
|
-
if attributes.key?(:'
|
|
109
|
-
|
|
108
|
+
if attributes.key?(:'pulp_labels')
|
|
109
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
110
|
+
self.pulp_labels = value
|
|
111
|
+
end
|
|
110
112
|
end
|
|
111
113
|
|
|
112
114
|
if attributes.key?(:'name')
|
|
113
115
|
self.name = attributes[:'name']
|
|
114
116
|
end
|
|
115
117
|
|
|
116
|
-
if attributes.key?(:'
|
|
117
|
-
|
|
118
|
-
self.pulp_labels = value
|
|
119
|
-
end
|
|
118
|
+
if attributes.key?(:'content_guard')
|
|
119
|
+
self.content_guard = attributes[:'content_guard']
|
|
120
120
|
end
|
|
121
121
|
|
|
122
|
-
if attributes.key?(:'
|
|
123
|
-
self.
|
|
124
|
-
else
|
|
125
|
-
self.hidden = false
|
|
122
|
+
if attributes.key?(:'repository')
|
|
123
|
+
self.repository = attributes[:'repository']
|
|
126
124
|
end
|
|
127
125
|
|
|
128
126
|
if attributes.key?(:'base_path')
|
|
129
127
|
self.base_path = attributes[:'base_path']
|
|
130
128
|
end
|
|
131
129
|
|
|
132
|
-
if attributes.key?(:'
|
|
133
|
-
self.
|
|
130
|
+
if attributes.key?(:'hidden')
|
|
131
|
+
self.hidden = attributes[:'hidden']
|
|
132
|
+
else
|
|
133
|
+
self.hidden = false
|
|
134
134
|
end
|
|
135
135
|
|
|
136
136
|
if attributes.key?(:'remote')
|
|
@@ -225,12 +225,12 @@ module PulpContainerClient
|
|
|
225
225
|
def ==(o)
|
|
226
226
|
return true if self.equal?(o)
|
|
227
227
|
self.class == o.class &&
|
|
228
|
-
content_guard == o.content_guard &&
|
|
229
|
-
name == o.name &&
|
|
230
228
|
pulp_labels == o.pulp_labels &&
|
|
231
|
-
|
|
232
|
-
|
|
229
|
+
name == o.name &&
|
|
230
|
+
content_guard == o.content_guard &&
|
|
233
231
|
repository == o.repository &&
|
|
232
|
+
base_path == o.base_path &&
|
|
233
|
+
hidden == o.hidden &&
|
|
234
234
|
remote == o.remote &&
|
|
235
235
|
distributions == o.distributions &&
|
|
236
236
|
private == o.private &&
|
|
@@ -246,7 +246,7 @@ module PulpContainerClient
|
|
|
246
246
|
# Calculates hash code according to all attributes.
|
|
247
247
|
# @return [Integer] Hash code
|
|
248
248
|
def hash
|
|
249
|
-
[
|
|
249
|
+
[pulp_labels, name, content_guard, repository, base_path, hidden, remote, distributions, private, description].hash
|
|
250
250
|
end
|
|
251
251
|
|
|
252
252
|
# Builds the object from hash
|
|
@@ -16,27 +16,27 @@ require 'time'
|
|
|
16
16
|
module PulpContainerClient
|
|
17
17
|
# Serializer for Container Push Repositories.
|
|
18
18
|
class PatchedcontainerContainerPushRepository
|
|
19
|
-
# A
|
|
20
|
-
attr_accessor :
|
|
19
|
+
# A reference to an associated signing service.
|
|
20
|
+
attr_accessor :manifest_signing_service
|
|
21
21
|
|
|
22
22
|
attr_accessor :pulp_labels
|
|
23
23
|
|
|
24
|
+
# A unique name for this repository.
|
|
25
|
+
attr_accessor :name
|
|
26
|
+
|
|
24
27
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
25
28
|
attr_accessor :retain_repo_versions
|
|
26
29
|
|
|
27
|
-
# A reference to an associated signing service.
|
|
28
|
-
attr_accessor :manifest_signing_service
|
|
29
|
-
|
|
30
30
|
# An optional description.
|
|
31
31
|
attr_accessor :description
|
|
32
32
|
|
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
34
34
|
def self.attribute_map
|
|
35
35
|
{
|
|
36
|
-
:'
|
|
36
|
+
:'manifest_signing_service' => :'manifest_signing_service',
|
|
37
37
|
:'pulp_labels' => :'pulp_labels',
|
|
38
|
+
:'name' => :'name',
|
|
38
39
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
39
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
|
40
40
|
:'description' => :'description'
|
|
41
41
|
}
|
|
42
42
|
end
|
|
@@ -49,10 +49,10 @@ module PulpContainerClient
|
|
|
49
49
|
# Attribute type mapping.
|
|
50
50
|
def self.openapi_types
|
|
51
51
|
{
|
|
52
|
-
:'
|
|
52
|
+
:'manifest_signing_service' => :'String',
|
|
53
53
|
:'pulp_labels' => :'Hash<String, String>',
|
|
54
|
+
:'name' => :'String',
|
|
54
55
|
:'retain_repo_versions' => :'Integer',
|
|
55
|
-
:'manifest_signing_service' => :'String',
|
|
56
56
|
:'description' => :'String'
|
|
57
57
|
}
|
|
58
58
|
end
|
|
@@ -60,8 +60,8 @@ module PulpContainerClient
|
|
|
60
60
|
# List of attributes with nullable: true
|
|
61
61
|
def self.openapi_nullable
|
|
62
62
|
Set.new([
|
|
63
|
-
:'retain_repo_versions',
|
|
64
63
|
:'manifest_signing_service',
|
|
64
|
+
:'retain_repo_versions',
|
|
65
65
|
:'description'
|
|
66
66
|
])
|
|
67
67
|
end
|
|
@@ -81,8 +81,8 @@ module PulpContainerClient
|
|
|
81
81
|
h[k.to_sym] = v
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
if attributes.key?(:'
|
|
85
|
-
self.
|
|
84
|
+
if attributes.key?(:'manifest_signing_service')
|
|
85
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
86
86
|
end
|
|
87
87
|
|
|
88
88
|
if attributes.key?(:'pulp_labels')
|
|
@@ -91,12 +91,12 @@ module PulpContainerClient
|
|
|
91
91
|
end
|
|
92
92
|
end
|
|
93
93
|
|
|
94
|
-
if attributes.key?(:'
|
|
95
|
-
self.
|
|
94
|
+
if attributes.key?(:'name')
|
|
95
|
+
self.name = attributes[:'name']
|
|
96
96
|
end
|
|
97
97
|
|
|
98
|
-
if attributes.key?(:'
|
|
99
|
-
self.
|
|
98
|
+
if attributes.key?(:'retain_repo_versions')
|
|
99
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
100
100
|
end
|
|
101
101
|
|
|
102
102
|
if attributes.key?(:'description')
|
|
@@ -173,10 +173,10 @@ module PulpContainerClient
|
|
|
173
173
|
def ==(o)
|
|
174
174
|
return true if self.equal?(o)
|
|
175
175
|
self.class == o.class &&
|
|
176
|
-
|
|
176
|
+
manifest_signing_service == o.manifest_signing_service &&
|
|
177
177
|
pulp_labels == o.pulp_labels &&
|
|
178
|
+
name == o.name &&
|
|
178
179
|
retain_repo_versions == o.retain_repo_versions &&
|
|
179
|
-
manifest_signing_service == o.manifest_signing_service &&
|
|
180
180
|
description == o.description
|
|
181
181
|
end
|
|
182
182
|
|
|
@@ -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
|
-
[
|
|
192
|
+
[manifest_signing_service, pulp_labels, name, retain_repo_versions, description].hash
|
|
193
193
|
end
|
|
194
194
|
|
|
195
195
|
# Builds the object from hash
|
|
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
describe 'test attribute "
|
|
30
|
+
describe 'test attribute "pulp_labels"' 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
|
|
@@ -39,55 +39,55 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
|
39
39
|
end
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
describe 'test attribute "
|
|
42
|
+
describe 'test attribute "pulp_created"' 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 "content_guard"' 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 "no_content_change_since"' 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 "repository"' 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 "base_path"' 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 "pulp_last_updated"' 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_href"' 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 "hidden"' 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 "prn"' 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
|