pulp_container_client 2.24.5 → 2.24.7

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 +6 -6
  4. data/docs/ContainerContainerDistributionResponse.md +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +6 -6
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +6 -6
  8. data/docs/ContainerContainerPushRepositoryResponse.md +14 -14
  9. data/docs/PatchedcontainerContainerDistribution.md +6 -6
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
  11. data/docs/PatchedcontainerContainerPushRepository.md +6 -6
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +28 -28
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +51 -51
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +28 -28
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +51 -51
  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 +62 -62
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +26 -26
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +26 -26
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +42 -42
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +8 -8
  23. data/spec/models/container_container_distribution_spec.rb +4 -4
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  26. data/spec/models/container_container_push_repository_response_spec.rb +11 -11
  27. data/spec/models/container_container_push_repository_spec.rb +4 -4
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
  31. metadata +59 -59
@@ -16,28 +16,28 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepository
19
- # A unique name for this repository.
20
- attr_accessor :name
21
-
22
19
  # A reference to an associated signing service.
23
20
  attr_accessor :manifest_signing_service
24
21
 
25
- # An optional description.
26
- attr_accessor :description
22
+ attr_accessor :pulp_labels
23
+
24
+ # A unique name for this repository.
25
+ attr_accessor :name
27
26
 
28
27
  # Retain X versions of the repository. Default is null which retains all versions.
29
28
  attr_accessor :retain_repo_versions
30
29
 
31
- attr_accessor :pulp_labels
30
+ # An optional description.
31
+ attr_accessor :description
32
32
 
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
- :'name' => :'name',
37
36
  :'manifest_signing_service' => :'manifest_signing_service',
38
- :'description' => :'description',
37
+ :'pulp_labels' => :'pulp_labels',
38
+ :'name' => :'name',
39
39
  :'retain_repo_versions' => :'retain_repo_versions',
40
- :'pulp_labels' => :'pulp_labels'
40
+ :'description' => :'description'
41
41
  }
42
42
  end
43
43
 
@@ -49,11 +49,11 @@ module PulpContainerClient
49
49
  # Attribute type mapping.
50
50
  def self.openapi_types
51
51
  {
52
- :'name' => :'String',
53
52
  :'manifest_signing_service' => :'String',
54
- :'description' => :'String',
53
+ :'pulp_labels' => :'Hash<String, String>',
54
+ :'name' => :'String',
55
55
  :'retain_repo_versions' => :'Integer',
56
- :'pulp_labels' => :'Hash<String, String>'
56
+ :'description' => :'String'
57
57
  }
58
58
  end
59
59
 
@@ -61,8 +61,8 @@ module PulpContainerClient
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
63
  :'manifest_signing_service',
64
- :'description',
65
64
  :'retain_repo_versions',
65
+ :'description'
66
66
  ])
67
67
  end
68
68
 
@@ -81,28 +81,28 @@ module PulpContainerClient
81
81
  h[k.to_sym] = v
82
82
  }
83
83
 
84
- if attributes.key?(:'name')
85
- self.name = attributes[:'name']
86
- else
87
- self.name = nil
88
- end
89
-
90
84
  if attributes.key?(:'manifest_signing_service')
91
85
  self.manifest_signing_service = attributes[:'manifest_signing_service']
92
86
  end
93
87
 
94
- if attributes.key?(:'description')
95
- self.description = attributes[:'description']
88
+ if attributes.key?(:'pulp_labels')
89
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
90
+ self.pulp_labels = value
91
+ end
92
+ end
93
+
94
+ if attributes.key?(:'name')
95
+ self.name = attributes[:'name']
96
+ else
97
+ self.name = nil
96
98
  end
97
99
 
98
100
  if attributes.key?(:'retain_repo_versions')
99
101
  self.retain_repo_versions = attributes[:'retain_repo_versions']
100
102
  end
101
103
 
102
- if attributes.key?(:'pulp_labels')
103
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
104
- self.pulp_labels = value
105
- end
104
+ if attributes.key?(:'description')
105
+ self.description = attributes[:'description']
106
106
  end
107
107
  end
108
108
 
@@ -119,14 +119,14 @@ module PulpContainerClient
119
119
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
120
120
  end
121
121
 
122
- if !@description.nil? && @description.to_s.length < 1
123
- invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
124
- end
125
-
126
122
  if !@retain_repo_versions.nil? && @retain_repo_versions < 1
127
123
  invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
128
124
  end
129
125
 
126
+ if !@description.nil? && @description.to_s.length < 1
127
+ invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
128
+ end
129
+
130
130
  invalid_properties
131
131
  end
132
132
 
@@ -136,8 +136,8 @@ module PulpContainerClient
136
136
  warn '[DEPRECATED] the `valid?` method is obsolete'
137
137
  return false if @name.nil?
138
138
  return false if @name.to_s.length < 1
139
- return false if !@description.nil? && @description.to_s.length < 1
140
139
  return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
140
+ return false if !@description.nil? && @description.to_s.length < 1
141
141
  true
142
142
  end
143
143
 
@@ -155,16 +155,6 @@ module PulpContainerClient
155
155
  @name = name
156
156
  end
157
157
 
158
- # Custom attribute writer method with validation
159
- # @param [Object] description Value to be assigned
160
- def description=(description)
161
- if !description.nil? && description.to_s.length < 1
162
- fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
163
- end
164
-
165
- @description = description
166
- end
167
-
168
158
  # Custom attribute writer method with validation
169
159
  # @param [Object] retain_repo_versions Value to be assigned
170
160
  def retain_repo_versions=(retain_repo_versions)
@@ -175,16 +165,26 @@ module PulpContainerClient
175
165
  @retain_repo_versions = retain_repo_versions
176
166
  end
177
167
 
168
+ # Custom attribute writer method with validation
169
+ # @param [Object] description Value to be assigned
170
+ def description=(description)
171
+ if !description.nil? && description.to_s.length < 1
172
+ fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
173
+ end
174
+
175
+ @description = description
176
+ end
177
+
178
178
  # Checks equality by comparing each attribute.
179
179
  # @param [Object] Object to be compared
180
180
  def ==(o)
181
181
  return true if self.equal?(o)
182
182
  self.class == o.class &&
183
- name == o.name &&
184
183
  manifest_signing_service == o.manifest_signing_service &&
185
- description == o.description &&
184
+ pulp_labels == o.pulp_labels &&
185
+ name == o.name &&
186
186
  retain_repo_versions == o.retain_repo_versions &&
187
- pulp_labels == o.pulp_labels
187
+ description == o.description
188
188
  end
189
189
 
190
190
  # @see the `==` method
@@ -196,7 +196,7 @@ module PulpContainerClient
196
196
  # Calculates hash code according to all attributes.
197
197
  # @return [Integer] Hash code
198
198
  def hash
199
- [name, manifest_signing_service, description, retain_repo_versions, pulp_labels].hash
199
+ [manifest_signing_service, pulp_labels, name, retain_repo_versions, description].hash
200
200
  end
201
201
 
202
202
  # Builds the object from hash
@@ -16,49 +16,49 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepositoryResponse
19
- # A unique name for this repository.
20
- attr_accessor :name
21
-
22
19
  attr_accessor :versions_href
23
20
 
24
21
  # A reference to an associated signing service.
25
22
  attr_accessor :manifest_signing_service
26
23
 
27
- # An optional description.
28
- attr_accessor :description
29
-
30
- # The Pulp Resource Name (PRN).
31
- attr_accessor :prn
24
+ attr_accessor :pulp_labels
32
25
 
33
- # 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.
34
- attr_accessor :pulp_last_updated
26
+ attr_accessor :latest_version_href
35
27
 
36
- attr_accessor :pulp_href
28
+ # A unique name for this repository.
29
+ attr_accessor :name
37
30
 
38
- attr_accessor :latest_version_href
31
+ # Timestamp of creation.
32
+ attr_accessor :pulp_created
39
33
 
40
34
  # Retain X versions of the repository. Default is null which retains all versions.
41
35
  attr_accessor :retain_repo_versions
42
36
 
43
- # Timestamp of creation.
44
- attr_accessor :pulp_created
37
+ # 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.
38
+ attr_accessor :pulp_last_updated
45
39
 
46
- attr_accessor :pulp_labels
40
+ attr_accessor :pulp_href
41
+
42
+ # The Pulp Resource Name (PRN).
43
+ attr_accessor :prn
44
+
45
+ # An optional description.
46
+ attr_accessor :description
47
47
 
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'name' => :'name',
52
51
  :'versions_href' => :'versions_href',
53
52
  :'manifest_signing_service' => :'manifest_signing_service',
54
- :'description' => :'description',
55
- :'prn' => :'prn',
56
- :'pulp_last_updated' => :'pulp_last_updated',
57
- :'pulp_href' => :'pulp_href',
53
+ :'pulp_labels' => :'pulp_labels',
58
54
  :'latest_version_href' => :'latest_version_href',
59
- :'retain_repo_versions' => :'retain_repo_versions',
55
+ :'name' => :'name',
60
56
  :'pulp_created' => :'pulp_created',
61
- :'pulp_labels' => :'pulp_labels'
57
+ :'retain_repo_versions' => :'retain_repo_versions',
58
+ :'pulp_last_updated' => :'pulp_last_updated',
59
+ :'pulp_href' => :'pulp_href',
60
+ :'prn' => :'prn',
61
+ :'description' => :'description'
62
62
  }
63
63
  end
64
64
 
@@ -70,17 +70,17 @@ module PulpContainerClient
70
70
  # Attribute type mapping.
71
71
  def self.openapi_types
72
72
  {
73
- :'name' => :'String',
74
73
  :'versions_href' => :'String',
75
74
  :'manifest_signing_service' => :'String',
76
- :'description' => :'String',
77
- :'prn' => :'String',
78
- :'pulp_last_updated' => :'Time',
79
- :'pulp_href' => :'String',
75
+ :'pulp_labels' => :'Hash<String, String>',
80
76
  :'latest_version_href' => :'String',
81
- :'retain_repo_versions' => :'Integer',
77
+ :'name' => :'String',
82
78
  :'pulp_created' => :'Time',
83
- :'pulp_labels' => :'Hash<String, String>'
79
+ :'retain_repo_versions' => :'Integer',
80
+ :'pulp_last_updated' => :'Time',
81
+ :'pulp_href' => :'String',
82
+ :'prn' => :'String',
83
+ :'description' => :'String'
84
84
  }
85
85
  end
86
86
 
@@ -88,8 +88,8 @@ module PulpContainerClient
88
88
  def self.openapi_nullable
89
89
  Set.new([
90
90
  :'manifest_signing_service',
91
- :'description',
92
91
  :'retain_repo_versions',
92
+ :'description'
93
93
  ])
94
94
  end
95
95
 
@@ -108,12 +108,6 @@ module PulpContainerClient
108
108
  h[k.to_sym] = v
109
109
  }
110
110
 
111
- if attributes.key?(:'name')
112
- self.name = attributes[:'name']
113
- else
114
- self.name = nil
115
- end
116
-
117
111
  if attributes.key?(:'versions_href')
118
112
  self.versions_href = attributes[:'versions_href']
119
113
  end
@@ -122,38 +116,44 @@ module PulpContainerClient
122
116
  self.manifest_signing_service = attributes[:'manifest_signing_service']
123
117
  end
124
118
 
125
- if attributes.key?(:'description')
126
- self.description = attributes[:'description']
127
- end
128
-
129
- if attributes.key?(:'prn')
130
- self.prn = attributes[:'prn']
119
+ if attributes.key?(:'pulp_labels')
120
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
121
+ self.pulp_labels = value
122
+ end
131
123
  end
132
124
 
133
- if attributes.key?(:'pulp_last_updated')
134
- self.pulp_last_updated = attributes[:'pulp_last_updated']
125
+ if attributes.key?(:'latest_version_href')
126
+ self.latest_version_href = attributes[:'latest_version_href']
135
127
  end
136
128
 
137
- if attributes.key?(:'pulp_href')
138
- self.pulp_href = attributes[:'pulp_href']
129
+ if attributes.key?(:'name')
130
+ self.name = attributes[:'name']
131
+ else
132
+ self.name = nil
139
133
  end
140
134
 
141
- if attributes.key?(:'latest_version_href')
142
- self.latest_version_href = attributes[:'latest_version_href']
135
+ if attributes.key?(:'pulp_created')
136
+ self.pulp_created = attributes[:'pulp_created']
143
137
  end
144
138
 
145
139
  if attributes.key?(:'retain_repo_versions')
146
140
  self.retain_repo_versions = attributes[:'retain_repo_versions']
147
141
  end
148
142
 
149
- if attributes.key?(:'pulp_created')
150
- self.pulp_created = attributes[:'pulp_created']
143
+ if attributes.key?(:'pulp_last_updated')
144
+ self.pulp_last_updated = attributes[:'pulp_last_updated']
151
145
  end
152
146
 
153
- if attributes.key?(:'pulp_labels')
154
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
155
- self.pulp_labels = value
156
- end
147
+ if attributes.key?(:'pulp_href')
148
+ self.pulp_href = attributes[:'pulp_href']
149
+ end
150
+
151
+ if attributes.key?(:'prn')
152
+ self.prn = attributes[:'prn']
153
+ end
154
+
155
+ if attributes.key?(:'description')
156
+ self.description = attributes[:'description']
157
157
  end
158
158
  end
159
159
 
@@ -197,17 +197,17 @@ module PulpContainerClient
197
197
  def ==(o)
198
198
  return true if self.equal?(o)
199
199
  self.class == o.class &&
200
- name == o.name &&
201
200
  versions_href == o.versions_href &&
202
201
  manifest_signing_service == o.manifest_signing_service &&
203
- description == o.description &&
204
- prn == o.prn &&
205
- pulp_last_updated == o.pulp_last_updated &&
206
- pulp_href == o.pulp_href &&
202
+ pulp_labels == o.pulp_labels &&
207
203
  latest_version_href == o.latest_version_href &&
208
- retain_repo_versions == o.retain_repo_versions &&
204
+ name == o.name &&
209
205
  pulp_created == o.pulp_created &&
210
- pulp_labels == o.pulp_labels
206
+ retain_repo_versions == o.retain_repo_versions &&
207
+ pulp_last_updated == o.pulp_last_updated &&
208
+ pulp_href == o.pulp_href &&
209
+ prn == o.prn &&
210
+ description == o.description
211
211
  end
212
212
 
213
213
  # @see the `==` method
@@ -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, versions_href, manifest_signing_service, description, prn, pulp_last_updated, pulp_href, latest_version_href, retain_repo_versions, pulp_created, pulp_labels].hash
222
+ [versions_href, manifest_signing_service, pulp_labels, latest_version_href, name, pulp_created, retain_repo_versions, pulp_last_updated, pulp_href, prn, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -16,23 +16,23 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for ContainerDistribution.
18
18
  class PatchedcontainerContainerDistribution
19
- # An optional content-guard. If none is specified, a default one will be used.
20
- attr_accessor :content_guard
19
+ attr_accessor :pulp_labels
21
20
 
22
21
  # A unique name. Ex, `rawhide` and `stable`.
23
22
  attr_accessor :name
24
23
 
25
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
26
- attr_accessor :base_path
24
+ # An optional content-guard. If none is specified, a default one will be used.
25
+ attr_accessor :content_guard
27
26
 
28
27
  # The latest RepositoryVersion for this Repository will be served.
29
28
  attr_accessor :repository
30
29
 
30
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
31
+ attr_accessor :base_path
32
+
31
33
  # Whether this distribution should be shown in the content app.
32
34
  attr_accessor :hidden
33
35
 
34
- attr_accessor :pulp_labels
35
-
36
36
  # RepositoryVersion to be served
37
37
  attr_accessor :repository_version
38
38
 
@@ -45,12 +45,12 @@ module PulpContainerClient
45
45
  # Attribute mapping from ruby-style variable name to JSON key.
46
46
  def self.attribute_map
47
47
  {
48
- :'content_guard' => :'content_guard',
48
+ :'pulp_labels' => :'pulp_labels',
49
49
  :'name' => :'name',
50
- :'base_path' => :'base_path',
50
+ :'content_guard' => :'content_guard',
51
51
  :'repository' => :'repository',
52
+ :'base_path' => :'base_path',
52
53
  :'hidden' => :'hidden',
53
- :'pulp_labels' => :'pulp_labels',
54
54
  :'repository_version' => :'repository_version',
55
55
  :'private' => :'private',
56
56
  :'description' => :'description'
@@ -65,12 +65,12 @@ module PulpContainerClient
65
65
  # Attribute type mapping.
66
66
  def self.openapi_types
67
67
  {
68
- :'content_guard' => :'String',
68
+ :'pulp_labels' => :'Hash<String, String>',
69
69
  :'name' => :'String',
70
- :'base_path' => :'String',
70
+ :'content_guard' => :'String',
71
71
  :'repository' => :'String',
72
+ :'base_path' => :'String',
72
73
  :'hidden' => :'Boolean',
73
- :'pulp_labels' => :'Hash<String, String>',
74
74
  :'repository_version' => :'String',
75
75
  :'private' => :'Boolean',
76
76
  :'description' => :'String'
@@ -101,34 +101,34 @@ module PulpContainerClient
101
101
  h[k.to_sym] = v
102
102
  }
103
103
 
104
- if attributes.key?(:'content_guard')
105
- self.content_guard = attributes[:'content_guard']
104
+ if attributes.key?(:'pulp_labels')
105
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
106
+ self.pulp_labels = value
107
+ end
106
108
  end
107
109
 
108
110
  if attributes.key?(:'name')
109
111
  self.name = attributes[:'name']
110
112
  end
111
113
 
112
- if attributes.key?(:'base_path')
113
- self.base_path = attributes[:'base_path']
114
+ if attributes.key?(:'content_guard')
115
+ self.content_guard = attributes[:'content_guard']
114
116
  end
115
117
 
116
118
  if attributes.key?(:'repository')
117
119
  self.repository = attributes[:'repository']
118
120
  end
119
121
 
122
+ if attributes.key?(:'base_path')
123
+ self.base_path = attributes[:'base_path']
124
+ end
125
+
120
126
  if attributes.key?(:'hidden')
121
127
  self.hidden = attributes[:'hidden']
122
128
  else
123
129
  self.hidden = false
124
130
  end
125
131
 
126
- if attributes.key?(:'pulp_labels')
127
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
128
- self.pulp_labels = value
129
- end
130
- end
131
-
132
132
  if attributes.key?(:'repository_version')
133
133
  self.repository_version = attributes[:'repository_version']
134
134
  end
@@ -215,12 +215,12 @@ module PulpContainerClient
215
215
  def ==(o)
216
216
  return true if self.equal?(o)
217
217
  self.class == o.class &&
218
- content_guard == o.content_guard &&
218
+ pulp_labels == o.pulp_labels &&
219
219
  name == o.name &&
220
- base_path == o.base_path &&
220
+ content_guard == o.content_guard &&
221
221
  repository == o.repository &&
222
+ base_path == o.base_path &&
222
223
  hidden == o.hidden &&
223
- pulp_labels == o.pulp_labels &&
224
224
  repository_version == o.repository_version &&
225
225
  private == o.private &&
226
226
  description == o.description
@@ -235,7 +235,7 @@ module PulpContainerClient
235
235
  # Calculates hash code according to all attributes.
236
236
  # @return [Integer] Hash code
237
237
  def hash
238
- [content_guard, name, base_path, repository, hidden, pulp_labels, repository_version, private, description].hash
238
+ [pulp_labels, name, content_guard, repository, base_path, hidden, repository_version, private, description].hash
239
239
  end
240
240
 
241
241
  # Builds the object from hash
@@ -16,23 +16,23 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class PatchedcontainerContainerPullThroughDistribution
19
- # An optional content-guard. If none is specified, a default one will be used.
20
- attr_accessor :content_guard
19
+ attr_accessor :pulp_labels
21
20
 
22
21
  # A unique name. Ex, `rawhide` and `stable`.
23
22
  attr_accessor :name
24
23
 
25
- # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
26
- attr_accessor :base_path
24
+ # An optional content-guard. If none is specified, a default one will be used.
25
+ attr_accessor :content_guard
27
26
 
28
27
  # The latest RepositoryVersion for this Repository will be served.
29
28
  attr_accessor :repository
30
29
 
30
+ # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
31
+ attr_accessor :base_path
32
+
31
33
  # Whether this distribution should be shown in the content app.
32
34
  attr_accessor :hidden
33
35
 
34
- attr_accessor :pulp_labels
35
-
36
36
  # Remote that can be used to fetch content when using pull-through caching.
37
37
  attr_accessor :remote
38
38
 
@@ -48,12 +48,12 @@ module PulpContainerClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'content_guard' => :'content_guard',
51
+ :'pulp_labels' => :'pulp_labels',
52
52
  :'name' => :'name',
53
- :'base_path' => :'base_path',
53
+ :'content_guard' => :'content_guard',
54
54
  :'repository' => :'repository',
55
+ :'base_path' => :'base_path',
55
56
  :'hidden' => :'hidden',
56
- :'pulp_labels' => :'pulp_labels',
57
57
  :'remote' => :'remote',
58
58
  :'distributions' => :'distributions',
59
59
  :'private' => :'private',
@@ -69,12 +69,12 @@ module PulpContainerClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
- :'content_guard' => :'String',
72
+ :'pulp_labels' => :'Hash<String, String>',
73
73
  :'name' => :'String',
74
- :'base_path' => :'String',
74
+ :'content_guard' => :'String',
75
75
  :'repository' => :'String',
76
+ :'base_path' => :'String',
76
77
  :'hidden' => :'Boolean',
77
- :'pulp_labels' => :'Hash<String, String>',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,34 +105,34 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'content_guard')
109
- self.content_guard = attributes[:'content_guard']
108
+ if attributes.key?(:'pulp_labels')
109
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
110
+ self.pulp_labels = value
111
+ end
110
112
  end
111
113
 
112
114
  if attributes.key?(:'name')
113
115
  self.name = attributes[:'name']
114
116
  end
115
117
 
116
- if attributes.key?(:'base_path')
117
- self.base_path = attributes[:'base_path']
118
+ if attributes.key?(:'content_guard')
119
+ self.content_guard = attributes[:'content_guard']
118
120
  end
119
121
 
120
122
  if attributes.key?(:'repository')
121
123
  self.repository = attributes[:'repository']
122
124
  end
123
125
 
126
+ if attributes.key?(:'base_path')
127
+ self.base_path = attributes[:'base_path']
128
+ end
129
+
124
130
  if attributes.key?(:'hidden')
125
131
  self.hidden = attributes[:'hidden']
126
132
  else
127
133
  self.hidden = false
128
134
  end
129
135
 
130
- if attributes.key?(:'pulp_labels')
131
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
132
- self.pulp_labels = value
133
- end
134
- end
135
-
136
136
  if attributes.key?(:'remote')
137
137
  self.remote = attributes[:'remote']
138
138
  end
@@ -225,12 +225,12 @@ module PulpContainerClient
225
225
  def ==(o)
226
226
  return true if self.equal?(o)
227
227
  self.class == o.class &&
228
- content_guard == o.content_guard &&
228
+ pulp_labels == o.pulp_labels &&
229
229
  name == o.name &&
230
- base_path == o.base_path &&
230
+ content_guard == o.content_guard &&
231
231
  repository == o.repository &&
232
+ base_path == o.base_path &&
232
233
  hidden == o.hidden &&
233
- pulp_labels == o.pulp_labels &&
234
234
  remote == o.remote &&
235
235
  distributions == o.distributions &&
236
236
  private == o.private &&
@@ -246,7 +246,7 @@ module PulpContainerClient
246
246
  # Calculates hash code according to all attributes.
247
247
  # @return [Integer] Hash code
248
248
  def hash
249
- [content_guard, name, base_path, repository, hidden, pulp_labels, remote, distributions, private, description].hash
249
+ [pulp_labels, name, content_guard, repository, base_path, hidden, remote, distributions, private, description].hash
250
250
  end
251
251
 
252
252
  # Builds the object from hash