pulp_container_client 2.27.11 → 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.
Files changed (57) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +4 -4
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerNamespace.md +3 -1
  6. data/docs/ContainerContainerNamespaceResponse.md +3 -1
  7. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  8. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  9. data/docs/ContainerContainerPushRepository.md +7 -7
  10. data/docs/ContainerContainerPushRepositoryResponse.md +14 -14
  11. data/docs/ContainerContainerRemote.md +6 -2
  12. data/docs/ContainerContainerRemoteResponse.md +4 -4
  13. data/docs/ContainerManifestSignatureResponse.md +2 -0
  14. data/docs/ContentSignaturesApi.md +2 -2
  15. data/docs/DistributionsContainerApi.md +2 -2
  16. data/docs/DistributionsPullThroughApi.md +2 -2
  17. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  18. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  19. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  20. data/docs/PatchedcontainerContainerRemote.md +6 -2
  21. data/docs/PulpContainerNamespacesApi.md +2 -2
  22. data/lib/pulp_container_client/api/content_signatures_api.rb +3 -3
  23. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +3 -3
  24. data/lib/pulp_container_client/models/container_container_distribution.rb +47 -47
  25. data/lib/pulp_container_client/models/container_container_distribution_response.rb +67 -67
  26. data/lib/pulp_container_client/models/container_container_namespace.rb +15 -4
  27. data/lib/pulp_container_client/models/container_container_namespace_response.rb +15 -4
  28. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +47 -47
  29. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +67 -67
  30. data/lib/pulp_container_client/models/container_container_push_repository.rb +58 -58
  31. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +67 -67
  32. data/lib/pulp_container_client/models/container_container_remote.rb +29 -3
  33. data/lib/pulp_container_client/models/container_container_remote_response.rb +19 -19
  34. data/lib/pulp_container_client/models/container_manifest_signature_response.rb +14 -1
  35. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +40 -40
  36. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +40 -40
  37. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +51 -51
  38. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +29 -3
  39. data/lib/pulp_container_client/version.rb +1 -1
  40. data/spec/api/content_signatures_api_spec.rb +1 -1
  41. data/spec/api/pulp_container_namespaces_api_spec.rb +1 -1
  42. data/spec/models/container_container_distribution_response_spec.rb +12 -12
  43. data/spec/models/container_container_distribution_spec.rb +5 -5
  44. data/spec/models/container_container_namespace_response_spec.rb +6 -0
  45. data/spec/models/container_container_namespace_spec.rb +6 -0
  46. data/spec/models/container_container_pull_through_distribution_response_spec.rb +12 -12
  47. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  48. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  49. data/spec/models/container_container_push_repository_spec.rb +5 -5
  50. data/spec/models/container_container_remote_response_spec.rb +2 -2
  51. data/spec/models/container_container_remote_spec.rb +12 -0
  52. data/spec/models/container_manifest_signature_response_spec.rb +6 -0
  53. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  54. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  55. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  56. data/spec/models/patchedcontainer_container_remote_spec.rb +12 -0
  57. metadata +58 -58
@@ -16,53 +16,53 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepositoryResponse
19
- attr_accessor :pulp_labels
19
+ # A reference to an associated signing service.
20
+ attr_accessor :manifest_signing_service
21
+
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
20
27
 
21
28
  # Retain X versions of the repository. Default is null which retains all versions.
22
29
  attr_accessor :retain_repo_versions
23
30
 
24
- # An optional description.
25
- attr_accessor :description
26
-
27
- # Retain X checkpoint publications for the repository. Default is null which retains all checkpoints.
28
- attr_accessor :retain_checkpoints
31
+ attr_accessor :pulp_labels
29
32
 
30
33
  attr_accessor :latest_version_href
31
34
 
32
35
  attr_accessor :pulp_href
33
36
 
34
- # The Pulp Resource Name (PRN).
35
- attr_accessor :prn
36
-
37
- # Timestamp of creation.
38
- attr_accessor :pulp_created
39
-
40
37
  # A unique name for this repository.
41
38
  attr_accessor :name
42
39
 
43
- # A reference to an associated signing service.
44
- attr_accessor :manifest_signing_service
40
+ # An optional description.
41
+ attr_accessor :description
42
+
43
+ # Timestamp of creation.
44
+ attr_accessor :pulp_created
45
45
 
46
46
  attr_accessor :versions_href
47
47
 
48
- # 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.
49
- attr_accessor :pulp_last_updated
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
- :'pulp_labels' => :'pulp_labels',
54
+ :'manifest_signing_service' => :'manifest_signing_service',
55
+ :'prn' => :'prn',
56
+ :'pulp_last_updated' => :'pulp_last_updated',
55
57
  :'retain_repo_versions' => :'retain_repo_versions',
56
- :'description' => :'description',
57
- :'retain_checkpoints' => :'retain_checkpoints',
58
+ :'pulp_labels' => :'pulp_labels',
58
59
  :'latest_version_href' => :'latest_version_href',
59
60
  :'pulp_href' => :'pulp_href',
60
- :'prn' => :'prn',
61
- :'pulp_created' => :'pulp_created',
62
61
  :'name' => :'name',
63
- :'manifest_signing_service' => :'manifest_signing_service',
62
+ :'description' => :'description',
63
+ :'pulp_created' => :'pulp_created',
64
64
  :'versions_href' => :'versions_href',
65
- :'pulp_last_updated' => :'pulp_last_updated'
65
+ :'retain_checkpoints' => :'retain_checkpoints'
66
66
  }
67
67
  end
68
68
 
@@ -74,28 +74,28 @@ module PulpContainerClient
74
74
  # Attribute type mapping.
75
75
  def self.openapi_types
76
76
  {
77
- :'pulp_labels' => :'Hash<String, String>',
77
+ :'manifest_signing_service' => :'String',
78
+ :'prn' => :'String',
79
+ :'pulp_last_updated' => :'Time',
78
80
  :'retain_repo_versions' => :'Integer',
79
- :'description' => :'String',
80
- :'retain_checkpoints' => :'Integer',
81
+ :'pulp_labels' => :'Hash<String, String>',
81
82
  :'latest_version_href' => :'String',
82
83
  :'pulp_href' => :'String',
83
- :'prn' => :'String',
84
- :'pulp_created' => :'Time',
85
84
  :'name' => :'String',
86
- :'manifest_signing_service' => :'String',
85
+ :'description' => :'String',
86
+ :'pulp_created' => :'Time',
87
87
  :'versions_href' => :'String',
88
- :'pulp_last_updated' => :'Time'
88
+ :'retain_checkpoints' => :'Integer'
89
89
  }
90
90
  end
91
91
 
92
92
  # List of attributes with nullable: true
93
93
  def self.openapi_nullable
94
94
  Set.new([
95
+ :'manifest_signing_service',
95
96
  :'retain_repo_versions',
96
97
  :'description',
97
- :'retain_checkpoints',
98
- :'manifest_signing_service',
98
+ :'retain_checkpoints'
99
99
  ])
100
100
  end
101
101
 
@@ -114,22 +114,26 @@ module PulpContainerClient
114
114
  h[k.to_sym] = v
115
115
  }
116
116
 
117
- if attributes.key?(:'pulp_labels')
118
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
119
- self.pulp_labels = value
120
- end
117
+ if attributes.key?(:'manifest_signing_service')
118
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
121
119
  end
122
120
 
123
- if attributes.key?(:'retain_repo_versions')
124
- self.retain_repo_versions = attributes[:'retain_repo_versions']
121
+ if attributes.key?(:'prn')
122
+ self.prn = attributes[:'prn']
125
123
  end
126
124
 
127
- if attributes.key?(:'description')
128
- self.description = attributes[:'description']
125
+ if attributes.key?(:'pulp_last_updated')
126
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
129
127
  end
130
128
 
131
- if attributes.key?(:'retain_checkpoints')
132
- self.retain_checkpoints = attributes[:'retain_checkpoints']
129
+ if attributes.key?(:'retain_repo_versions')
130
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
131
+ end
132
+
133
+ if attributes.key?(:'pulp_labels')
134
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
135
+ self.pulp_labels = value
136
+ end
133
137
  end
134
138
 
135
139
  if attributes.key?(:'latest_version_href')
@@ -140,30 +144,26 @@ module PulpContainerClient
140
144
  self.pulp_href = attributes[:'pulp_href']
141
145
  end
142
146
 
143
- if attributes.key?(:'prn')
144
- self.prn = attributes[:'prn']
145
- end
146
-
147
- if attributes.key?(:'pulp_created')
148
- self.pulp_created = attributes[:'pulp_created']
149
- end
150
-
151
147
  if attributes.key?(:'name')
152
148
  self.name = attributes[:'name']
153
149
  else
154
150
  self.name = nil
155
151
  end
156
152
 
157
- if attributes.key?(:'manifest_signing_service')
158
- self.manifest_signing_service = attributes[:'manifest_signing_service']
153
+ if attributes.key?(:'description')
154
+ self.description = attributes[:'description']
155
+ end
156
+
157
+ if attributes.key?(:'pulp_created')
158
+ self.pulp_created = attributes[:'pulp_created']
159
159
  end
160
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?(:'pulp_last_updated')
166
- self.pulp_last_updated = attributes[:'pulp_last_updated']
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
 
@@ -222,18 +222,18 @@ module PulpContainerClient
222
222
  def ==(o)
223
223
  return true if self.equal?(o)
224
224
  self.class == o.class &&
225
- pulp_labels == o.pulp_labels &&
225
+ manifest_signing_service == o.manifest_signing_service &&
226
+ prn == o.prn &&
227
+ pulp_last_updated == o.pulp_last_updated &&
226
228
  retain_repo_versions == o.retain_repo_versions &&
227
- description == o.description &&
228
- retain_checkpoints == o.retain_checkpoints &&
229
+ pulp_labels == o.pulp_labels &&
229
230
  latest_version_href == o.latest_version_href &&
230
231
  pulp_href == o.pulp_href &&
231
- prn == o.prn &&
232
- pulp_created == o.pulp_created &&
233
232
  name == o.name &&
234
- manifest_signing_service == o.manifest_signing_service &&
233
+ description == o.description &&
234
+ pulp_created == o.pulp_created &&
235
235
  versions_href == o.versions_href &&
236
- pulp_last_updated == o.pulp_last_updated
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
- [pulp_labels, retain_repo_versions, description, retain_checkpoints, latest_version_href, pulp_href, prn, pulp_created, name, manifest_signing_service, versions_href, pulp_last_updated].hash
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
- # A list of tags to include during sync. Wildcards *, ? are recognized. 'include_tags' is evaluated before 'exclude_tags'.
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
- # A list of tags to exclude during sync. Wildcards *, ? are recognized. 'exclude_tags' is evaluated after 'include_tags'.
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
- # A list of tags to include during sync. Wildcards *, ? are recognized. 'include_tags' is evaluated before 'exclude_tags'.
84
- attr_accessor :include_tags
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
- # A list of tags to exclude during sync. Wildcards *, ? are recognized. 'exclude_tags' is evaluated after 'include_tags'.
87
- attr_accessor :exclude_tags
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
- :'include_tags' => :'include_tags',
140
- :'exclude_tags' => :'exclude_tags',
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
- :'include_tags' => :'Array<String>',
176
- :'exclude_tags' => :'Array<String>',
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
- :'include_tags',
195
- :'exclude_tags',
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?(:'include_tags')
315
- if (value = attributes[:'include_tags']).is_a?(Array)
316
- self.include_tags = value
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?(:'exclude_tags')
321
- if (value = attributes[:'exclude_tags']).is_a?(Array)
322
- self.exclude_tags = value
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
- include_tags == o.include_tags &&
464
- exclude_tags == o.exclude_tags &&
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, include_tags, exclude_tags, sigstore].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, 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
@@ -19,23 +19,23 @@ module PulpContainerClient
19
19
  # Whether this distribution should be shown in the content app.
20
20
  attr_accessor :hidden
21
21
 
22
- attr_accessor :pulp_labels
22
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
23
+ attr_accessor :base_path
23
24
 
24
- # The latest RepositoryVersion for this Repository will be served.
25
- attr_accessor :repository
25
+ attr_accessor :pulp_labels
26
26
 
27
27
  # A unique name. Ex, `rawhide` and `stable`.
28
28
  attr_accessor :name
29
29
 
30
+ # The latest RepositoryVersion for this Repository will be served.
31
+ attr_accessor :repository
32
+
30
33
  # RepositoryVersion to be served
31
34
  attr_accessor :repository_version
32
35
 
33
36
  # An optional content-guard. If none is specified, a default one will be used.
34
37
  attr_accessor :content_guard
35
38
 
36
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
37
- attr_accessor :base_path
38
-
39
39
  # Restrict pull access to explicitly authorized users. Defaults to unrestricted pull access.
40
40
  attr_accessor :private
41
41
 
@@ -46,12 +46,12 @@ module PulpContainerClient
46
46
  def self.attribute_map
47
47
  {
48
48
  :'hidden' => :'hidden',
49
+ :'base_path' => :'base_path',
49
50
  :'pulp_labels' => :'pulp_labels',
50
- :'repository' => :'repository',
51
51
  :'name' => :'name',
52
+ :'repository' => :'repository',
52
53
  :'repository_version' => :'repository_version',
53
54
  :'content_guard' => :'content_guard',
54
- :'base_path' => :'base_path',
55
55
  :'private' => :'private',
56
56
  :'description' => :'description'
57
57
  }
@@ -66,12 +66,12 @@ module PulpContainerClient
66
66
  def self.openapi_types
67
67
  {
68
68
  :'hidden' => :'Boolean',
69
+ :'base_path' => :'String',
69
70
  :'pulp_labels' => :'Hash<String, String>',
70
- :'repository' => :'String',
71
71
  :'name' => :'String',
72
+ :'repository' => :'String',
72
73
  :'repository_version' => :'String',
73
74
  :'content_guard' => :'String',
74
- :'base_path' => :'String',
75
75
  :'private' => :'Boolean',
76
76
  :'description' => :'String'
77
77
  }
@@ -107,20 +107,24 @@ module PulpContainerClient
107
107
  self.hidden = false
108
108
  end
109
109
 
110
+ if attributes.key?(:'base_path')
111
+ self.base_path = attributes[:'base_path']
112
+ end
113
+
110
114
  if attributes.key?(:'pulp_labels')
111
115
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
112
116
  self.pulp_labels = value
113
117
  end
114
118
  end
115
119
 
116
- if attributes.key?(:'repository')
117
- self.repository = attributes[:'repository']
118
- end
119
-
120
120
  if attributes.key?(:'name')
121
121
  self.name = attributes[:'name']
122
122
  end
123
123
 
124
+ if attributes.key?(:'repository')
125
+ self.repository = attributes[:'repository']
126
+ end
127
+
124
128
  if attributes.key?(:'repository_version')
125
129
  self.repository_version = attributes[:'repository_version']
126
130
  end
@@ -129,10 +133,6 @@ module PulpContainerClient
129
133
  self.content_guard = attributes[:'content_guard']
130
134
  end
131
135
 
132
- if attributes.key?(:'base_path')
133
- self.base_path = attributes[:'base_path']
134
- end
135
-
136
136
  if attributes.key?(:'private')
137
137
  self.private = attributes[:'private']
138
138
  end
@@ -147,14 +147,14 @@ module PulpContainerClient
147
147
  def list_invalid_properties
148
148
  warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
149
149
  invalid_properties = Array.new
150
- if !@name.nil? && @name.to_s.length < 1
151
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
152
- end
153
-
154
150
  if !@base_path.nil? && @base_path.to_s.length < 1
155
151
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
156
152
  end
157
153
 
154
+ if !@name.nil? && @name.to_s.length < 1
155
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
156
+ end
157
+
158
158
  if !@description.nil? && @description.to_s.length < 1
159
159
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
160
160
  end
@@ -166,26 +166,12 @@ module PulpContainerClient
166
166
  # @return true if the model is valid
167
167
  def valid?
168
168
  warn '[DEPRECATED] the `valid?` method is obsolete'
169
- return false if !@name.nil? && @name.to_s.length < 1
170
169
  return false if !@base_path.nil? && @base_path.to_s.length < 1
170
+ return false if !@name.nil? && @name.to_s.length < 1
171
171
  return false if !@description.nil? && @description.to_s.length < 1
172
172
  true
173
173
  end
174
174
 
175
- # Custom attribute writer method with validation
176
- # @param [Object] name Value to be assigned
177
- def name=(name)
178
- if name.nil?
179
- fail ArgumentError, 'name cannot be nil'
180
- end
181
-
182
- if name.to_s.length < 1
183
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
184
- end
185
-
186
- @name = name
187
- end
188
-
189
175
  # Custom attribute writer method with validation
190
176
  # @param [Object] base_path Value to be assigned
191
177
  def base_path=(base_path)
@@ -200,6 +186,20 @@ module PulpContainerClient
200
186
  @base_path = base_path
201
187
  end
202
188
 
189
+ # Custom attribute writer method with validation
190
+ # @param [Object] name Value to be assigned
191
+ def name=(name)
192
+ if name.nil?
193
+ fail ArgumentError, 'name cannot be nil'
194
+ end
195
+
196
+ if name.to_s.length < 1
197
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
198
+ end
199
+
200
+ @name = name
201
+ end
202
+
203
203
  # Custom attribute writer method with validation
204
204
  # @param [Object] description Value to be assigned
205
205
  def description=(description)
@@ -216,12 +216,12 @@ module PulpContainerClient
216
216
  return true if self.equal?(o)
217
217
  self.class == o.class &&
218
218
  hidden == o.hidden &&
219
+ base_path == o.base_path &&
219
220
  pulp_labels == o.pulp_labels &&
220
- repository == o.repository &&
221
221
  name == o.name &&
222
+ repository == o.repository &&
222
223
  repository_version == o.repository_version &&
223
224
  content_guard == o.content_guard &&
224
- base_path == o.base_path &&
225
225
  private == o.private &&
226
226
  description == o.description
227
227
  end
@@ -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
- [hidden, pulp_labels, repository, name, repository_version, content_guard, base_path, private, description].hash
238
+ [hidden, base_path, pulp_labels, name, repository, repository_version, content_guard, private, description].hash
239
239
  end
240
240
 
241
241
  # Builds the object from hash