pulp_container_client 2.22.1 → 2.22.3

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 (31) 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 +7 -7
  8. data/docs/ContainerContainerPushRepositoryResponse.md +15 -15
  9. data/docs/PatchedcontainerContainerDistribution.md +7 -7
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +7 -7
  11. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +56 -56
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +54 -54
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +56 -56
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +54 -54
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +44 -44
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +60 -60
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +47 -47
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +47 -47
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +44 -44
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +11 -11
  23. data/spec/models/container_container_distribution_spec.rb +6 -6
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
  26. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  27. data/spec/models/container_container_push_repository_spec.rb +4 -4
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  31. metadata +61 -61
@@ -15,48 +15,48 @@ 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
18
+ # An optional description.
19
+ attr_accessor :description
20
20
 
21
21
  # A reference to an associated signing service.
22
22
  attr_accessor :manifest_signing_service
23
23
 
24
- # An optional description.
25
- attr_accessor :description
24
+ # A unique name for this repository.
25
+ attr_accessor :name
26
+
27
+ attr_accessor :pulp_labels
26
28
 
27
29
  # Retain X versions of the repository. Default is null which retains all versions.
28
30
  attr_accessor :retain_repo_versions
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
- :'name' => :'name',
36
- :'manifest_signing_service' => :'manifest_signing_service',
37
35
  :'description' => :'description',
38
- :'retain_repo_versions' => :'retain_repo_versions',
39
- :'pulp_labels' => :'pulp_labels'
36
+ :'manifest_signing_service' => :'manifest_signing_service',
37
+ :'name' => :'name',
38
+ :'pulp_labels' => :'pulp_labels',
39
+ :'retain_repo_versions' => :'retain_repo_versions'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'name' => :'String',
47
- :'manifest_signing_service' => :'String',
48
46
  :'description' => :'String',
49
- :'retain_repo_versions' => :'Integer',
50
- :'pulp_labels' => :'Hash<String, String>'
47
+ :'manifest_signing_service' => :'String',
48
+ :'name' => :'String',
49
+ :'pulp_labels' => :'Hash<String, String>',
50
+ :'retain_repo_versions' => :'Integer'
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
+ :'manifest_signing_service',
59
+ :'retain_repo_versions'
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?(:'name')
79
- self.name = attributes[:'name']
78
+ if attributes.key?(:'description')
79
+ self.description = attributes[:'description']
80
80
  end
81
81
 
82
82
  if attributes.key?(:'manifest_signing_service')
83
83
  self.manifest_signing_service = attributes[:'manifest_signing_service']
84
84
  end
85
85
 
86
- if attributes.key?(:'description')
87
- self.description = attributes[:'description']
88
- end
89
-
90
- if attributes.key?(:'retain_repo_versions')
91
- self.retain_repo_versions = attributes[:'retain_repo_versions']
86
+ if attributes.key?(:'name')
87
+ self.name = attributes[:'name']
92
88
  end
93
89
 
94
90
  if attributes.key?(:'pulp_labels')
@@ -96,12 +92,20 @@ module PulpContainerClient
96
92
  self.pulp_labels = value
97
93
  end
98
94
  end
95
+
96
+ if attributes.key?(:'retain_repo_versions')
97
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
98
+ end
99
99
  end
100
100
 
101
101
  # Show invalid properties with the reasons. Usually used together with valid?
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
+
105
109
  if @name.nil?
106
110
  invalid_properties.push('invalid value for "name", name cannot be nil.')
107
111
  end
@@ -110,10 +114,6 @@ module PulpContainerClient
110
114
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
111
115
  end
112
116
 
113
- if !@description.nil? && @description.to_s.length < 1
114
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
115
- end
116
-
117
117
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
118
118
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
119
119
  end
@@ -124,13 +124,23 @@ 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
127
128
  return false if @name.nil?
128
129
  return false if @name.to_s.length < 1
129
- return false if !@description.nil? && @description.to_s.length < 1
130
130
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 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
+
134
144
  # Custom attribute writer method with validation
135
145
  # @param [Object] name Value to be assigned
136
146
  def name=(name)
@@ -145,16 +155,6 @@ module PulpContainerClient
145
155
  @name = name
146
156
  end
147
157
 
148
- # Custom attribute writer method with validation
149
- # @param [Object] description Value to be assigned
150
- def description=(description)
151
- if !description.nil? && description.to_s.length < 1
152
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
153
- end
154
-
155
- @description = description
156
- end
157
-
158
158
  # Custom attribute writer method with validation
159
159
  # @param [Object] retain_repo_versions Value to be assigned
160
160
  def retain_repo_versions=(retain_repo_versions)
@@ -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
- name == o.name &&
174
- manifest_signing_service == o.manifest_signing_service &&
175
173
  description == o.description &&
176
- retain_repo_versions == o.retain_repo_versions &&
177
- pulp_labels == o.pulp_labels
174
+ manifest_signing_service == o.manifest_signing_service &&
175
+ name == o.name &&
176
+ pulp_labels == o.pulp_labels &&
177
+ retain_repo_versions == o.retain_repo_versions
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
- [name, manifest_signing_service, description, retain_repo_versions, pulp_labels].hash
189
+ [description, manifest_signing_service, name, pulp_labels, retain_repo_versions].hash
190
190
  end
191
191
 
192
192
  # Builds the object from hash
@@ -15,25 +15,21 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- attr_accessor :versions_href
18
+ attr_accessor :pulp_href
19
19
 
20
- # A unique name for this repository.
21
- attr_accessor :name
20
+ attr_accessor :latest_version_href
22
21
 
23
- # A reference to an associated signing service.
24
- attr_accessor :manifest_signing_service
22
+ # 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.
23
+ attr_accessor :pulp_last_updated
25
24
 
26
25
  # An optional description.
27
26
  attr_accessor :description
28
27
 
29
- # Retain X versions of the repository. Default is null which retains all versions.
30
- attr_accessor :retain_repo_versions
31
-
32
- attr_accessor :pulp_labels
33
-
34
- attr_accessor :pulp_href
28
+ # A reference to an associated signing service.
29
+ attr_accessor :manifest_signing_service
35
30
 
36
- attr_accessor :latest_version_href
31
+ # A unique name for this repository.
32
+ attr_accessor :name
37
33
 
38
34
  # Timestamp of creation.
39
35
  attr_accessor :pulp_created
@@ -41,49 +37,53 @@ module PulpContainerClient
41
37
  # The Pulp Resource Name (PRN).
42
38
  attr_accessor :prn
43
39
 
44
- # 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.
45
- attr_accessor :pulp_last_updated
40
+ attr_accessor :versions_href
41
+
42
+ attr_accessor :pulp_labels
43
+
44
+ # Retain X versions of the repository. Default is null which retains all versions.
45
+ attr_accessor :retain_repo_versions
46
46
 
47
47
  # Attribute mapping from ruby-style variable name to JSON key.
48
48
  def self.attribute_map
49
49
  {
50
- :'versions_href' => :'versions_href',
51
- :'name' => :'name',
52
- :'manifest_signing_service' => :'manifest_signing_service',
53
- :'description' => :'description',
54
- :'retain_repo_versions' => :'retain_repo_versions',
55
- :'pulp_labels' => :'pulp_labels',
56
50
  :'pulp_href' => :'pulp_href',
57
51
  :'latest_version_href' => :'latest_version_href',
52
+ :'pulp_last_updated' => :'pulp_last_updated',
53
+ :'description' => :'description',
54
+ :'manifest_signing_service' => :'manifest_signing_service',
55
+ :'name' => :'name',
58
56
  :'pulp_created' => :'pulp_created',
59
57
  :'prn' => :'prn',
60
- :'pulp_last_updated' => :'pulp_last_updated'
58
+ :'versions_href' => :'versions_href',
59
+ :'pulp_labels' => :'pulp_labels',
60
+ :'retain_repo_versions' => :'retain_repo_versions'
61
61
  }
62
62
  end
63
63
 
64
64
  # Attribute type mapping.
65
65
  def self.openapi_types
66
66
  {
67
- :'versions_href' => :'String',
68
- :'name' => :'String',
69
- :'manifest_signing_service' => :'String',
70
- :'description' => :'String',
71
- :'retain_repo_versions' => :'Integer',
72
- :'pulp_labels' => :'Hash<String, String>',
73
67
  :'pulp_href' => :'String',
74
68
  :'latest_version_href' => :'String',
69
+ :'pulp_last_updated' => :'DateTime',
70
+ :'description' => :'String',
71
+ :'manifest_signing_service' => :'String',
72
+ :'name' => :'String',
75
73
  :'pulp_created' => :'DateTime',
76
74
  :'prn' => :'String',
77
- :'pulp_last_updated' => :'DateTime'
75
+ :'versions_href' => :'String',
76
+ :'pulp_labels' => :'Hash<String, String>',
77
+ :'retain_repo_versions' => :'Integer'
78
78
  }
79
79
  end
80
80
 
81
81
  # List of attributes with nullable: true
82
82
  def self.openapi_nullable
83
83
  Set.new([
84
- :'manifest_signing_service',
85
84
  :'description',
86
- :'retain_repo_versions',
85
+ :'manifest_signing_service',
86
+ :'retain_repo_versions'
87
87
  ])
88
88
  end
89
89
 
@@ -102,38 +102,28 @@ module PulpContainerClient
102
102
  h[k.to_sym] = v
103
103
  }
104
104
 
105
- if attributes.key?(:'versions_href')
106
- self.versions_href = attributes[:'versions_href']
105
+ if attributes.key?(:'pulp_href')
106
+ self.pulp_href = attributes[:'pulp_href']
107
107
  end
108
108
 
109
- if attributes.key?(:'name')
110
- self.name = attributes[:'name']
109
+ if attributes.key?(:'latest_version_href')
110
+ self.latest_version_href = attributes[:'latest_version_href']
111
111
  end
112
112
 
113
- if attributes.key?(:'manifest_signing_service')
114
- self.manifest_signing_service = attributes[:'manifest_signing_service']
113
+ if attributes.key?(:'pulp_last_updated')
114
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
115
115
  end
116
116
 
117
117
  if attributes.key?(:'description')
118
118
  self.description = attributes[:'description']
119
119
  end
120
120
 
121
- if attributes.key?(:'retain_repo_versions')
122
- self.retain_repo_versions = attributes[:'retain_repo_versions']
123
- end
124
-
125
- if attributes.key?(:'pulp_labels')
126
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
127
- self.pulp_labels = value
128
- end
129
- end
130
-
131
- if attributes.key?(:'pulp_href')
132
- self.pulp_href = attributes[:'pulp_href']
121
+ if attributes.key?(:'manifest_signing_service')
122
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
133
123
  end
134
124
 
135
- if attributes.key?(:'latest_version_href')
136
- self.latest_version_href = attributes[:'latest_version_href']
125
+ if attributes.key?(:'name')
126
+ self.name = attributes[:'name']
137
127
  end
138
128
 
139
129
  if attributes.key?(:'pulp_created')
@@ -144,8 +134,18 @@ module PulpContainerClient
144
134
  self.prn = attributes[:'prn']
145
135
  end
146
136
 
147
- if attributes.key?(:'pulp_last_updated')
148
- self.pulp_last_updated = attributes[:'pulp_last_updated']
137
+ if attributes.key?(:'versions_href')
138
+ self.versions_href = attributes[:'versions_href']
139
+ end
140
+
141
+ if attributes.key?(:'pulp_labels')
142
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
143
+ self.pulp_labels = value
144
+ end
145
+ end
146
+
147
+ if attributes.key?(:'retain_repo_versions')
148
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
149
149
  end
150
150
  end
151
151
 
@@ -187,17 +187,17 @@ module PulpContainerClient
187
187
  def ==(o)
188
188
  return true if self.equal?(o)
189
189
  self.class == o.class &&
190
- versions_href == o.versions_href &&
191
- name == o.name &&
192
- manifest_signing_service == o.manifest_signing_service &&
193
- description == o.description &&
194
- retain_repo_versions == o.retain_repo_versions &&
195
- pulp_labels == o.pulp_labels &&
196
190
  pulp_href == o.pulp_href &&
197
191
  latest_version_href == o.latest_version_href &&
192
+ pulp_last_updated == o.pulp_last_updated &&
193
+ description == o.description &&
194
+ manifest_signing_service == o.manifest_signing_service &&
195
+ name == o.name &&
198
196
  pulp_created == o.pulp_created &&
199
197
  prn == o.prn &&
200
- pulp_last_updated == o.pulp_last_updated
198
+ versions_href == o.versions_href &&
199
+ pulp_labels == o.pulp_labels &&
200
+ retain_repo_versions == o.retain_repo_versions
201
201
  end
202
202
 
203
203
  # @see the `==` method
@@ -209,7 +209,7 @@ module PulpContainerClient
209
209
  # Calculates hash code according to all attributes.
210
210
  # @return [Integer] Hash code
211
211
  def hash
212
- [versions_href, name, manifest_signing_service, description, retain_repo_versions, pulp_labels, pulp_href, latest_version_href, pulp_created, prn, pulp_last_updated].hash
212
+ [pulp_href, latest_version_href, pulp_last_updated, description, manifest_signing_service, name, pulp_created, prn, versions_href, pulp_labels, retain_repo_versions].hash
213
213
  end
214
214
 
215
215
  # Builds the object from hash
@@ -15,23 +15,23 @@ 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
- # The latest RepositoryVersion for this Repository will be served.
22
- attr_accessor :repository
23
-
24
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\")
25
19
  attr_accessor :base_path
26
20
 
27
- attr_accessor :pulp_labels
28
-
29
21
  # An optional content-guard. If none is specified, a default one will be used.
30
22
  attr_accessor :content_guard
31
23
 
24
+ # A unique name. Ex, `rawhide` and `stable`.
25
+ attr_accessor :name
26
+
32
27
  # Whether this distribution should be shown in the content app.
33
28
  attr_accessor :hidden
34
29
 
30
+ # The latest RepositoryVersion for this Repository will be served.
31
+ attr_accessor :repository
32
+
33
+ attr_accessor :pulp_labels
34
+
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
37
37
 
@@ -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
- :'name' => :'name',
48
- :'repository' => :'repository',
49
47
  :'base_path' => :'base_path',
50
- :'pulp_labels' => :'pulp_labels',
51
48
  :'content_guard' => :'content_guard',
49
+ :'name' => :'name',
52
50
  :'hidden' => :'hidden',
51
+ :'repository' => :'repository',
52
+ :'pulp_labels' => :'pulp_labels',
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
- :'name' => :'String',
63
- :'repository' => :'String',
64
62
  :'base_path' => :'String',
65
- :'pulp_labels' => :'Hash<String, String>',
66
63
  :'content_guard' => :'String',
64
+ :'name' => :'String',
67
65
  :'hidden' => :'Boolean',
66
+ :'repository' => :'String',
67
+ :'pulp_labels' => :'Hash<String, String>',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -95,34 +95,34 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
- if attributes.key?(:'name')
99
- self.name = attributes[:'name']
100
- end
101
-
102
- if attributes.key?(:'repository')
103
- self.repository = attributes[:'repository']
104
- end
105
-
106
98
  if attributes.key?(:'base_path')
107
99
  self.base_path = attributes[:'base_path']
108
100
  end
109
101
 
110
- if attributes.key?(:'pulp_labels')
111
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
112
- self.pulp_labels = value
113
- end
114
- end
115
-
116
102
  if attributes.key?(:'content_guard')
117
103
  self.content_guard = attributes[:'content_guard']
118
104
  end
119
105
 
106
+ if attributes.key?(:'name')
107
+ self.name = attributes[:'name']
108
+ end
109
+
120
110
  if attributes.key?(:'hidden')
121
111
  self.hidden = attributes[:'hidden']
122
112
  else
123
113
  self.hidden = false
124
114
  end
125
115
 
116
+ if attributes.key?(:'repository')
117
+ self.repository = attributes[:'repository']
118
+ end
119
+
120
+ if attributes.key?(:'pulp_labels')
121
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
122
+ self.pulp_labels = value
123
+ end
124
+ end
125
+
126
126
  if attributes.key?(:'repository_version')
127
127
  self.repository_version = attributes[:'repository_version']
128
128
  end
@@ -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
- name == o.name &&
203
- repository == o.repository &&
204
202
  base_path == o.base_path &&
205
- pulp_labels == o.pulp_labels &&
206
203
  content_guard == o.content_guard &&
204
+ name == o.name &&
207
205
  hidden == o.hidden &&
206
+ repository == o.repository &&
207
+ pulp_labels == o.pulp_labels &&
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
- [name, repository, base_path, pulp_labels, content_guard, hidden, repository_version, private, description].hash
222
+ [base_path, content_guard, name, hidden, repository, pulp_labels, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash