pulp_container_client 2.21.1 → 2.22.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (43) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +4 -4
  3. data/docs/ContainerContainerDistribution.md +7 -7
  4. data/docs/ContainerContainerDistributionResponse.md +11 -11
  5. data/docs/ContainerContainerPullThroughDistribution.md +7 -7
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +11 -11
  7. data/docs/ContainerContainerPushRepository.md +6 -6
  8. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  9. data/docs/ContainerManifestResponse.md +11 -3
  10. data/docs/ContentManifestsApi.md +2 -2
  11. data/docs/OCIBuildImage.md +4 -4
  12. data/docs/PatchedcontainerContainerDistribution.md +7 -7
  13. data/docs/PatchedcontainerContainerPullThroughDistribution.md +7 -7
  14. data/docs/PatchedcontainerContainerPushRepository.md +6 -6
  15. data/docs/RepositoriesContainerApi.md +4 -4
  16. data/lib/pulp_container_client/api/content_manifests_api.rb +3 -3
  17. data/lib/pulp_container_client/api/repositories_container_api.rb +6 -6
  18. data/lib/pulp_container_client/models/container_container_distribution.rb +54 -54
  19. data/lib/pulp_container_client/models/container_container_distribution_response.rb +56 -56
  20. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +54 -54
  21. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +56 -56
  22. data/lib/pulp_container_client/models/container_container_push_repository.rb +25 -25
  23. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +56 -56
  24. data/lib/pulp_container_client/models/container_manifest_response.rb +46 -6
  25. data/lib/pulp_container_client/models/oci_build_image.rb +16 -15
  26. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +45 -45
  27. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +45 -45
  28. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +25 -25
  29. data/lib/pulp_container_client/version.rb +1 -1
  30. data/spec/api/content_manifests_api_spec.rb +1 -1
  31. data/spec/api/repositories_container_api_spec.rb +2 -2
  32. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  33. data/spec/models/container_container_distribution_spec.rb +5 -5
  34. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  35. data/spec/models/container_container_pull_through_distribution_spec.rb +5 -5
  36. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  37. data/spec/models/container_container_push_repository_spec.rb +5 -5
  38. data/spec/models/container_manifest_response_spec.rb +24 -0
  39. data/spec/models/oci_build_image_spec.rb +2 -2
  40. data/spec/models/patchedcontainer_container_distribution_spec.rb +5 -5
  41. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +5 -5
  42. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  43. metadata +2 -2
@@ -15,8 +15,8 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for building an OCI container image from a Containerfile. The Containerfile can either be specified via an artifact url, or a new file can be uploaded. A repository must be specified, to which the container image content will be added.
17
17
  class OCIBuildImage
18
- # Artifact representing the Containerfile that should be used to run podman-build.
19
- attr_accessor :containerfile_artifact
18
+ # Name of the Containerfile, from build_context, that should be used to run podman-build.
19
+ attr_accessor :containerfile_name
20
20
 
21
21
  # An uploaded Containerfile that should be used to run podman-build.
22
22
  attr_accessor :containerfile
@@ -24,32 +24,33 @@ module PulpContainerClient
24
24
  # A tag name for the new image being built.
25
25
  attr_accessor :tag
26
26
 
27
- # A JSON string where each key is an artifact href and the value is it's relative path (name) inside the /pulp_working_directory of the build container executing the Containerfile.
28
- attr_accessor :artifacts
27
+ # RepositoryVersion to be used as the build context for container images.
28
+ attr_accessor :build_context
29
29
 
30
30
  # Attribute mapping from ruby-style variable name to JSON key.
31
31
  def self.attribute_map
32
32
  {
33
- :'containerfile_artifact' => :'containerfile_artifact',
33
+ :'containerfile_name' => :'containerfile_name',
34
34
  :'containerfile' => :'containerfile',
35
35
  :'tag' => :'tag',
36
- :'artifacts' => :'artifacts'
36
+ :'build_context' => :'build_context'
37
37
  }
38
38
  end
39
39
 
40
40
  # Attribute type mapping.
41
41
  def self.openapi_types
42
42
  {
43
- :'containerfile_artifact' => :'String',
43
+ :'containerfile_name' => :'String',
44
44
  :'containerfile' => :'File',
45
45
  :'tag' => :'String',
46
- :'artifacts' => :'AnyType'
46
+ :'build_context' => :'String'
47
47
  }
48
48
  end
49
49
 
50
50
  # List of attributes with nullable: true
51
51
  def self.openapi_nullable
52
52
  Set.new([
53
+ :'build_context'
53
54
  ])
54
55
  end
55
56
 
@@ -68,8 +69,8 @@ module PulpContainerClient
68
69
  h[k.to_sym] = v
69
70
  }
70
71
 
71
- if attributes.key?(:'containerfile_artifact')
72
- self.containerfile_artifact = attributes[:'containerfile_artifact']
72
+ if attributes.key?(:'containerfile_name')
73
+ self.containerfile_name = attributes[:'containerfile_name']
73
74
  end
74
75
 
75
76
  if attributes.key?(:'containerfile')
@@ -82,8 +83,8 @@ module PulpContainerClient
82
83
  self.tag = 'latest'
83
84
  end
84
85
 
85
- if attributes.key?(:'artifacts')
86
- self.artifacts = attributes[:'artifacts']
86
+ if attributes.key?(:'build_context')
87
+ self.build_context = attributes[:'build_context']
87
88
  end
88
89
  end
89
90
 
@@ -120,10 +121,10 @@ module PulpContainerClient
120
121
  def ==(o)
121
122
  return true if self.equal?(o)
122
123
  self.class == o.class &&
123
- containerfile_artifact == o.containerfile_artifact &&
124
+ containerfile_name == o.containerfile_name &&
124
125
  containerfile == o.containerfile &&
125
126
  tag == o.tag &&
126
- artifacts == o.artifacts
127
+ build_context == o.build_context
127
128
  end
128
129
 
129
130
  # @see the `==` method
@@ -135,7 +136,7 @@ module PulpContainerClient
135
136
  # Calculates hash code according to all attributes.
136
137
  # @return [Integer] Hash code
137
138
  def hash
138
- [containerfile_artifact, containerfile, tag, artifacts].hash
139
+ [containerfile_name, containerfile, tag, build_context].hash
139
140
  end
140
141
 
141
142
  # Builds the object from hash
@@ -15,22 +15,22 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- attr_accessor :pulp_labels
19
-
20
- # An optional content-guard. If none is specified, a default one will be used.
21
- attr_accessor :content_guard
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
+ attr_accessor :base_path
22
20
 
23
- # Whether this distribution should be shown in the content app.
24
- attr_accessor :hidden
21
+ attr_accessor :pulp_labels
25
22
 
26
23
  # The latest RepositoryVersion for this Repository will be served.
27
24
  attr_accessor :repository
28
25
 
26
+ # An optional content-guard. If none is specified, a default one will be used.
27
+ attr_accessor :content_guard
28
+
29
29
  # A unique name. Ex, `rawhide` and `stable`.
30
30
  attr_accessor :name
31
31
 
32
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
33
- attr_accessor :base_path
32
+ # Whether this distribution should be shown in the content app.
33
+ attr_accessor :hidden
34
34
 
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
@@ -44,12 +44,12 @@ module PulpContainerClient
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
+ :'base_path' => :'base_path',
47
48
  :'pulp_labels' => :'pulp_labels',
48
- :'content_guard' => :'content_guard',
49
- :'hidden' => :'hidden',
50
49
  :'repository' => :'repository',
50
+ :'content_guard' => :'content_guard',
51
51
  :'name' => :'name',
52
- :'base_path' => :'base_path',
52
+ :'hidden' => :'hidden',
53
53
  :'repository_version' => :'repository_version',
54
54
  :'private' => :'private',
55
55
  :'description' => :'description'
@@ -59,12 +59,12 @@ module PulpContainerClient
59
59
  # Attribute type mapping.
60
60
  def self.openapi_types
61
61
  {
62
+ :'base_path' => :'String',
62
63
  :'pulp_labels' => :'Hash<String, String>',
63
- :'content_guard' => :'String',
64
- :'hidden' => :'Boolean',
65
64
  :'repository' => :'String',
65
+ :'content_guard' => :'String',
66
66
  :'name' => :'String',
67
- :'base_path' => :'String',
67
+ :'hidden' => :'Boolean',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -95,32 +95,32 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
+ if attributes.key?(:'base_path')
99
+ self.base_path = attributes[:'base_path']
100
+ end
101
+
98
102
  if attributes.key?(:'pulp_labels')
99
103
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
100
104
  self.pulp_labels = value
101
105
  end
102
106
  end
103
107
 
104
- if attributes.key?(:'content_guard')
105
- self.content_guard = attributes[:'content_guard']
106
- end
107
-
108
- if attributes.key?(:'hidden')
109
- self.hidden = attributes[:'hidden']
110
- else
111
- self.hidden = false
112
- end
113
-
114
108
  if attributes.key?(:'repository')
115
109
  self.repository = attributes[:'repository']
116
110
  end
117
111
 
112
+ if attributes.key?(:'content_guard')
113
+ self.content_guard = attributes[:'content_guard']
114
+ end
115
+
118
116
  if attributes.key?(:'name')
119
117
  self.name = attributes[:'name']
120
118
  end
121
119
 
122
- if attributes.key?(:'base_path')
123
- self.base_path = attributes[:'base_path']
120
+ if attributes.key?(:'hidden')
121
+ self.hidden = attributes[:'hidden']
122
+ else
123
+ self.hidden = false
124
124
  end
125
125
 
126
126
  if attributes.key?(:'repository_version')
@@ -140,14 +140,14 @@ module PulpContainerClient
140
140
  # @return Array for valid properties with the reasons
141
141
  def list_invalid_properties
142
142
  invalid_properties = Array.new
143
- if !@name.nil? && @name.to_s.length < 1
144
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
145
- end
146
-
147
143
  if !@base_path.nil? && @base_path.to_s.length < 1
148
144
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
149
145
  end
150
146
 
147
+ if !@name.nil? && @name.to_s.length < 1
148
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
149
+ end
150
+
151
151
  if !@description.nil? && @description.to_s.length < 1
152
152
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
153
153
  end
@@ -158,22 +158,12 @@ module PulpContainerClient
158
158
  # Check to see if the all the properties in the model are valid
159
159
  # @return true if the model is valid
160
160
  def valid?
161
- return false if !@name.nil? && @name.to_s.length < 1
162
161
  return false if !@base_path.nil? && @base_path.to_s.length < 1
162
+ return false if !@name.nil? && @name.to_s.length < 1
163
163
  return false if !@description.nil? && @description.to_s.length < 1
164
164
  true
165
165
  end
166
166
 
167
- # Custom attribute writer method with validation
168
- # @param [Object] name Value to be assigned
169
- def name=(name)
170
- if !name.nil? && name.to_s.length < 1
171
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
172
- end
173
-
174
- @name = name
175
- end
176
-
177
167
  # Custom attribute writer method with validation
178
168
  # @param [Object] base_path Value to be assigned
179
169
  def base_path=(base_path)
@@ -184,6 +174,16 @@ module PulpContainerClient
184
174
  @base_path = base_path
185
175
  end
186
176
 
177
+ # Custom attribute writer method with validation
178
+ # @param [Object] name Value to be assigned
179
+ def name=(name)
180
+ if !name.nil? && name.to_s.length < 1
181
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
182
+ end
183
+
184
+ @name = name
185
+ end
186
+
187
187
  # Custom attribute writer method with validation
188
188
  # @param [Object] description Value to be assigned
189
189
  def description=(description)
@@ -199,12 +199,12 @@ module PulpContainerClient
199
199
  def ==(o)
200
200
  return true if self.equal?(o)
201
201
  self.class == o.class &&
202
+ base_path == o.base_path &&
202
203
  pulp_labels == o.pulp_labels &&
203
- content_guard == o.content_guard &&
204
- hidden == o.hidden &&
205
204
  repository == o.repository &&
205
+ content_guard == o.content_guard &&
206
206
  name == o.name &&
207
- base_path == o.base_path &&
207
+ hidden == o.hidden &&
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
- [pulp_labels, content_guard, hidden, repository, name, base_path, repository_version, private, description].hash
222
+ [base_path, pulp_labels, repository, content_guard, name, hidden, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -15,22 +15,22 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
17
17
  class PatchedcontainerContainerPullThroughDistribution
18
- attr_accessor :pulp_labels
19
-
20
- # An optional content-guard. If none is specified, a default one will be used.
21
- attr_accessor :content_guard
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
+ attr_accessor :base_path
22
20
 
23
- # Whether this distribution should be shown in the content app.
24
- attr_accessor :hidden
21
+ attr_accessor :pulp_labels
25
22
 
26
23
  # The latest RepositoryVersion for this Repository will be served.
27
24
  attr_accessor :repository
28
25
 
26
+ # An optional content-guard. If none is specified, a default one will be used.
27
+ attr_accessor :content_guard
28
+
29
29
  # A unique name. Ex, `rawhide` and `stable`.
30
30
  attr_accessor :name
31
31
 
32
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
33
- attr_accessor :base_path
32
+ # Whether this distribution should be shown in the content app.
33
+ attr_accessor :hidden
34
34
 
35
35
  # Remote that can be used to fetch content when using pull-through caching.
36
36
  attr_accessor :remote
@@ -47,12 +47,12 @@ module PulpContainerClient
47
47
  # Attribute mapping from ruby-style variable name to JSON key.
48
48
  def self.attribute_map
49
49
  {
50
+ :'base_path' => :'base_path',
50
51
  :'pulp_labels' => :'pulp_labels',
51
- :'content_guard' => :'content_guard',
52
- :'hidden' => :'hidden',
53
52
  :'repository' => :'repository',
53
+ :'content_guard' => :'content_guard',
54
54
  :'name' => :'name',
55
- :'base_path' => :'base_path',
55
+ :'hidden' => :'hidden',
56
56
  :'remote' => :'remote',
57
57
  :'distributions' => :'distributions',
58
58
  :'private' => :'private',
@@ -63,12 +63,12 @@ module PulpContainerClient
63
63
  # Attribute type mapping.
64
64
  def self.openapi_types
65
65
  {
66
+ :'base_path' => :'String',
66
67
  :'pulp_labels' => :'Hash<String, String>',
67
- :'content_guard' => :'String',
68
- :'hidden' => :'Boolean',
69
68
  :'repository' => :'String',
69
+ :'content_guard' => :'String',
70
70
  :'name' => :'String',
71
- :'base_path' => :'String',
71
+ :'hidden' => :'Boolean',
72
72
  :'remote' => :'String',
73
73
  :'distributions' => :'Array<String>',
74
74
  :'private' => :'Boolean',
@@ -99,32 +99,32 @@ module PulpContainerClient
99
99
  h[k.to_sym] = v
100
100
  }
101
101
 
102
+ if attributes.key?(:'base_path')
103
+ self.base_path = attributes[:'base_path']
104
+ end
105
+
102
106
  if attributes.key?(:'pulp_labels')
103
107
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
104
108
  self.pulp_labels = value
105
109
  end
106
110
  end
107
111
 
108
- if attributes.key?(:'content_guard')
109
- self.content_guard = attributes[:'content_guard']
110
- end
111
-
112
- if attributes.key?(:'hidden')
113
- self.hidden = attributes[:'hidden']
114
- else
115
- self.hidden = false
116
- end
117
-
118
112
  if attributes.key?(:'repository')
119
113
  self.repository = attributes[:'repository']
120
114
  end
121
115
 
116
+ if attributes.key?(:'content_guard')
117
+ self.content_guard = attributes[:'content_guard']
118
+ end
119
+
122
120
  if attributes.key?(:'name')
123
121
  self.name = attributes[:'name']
124
122
  end
125
123
 
126
- if attributes.key?(:'base_path')
127
- self.base_path = attributes[:'base_path']
124
+ if attributes.key?(:'hidden')
125
+ self.hidden = attributes[:'hidden']
126
+ else
127
+ self.hidden = false
128
128
  end
129
129
 
130
130
  if attributes.key?(:'remote')
@@ -150,14 +150,14 @@ module PulpContainerClient
150
150
  # @return Array for valid properties with the reasons
151
151
  def list_invalid_properties
152
152
  invalid_properties = Array.new
153
- if !@name.nil? && @name.to_s.length < 1
154
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
155
- end
156
-
157
153
  if !@base_path.nil? && @base_path.to_s.length < 1
158
154
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
159
155
  end
160
156
 
157
+ if !@name.nil? && @name.to_s.length < 1
158
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
159
+ end
160
+
161
161
  if !@description.nil? && @description.to_s.length < 1
162
162
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
163
163
  end
@@ -168,22 +168,12 @@ module PulpContainerClient
168
168
  # Check to see if the all the properties in the model are valid
169
169
  # @return true if the model is valid
170
170
  def valid?
171
- return false if !@name.nil? && @name.to_s.length < 1
172
171
  return false if !@base_path.nil? && @base_path.to_s.length < 1
172
+ return false if !@name.nil? && @name.to_s.length < 1
173
173
  return false if !@description.nil? && @description.to_s.length < 1
174
174
  true
175
175
  end
176
176
 
177
- # Custom attribute writer method with validation
178
- # @param [Object] name Value to be assigned
179
- def name=(name)
180
- if !name.nil? && name.to_s.length < 1
181
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
182
- end
183
-
184
- @name = name
185
- end
186
-
187
177
  # Custom attribute writer method with validation
188
178
  # @param [Object] base_path Value to be assigned
189
179
  def base_path=(base_path)
@@ -194,6 +184,16 @@ module PulpContainerClient
194
184
  @base_path = base_path
195
185
  end
196
186
 
187
+ # Custom attribute writer method with validation
188
+ # @param [Object] name Value to be assigned
189
+ def name=(name)
190
+ if !name.nil? && name.to_s.length < 1
191
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
192
+ end
193
+
194
+ @name = name
195
+ end
196
+
197
197
  # Custom attribute writer method with validation
198
198
  # @param [Object] description Value to be assigned
199
199
  def description=(description)
@@ -209,12 +209,12 @@ module PulpContainerClient
209
209
  def ==(o)
210
210
  return true if self.equal?(o)
211
211
  self.class == o.class &&
212
+ base_path == o.base_path &&
212
213
  pulp_labels == o.pulp_labels &&
213
- content_guard == o.content_guard &&
214
- hidden == o.hidden &&
215
214
  repository == o.repository &&
215
+ content_guard == o.content_guard &&
216
216
  name == o.name &&
217
- base_path == o.base_path &&
217
+ hidden == o.hidden &&
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
- [pulp_labels, content_guard, hidden, repository, name, base_path, remote, distributions, private, description].hash
233
+ [base_path, pulp_labels, repository, content_guard, name, hidden, remote, distributions, private, description].hash
234
234
  end
235
235
 
236
236
  # Builds the object from hash
@@ -15,48 +15,48 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- attr_accessor :pulp_labels
19
-
20
- # A reference to an associated signing service.
21
- attr_accessor :manifest_signing_service
22
-
23
18
  # An optional description.
24
19
  attr_accessor :description
25
20
 
21
+ attr_accessor :pulp_labels
22
+
26
23
  # A unique name for this repository.
27
24
  attr_accessor :name
28
25
 
29
26
  # Retain X versions of the repository. Default is null which retains all versions.
30
27
  attr_accessor :retain_repo_versions
31
28
 
29
+ # A reference to an associated signing service.
30
+ attr_accessor :manifest_signing_service
31
+
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'pulp_labels' => :'pulp_labels',
36
- :'manifest_signing_service' => :'manifest_signing_service',
37
35
  :'description' => :'description',
36
+ :'pulp_labels' => :'pulp_labels',
38
37
  :'name' => :'name',
39
- :'retain_repo_versions' => :'retain_repo_versions'
38
+ :'retain_repo_versions' => :'retain_repo_versions',
39
+ :'manifest_signing_service' => :'manifest_signing_service'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'pulp_labels' => :'Hash<String, String>',
47
- :'manifest_signing_service' => :'String',
48
46
  :'description' => :'String',
47
+ :'pulp_labels' => :'Hash<String, String>',
49
48
  :'name' => :'String',
50
- :'retain_repo_versions' => :'Integer'
49
+ :'retain_repo_versions' => :'Integer',
50
+ :'manifest_signing_service' => :'String'
51
51
  }
52
52
  end
53
53
 
54
54
  # List of attributes with nullable: true
55
55
  def self.openapi_nullable
56
56
  Set.new([
57
- :'manifest_signing_service',
58
57
  :'description',
59
- :'retain_repo_versions'
58
+ :'retain_repo_versions',
59
+ :'manifest_signing_service'
60
60
  ])
61
61
  end
62
62
 
@@ -75,20 +75,16 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
+ if attributes.key?(:'description')
79
+ self.description = attributes[:'description']
80
+ end
81
+
78
82
  if attributes.key?(:'pulp_labels')
79
83
  if (value = attributes[:'pulp_labels']).is_a?(Hash)
80
84
  self.pulp_labels = value
81
85
  end
82
86
  end
83
87
 
84
- if attributes.key?(:'manifest_signing_service')
85
- self.manifest_signing_service = attributes[:'manifest_signing_service']
86
- end
87
-
88
- if attributes.key?(:'description')
89
- self.description = attributes[:'description']
90
- end
91
-
92
88
  if attributes.key?(:'name')
93
89
  self.name = attributes[:'name']
94
90
  end
@@ -96,6 +92,10 @@ module PulpContainerClient
96
92
  if attributes.key?(:'retain_repo_versions')
97
93
  self.retain_repo_versions = attributes[:'retain_repo_versions']
98
94
  end
95
+
96
+ if attributes.key?(:'manifest_signing_service')
97
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
98
+ end
99
99
  end
100
100
 
101
101
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -161,11 +161,11 @@ module PulpContainerClient
161
161
  def ==(o)
162
162
  return true if self.equal?(o)
163
163
  self.class == o.class &&
164
- pulp_labels == o.pulp_labels &&
165
- manifest_signing_service == o.manifest_signing_service &&
166
164
  description == o.description &&
165
+ pulp_labels == o.pulp_labels &&
167
166
  name == o.name &&
168
- retain_repo_versions == o.retain_repo_versions
167
+ retain_repo_versions == o.retain_repo_versions &&
168
+ manifest_signing_service == o.manifest_signing_service
169
169
  end
170
170
 
171
171
  # @see the `==` method
@@ -177,7 +177,7 @@ module PulpContainerClient
177
177
  # Calculates hash code according to all attributes.
178
178
  # @return [Integer] Hash code
179
179
  def hash
180
- [pulp_labels, manifest_signing_service, description, name, retain_repo_versions].hash
180
+ [description, pulp_labels, name, retain_repo_versions, manifest_signing_service].hash
181
181
  end
182
182
 
183
183
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.21.1'
14
+ VERSION = '2.22.0'
15
15
  end
@@ -43,7 +43,7 @@ describe 'ContentManifestsApi' do
43
43
  # @option opts [Integer] :limit Number of results to return per page.
44
44
  # @option opts [Array<String>] :media_type * &#x60;application/vnd.docker.distribution.manifest.v1+json&#x60; - application/vnd.docker.distribution.manifest.v1+json * &#x60;application/vnd.docker.distribution.manifest.v2+json&#x60; - application/vnd.docker.distribution.manifest.v2+json * &#x60;application/vnd.docker.distribution.manifest.list.v2+json&#x60; - application/vnd.docker.distribution.manifest.list.v2+json * &#x60;application/vnd.oci.image.manifest.v1+json&#x60; - application/vnd.oci.image.manifest.v1+json * &#x60;application/vnd.oci.image.index.v1+json&#x60; - application/vnd.oci.image.index.v1+json
45
45
  # @option opts [Integer] :offset The initial index from which to return the results.
46
- # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;schema_version&#x60; - Schema version * &#x60;-schema_version&#x60; - Schema version (descending) * &#x60;media_type&#x60; - Media type * &#x60;-media_type&#x60; - Media type (descending) * &#x60;data&#x60; - Data * &#x60;-data&#x60; - Data (descending) * &#x60;annotations&#x60; - Annotations * &#x60;-annotations&#x60; - Annotations (descending) * &#x60;labels&#x60; - Labels * &#x60;-labels&#x60; - Labels (descending) * &#x60;is_bootable&#x60; - Is bootable * &#x60;-is_bootable&#x60; - Is bootable (descending) * &#x60;is_flatpak&#x60; - Is flatpak * &#x60;-is_flatpak&#x60; - Is flatpak (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
46
+ # @option opts [Array<String>] :ordering Ordering * &#x60;pulp_id&#x60; - Pulp id * &#x60;-pulp_id&#x60; - Pulp id (descending) * &#x60;pulp_created&#x60; - Pulp created * &#x60;-pulp_created&#x60; - Pulp created (descending) * &#x60;pulp_last_updated&#x60; - Pulp last updated * &#x60;-pulp_last_updated&#x60; - Pulp last updated (descending) * &#x60;pulp_type&#x60; - Pulp type * &#x60;-pulp_type&#x60; - Pulp type (descending) * &#x60;upstream_id&#x60; - Upstream id * &#x60;-upstream_id&#x60; - Upstream id (descending) * &#x60;timestamp_of_interest&#x60; - Timestamp of interest * &#x60;-timestamp_of_interest&#x60; - Timestamp of interest (descending) * &#x60;digest&#x60; - Digest * &#x60;-digest&#x60; - Digest (descending) * &#x60;schema_version&#x60; - Schema version * &#x60;-schema_version&#x60; - Schema version (descending) * &#x60;media_type&#x60; - Media type * &#x60;-media_type&#x60; - Media type (descending) * &#x60;type&#x60; - Type * &#x60;-type&#x60; - Type (descending) * &#x60;data&#x60; - Data * &#x60;-data&#x60; - Data (descending) * &#x60;annotations&#x60; - Annotations * &#x60;-annotations&#x60; - Annotations (descending) * &#x60;labels&#x60; - Labels * &#x60;-labels&#x60; - Labels (descending) * &#x60;architecture&#x60; - Architecture * &#x60;-architecture&#x60; - Architecture (descending) * &#x60;os&#x60; - Os * &#x60;-os&#x60; - Os (descending) * &#x60;compressed_image_size&#x60; - Compressed image size * &#x60;-compressed_image_size&#x60; - Compressed image size (descending) * &#x60;is_bootable&#x60; - Is bootable * &#x60;-is_bootable&#x60; - Is bootable (descending) * &#x60;is_flatpak&#x60; - Is flatpak * &#x60;-is_flatpak&#x60; - Is flatpak (descending) * &#x60;pk&#x60; - Pk * &#x60;-pk&#x60; - Pk (descending)
47
47
  # @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
48
48
  # @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
49
49
  # @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
@@ -63,10 +63,10 @@ describe 'RepositoriesContainerApi' do
63
63
  # Trigger an asynchronous task to build an OCI image from a Containerfile. A new repository version is created with the new image and tag. This API is in tech preview. Backwards compatibility when upgrading is not guaranteed.
64
64
  # @param container_container_repository_href
65
65
  # @param [Hash] opts the optional parameters
66
- # @option opts [String] :containerfile_artifact Artifact representing the Containerfile that should be used to run podman-build.
66
+ # @option opts [String] :containerfile_name Name of the Containerfile, from build_context, that should be used to run podman-build.
67
67
  # @option opts [File] :containerfile An uploaded Containerfile that should be used to run podman-build.
68
68
  # @option opts [String] :tag A tag name for the new image being built.
69
- # @option opts [AnyType] :artifacts A JSON string where each key is an artifact href and the value is it&#39;s relative path (name) inside the /pulp_working_directory of the build container executing the Containerfile.
69
+ # @option opts [String] :build_context RepositoryVersion to be used as the build context for container images.
70
70
  # @return [AsyncOperationResponse]
71
71
  describe 'build_image test' do
72
72
  it 'should work' do