pulp_container_client 2.15.0.dev1674615984 → 2.15.0.dev1674961693

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.

Potentially problematic release.


This version of pulp_container_client might be problematic. Click here for more details.

Files changed (28) 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 +8 -8
  5. data/docs/ContainerContainerPushRepository.md +5 -5
  6. data/docs/ContainerContainerPushRepositoryResponse.md +9 -9
  7. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  8. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  9. data/docs/RepositoriesContainerApi.md +16 -0
  10. data/docs/RepositoriesContainerPushApi.md +16 -0
  11. data/lib/pulp_container_client/api/repositories_container_api.rb +24 -0
  12. data/lib/pulp_container_client/api/repositories_container_push_api.rb +24 -0
  13. data/lib/pulp_container_client/models/container_container_distribution.rb +16 -16
  14. data/lib/pulp_container_client/models/container_container_distribution_response.rb +35 -35
  15. data/lib/pulp_container_client/models/container_container_push_repository.rb +38 -38
  16. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +39 -39
  17. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +16 -16
  18. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +38 -38
  19. data/lib/pulp_container_client/version.rb +1 -1
  20. data/spec/api/repositories_container_api_spec.rb +8 -0
  21. data/spec/api/repositories_container_push_api_spec.rb +8 -0
  22. data/spec/models/container_container_distribution_response_spec.rb +7 -7
  23. data/spec/models/container_container_distribution_spec.rb +2 -2
  24. data/spec/models/container_container_push_repository_response_spec.rb +8 -8
  25. data/spec/models/container_container_push_repository_spec.rb +3 -3
  26. data/spec/models/patchedcontainer_container_distribution_spec.rb +2 -2
  27. data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
  28. metadata +2 -2
@@ -15,8 +15,7 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepository
18
- # An optional description.
19
- attr_accessor :description
18
+ attr_accessor :pulp_labels
20
19
 
21
20
  # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
22
21
  attr_accessor :retain_repo_versions
@@ -24,39 +23,40 @@ module PulpContainerClient
24
23
  # A reference to an associated signing service.
25
24
  attr_accessor :manifest_signing_service
26
25
 
26
+ # An optional description.
27
+ attr_accessor :description
28
+
27
29
  # A unique name for this repository.
28
30
  attr_accessor :name
29
31
 
30
- attr_accessor :pulp_labels
31
-
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'description' => :'description',
35
+ :'pulp_labels' => :'pulp_labels',
36
36
  :'retain_repo_versions' => :'retain_repo_versions',
37
37
  :'manifest_signing_service' => :'manifest_signing_service',
38
- :'name' => :'name',
39
- :'pulp_labels' => :'pulp_labels'
38
+ :'description' => :'description',
39
+ :'name' => :'name'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'description' => :'String',
46
+ :'pulp_labels' => :'Hash<String, String>',
47
47
  :'retain_repo_versions' => :'Integer',
48
48
  :'manifest_signing_service' => :'String',
49
- :'name' => :'String',
50
- :'pulp_labels' => :'Hash<String, String>'
49
+ :'description' => :'String',
50
+ :'name' => :'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
- :'description',
58
57
  :'retain_repo_versions',
59
58
  :'manifest_signing_service',
59
+ :'description',
60
60
  ])
61
61
  end
62
62
 
@@ -75,8 +75,10 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
- if attributes.key?(:'description')
79
- self.description = attributes[:'description']
78
+ if attributes.key?(:'pulp_labels')
79
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
80
+ self.pulp_labels = value
81
+ end
80
82
  end
81
83
 
82
84
  if attributes.key?(:'retain_repo_versions')
@@ -87,14 +89,12 @@ module PulpContainerClient
87
89
  self.manifest_signing_service = attributes[:'manifest_signing_service']
88
90
  end
89
91
 
90
- if attributes.key?(:'name')
91
- self.name = attributes[:'name']
92
+ if attributes.key?(:'description')
93
+ self.description = attributes[:'description']
92
94
  end
93
95
 
94
- if attributes.key?(:'pulp_labels')
95
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
96
- self.pulp_labels = value
97
- end
96
+ if attributes.key?(:'name')
97
+ self.name = attributes[:'name']
98
98
  end
99
99
  end
100
100
 
@@ -102,14 +102,14 @@ module PulpContainerClient
102
102
  # @return Array for valid properties with the reasons
103
103
  def list_invalid_properties
104
104
  invalid_properties = Array.new
105
- if !@description.nil? && @description.to_s.length < 1
106
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
107
- end
108
-
109
105
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
110
106
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
111
107
  end
112
108
 
109
+ if !@description.nil? && @description.to_s.length < 1
110
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
111
+ end
112
+
113
113
  if @name.nil?
114
114
  invalid_properties.push('invalid value for "name", name cannot be nil.')
115
115
  end
@@ -124,23 +124,13 @@ module PulpContainerClient
124
124
  # Check to see if the all the properties in the model are valid
125
125
  # @return true if the model is valid
126
126
  def valid?
127
- return false if !@description.nil? && @description.to_s.length < 1
128
127
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
128
+ return false if !@description.nil? && @description.to_s.length < 1
129
129
  return false if @name.nil?
130
130
  return false if @name.to_s.length < 1
131
131
  true
132
132
  end
133
133
 
134
- # Custom attribute writer method with validation
135
- # @param [Object] description Value to be assigned
136
- def description=(description)
137
- if !description.nil? && description.to_s.length < 1
138
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
139
- end
140
-
141
- @description = description
142
- end
143
-
144
134
  # Custom attribute writer method with validation
145
135
  # @param [Object] retain_repo_versions Value to be assigned
146
136
  def retain_repo_versions=(retain_repo_versions)
@@ -151,6 +141,16 @@ module PulpContainerClient
151
141
  @retain_repo_versions = retain_repo_versions
152
142
  end
153
143
 
144
+ # Custom attribute writer method with validation
145
+ # @param [Object] description Value to be assigned
146
+ def description=(description)
147
+ if !description.nil? && description.to_s.length < 1
148
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
149
+ end
150
+
151
+ @description = description
152
+ end
153
+
154
154
  # Custom attribute writer method with validation
155
155
  # @param [Object] name Value to be assigned
156
156
  def name=(name)
@@ -170,11 +170,11 @@ module PulpContainerClient
170
170
  def ==(o)
171
171
  return true if self.equal?(o)
172
172
  self.class == o.class &&
173
- description == o.description &&
173
+ pulp_labels == o.pulp_labels &&
174
174
  retain_repo_versions == o.retain_repo_versions &&
175
175
  manifest_signing_service == o.manifest_signing_service &&
176
- name == o.name &&
177
- pulp_labels == o.pulp_labels
176
+ description == o.description &&
177
+ name == o.name
178
178
  end
179
179
 
180
180
  # @see the `==` method
@@ -186,7 +186,7 @@ module PulpContainerClient
186
186
  # Calculates hash code according to all attributes.
187
187
  # @return [Integer] Hash code
188
188
  def hash
189
- [description, retain_repo_versions, manifest_signing_service, name, pulp_labels].hash
189
+ [pulp_labels, retain_repo_versions, manifest_signing_service, description, name].hash
190
190
  end
191
191
 
192
192
  # Builds the object from hash
@@ -15,10 +15,7 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- # An optional description.
19
- attr_accessor :description
20
-
21
- attr_accessor :pulp_href
18
+ attr_accessor :pulp_labels
22
19
 
23
20
  # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
24
21
  attr_accessor :retain_repo_versions
@@ -26,54 +23,57 @@ module PulpContainerClient
26
23
  # A reference to an associated signing service.
27
24
  attr_accessor :manifest_signing_service
28
25
 
29
- # Timestamp of creation.
30
- attr_accessor :pulp_created
26
+ # An optional description.
27
+ attr_accessor :description
31
28
 
32
29
  attr_accessor :latest_version_href
33
30
 
31
+ # Timestamp of creation.
32
+ attr_accessor :pulp_created
33
+
34
34
  # A unique name for this repository.
35
35
  attr_accessor :name
36
36
 
37
- attr_accessor :pulp_labels
38
-
39
37
  attr_accessor :versions_href
40
38
 
39
+ attr_accessor :pulp_href
40
+
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'description' => :'description',
45
- :'pulp_href' => :'pulp_href',
44
+ :'pulp_labels' => :'pulp_labels',
46
45
  :'retain_repo_versions' => :'retain_repo_versions',
47
46
  :'manifest_signing_service' => :'manifest_signing_service',
48
- :'pulp_created' => :'pulp_created',
47
+ :'description' => :'description',
49
48
  :'latest_version_href' => :'latest_version_href',
49
+ :'pulp_created' => :'pulp_created',
50
50
  :'name' => :'name',
51
- :'pulp_labels' => :'pulp_labels',
52
- :'versions_href' => :'versions_href'
51
+ :'versions_href' => :'versions_href',
52
+ :'pulp_href' => :'pulp_href'
53
53
  }
54
54
  end
55
55
 
56
56
  # Attribute type mapping.
57
57
  def self.openapi_types
58
58
  {
59
- :'description' => :'String',
60
- :'pulp_href' => :'String',
59
+ :'pulp_labels' => :'Hash<String, String>',
61
60
  :'retain_repo_versions' => :'Integer',
62
61
  :'manifest_signing_service' => :'String',
63
- :'pulp_created' => :'DateTime',
62
+ :'description' => :'String',
64
63
  :'latest_version_href' => :'String',
64
+ :'pulp_created' => :'DateTime',
65
65
  :'name' => :'String',
66
- :'pulp_labels' => :'Hash<String, String>',
67
- :'versions_href' => :'String'
66
+ :'versions_href' => :'String',
67
+ :'pulp_href' => :'String'
68
68
  }
69
69
  end
70
70
 
71
71
  # List of attributes with nullable: true
72
72
  def self.openapi_nullable
73
73
  Set.new([
74
- :'description',
75
74
  :'retain_repo_versions',
76
75
  :'manifest_signing_service',
76
+ :'description',
77
77
  ])
78
78
  end
79
79
 
@@ -92,12 +92,10 @@ module PulpContainerClient
92
92
  h[k.to_sym] = v
93
93
  }
94
94
 
95
- if attributes.key?(:'description')
96
- self.description = attributes[:'description']
97
- end
98
-
99
- if attributes.key?(:'pulp_href')
100
- self.pulp_href = attributes[:'pulp_href']
95
+ if attributes.key?(:'pulp_labels')
96
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
97
+ self.pulp_labels = value
98
+ end
101
99
  end
102
100
 
103
101
  if attributes.key?(:'retain_repo_versions')
@@ -108,27 +106,29 @@ module PulpContainerClient
108
106
  self.manifest_signing_service = attributes[:'manifest_signing_service']
109
107
  end
110
108
 
111
- if attributes.key?(:'pulp_created')
112
- self.pulp_created = attributes[:'pulp_created']
109
+ if attributes.key?(:'description')
110
+ self.description = attributes[:'description']
113
111
  end
114
112
 
115
113
  if attributes.key?(:'latest_version_href')
116
114
  self.latest_version_href = attributes[:'latest_version_href']
117
115
  end
118
116
 
119
- if attributes.key?(:'name')
120
- self.name = attributes[:'name']
117
+ if attributes.key?(:'pulp_created')
118
+ self.pulp_created = attributes[:'pulp_created']
121
119
  end
122
120
 
123
- if attributes.key?(:'pulp_labels')
124
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
125
- self.pulp_labels = value
126
- end
121
+ if attributes.key?(:'name')
122
+ self.name = attributes[:'name']
127
123
  end
128
124
 
129
125
  if attributes.key?(:'versions_href')
130
126
  self.versions_href = attributes[:'versions_href']
131
127
  end
128
+
129
+ if attributes.key?(:'pulp_href')
130
+ self.pulp_href = attributes[:'pulp_href']
131
+ end
132
132
  end
133
133
 
134
134
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -169,15 +169,15 @@ module PulpContainerClient
169
169
  def ==(o)
170
170
  return true if self.equal?(o)
171
171
  self.class == o.class &&
172
- description == o.description &&
173
- pulp_href == o.pulp_href &&
172
+ pulp_labels == o.pulp_labels &&
174
173
  retain_repo_versions == o.retain_repo_versions &&
175
174
  manifest_signing_service == o.manifest_signing_service &&
176
- pulp_created == o.pulp_created &&
175
+ description == o.description &&
177
176
  latest_version_href == o.latest_version_href &&
177
+ pulp_created == o.pulp_created &&
178
178
  name == o.name &&
179
- pulp_labels == o.pulp_labels &&
180
- versions_href == o.versions_href
179
+ versions_href == o.versions_href &&
180
+ pulp_href == o.pulp_href
181
181
  end
182
182
 
183
183
  # @see the `==` method
@@ -189,7 +189,7 @@ module PulpContainerClient
189
189
  # Calculates hash code according to all attributes.
190
190
  # @return [Integer] Hash code
191
191
  def hash
192
- [description, pulp_href, retain_repo_versions, manifest_signing_service, pulp_created, latest_version_href, name, pulp_labels, versions_href].hash
192
+ [pulp_labels, retain_repo_versions, manifest_signing_service, description, latest_version_href, pulp_created, name, versions_href, pulp_href].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -15,8 +15,7 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- # An optional content-guard. If none is specified, a default one will be used.
19
- attr_accessor :content_guard
18
+ attr_accessor :pulp_labels
20
19
 
21
20
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
22
21
  attr_accessor :base_path
@@ -27,7 +26,8 @@ module PulpContainerClient
27
26
  # A unique name. Ex, `rawhide` and `stable`.
28
27
  attr_accessor :name
29
28
 
30
- attr_accessor :pulp_labels
29
+ # An optional content-guard. If none is specified, a default one will be used.
30
+ attr_accessor :content_guard
31
31
 
32
32
  # RepositoryVersion to be served
33
33
  attr_accessor :repository_version
@@ -41,11 +41,11 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'content_guard' => :'content_guard',
44
+ :'pulp_labels' => :'pulp_labels',
45
45
  :'base_path' => :'base_path',
46
46
  :'repository' => :'repository',
47
47
  :'name' => :'name',
48
- :'pulp_labels' => :'pulp_labels',
48
+ :'content_guard' => :'content_guard',
49
49
  :'repository_version' => :'repository_version',
50
50
  :'private' => :'private',
51
51
  :'description' => :'description'
@@ -55,11 +55,11 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
- :'content_guard' => :'String',
58
+ :'pulp_labels' => :'Hash<String, String>',
59
59
  :'base_path' => :'String',
60
60
  :'repository' => :'String',
61
61
  :'name' => :'String',
62
- :'pulp_labels' => :'Hash<String, String>',
62
+ :'content_guard' => :'String',
63
63
  :'repository_version' => :'String',
64
64
  :'private' => :'Boolean',
65
65
  :'description' => :'String'
@@ -90,8 +90,10 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
- if attributes.key?(:'content_guard')
94
- self.content_guard = attributes[:'content_guard']
93
+ if attributes.key?(:'pulp_labels')
94
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
95
+ self.pulp_labels = value
96
+ end
95
97
  end
96
98
 
97
99
  if attributes.key?(:'base_path')
@@ -106,10 +108,8 @@ module PulpContainerClient
106
108
  self.name = attributes[:'name']
107
109
  end
108
110
 
109
- if attributes.key?(:'pulp_labels')
110
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
111
- self.pulp_labels = value
112
- end
111
+ if attributes.key?(:'content_guard')
112
+ self.content_guard = attributes[:'content_guard']
113
113
  end
114
114
 
115
115
  if attributes.key?(:'repository_version')
@@ -188,11 +188,11 @@ module PulpContainerClient
188
188
  def ==(o)
189
189
  return true if self.equal?(o)
190
190
  self.class == o.class &&
191
- content_guard == o.content_guard &&
191
+ pulp_labels == o.pulp_labels &&
192
192
  base_path == o.base_path &&
193
193
  repository == o.repository &&
194
194
  name == o.name &&
195
- pulp_labels == o.pulp_labels &&
195
+ content_guard == o.content_guard &&
196
196
  repository_version == o.repository_version &&
197
197
  private == o.private &&
198
198
  description == o.description
@@ -207,7 +207,7 @@ module PulpContainerClient
207
207
  # Calculates hash code according to all attributes.
208
208
  # @return [Integer] Hash code
209
209
  def hash
210
- [content_guard, base_path, repository, name, pulp_labels, repository_version, private, description].hash
210
+ [pulp_labels, base_path, repository, name, content_guard, repository_version, private, description].hash
211
211
  end
212
212
 
213
213
  # Builds the object from hash
@@ -15,8 +15,7 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- # An optional description.
19
- attr_accessor :description
18
+ attr_accessor :pulp_labels
20
19
 
21
20
  # Retain X versions of the repository. Default is null which retains all versions. This is provided as a tech preview in Pulp 3 and may change in the future.
22
21
  attr_accessor :retain_repo_versions
@@ -24,39 +23,40 @@ module PulpContainerClient
24
23
  # A reference to an associated signing service.
25
24
  attr_accessor :manifest_signing_service
26
25
 
26
+ # An optional description.
27
+ attr_accessor :description
28
+
27
29
  # A unique name for this repository.
28
30
  attr_accessor :name
29
31
 
30
- attr_accessor :pulp_labels
31
-
32
32
  # Attribute mapping from ruby-style variable name to JSON key.
33
33
  def self.attribute_map
34
34
  {
35
- :'description' => :'description',
35
+ :'pulp_labels' => :'pulp_labels',
36
36
  :'retain_repo_versions' => :'retain_repo_versions',
37
37
  :'manifest_signing_service' => :'manifest_signing_service',
38
- :'name' => :'name',
39
- :'pulp_labels' => :'pulp_labels'
38
+ :'description' => :'description',
39
+ :'name' => :'name'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'description' => :'String',
46
+ :'pulp_labels' => :'Hash<String, String>',
47
47
  :'retain_repo_versions' => :'Integer',
48
48
  :'manifest_signing_service' => :'String',
49
- :'name' => :'String',
50
- :'pulp_labels' => :'Hash<String, String>'
49
+ :'description' => :'String',
50
+ :'name' => :'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
- :'description',
58
57
  :'retain_repo_versions',
59
58
  :'manifest_signing_service',
59
+ :'description',
60
60
  ])
61
61
  end
62
62
 
@@ -75,8 +75,10 @@ module PulpContainerClient
75
75
  h[k.to_sym] = v
76
76
  }
77
77
 
78
- if attributes.key?(:'description')
79
- self.description = attributes[:'description']
78
+ if attributes.key?(:'pulp_labels')
79
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
80
+ self.pulp_labels = value
81
+ end
80
82
  end
81
83
 
82
84
  if attributes.key?(:'retain_repo_versions')
@@ -87,14 +89,12 @@ module PulpContainerClient
87
89
  self.manifest_signing_service = attributes[:'manifest_signing_service']
88
90
  end
89
91
 
90
- if attributes.key?(:'name')
91
- self.name = attributes[:'name']
92
+ if attributes.key?(:'description')
93
+ self.description = attributes[:'description']
92
94
  end
93
95
 
94
- if attributes.key?(:'pulp_labels')
95
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
96
- self.pulp_labels = value
97
- end
96
+ if attributes.key?(:'name')
97
+ self.name = attributes[:'name']
98
98
  end
99
99
  end
100
100
 
@@ -102,14 +102,14 @@ module PulpContainerClient
102
102
  # @return Array for valid properties with the reasons
103
103
  def list_invalid_properties
104
104
  invalid_properties = Array.new
105
- if !@description.nil? && @description.to_s.length < 1
106
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
107
- end
108
-
109
105
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
110
106
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
111
107
  end
112
108
 
109
+ if !@description.nil? && @description.to_s.length < 1
110
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
111
+ end
112
+
113
113
  if !@name.nil? && @name.to_s.length < 1
114
114
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
115
115
  end
@@ -120,22 +120,12 @@ module PulpContainerClient
120
120
  # Check to see if the all the properties in the model are valid
121
121
  # @return true if the model is valid
122
122
  def valid?
123
- return false if !@description.nil? && @description.to_s.length < 1
124
123
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
124
+ return false if !@description.nil? && @description.to_s.length < 1
125
125
  return false if !@name.nil? && @name.to_s.length < 1
126
126
  true
127
127
  end
128
128
 
129
- # Custom attribute writer method with validation
130
- # @param [Object] description Value to be assigned
131
- def description=(description)
132
- if !description.nil? && description.to_s.length < 1
133
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
134
- end
135
-
136
- @description = description
137
- end
138
-
139
129
  # Custom attribute writer method with validation
140
130
  # @param [Object] retain_repo_versions Value to be assigned
141
131
  def retain_repo_versions=(retain_repo_versions)
@@ -146,6 +136,16 @@ module PulpContainerClient
146
136
  @retain_repo_versions = retain_repo_versions
147
137
  end
148
138
 
139
+ # Custom attribute writer method with validation
140
+ # @param [Object] description Value to be assigned
141
+ def description=(description)
142
+ if !description.nil? && description.to_s.length < 1
143
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
144
+ end
145
+
146
+ @description = description
147
+ end
148
+
149
149
  # Custom attribute writer method with validation
150
150
  # @param [Object] name Value to be assigned
151
151
  def name=(name)
@@ -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
- description == o.description &&
164
+ pulp_labels == o.pulp_labels &&
165
165
  retain_repo_versions == o.retain_repo_versions &&
166
166
  manifest_signing_service == o.manifest_signing_service &&
167
- name == o.name &&
168
- pulp_labels == o.pulp_labels
167
+ description == o.description &&
168
+ name == o.name
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
- [description, retain_repo_versions, manifest_signing_service, name, pulp_labels].hash
180
+ [pulp_labels, retain_repo_versions, manifest_signing_service, description, name].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.15.0.dev1674615984'
14
+ VERSION = '2.15.0.dev1674961693'
15
15
  end
@@ -137,6 +137,14 @@ describe 'RepositoriesContainerApi' do
137
137
  # @option opts [Array<String>] :ordering Ordering
138
138
  # @option opts [String] :pulp_label_select Filter labels by search string
139
139
  # @option opts [String] :remote Foreign Key referenced by HREF
140
+ # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
141
+ # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
142
+ # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
143
+ # @option opts [Boolean] :retain_repo_versions__isnull Filter results where retain_repo_versions has a null value
144
+ # @option opts [Integer] :retain_repo_versions__lt Filter results where retain_repo_versions is less than value
145
+ # @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
146
+ # @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
147
+ # @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
140
148
  # @option opts [Array<String>] :fields A list of fields to include in the response.
141
149
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
142
150
  # @return [PaginatedcontainerContainerRepositoryResponseList]
@@ -58,6 +58,14 @@ describe 'RepositoriesContainerPushApi' do
58
58
  # @option opts [Array<String>] :ordering Ordering
59
59
  # @option opts [String] :pulp_label_select Filter labels by search string
60
60
  # @option opts [String] :remote Foreign Key referenced by HREF
61
+ # @option opts [Integer] :retain_repo_versions Filter results where retain_repo_versions matches value
62
+ # @option opts [Integer] :retain_repo_versions__gt Filter results where retain_repo_versions is greater than value
63
+ # @option opts [Integer] :retain_repo_versions__gte Filter results where retain_repo_versions is greater than or equal to value
64
+ # @option opts [Boolean] :retain_repo_versions__isnull Filter results where retain_repo_versions has a null value
65
+ # @option opts [Integer] :retain_repo_versions__lt Filter results where retain_repo_versions is less than value
66
+ # @option opts [Integer] :retain_repo_versions__lte Filter results where retain_repo_versions is less than or equal to value
67
+ # @option opts [Integer] :retain_repo_versions__ne Filter results where retain_repo_versions not equal to value
68
+ # @option opts [Array<Integer>] :retain_repo_versions__range Filter results where retain_repo_versions is between two comma separated values
61
69
  # @option opts [Array<String>] :fields A list of fields to include in the response.
62
70
  # @option opts [Array<String>] :exclude_fields A list of fields to exclude from the response.
63
71
  # @return [PaginatedcontainerContainerPushRepositoryResponseList]