pulp_container_client 2.11.0.dev1639624291 → 2.11.0.dev1640056372

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


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

@@ -15,34 +15,34 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepository
18
- # A unique name for this repository.
19
- attr_accessor :name
20
-
21
- attr_accessor :pulp_labels
22
-
23
18
  # An optional description.
24
19
  attr_accessor :description
25
20
 
26
21
  # 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.
27
22
  attr_accessor :retain_repo_versions
28
23
 
24
+ # A unique name for this repository.
25
+ attr_accessor :name
26
+
27
+ attr_accessor :pulp_labels
28
+
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'name' => :'name',
33
- :'pulp_labels' => :'pulp_labels',
34
32
  :'description' => :'description',
35
- :'retain_repo_versions' => :'retain_repo_versions'
33
+ :'retain_repo_versions' => :'retain_repo_versions',
34
+ :'name' => :'name',
35
+ :'pulp_labels' => :'pulp_labels'
36
36
  }
37
37
  end
38
38
 
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'name' => :'String',
43
- :'pulp_labels' => :'Object',
44
42
  :'description' => :'String',
45
- :'retain_repo_versions' => :'Integer'
43
+ :'retain_repo_versions' => :'Integer',
44
+ :'name' => :'String',
45
+ :'pulp_labels' => :'Object'
46
46
  }
47
47
  end
48
48
 
@@ -50,7 +50,7 @@ module PulpContainerClient
50
50
  def self.openapi_nullable
51
51
  Set.new([
52
52
  :'description',
53
- :'retain_repo_versions'
53
+ :'retain_repo_versions',
54
54
  ])
55
55
  end
56
56
 
@@ -69,14 +69,6 @@ module PulpContainerClient
69
69
  h[k.to_sym] = v
70
70
  }
71
71
 
72
- if attributes.key?(:'name')
73
- self.name = attributes[:'name']
74
- end
75
-
76
- if attributes.key?(:'pulp_labels')
77
- self.pulp_labels = attributes[:'pulp_labels']
78
- end
79
-
80
72
  if attributes.key?(:'description')
81
73
  self.description = attributes[:'description']
82
74
  end
@@ -84,20 +76,20 @@ module PulpContainerClient
84
76
  if attributes.key?(:'retain_repo_versions')
85
77
  self.retain_repo_versions = attributes[:'retain_repo_versions']
86
78
  end
79
+
80
+ if attributes.key?(:'name')
81
+ self.name = attributes[:'name']
82
+ end
83
+
84
+ if attributes.key?(:'pulp_labels')
85
+ self.pulp_labels = attributes[:'pulp_labels']
86
+ end
87
87
  end
88
88
 
89
89
  # Show invalid properties with the reasons. Usually used together with valid?
90
90
  # @return Array for valid properties with the reasons
91
91
  def list_invalid_properties
92
92
  invalid_properties = Array.new
93
- if @name.nil?
94
- invalid_properties.push('invalid value for "name", name cannot be nil.')
95
- end
96
-
97
- if @name.to_s.length < 1
98
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
99
- end
100
-
101
93
  if !@description.nil? && @description.to_s.length < 1
102
94
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
103
95
  end
@@ -106,33 +98,27 @@ module PulpContainerClient
106
98
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
107
99
  end
108
100
 
101
+ if @name.nil?
102
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
103
+ end
104
+
105
+ if @name.to_s.length < 1
106
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
107
+ end
108
+
109
109
  invalid_properties
110
110
  end
111
111
 
112
112
  # Check to see if the all the properties in the model are valid
113
113
  # @return true if the model is valid
114
114
  def valid?
115
- return false if @name.nil?
116
- return false if @name.to_s.length < 1
117
115
  return false if !@description.nil? && @description.to_s.length < 1
118
116
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
117
+ return false if @name.nil?
118
+ return false if @name.to_s.length < 1
119
119
  true
120
120
  end
121
121
 
122
- # Custom attribute writer method with validation
123
- # @param [Object] name Value to be assigned
124
- def name=(name)
125
- if name.nil?
126
- fail ArgumentError, 'name cannot be nil'
127
- end
128
-
129
- if name.to_s.length < 1
130
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
131
- end
132
-
133
- @name = name
134
- end
135
-
136
122
  # Custom attribute writer method with validation
137
123
  # @param [Object] description Value to be assigned
138
124
  def description=(description)
@@ -153,15 +139,29 @@ module PulpContainerClient
153
139
  @retain_repo_versions = retain_repo_versions
154
140
  end
155
141
 
142
+ # Custom attribute writer method with validation
143
+ # @param [Object] name Value to be assigned
144
+ def name=(name)
145
+ if name.nil?
146
+ fail ArgumentError, 'name cannot be nil'
147
+ end
148
+
149
+ if name.to_s.length < 1
150
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
151
+ end
152
+
153
+ @name = name
154
+ end
155
+
156
156
  # Checks equality by comparing each attribute.
157
157
  # @param [Object] Object to be compared
158
158
  def ==(o)
159
159
  return true if self.equal?(o)
160
160
  self.class == o.class &&
161
- name == o.name &&
162
- pulp_labels == o.pulp_labels &&
163
161
  description == o.description &&
164
- retain_repo_versions == o.retain_repo_versions
162
+ retain_repo_versions == o.retain_repo_versions &&
163
+ name == o.name &&
164
+ pulp_labels == o.pulp_labels
165
165
  end
166
166
 
167
167
  # @see the `==` method
@@ -173,7 +173,7 @@ module PulpContainerClient
173
173
  # Calculates hash code according to all attributes.
174
174
  # @return [Integer] Hash code
175
175
  def hash
176
- [name, pulp_labels, description, retain_repo_versions].hash
176
+ [description, retain_repo_versions, name, pulp_labels].hash
177
177
  end
178
178
 
179
179
  # Builds the object from hash
@@ -15,51 +15,51 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- # A unique name for this repository.
19
- attr_accessor :name
20
-
21
- attr_accessor :pulp_labels
22
-
23
- attr_accessor :versions_href
24
-
25
- attr_accessor :pulp_href
26
-
27
18
  # An optional description.
28
19
  attr_accessor :description
29
20
 
21
+ attr_accessor :latest_version_href
22
+
30
23
  # Timestamp of creation.
31
24
  attr_accessor :pulp_created
32
25
 
26
+ attr_accessor :pulp_href
27
+
33
28
  # 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.
34
29
  attr_accessor :retain_repo_versions
35
30
 
36
- attr_accessor :latest_version_href
31
+ # A unique name for this repository.
32
+ attr_accessor :name
33
+
34
+ attr_accessor :versions_href
35
+
36
+ attr_accessor :pulp_labels
37
37
 
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'name' => :'name',
42
- :'pulp_labels' => :'pulp_labels',
43
- :'versions_href' => :'versions_href',
44
- :'pulp_href' => :'pulp_href',
45
41
  :'description' => :'description',
42
+ :'latest_version_href' => :'latest_version_href',
46
43
  :'pulp_created' => :'pulp_created',
44
+ :'pulp_href' => :'pulp_href',
47
45
  :'retain_repo_versions' => :'retain_repo_versions',
48
- :'latest_version_href' => :'latest_version_href'
46
+ :'name' => :'name',
47
+ :'versions_href' => :'versions_href',
48
+ :'pulp_labels' => :'pulp_labels'
49
49
  }
50
50
  end
51
51
 
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'name' => :'String',
56
- :'pulp_labels' => :'Object',
57
- :'versions_href' => :'String',
58
- :'pulp_href' => :'String',
59
55
  :'description' => :'String',
56
+ :'latest_version_href' => :'String',
60
57
  :'pulp_created' => :'DateTime',
58
+ :'pulp_href' => :'String',
61
59
  :'retain_repo_versions' => :'Integer',
62
- :'latest_version_href' => :'String'
60
+ :'name' => :'String',
61
+ :'versions_href' => :'String',
62
+ :'pulp_labels' => :'Object'
63
63
  }
64
64
  end
65
65
 
@@ -86,36 +86,36 @@ module PulpContainerClient
86
86
  h[k.to_sym] = v
87
87
  }
88
88
 
89
- if attributes.key?(:'name')
90
- self.name = attributes[:'name']
89
+ if attributes.key?(:'description')
90
+ self.description = attributes[:'description']
91
91
  end
92
92
 
93
- if attributes.key?(:'pulp_labels')
94
- self.pulp_labels = attributes[:'pulp_labels']
93
+ if attributes.key?(:'latest_version_href')
94
+ self.latest_version_href = attributes[:'latest_version_href']
95
95
  end
96
96
 
97
- if attributes.key?(:'versions_href')
98
- self.versions_href = attributes[:'versions_href']
97
+ if attributes.key?(:'pulp_created')
98
+ self.pulp_created = attributes[:'pulp_created']
99
99
  end
100
100
 
101
101
  if attributes.key?(:'pulp_href')
102
102
  self.pulp_href = attributes[:'pulp_href']
103
103
  end
104
104
 
105
- if attributes.key?(:'description')
106
- self.description = attributes[:'description']
105
+ if attributes.key?(:'retain_repo_versions')
106
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
107
107
  end
108
108
 
109
- if attributes.key?(:'pulp_created')
110
- self.pulp_created = attributes[:'pulp_created']
109
+ if attributes.key?(:'name')
110
+ self.name = attributes[:'name']
111
111
  end
112
112
 
113
- if attributes.key?(:'retain_repo_versions')
114
- self.retain_repo_versions = attributes[:'retain_repo_versions']
113
+ if attributes.key?(:'versions_href')
114
+ self.versions_href = attributes[:'versions_href']
115
115
  end
116
116
 
117
- if attributes.key?(:'latest_version_href')
118
- self.latest_version_href = attributes[:'latest_version_href']
117
+ if attributes.key?(:'pulp_labels')
118
+ self.pulp_labels = attributes[:'pulp_labels']
119
119
  end
120
120
  end
121
121
 
@@ -123,22 +123,22 @@ module PulpContainerClient
123
123
  # @return Array for valid properties with the reasons
124
124
  def list_invalid_properties
125
125
  invalid_properties = Array.new
126
- if @name.nil?
127
- invalid_properties.push('invalid value for "name", name cannot be nil.')
128
- end
129
-
130
126
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
131
127
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
132
128
  end
133
129
 
130
+ if @name.nil?
131
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
132
+ end
133
+
134
134
  invalid_properties
135
135
  end
136
136
 
137
137
  # Check to see if the all the properties in the model are valid
138
138
  # @return true if the model is valid
139
139
  def valid?
140
- return false if @name.nil?
141
140
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
141
+ return false if @name.nil?
142
142
  true
143
143
  end
144
144
 
@@ -157,14 +157,14 @@ module PulpContainerClient
157
157
  def ==(o)
158
158
  return true if self.equal?(o)
159
159
  self.class == o.class &&
160
- name == o.name &&
161
- pulp_labels == o.pulp_labels &&
162
- versions_href == o.versions_href &&
163
- pulp_href == o.pulp_href &&
164
160
  description == o.description &&
161
+ latest_version_href == o.latest_version_href &&
165
162
  pulp_created == o.pulp_created &&
163
+ pulp_href == o.pulp_href &&
166
164
  retain_repo_versions == o.retain_repo_versions &&
167
- latest_version_href == o.latest_version_href
165
+ name == o.name &&
166
+ versions_href == o.versions_href &&
167
+ pulp_labels == o.pulp_labels
168
168
  end
169
169
 
170
170
  # @see the `==` method
@@ -176,7 +176,7 @@ module PulpContainerClient
176
176
  # Calculates hash code according to all attributes.
177
177
  # @return [Integer] Hash code
178
178
  def hash
179
- [name, pulp_labels, versions_href, pulp_href, description, pulp_created, retain_repo_versions, latest_version_href].hash
179
+ [description, latest_version_href, pulp_created, pulp_href, retain_repo_versions, name, versions_href, pulp_labels].hash
180
180
  end
181
181
 
182
182
  # Builds the object from hash
@@ -15,17 +15,17 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class PatchedcontainerContainerDistribution
18
- # A unique name. Ex, `rawhide` and `stable`.
19
- attr_accessor :name
20
-
21
- attr_accessor :pulp_labels
22
-
23
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\")
24
19
  attr_accessor :base_path
25
20
 
26
21
  # An optional content-guard. If none is specified, a default one will be used.
27
22
  attr_accessor :content_guard
28
23
 
24
+ # A unique name. Ex, `rawhide` and `stable`.
25
+ attr_accessor :name
26
+
27
+ attr_accessor :pulp_labels
28
+
29
29
  # The latest RepositoryVersion for this Repository will be served.
30
30
  attr_accessor :repository
31
31
 
@@ -41,10 +41,10 @@ module PulpContainerClient
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
- :'name' => :'name',
45
- :'pulp_labels' => :'pulp_labels',
46
44
  :'base_path' => :'base_path',
47
45
  :'content_guard' => :'content_guard',
46
+ :'name' => :'name',
47
+ :'pulp_labels' => :'pulp_labels',
48
48
  :'repository' => :'repository',
49
49
  :'repository_version' => :'repository_version',
50
50
  :'private' => :'private',
@@ -55,10 +55,10 @@ module PulpContainerClient
55
55
  # Attribute type mapping.
56
56
  def self.openapi_types
57
57
  {
58
- :'name' => :'String',
59
- :'pulp_labels' => :'Object',
60
58
  :'base_path' => :'String',
61
59
  :'content_guard' => :'String',
60
+ :'name' => :'String',
61
+ :'pulp_labels' => :'Object',
62
62
  :'repository' => :'String',
63
63
  :'repository_version' => :'String',
64
64
  :'private' => :'Boolean',
@@ -90,14 +90,6 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
- if attributes.key?(:'name')
94
- self.name = attributes[:'name']
95
- end
96
-
97
- if attributes.key?(:'pulp_labels')
98
- self.pulp_labels = attributes[:'pulp_labels']
99
- end
100
-
101
93
  if attributes.key?(:'base_path')
102
94
  self.base_path = attributes[:'base_path']
103
95
  end
@@ -106,6 +98,14 @@ module PulpContainerClient
106
98
  self.content_guard = attributes[:'content_guard']
107
99
  end
108
100
 
101
+ if attributes.key?(:'name')
102
+ self.name = attributes[:'name']
103
+ end
104
+
105
+ if attributes.key?(:'pulp_labels')
106
+ self.pulp_labels = attributes[:'pulp_labels']
107
+ end
108
+
109
109
  if attributes.key?(:'repository')
110
110
  self.repository = attributes[:'repository']
111
111
  end
@@ -127,14 +127,14 @@ module PulpContainerClient
127
127
  # @return Array for valid properties with the reasons
128
128
  def list_invalid_properties
129
129
  invalid_properties = Array.new
130
- if !@name.nil? && @name.to_s.length < 1
131
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
132
- end
133
-
134
130
  if !@base_path.nil? && @base_path.to_s.length < 1
135
131
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
136
132
  end
137
133
 
134
+ if !@name.nil? && @name.to_s.length < 1
135
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
136
+ end
137
+
138
138
  if !@description.nil? && @description.to_s.length < 1
139
139
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
140
140
  end
@@ -145,22 +145,12 @@ module PulpContainerClient
145
145
  # Check to see if the all the properties in the model are valid
146
146
  # @return true if the model is valid
147
147
  def valid?
148
- return false if !@name.nil? && @name.to_s.length < 1
149
148
  return false if !@base_path.nil? && @base_path.to_s.length < 1
149
+ return false if !@name.nil? && @name.to_s.length < 1
150
150
  return false if !@description.nil? && @description.to_s.length < 1
151
151
  true
152
152
  end
153
153
 
154
- # Custom attribute writer method with validation
155
- # @param [Object] name Value to be assigned
156
- def name=(name)
157
- if !name.nil? && name.to_s.length < 1
158
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
159
- end
160
-
161
- @name = name
162
- end
163
-
164
154
  # Custom attribute writer method with validation
165
155
  # @param [Object] base_path Value to be assigned
166
156
  def base_path=(base_path)
@@ -171,6 +161,16 @@ module PulpContainerClient
171
161
  @base_path = base_path
172
162
  end
173
163
 
164
+ # Custom attribute writer method with validation
165
+ # @param [Object] name Value to be assigned
166
+ def name=(name)
167
+ if !name.nil? && name.to_s.length < 1
168
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
169
+ end
170
+
171
+ @name = name
172
+ end
173
+
174
174
  # Custom attribute writer method with validation
175
175
  # @param [Object] description Value to be assigned
176
176
  def description=(description)
@@ -186,10 +186,10 @@ module PulpContainerClient
186
186
  def ==(o)
187
187
  return true if self.equal?(o)
188
188
  self.class == o.class &&
189
- name == o.name &&
190
- pulp_labels == o.pulp_labels &&
191
189
  base_path == o.base_path &&
192
190
  content_guard == o.content_guard &&
191
+ name == o.name &&
192
+ pulp_labels == o.pulp_labels &&
193
193
  repository == o.repository &&
194
194
  repository_version == o.repository_version &&
195
195
  private == o.private &&
@@ -205,7 +205,7 @@ module PulpContainerClient
205
205
  # Calculates hash code according to all attributes.
206
206
  # @return [Integer] Hash code
207
207
  def hash
208
- [name, pulp_labels, base_path, content_guard, repository, repository_version, private, description].hash
208
+ [base_path, content_guard, name, pulp_labels, repository, repository_version, private, description].hash
209
209
  end
210
210
 
211
211
  # Builds the object from hash
@@ -15,34 +15,34 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- # A unique name for this repository.
19
- attr_accessor :name
20
-
21
- attr_accessor :pulp_labels
22
-
23
18
  # An optional description.
24
19
  attr_accessor :description
25
20
 
26
21
  # 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.
27
22
  attr_accessor :retain_repo_versions
28
23
 
24
+ # A unique name for this repository.
25
+ attr_accessor :name
26
+
27
+ attr_accessor :pulp_labels
28
+
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
- :'name' => :'name',
33
- :'pulp_labels' => :'pulp_labels',
34
32
  :'description' => :'description',
35
- :'retain_repo_versions' => :'retain_repo_versions'
33
+ :'retain_repo_versions' => :'retain_repo_versions',
34
+ :'name' => :'name',
35
+ :'pulp_labels' => :'pulp_labels'
36
36
  }
37
37
  end
38
38
 
39
39
  # Attribute type mapping.
40
40
  def self.openapi_types
41
41
  {
42
- :'name' => :'String',
43
- :'pulp_labels' => :'Object',
44
42
  :'description' => :'String',
45
- :'retain_repo_versions' => :'Integer'
43
+ :'retain_repo_versions' => :'Integer',
44
+ :'name' => :'String',
45
+ :'pulp_labels' => :'Object'
46
46
  }
47
47
  end
48
48
 
@@ -50,7 +50,7 @@ module PulpContainerClient
50
50
  def self.openapi_nullable
51
51
  Set.new([
52
52
  :'description',
53
- :'retain_repo_versions'
53
+ :'retain_repo_versions',
54
54
  ])
55
55
  end
56
56
 
@@ -69,14 +69,6 @@ module PulpContainerClient
69
69
  h[k.to_sym] = v
70
70
  }
71
71
 
72
- if attributes.key?(:'name')
73
- self.name = attributes[:'name']
74
- end
75
-
76
- if attributes.key?(:'pulp_labels')
77
- self.pulp_labels = attributes[:'pulp_labels']
78
- end
79
-
80
72
  if attributes.key?(:'description')
81
73
  self.description = attributes[:'description']
82
74
  end
@@ -84,16 +76,20 @@ module PulpContainerClient
84
76
  if attributes.key?(:'retain_repo_versions')
85
77
  self.retain_repo_versions = attributes[:'retain_repo_versions']
86
78
  end
79
+
80
+ if attributes.key?(:'name')
81
+ self.name = attributes[:'name']
82
+ end
83
+
84
+ if attributes.key?(:'pulp_labels')
85
+ self.pulp_labels = attributes[:'pulp_labels']
86
+ end
87
87
  end
88
88
 
89
89
  # Show invalid properties with the reasons. Usually used together with valid?
90
90
  # @return Array for valid properties with the reasons
91
91
  def list_invalid_properties
92
92
  invalid_properties = Array.new
93
- if !@name.nil? && @name.to_s.length < 1
94
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
95
- end
96
-
97
93
  if !@description.nil? && @description.to_s.length < 1
98
94
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
99
95
  end
@@ -102,28 +98,22 @@ module PulpContainerClient
102
98
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
103
99
  end
104
100
 
101
+ if !@name.nil? && @name.to_s.length < 1
102
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
103
+ end
104
+
105
105
  invalid_properties
106
106
  end
107
107
 
108
108
  # Check to see if the all the properties in the model are valid
109
109
  # @return true if the model is valid
110
110
  def valid?
111
- return false if !@name.nil? && @name.to_s.length < 1
112
111
  return false if !@description.nil? && @description.to_s.length < 1
113
112
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
113
+ return false if !@name.nil? && @name.to_s.length < 1
114
114
  true
115
115
  end
116
116
 
117
- # Custom attribute writer method with validation
118
- # @param [Object] name Value to be assigned
119
- def name=(name)
120
- if !name.nil? && name.to_s.length < 1
121
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
122
- end
123
-
124
- @name = name
125
- end
126
-
127
117
  # Custom attribute writer method with validation
128
118
  # @param [Object] description Value to be assigned
129
119
  def description=(description)
@@ -144,15 +134,25 @@ module PulpContainerClient
144
134
  @retain_repo_versions = retain_repo_versions
145
135
  end
146
136
 
137
+ # Custom attribute writer method with validation
138
+ # @param [Object] name Value to be assigned
139
+ def name=(name)
140
+ if !name.nil? && name.to_s.length < 1
141
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
142
+ end
143
+
144
+ @name = name
145
+ end
146
+
147
147
  # Checks equality by comparing each attribute.
148
148
  # @param [Object] Object to be compared
149
149
  def ==(o)
150
150
  return true if self.equal?(o)
151
151
  self.class == o.class &&
152
- name == o.name &&
153
- pulp_labels == o.pulp_labels &&
154
152
  description == o.description &&
155
- retain_repo_versions == o.retain_repo_versions
153
+ retain_repo_versions == o.retain_repo_versions &&
154
+ name == o.name &&
155
+ pulp_labels == o.pulp_labels
156
156
  end
157
157
 
158
158
  # @see the `==` method
@@ -164,7 +164,7 @@ module PulpContainerClient
164
164
  # Calculates hash code according to all attributes.
165
165
  # @return [Integer] Hash code
166
166
  def hash
167
- [name, pulp_labels, description, retain_repo_versions].hash
167
+ [description, retain_repo_versions, name, pulp_labels].hash
168
168
  end
169
169
 
170
170
  # 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.11.0.dev1639624291'
14
+ VERSION = '2.11.0.dev1640056372'
15
15
  end