pulp_container_client 2.27.10 → 2.28.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 +8 -8
- data/docs/ContainerContainerDistributionResponse.md +16 -16
- data/docs/ContainerContainerNamespace.md +3 -1
- data/docs/ContainerContainerNamespaceResponse.md +3 -1
- data/docs/ContainerContainerPullThroughDistribution.md +8 -8
- data/docs/ContainerContainerPullThroughDistributionResponse.md +16 -16
- data/docs/ContainerContainerPushRepository.md +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +12 -12
- data/docs/ContainerContainerRemote.md +6 -2
- data/docs/ContainerContainerRemoteResponse.md +4 -4
- data/docs/ContainerManifestSignatureResponse.md +2 -0
- data/docs/ContentSignaturesApi.md +2 -2
- data/docs/DistributionsContainerApi.md +2 -2
- data/docs/DistributionsPullThroughApi.md +2 -2
- data/docs/PatchedcontainerContainerDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/docs/PatchedcontainerContainerRemote.md +6 -2
- data/docs/PulpContainerNamespacesApi.md +2 -2
- data/lib/pulp_container_client/api/content_signatures_api.rb +3 -3
- data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +3 -3
- data/lib/pulp_container_client/models/container_container_distribution.rb +59 -59
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +78 -78
- data/lib/pulp_container_client/models/container_container_namespace.rb +15 -4
- data/lib/pulp_container_client/models/container_container_namespace_response.rb +15 -4
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +59 -59
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +78 -78
- data/lib/pulp_container_client/models/container_container_push_repository.rb +39 -39
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +57 -57
- data/lib/pulp_container_client/models/container_container_remote.rb +29 -3
- data/lib/pulp_container_client/models/container_container_remote_response.rb +19 -19
- data/lib/pulp_container_client/models/container_manifest_signature_response.rb +14 -1
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +52 -52
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +52 -52
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +39 -39
- data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +29 -3
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/content_signatures_api_spec.rb +1 -1
- data/spec/api/pulp_container_namespaces_api_spec.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +12 -12
- data/spec/models/container_container_distribution_spec.rb +7 -7
- data/spec/models/container_container_namespace_response_spec.rb +6 -0
- data/spec/models/container_container_namespace_spec.rb +6 -0
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +12 -12
- data/spec/models/container_container_pull_through_distribution_spec.rb +7 -7
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- data/spec/models/container_container_remote_response_spec.rb +2 -2
- data/spec/models/container_container_remote_spec.rb +12 -0
- data/spec/models/container_manifest_signature_response_spec.rb +6 -0
- data/spec/models/patchedcontainer_container_distribution_spec.rb +7 -7
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +7 -7
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_remote_spec.rb +12 -0
- metadata +2 -2
|
@@ -19,13 +19,10 @@ module PulpContainerClient
|
|
|
19
19
|
# A reference to an associated signing service.
|
|
20
20
|
attr_accessor :manifest_signing_service
|
|
21
21
|
|
|
22
|
-
attr_accessor :pulp_labels
|
|
23
|
-
|
|
24
22
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
25
23
|
attr_accessor :retain_repo_versions
|
|
26
24
|
|
|
27
|
-
|
|
28
|
-
attr_accessor :retain_checkpoints
|
|
25
|
+
attr_accessor :pulp_labels
|
|
29
26
|
|
|
30
27
|
# A unique name for this repository.
|
|
31
28
|
attr_accessor :name
|
|
@@ -33,15 +30,18 @@ module PulpContainerClient
|
|
|
33
30
|
# An optional description.
|
|
34
31
|
attr_accessor :description
|
|
35
32
|
|
|
33
|
+
# Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
|
|
34
|
+
attr_accessor :retain_checkpoints
|
|
35
|
+
|
|
36
36
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
37
37
|
def self.attribute_map
|
|
38
38
|
{
|
|
39
39
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
40
|
-
:'pulp_labels' => :'pulp_labels',
|
|
41
40
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
42
|
-
:'
|
|
41
|
+
:'pulp_labels' => :'pulp_labels',
|
|
43
42
|
:'name' => :'name',
|
|
44
|
-
:'description' => :'description'
|
|
43
|
+
:'description' => :'description',
|
|
44
|
+
:'retain_checkpoints' => :'retain_checkpoints'
|
|
45
45
|
}
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -54,11 +54,11 @@ module PulpContainerClient
|
|
|
54
54
|
def self.openapi_types
|
|
55
55
|
{
|
|
56
56
|
:'manifest_signing_service' => :'String',
|
|
57
|
-
:'pulp_labels' => :'Hash<String, String>',
|
|
58
57
|
:'retain_repo_versions' => :'Integer',
|
|
59
|
-
:'
|
|
58
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
60
59
|
:'name' => :'String',
|
|
61
|
-
:'description' => :'String'
|
|
60
|
+
:'description' => :'String',
|
|
61
|
+
:'retain_checkpoints' => :'Integer'
|
|
62
62
|
}
|
|
63
63
|
end
|
|
64
64
|
|
|
@@ -67,8 +67,8 @@ module PulpContainerClient
|
|
|
67
67
|
Set.new([
|
|
68
68
|
:'manifest_signing_service',
|
|
69
69
|
:'retain_repo_versions',
|
|
70
|
-
:'
|
|
71
|
-
:'
|
|
70
|
+
:'description',
|
|
71
|
+
:'retain_checkpoints'
|
|
72
72
|
])
|
|
73
73
|
end
|
|
74
74
|
|
|
@@ -91,18 +91,14 @@ module PulpContainerClient
|
|
|
91
91
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
92
92
|
end
|
|
93
93
|
|
|
94
|
-
if attributes.key?(:'pulp_labels')
|
|
95
|
-
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
96
|
-
self.pulp_labels = value
|
|
97
|
-
end
|
|
98
|
-
end
|
|
99
|
-
|
|
100
94
|
if attributes.key?(:'retain_repo_versions')
|
|
101
95
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
102
96
|
end
|
|
103
97
|
|
|
104
|
-
if attributes.key?(:'
|
|
105
|
-
|
|
98
|
+
if attributes.key?(:'pulp_labels')
|
|
99
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
100
|
+
self.pulp_labels = value
|
|
101
|
+
end
|
|
106
102
|
end
|
|
107
103
|
|
|
108
104
|
if attributes.key?(:'name')
|
|
@@ -114,6 +110,10 @@ module PulpContainerClient
|
|
|
114
110
|
if attributes.key?(:'description')
|
|
115
111
|
self.description = attributes[:'description']
|
|
116
112
|
end
|
|
113
|
+
|
|
114
|
+
if attributes.key?(:'retain_checkpoints')
|
|
115
|
+
self.retain_checkpoints = attributes[:'retain_checkpoints']
|
|
116
|
+
end
|
|
117
117
|
end
|
|
118
118
|
|
|
119
119
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -125,10 +125,6 @@ module PulpContainerClient
|
|
|
125
125
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
126
126
|
end
|
|
127
127
|
|
|
128
|
-
if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
129
|
-
invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
|
|
130
|
-
end
|
|
131
|
-
|
|
132
128
|
if @name.nil?
|
|
133
129
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
134
130
|
end
|
|
@@ -141,6 +137,10 @@ module PulpContainerClient
|
|
|
141
137
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
|
142
138
|
end
|
|
143
139
|
|
|
140
|
+
if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
141
|
+
invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
|
|
142
|
+
end
|
|
143
|
+
|
|
144
144
|
invalid_properties
|
|
145
145
|
end
|
|
146
146
|
|
|
@@ -149,10 +149,10 @@ module PulpContainerClient
|
|
|
149
149
|
def valid?
|
|
150
150
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
151
151
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
152
|
-
return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
153
152
|
return false if @name.nil?
|
|
154
153
|
return false if @name.to_s.length < 1
|
|
155
154
|
return false if !@description.nil? && @description.to_s.length < 1
|
|
155
|
+
return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
156
156
|
true
|
|
157
157
|
end
|
|
158
158
|
|
|
@@ -166,16 +166,6 @@ module PulpContainerClient
|
|
|
166
166
|
@retain_repo_versions = retain_repo_versions
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
-
# Custom attribute writer method with validation
|
|
170
|
-
# @param [Object] retain_checkpoints Value to be assigned
|
|
171
|
-
def retain_checkpoints=(retain_checkpoints)
|
|
172
|
-
if !retain_checkpoints.nil? && retain_checkpoints < 1
|
|
173
|
-
fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
|
|
174
|
-
end
|
|
175
|
-
|
|
176
|
-
@retain_checkpoints = retain_checkpoints
|
|
177
|
-
end
|
|
178
|
-
|
|
179
169
|
# Custom attribute writer method with validation
|
|
180
170
|
# @param [Object] name Value to be assigned
|
|
181
171
|
def name=(name)
|
|
@@ -200,17 +190,27 @@ module PulpContainerClient
|
|
|
200
190
|
@description = description
|
|
201
191
|
end
|
|
202
192
|
|
|
193
|
+
# Custom attribute writer method with validation
|
|
194
|
+
# @param [Object] retain_checkpoints Value to be assigned
|
|
195
|
+
def retain_checkpoints=(retain_checkpoints)
|
|
196
|
+
if !retain_checkpoints.nil? && retain_checkpoints < 1
|
|
197
|
+
fail ArgumentError, 'invalid value for "retain_checkpoints", must be greater than or equal to 1.'
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
@retain_checkpoints = retain_checkpoints
|
|
201
|
+
end
|
|
202
|
+
|
|
203
203
|
# Checks equality by comparing each attribute.
|
|
204
204
|
# @param [Object] Object to be compared
|
|
205
205
|
def ==(o)
|
|
206
206
|
return true if self.equal?(o)
|
|
207
207
|
self.class == o.class &&
|
|
208
208
|
manifest_signing_service == o.manifest_signing_service &&
|
|
209
|
-
pulp_labels == o.pulp_labels &&
|
|
210
209
|
retain_repo_versions == o.retain_repo_versions &&
|
|
211
|
-
|
|
210
|
+
pulp_labels == o.pulp_labels &&
|
|
212
211
|
name == o.name &&
|
|
213
|
-
description == o.description
|
|
212
|
+
description == o.description &&
|
|
213
|
+
retain_checkpoints == o.retain_checkpoints
|
|
214
214
|
end
|
|
215
215
|
|
|
216
216
|
# @see the `==` method
|
|
@@ -222,7 +222,7 @@ module PulpContainerClient
|
|
|
222
222
|
# Calculates hash code according to all attributes.
|
|
223
223
|
# @return [Integer] Hash code
|
|
224
224
|
def hash
|
|
225
|
-
[manifest_signing_service,
|
|
225
|
+
[manifest_signing_service, retain_repo_versions, pulp_labels, name, description, retain_checkpoints].hash
|
|
226
226
|
end
|
|
227
227
|
|
|
228
228
|
# Builds the object from hash
|
|
@@ -19,50 +19,50 @@ module PulpContainerClient
|
|
|
19
19
|
# A reference to an associated signing service.
|
|
20
20
|
attr_accessor :manifest_signing_service
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
# The Pulp Resource Name (PRN).
|
|
23
|
+
attr_accessor :prn
|
|
24
|
+
|
|
25
|
+
# 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.
|
|
26
|
+
attr_accessor :pulp_last_updated
|
|
23
27
|
|
|
24
28
|
# Retain X versions of the repository. Default is null which retains all versions.
|
|
25
29
|
attr_accessor :retain_repo_versions
|
|
26
30
|
|
|
27
|
-
attr_accessor :
|
|
31
|
+
attr_accessor :pulp_labels
|
|
28
32
|
|
|
29
|
-
|
|
30
|
-
|
|
33
|
+
attr_accessor :latest_version_href
|
|
34
|
+
|
|
35
|
+
attr_accessor :pulp_href
|
|
31
36
|
|
|
32
37
|
# A unique name for this repository.
|
|
33
38
|
attr_accessor :name
|
|
34
39
|
|
|
35
|
-
#
|
|
36
|
-
attr_accessor :
|
|
40
|
+
# An optional description.
|
|
41
|
+
attr_accessor :description
|
|
37
42
|
|
|
38
43
|
# Timestamp of creation.
|
|
39
44
|
attr_accessor :pulp_created
|
|
40
45
|
|
|
41
|
-
# 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.
|
|
42
|
-
attr_accessor :pulp_last_updated
|
|
43
|
-
|
|
44
|
-
attr_accessor :latest_version_href
|
|
45
|
-
|
|
46
46
|
attr_accessor :versions_href
|
|
47
47
|
|
|
48
|
-
#
|
|
49
|
-
attr_accessor :
|
|
48
|
+
# Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
|
|
49
|
+
attr_accessor :retain_checkpoints
|
|
50
50
|
|
|
51
51
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
52
52
|
def self.attribute_map
|
|
53
53
|
{
|
|
54
54
|
:'manifest_signing_service' => :'manifest_signing_service',
|
|
55
|
-
:'
|
|
55
|
+
:'prn' => :'prn',
|
|
56
|
+
:'pulp_last_updated' => :'pulp_last_updated',
|
|
56
57
|
:'retain_repo_versions' => :'retain_repo_versions',
|
|
58
|
+
:'pulp_labels' => :'pulp_labels',
|
|
59
|
+
:'latest_version_href' => :'latest_version_href',
|
|
57
60
|
:'pulp_href' => :'pulp_href',
|
|
58
|
-
:'retain_checkpoints' => :'retain_checkpoints',
|
|
59
61
|
:'name' => :'name',
|
|
60
|
-
:'
|
|
62
|
+
:'description' => :'description',
|
|
61
63
|
:'pulp_created' => :'pulp_created',
|
|
62
|
-
:'pulp_last_updated' => :'pulp_last_updated',
|
|
63
|
-
:'latest_version_href' => :'latest_version_href',
|
|
64
64
|
:'versions_href' => :'versions_href',
|
|
65
|
-
:'
|
|
65
|
+
:'retain_checkpoints' => :'retain_checkpoints'
|
|
66
66
|
}
|
|
67
67
|
end
|
|
68
68
|
|
|
@@ -75,17 +75,17 @@ module PulpContainerClient
|
|
|
75
75
|
def self.openapi_types
|
|
76
76
|
{
|
|
77
77
|
:'manifest_signing_service' => :'String',
|
|
78
|
-
:'
|
|
78
|
+
:'prn' => :'String',
|
|
79
|
+
:'pulp_last_updated' => :'Time',
|
|
79
80
|
:'retain_repo_versions' => :'Integer',
|
|
81
|
+
:'pulp_labels' => :'Hash<String, String>',
|
|
82
|
+
:'latest_version_href' => :'String',
|
|
80
83
|
:'pulp_href' => :'String',
|
|
81
|
-
:'retain_checkpoints' => :'Integer',
|
|
82
84
|
:'name' => :'String',
|
|
83
|
-
:'
|
|
85
|
+
:'description' => :'String',
|
|
84
86
|
:'pulp_created' => :'Time',
|
|
85
|
-
:'pulp_last_updated' => :'Time',
|
|
86
|
-
:'latest_version_href' => :'String',
|
|
87
87
|
:'versions_href' => :'String',
|
|
88
|
-
:'
|
|
88
|
+
:'retain_checkpoints' => :'Integer'
|
|
89
89
|
}
|
|
90
90
|
end
|
|
91
91
|
|
|
@@ -94,8 +94,8 @@ module PulpContainerClient
|
|
|
94
94
|
Set.new([
|
|
95
95
|
:'manifest_signing_service',
|
|
96
96
|
:'retain_repo_versions',
|
|
97
|
-
:'
|
|
98
|
-
:'
|
|
97
|
+
:'description',
|
|
98
|
+
:'retain_checkpoints'
|
|
99
99
|
])
|
|
100
100
|
end
|
|
101
101
|
|
|
@@ -118,52 +118,52 @@ module PulpContainerClient
|
|
|
118
118
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
|
119
119
|
end
|
|
120
120
|
|
|
121
|
+
if attributes.key?(:'prn')
|
|
122
|
+
self.prn = attributes[:'prn']
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
if attributes.key?(:'pulp_last_updated')
|
|
126
|
+
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
if attributes.key?(:'retain_repo_versions')
|
|
130
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
131
|
+
end
|
|
132
|
+
|
|
121
133
|
if attributes.key?(:'pulp_labels')
|
|
122
134
|
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
|
123
135
|
self.pulp_labels = value
|
|
124
136
|
end
|
|
125
137
|
end
|
|
126
138
|
|
|
127
|
-
if attributes.key?(:'
|
|
128
|
-
self.
|
|
139
|
+
if attributes.key?(:'latest_version_href')
|
|
140
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
|
129
141
|
end
|
|
130
142
|
|
|
131
143
|
if attributes.key?(:'pulp_href')
|
|
132
144
|
self.pulp_href = attributes[:'pulp_href']
|
|
133
145
|
end
|
|
134
146
|
|
|
135
|
-
if attributes.key?(:'retain_checkpoints')
|
|
136
|
-
self.retain_checkpoints = attributes[:'retain_checkpoints']
|
|
137
|
-
end
|
|
138
|
-
|
|
139
147
|
if attributes.key?(:'name')
|
|
140
148
|
self.name = attributes[:'name']
|
|
141
149
|
else
|
|
142
150
|
self.name = nil
|
|
143
151
|
end
|
|
144
152
|
|
|
145
|
-
if attributes.key?(:'
|
|
146
|
-
self.
|
|
153
|
+
if attributes.key?(:'description')
|
|
154
|
+
self.description = attributes[:'description']
|
|
147
155
|
end
|
|
148
156
|
|
|
149
157
|
if attributes.key?(:'pulp_created')
|
|
150
158
|
self.pulp_created = attributes[:'pulp_created']
|
|
151
159
|
end
|
|
152
160
|
|
|
153
|
-
if attributes.key?(:'pulp_last_updated')
|
|
154
|
-
self.pulp_last_updated = attributes[:'pulp_last_updated']
|
|
155
|
-
end
|
|
156
|
-
|
|
157
|
-
if attributes.key?(:'latest_version_href')
|
|
158
|
-
self.latest_version_href = attributes[:'latest_version_href']
|
|
159
|
-
end
|
|
160
|
-
|
|
161
161
|
if attributes.key?(:'versions_href')
|
|
162
162
|
self.versions_href = attributes[:'versions_href']
|
|
163
163
|
end
|
|
164
164
|
|
|
165
|
-
if attributes.key?(:'
|
|
166
|
-
self.
|
|
165
|
+
if attributes.key?(:'retain_checkpoints')
|
|
166
|
+
self.retain_checkpoints = attributes[:'retain_checkpoints']
|
|
167
167
|
end
|
|
168
168
|
end
|
|
169
169
|
|
|
@@ -176,14 +176,14 @@ module PulpContainerClient
|
|
|
176
176
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
177
177
|
end
|
|
178
178
|
|
|
179
|
-
if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
180
|
-
invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
|
|
181
|
-
end
|
|
182
|
-
|
|
183
179
|
if @name.nil?
|
|
184
180
|
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
185
181
|
end
|
|
186
182
|
|
|
183
|
+
if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
184
|
+
invalid_properties.push('invalid value for "retain_checkpoints", must be greater than or equal to 1.')
|
|
185
|
+
end
|
|
186
|
+
|
|
187
187
|
invalid_properties
|
|
188
188
|
end
|
|
189
189
|
|
|
@@ -192,8 +192,8 @@ module PulpContainerClient
|
|
|
192
192
|
def valid?
|
|
193
193
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
|
194
194
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
195
|
-
return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
196
195
|
return false if @name.nil?
|
|
196
|
+
return false if !@retain_checkpoints.nil? && @retain_checkpoints < 1
|
|
197
197
|
true
|
|
198
198
|
end
|
|
199
199
|
|
|
@@ -223,17 +223,17 @@ module PulpContainerClient
|
|
|
223
223
|
return true if self.equal?(o)
|
|
224
224
|
self.class == o.class &&
|
|
225
225
|
manifest_signing_service == o.manifest_signing_service &&
|
|
226
|
-
|
|
226
|
+
prn == o.prn &&
|
|
227
|
+
pulp_last_updated == o.pulp_last_updated &&
|
|
227
228
|
retain_repo_versions == o.retain_repo_versions &&
|
|
229
|
+
pulp_labels == o.pulp_labels &&
|
|
230
|
+
latest_version_href == o.latest_version_href &&
|
|
228
231
|
pulp_href == o.pulp_href &&
|
|
229
|
-
retain_checkpoints == o.retain_checkpoints &&
|
|
230
232
|
name == o.name &&
|
|
231
|
-
|
|
233
|
+
description == o.description &&
|
|
232
234
|
pulp_created == o.pulp_created &&
|
|
233
|
-
pulp_last_updated == o.pulp_last_updated &&
|
|
234
|
-
latest_version_href == o.latest_version_href &&
|
|
235
235
|
versions_href == o.versions_href &&
|
|
236
|
-
|
|
236
|
+
retain_checkpoints == o.retain_checkpoints
|
|
237
237
|
end
|
|
238
238
|
|
|
239
239
|
# @see the `==` method
|
|
@@ -245,7 +245,7 @@ module PulpContainerClient
|
|
|
245
245
|
# Calculates hash code according to all attributes.
|
|
246
246
|
# @return [Integer] Hash code
|
|
247
247
|
def hash
|
|
248
|
-
[manifest_signing_service,
|
|
248
|
+
[manifest_signing_service, prn, pulp_last_updated, retain_repo_versions, pulp_labels, latest_version_href, pulp_href, name, description, pulp_created, versions_href, retain_checkpoints].hash
|
|
249
249
|
end
|
|
250
250
|
|
|
251
251
|
# Builds the object from hash
|
|
@@ -81,10 +81,16 @@ module PulpContainerClient
|
|
|
81
81
|
# Name of the upstream repository
|
|
82
82
|
attr_accessor :upstream_name
|
|
83
83
|
|
|
84
|
-
#
|
|
84
|
+
# A list of tags (wildcards *, ? are recognized) and/or digests (format: 'sha256:<hex>') to include during sync. 'includes' is evaluated before 'excludes'.
|
|
85
|
+
attr_accessor :includes
|
|
86
|
+
|
|
87
|
+
# A list of tag patterns to exclude during sync. Wildcards *, ? are recognized. 'excludes' is evaluated after 'includes'.
|
|
88
|
+
attr_accessor :excludes
|
|
89
|
+
|
|
90
|
+
# Deprecated. Use 'includes' instead.
|
|
85
91
|
attr_accessor :include_tags
|
|
86
92
|
|
|
87
|
-
#
|
|
93
|
+
# Deprecated. Use 'excludes' instead.
|
|
88
94
|
attr_accessor :exclude_tags
|
|
89
95
|
|
|
90
96
|
# A URL to a sigstore to download image signatures from
|
|
@@ -137,6 +143,8 @@ module PulpContainerClient
|
|
|
137
143
|
:'download_concurrency' => :'download_concurrency',
|
|
138
144
|
:'rate_limit' => :'rate_limit',
|
|
139
145
|
:'upstream_name' => :'upstream_name',
|
|
146
|
+
:'includes' => :'includes',
|
|
147
|
+
:'excludes' => :'excludes',
|
|
140
148
|
:'include_tags' => :'include_tags',
|
|
141
149
|
:'exclude_tags' => :'exclude_tags',
|
|
142
150
|
:'sigstore' => :'sigstore'
|
|
@@ -173,6 +181,8 @@ module PulpContainerClient
|
|
|
173
181
|
:'download_concurrency' => :'Integer',
|
|
174
182
|
:'rate_limit' => :'Integer',
|
|
175
183
|
:'upstream_name' => :'String',
|
|
184
|
+
:'includes' => :'Array<String>',
|
|
185
|
+
:'excludes' => :'Array<String>',
|
|
176
186
|
:'include_tags' => :'Array<String>',
|
|
177
187
|
:'exclude_tags' => :'Array<String>',
|
|
178
188
|
:'sigstore' => :'String'
|
|
@@ -197,6 +207,8 @@ module PulpContainerClient
|
|
|
197
207
|
:'sock_read_timeout',
|
|
198
208
|
:'download_concurrency',
|
|
199
209
|
:'rate_limit',
|
|
210
|
+
:'includes',
|
|
211
|
+
:'excludes',
|
|
200
212
|
:'include_tags',
|
|
201
213
|
:'exclude_tags',
|
|
202
214
|
])
|
|
@@ -315,6 +327,18 @@ module PulpContainerClient
|
|
|
315
327
|
self.upstream_name = nil
|
|
316
328
|
end
|
|
317
329
|
|
|
330
|
+
if attributes.key?(:'includes')
|
|
331
|
+
if (value = attributes[:'includes']).is_a?(Array)
|
|
332
|
+
self.includes = value
|
|
333
|
+
end
|
|
334
|
+
end
|
|
335
|
+
|
|
336
|
+
if attributes.key?(:'excludes')
|
|
337
|
+
if (value = attributes[:'excludes']).is_a?(Array)
|
|
338
|
+
self.excludes = value
|
|
339
|
+
end
|
|
340
|
+
end
|
|
341
|
+
|
|
318
342
|
if attributes.key?(:'include_tags')
|
|
319
343
|
if (value = attributes[:'include_tags']).is_a?(Array)
|
|
320
344
|
self.include_tags = value
|
|
@@ -660,6 +684,8 @@ module PulpContainerClient
|
|
|
660
684
|
download_concurrency == o.download_concurrency &&
|
|
661
685
|
rate_limit == o.rate_limit &&
|
|
662
686
|
upstream_name == o.upstream_name &&
|
|
687
|
+
includes == o.includes &&
|
|
688
|
+
excludes == o.excludes &&
|
|
663
689
|
include_tags == o.include_tags &&
|
|
664
690
|
exclude_tags == o.exclude_tags &&
|
|
665
691
|
sigstore == o.sigstore
|
|
@@ -674,7 +700,7 @@ module PulpContainerClient
|
|
|
674
700
|
# Calculates hash code according to all attributes.
|
|
675
701
|
# @return [Integer] Hash code
|
|
676
702
|
def hash
|
|
677
|
-
[name, url, pulp_labels, policy, ca_cert, client_cert, client_key, tls_validation, proxy_url, proxy_username, proxy_password, username, password, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name, include_tags, exclude_tags, sigstore].hash
|
|
703
|
+
[name, url, pulp_labels, policy, ca_cert, client_cert, client_key, tls_validation, proxy_url, proxy_username, proxy_password, username, password, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name, includes, excludes, include_tags, exclude_tags, sigstore].hash
|
|
678
704
|
end
|
|
679
705
|
|
|
680
706
|
# Builds the object from hash
|
|
@@ -80,11 +80,11 @@ module PulpContainerClient
|
|
|
80
80
|
# Name of the upstream repository
|
|
81
81
|
attr_accessor :upstream_name
|
|
82
82
|
|
|
83
|
-
#
|
|
84
|
-
attr_accessor :
|
|
83
|
+
# A list of tags (wildcards *, ? are recognized) and/or digests (format: 'sha256:<hex>') to include during sync. 'includes' is evaluated before 'excludes'.
|
|
84
|
+
attr_accessor :includes
|
|
85
85
|
|
|
86
|
-
#
|
|
87
|
-
attr_accessor :
|
|
86
|
+
# A list of tag patterns to exclude during sync. Wildcards *, ? are recognized. 'excludes' is evaluated after 'includes'.
|
|
87
|
+
attr_accessor :excludes
|
|
88
88
|
|
|
89
89
|
# A URL to a sigstore to download image signatures from
|
|
90
90
|
attr_accessor :sigstore
|
|
@@ -136,8 +136,8 @@ module PulpContainerClient
|
|
|
136
136
|
:'download_concurrency' => :'download_concurrency',
|
|
137
137
|
:'rate_limit' => :'rate_limit',
|
|
138
138
|
:'upstream_name' => :'upstream_name',
|
|
139
|
-
:'
|
|
140
|
-
:'
|
|
139
|
+
:'includes' => :'includes',
|
|
140
|
+
:'excludes' => :'excludes',
|
|
141
141
|
:'sigstore' => :'sigstore'
|
|
142
142
|
}
|
|
143
143
|
end
|
|
@@ -172,8 +172,8 @@ module PulpContainerClient
|
|
|
172
172
|
:'download_concurrency' => :'Integer',
|
|
173
173
|
:'rate_limit' => :'Integer',
|
|
174
174
|
:'upstream_name' => :'String',
|
|
175
|
-
:'
|
|
176
|
-
:'
|
|
175
|
+
:'includes' => :'Array<String>',
|
|
176
|
+
:'excludes' => :'Array<String>',
|
|
177
177
|
:'sigstore' => :'String'
|
|
178
178
|
}
|
|
179
179
|
end
|
|
@@ -191,8 +191,8 @@ module PulpContainerClient
|
|
|
191
191
|
:'sock_read_timeout',
|
|
192
192
|
:'download_concurrency',
|
|
193
193
|
:'rate_limit',
|
|
194
|
-
:'
|
|
195
|
-
:'
|
|
194
|
+
:'includes',
|
|
195
|
+
:'excludes',
|
|
196
196
|
])
|
|
197
197
|
end
|
|
198
198
|
|
|
@@ -311,15 +311,15 @@ module PulpContainerClient
|
|
|
311
311
|
self.upstream_name = nil
|
|
312
312
|
end
|
|
313
313
|
|
|
314
|
-
if attributes.key?(:'
|
|
315
|
-
if (value = attributes[:'
|
|
316
|
-
self.
|
|
314
|
+
if attributes.key?(:'includes')
|
|
315
|
+
if (value = attributes[:'includes']).is_a?(Array)
|
|
316
|
+
self.includes = value
|
|
317
317
|
end
|
|
318
318
|
end
|
|
319
319
|
|
|
320
|
-
if attributes.key?(:'
|
|
321
|
-
if (value = attributes[:'
|
|
322
|
-
self.
|
|
320
|
+
if attributes.key?(:'excludes')
|
|
321
|
+
if (value = attributes[:'excludes']).is_a?(Array)
|
|
322
|
+
self.excludes = value
|
|
323
323
|
end
|
|
324
324
|
end
|
|
325
325
|
|
|
@@ -460,8 +460,8 @@ module PulpContainerClient
|
|
|
460
460
|
download_concurrency == o.download_concurrency &&
|
|
461
461
|
rate_limit == o.rate_limit &&
|
|
462
462
|
upstream_name == o.upstream_name &&
|
|
463
|
-
|
|
464
|
-
|
|
463
|
+
includes == o.includes &&
|
|
464
|
+
excludes == o.excludes &&
|
|
465
465
|
sigstore == o.sigstore
|
|
466
466
|
end
|
|
467
467
|
|
|
@@ -474,7 +474,7 @@ module PulpContainerClient
|
|
|
474
474
|
# Calculates hash code according to all attributes.
|
|
475
475
|
# @return [Integer] Hash code
|
|
476
476
|
def hash
|
|
477
|
-
[pulp_href, prn, pulp_created, pulp_last_updated, name, url, pulp_labels, policy, hidden_fields, ca_cert, client_cert, tls_validation, proxy_url, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name,
|
|
477
|
+
[pulp_href, prn, pulp_created, pulp_last_updated, name, url, pulp_labels, policy, hidden_fields, ca_cert, client_cert, tls_validation, proxy_url, max_retries, total_timeout, connect_timeout, sock_connect_timeout, sock_read_timeout, headers, download_concurrency, rate_limit, upstream_name, includes, excludes, sigstore].hash
|
|
478
478
|
end
|
|
479
479
|
|
|
480
480
|
# Builds the object from hash
|
|
@@ -44,6 +44,9 @@ module PulpContainerClient
|
|
|
44
44
|
# Signing key ID
|
|
45
45
|
attr_accessor :key_id
|
|
46
46
|
|
|
47
|
+
# Signing key fingerprint
|
|
48
|
+
attr_accessor :fingerprint
|
|
49
|
+
|
|
47
50
|
# Timestamp of a signature
|
|
48
51
|
attr_accessor :timestamp
|
|
49
52
|
|
|
@@ -66,6 +69,7 @@ module PulpContainerClient
|
|
|
66
69
|
:'digest' => :'digest',
|
|
67
70
|
:'type' => :'type',
|
|
68
71
|
:'key_id' => :'key_id',
|
|
72
|
+
:'fingerprint' => :'fingerprint',
|
|
69
73
|
:'timestamp' => :'timestamp',
|
|
70
74
|
:'creator' => :'creator',
|
|
71
75
|
:'signed_manifest' => :'signed_manifest'
|
|
@@ -90,6 +94,7 @@ module PulpContainerClient
|
|
|
90
94
|
:'digest' => :'String',
|
|
91
95
|
:'type' => :'String',
|
|
92
96
|
:'key_id' => :'String',
|
|
97
|
+
:'fingerprint' => :'String',
|
|
93
98
|
:'timestamp' => :'Integer',
|
|
94
99
|
:'creator' => :'String',
|
|
95
100
|
:'signed_manifest' => :'String'
|
|
@@ -99,6 +104,7 @@ module PulpContainerClient
|
|
|
99
104
|
# List of attributes with nullable: true
|
|
100
105
|
def self.openapi_nullable
|
|
101
106
|
Set.new([
|
|
107
|
+
:'fingerprint',
|
|
102
108
|
])
|
|
103
109
|
end
|
|
104
110
|
|
|
@@ -167,6 +173,12 @@ module PulpContainerClient
|
|
|
167
173
|
self.key_id = nil
|
|
168
174
|
end
|
|
169
175
|
|
|
176
|
+
if attributes.key?(:'fingerprint')
|
|
177
|
+
self.fingerprint = attributes[:'fingerprint']
|
|
178
|
+
else
|
|
179
|
+
self.fingerprint = nil
|
|
180
|
+
end
|
|
181
|
+
|
|
170
182
|
if attributes.key?(:'timestamp')
|
|
171
183
|
self.timestamp = attributes[:'timestamp']
|
|
172
184
|
else
|
|
@@ -251,6 +263,7 @@ module PulpContainerClient
|
|
|
251
263
|
digest == o.digest &&
|
|
252
264
|
type == o.type &&
|
|
253
265
|
key_id == o.key_id &&
|
|
266
|
+
fingerprint == o.fingerprint &&
|
|
254
267
|
timestamp == o.timestamp &&
|
|
255
268
|
creator == o.creator &&
|
|
256
269
|
signed_manifest == o.signed_manifest
|
|
@@ -265,7 +278,7 @@ module PulpContainerClient
|
|
|
265
278
|
# Calculates hash code according to all attributes.
|
|
266
279
|
# @return [Integer] Hash code
|
|
267
280
|
def hash
|
|
268
|
-
[pulp_href, prn, pulp_created, pulp_last_updated, pulp_labels, vuln_report, name, digest, type, key_id, timestamp, creator, signed_manifest].hash
|
|
281
|
+
[pulp_href, prn, pulp_created, pulp_last_updated, pulp_labels, vuln_report, name, digest, type, key_id, fingerprint, timestamp, creator, signed_manifest].hash
|
|
269
282
|
end
|
|
270
283
|
|
|
271
284
|
# Builds the object from hash
|