pulp_container_client 2.20.6 → 2.20.8

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 (94) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -6
  3. data/docs/ContainerContainerDistribution.md +8 -8
  4. data/docs/ContainerContainerDistributionResponse.md +10 -10
  5. data/docs/ContainerContainerPullThroughDistribution.md +8 -8
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +10 -10
  7. data/docs/ContainerContainerPullThroughRemote.md +1 -1
  8. data/docs/ContainerContainerPullThroughRemoteResponse.md +1 -1
  9. data/docs/ContainerContainerPushRepository.md +7 -7
  10. data/docs/ContainerContainerPushRepositoryResponse.md +13 -13
  11. data/docs/ContainerContainerRemote.md +1 -1
  12. data/docs/ContainerContainerRemoteResponse.md +1 -1
  13. data/docs/ContentBlobsApi.md +4 -0
  14. data/docs/ContentManifestsApi.md +4 -0
  15. data/docs/ContentSignaturesApi.md +4 -0
  16. data/docs/ContentTagsApi.md +4 -0
  17. data/docs/DistributionsContainerApi.md +56 -16
  18. data/docs/DistributionsPullThroughApi.md +56 -16
  19. data/docs/OCIBuildImage.md +1 -1
  20. data/docs/PatchedcontainerContainerDistribution.md +8 -8
  21. data/docs/PatchedcontainerContainerPullThroughDistribution.md +8 -8
  22. data/docs/PatchedcontainerContainerPullThroughRemote.md +1 -1
  23. data/docs/PatchedcontainerContainerPushRepository.md +7 -7
  24. data/docs/PatchedcontainerContainerRemote.md +1 -1
  25. data/docs/{Policy762Enum.md → Policy692Enum.md} +2 -2
  26. data/docs/{Policy8e2Enum.md → Policy7e0Enum.md} +2 -2
  27. data/docs/PulpContainerNamespacesApi.md +32 -8
  28. data/docs/RemotesContainerApi.md +56 -16
  29. data/docs/RemotesPullThroughApi.md +56 -16
  30. data/docs/RepositoriesContainerApi.md +108 -34
  31. data/docs/RepositoriesContainerPushApi.md +62 -18
  32. data/docs/RepositoriesContainerPushVersionsApi.md +16 -4
  33. data/docs/RepositoriesContainerVersionsApi.md +16 -4
  34. data/docs/TokenApi.md +13 -3
  35. data/lib/pulp_container_client/api/content_blobs_api.rb +6 -0
  36. data/lib/pulp_container_client/api/content_manifests_api.rb +6 -0
  37. data/lib/pulp_container_client/api/content_signatures_api.rb +6 -0
  38. data/lib/pulp_container_client/api/content_tags_api.rb +6 -0
  39. data/lib/pulp_container_client/api/distributions_container_api.rb +36 -0
  40. data/lib/pulp_container_client/api/distributions_pull_through_api.rb +36 -0
  41. data/lib/pulp_container_client/api/pulp_container_namespaces_api.rb +24 -0
  42. data/lib/pulp_container_client/api/remotes_container_api.rb +36 -0
  43. data/lib/pulp_container_client/api/remotes_pull_through_api.rb +36 -0
  44. data/lib/pulp_container_client/api/repositories_container_api.rb +65 -2
  45. data/lib/pulp_container_client/api/repositories_container_push_api.rb +39 -0
  46. data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +12 -0
  47. data/lib/pulp_container_client/api/repositories_container_versions_api.rb +12 -0
  48. data/lib/pulp_container_client/api/token_api.rb +9 -0
  49. data/lib/pulp_container_client/models/container_container_distribution.rb +56 -56
  50. data/lib/pulp_container_client/models/container_container_distribution_response.rb +50 -50
  51. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +56 -56
  52. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +50 -50
  53. data/lib/pulp_container_client/models/container_container_pull_through_remote.rb +1 -1
  54. data/lib/pulp_container_client/models/container_container_pull_through_remote_response.rb +1 -1
  55. data/lib/pulp_container_client/models/container_container_push_repository.rb +54 -54
  56. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +57 -57
  57. data/lib/pulp_container_client/models/container_container_remote.rb +1 -1
  58. data/lib/pulp_container_client/models/container_container_remote_response.rb +1 -1
  59. data/lib/pulp_container_client/models/oci_build_image.rb +1 -1
  60. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +47 -47
  61. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +47 -47
  62. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_remote.rb +1 -1
  63. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +46 -46
  64. data/lib/pulp_container_client/models/patchedcontainer_container_remote.rb +1 -1
  65. data/lib/pulp_container_client/models/{policy762_enum.rb → policy692_enum.rb} +3 -3
  66. data/lib/pulp_container_client/models/{policy8e2_enum.rb → policy7e0_enum.rb} +3 -3
  67. data/lib/pulp_container_client/version.rb +1 -1
  68. data/lib/pulp_container_client.rb +2 -2
  69. data/spec/api/content_blobs_api_spec.rb +2 -0
  70. data/spec/api/content_manifests_api_spec.rb +2 -0
  71. data/spec/api/content_signatures_api_spec.rb +2 -0
  72. data/spec/api/content_tags_api_spec.rb +2 -0
  73. data/spec/api/distributions_container_api_spec.rb +12 -0
  74. data/spec/api/distributions_pull_through_api_spec.rb +12 -0
  75. data/spec/api/pulp_container_namespaces_api_spec.rb +8 -0
  76. data/spec/api/remotes_container_api_spec.rb +12 -0
  77. data/spec/api/remotes_pull_through_api_spec.rb +12 -0
  78. data/spec/api/repositories_container_api_spec.rb +22 -1
  79. data/spec/api/repositories_container_push_api_spec.rb +13 -0
  80. data/spec/api/repositories_container_push_versions_api_spec.rb +4 -0
  81. data/spec/api/repositories_container_versions_api_spec.rb +4 -0
  82. data/spec/api/token_api_spec.rb +3 -0
  83. data/spec/models/container_container_distribution_response_spec.rb +8 -8
  84. data/spec/models/container_container_distribution_spec.rb +4 -4
  85. data/spec/models/container_container_pull_through_distribution_response_spec.rb +8 -8
  86. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  87. data/spec/models/container_container_push_repository_response_spec.rb +10 -10
  88. data/spec/models/container_container_push_repository_spec.rb +5 -5
  89. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  90. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  91. data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
  92. data/spec/models/{policy762_enum_spec.rb → policy692_enum_spec.rb} +6 -6
  93. data/spec/models/{policy8e2_enum_spec.rb → policy7e0_enum_spec.rb} +6 -6
  94. metadata +66 -66
@@ -15,11 +15,10 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class ContainerContainerDistribution
18
- # An optional content-guard. If none is specified, a default one will be used.
19
- attr_accessor :content_guard
18
+ # Whether this distribution should be shown in the content app.
19
+ attr_accessor :hidden
20
20
 
21
- # A unique name. Ex, `rawhide` and `stable`.
22
- attr_accessor :name
21
+ attr_accessor :pulp_labels
23
22
 
24
23
  # The latest RepositoryVersion for this Repository will be served.
25
24
  attr_accessor :repository
@@ -27,10 +26,11 @@ module PulpContainerClient
27
26
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
28
27
  attr_accessor :base_path
29
28
 
30
- # Whether this distribution should be shown in the content app.
31
- attr_accessor :hidden
29
+ # A unique name. Ex, `rawhide` and `stable`.
30
+ attr_accessor :name
32
31
 
33
- attr_accessor :pulp_labels
32
+ # An optional content-guard. If none is specified, a default one will be used.
33
+ attr_accessor :content_guard
34
34
 
35
35
  # RepositoryVersion to be served
36
36
  attr_accessor :repository_version
@@ -44,12 +44,12 @@ module PulpContainerClient
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
- :'content_guard' => :'content_guard',
48
- :'name' => :'name',
49
- :'repository' => :'repository',
50
- :'base_path' => :'base_path',
51
47
  :'hidden' => :'hidden',
52
48
  :'pulp_labels' => :'pulp_labels',
49
+ :'repository' => :'repository',
50
+ :'base_path' => :'base_path',
51
+ :'name' => :'name',
52
+ :'content_guard' => :'content_guard',
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
- :'content_guard' => :'String',
63
- :'name' => :'String',
64
- :'repository' => :'String',
65
- :'base_path' => :'String',
66
62
  :'hidden' => :'Boolean',
67
63
  :'pulp_labels' => :'Hash<String, String>',
64
+ :'repository' => :'String',
65
+ :'base_path' => :'String',
66
+ :'name' => :'String',
67
+ :'content_guard' => :'String',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
70
70
  :'description' => :'String'
@@ -95,12 +95,16 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
- if attributes.key?(:'content_guard')
99
- self.content_guard = attributes[:'content_guard']
98
+ if attributes.key?(:'hidden')
99
+ self.hidden = attributes[:'hidden']
100
+ else
101
+ self.hidden = false
100
102
  end
101
103
 
102
- if attributes.key?(:'name')
103
- self.name = attributes[:'name']
104
+ if attributes.key?(:'pulp_labels')
105
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
106
+ self.pulp_labels = value
107
+ end
104
108
  end
105
109
 
106
110
  if attributes.key?(:'repository')
@@ -111,16 +115,12 @@ module PulpContainerClient
111
115
  self.base_path = attributes[:'base_path']
112
116
  end
113
117
 
114
- if attributes.key?(:'hidden')
115
- self.hidden = attributes[:'hidden']
116
- else
117
- self.hidden = false
118
+ if attributes.key?(:'name')
119
+ self.name = attributes[:'name']
118
120
  end
119
121
 
120
- if attributes.key?(:'pulp_labels')
121
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
122
- self.pulp_labels = value
123
- end
122
+ if attributes.key?(:'content_guard')
123
+ self.content_guard = attributes[:'content_guard']
124
124
  end
125
125
 
126
126
  if attributes.key?(:'repository_version')
@@ -140,14 +140,6 @@ 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?
144
- invalid_properties.push('invalid value for "name", name cannot be nil.')
145
- end
146
-
147
- if @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
143
  if @base_path.nil?
152
144
  invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
153
145
  end
@@ -156,6 +148,14 @@ module PulpContainerClient
156
148
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
157
149
  end
158
150
 
151
+ if @name.nil?
152
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
153
+ end
154
+
155
+ if @name.to_s.length < 1
156
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
157
+ end
158
+
159
159
  if !@description.nil? && @description.to_s.length < 1
160
160
  invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
161
161
  end
@@ -166,28 +166,14 @@ module PulpContainerClient
166
166
  # Check to see if the all the properties in the model are valid
167
167
  # @return true if the model is valid
168
168
  def valid?
169
- return false if @name.nil?
170
- return false if @name.to_s.length < 1
171
169
  return false if @base_path.nil?
172
170
  return false if @base_path.to_s.length < 1
171
+ return false if @name.nil?
172
+ return false if @name.to_s.length < 1
173
173
  return false if !@description.nil? && @description.to_s.length < 1
174
174
  true
175
175
  end
176
176
 
177
- # Custom attribute writer method with validation
178
- # @param [Object] name Value to be assigned
179
- def name=(name)
180
- if name.nil?
181
- fail ArgumentError, 'name cannot be nil'
182
- end
183
-
184
- if name.to_s.length < 1
185
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
186
- end
187
-
188
- @name = name
189
- end
190
-
191
177
  # Custom attribute writer method with validation
192
178
  # @param [Object] base_path Value to be assigned
193
179
  def base_path=(base_path)
@@ -202,6 +188,20 @@ module PulpContainerClient
202
188
  @base_path = base_path
203
189
  end
204
190
 
191
+ # Custom attribute writer method with validation
192
+ # @param [Object] name Value to be assigned
193
+ def name=(name)
194
+ if name.nil?
195
+ fail ArgumentError, 'name cannot be nil'
196
+ end
197
+
198
+ if name.to_s.length < 1
199
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
200
+ end
201
+
202
+ @name = name
203
+ end
204
+
205
205
  # Custom attribute writer method with validation
206
206
  # @param [Object] description Value to be assigned
207
207
  def description=(description)
@@ -217,12 +217,12 @@ module PulpContainerClient
217
217
  def ==(o)
218
218
  return true if self.equal?(o)
219
219
  self.class == o.class &&
220
- content_guard == o.content_guard &&
221
- name == o.name &&
222
- repository == o.repository &&
223
- base_path == o.base_path &&
224
220
  hidden == o.hidden &&
225
221
  pulp_labels == o.pulp_labels &&
222
+ repository == o.repository &&
223
+ base_path == o.base_path &&
224
+ name == o.name &&
225
+ content_guard == o.content_guard &&
226
226
  repository_version == o.repository_version &&
227
227
  private == o.private &&
228
228
  description == o.description
@@ -237,7 +237,7 @@ module PulpContainerClient
237
237
  # Calculates hash code according to all attributes.
238
238
  # @return [Integer] Hash code
239
239
  def hash
240
- [content_guard, name, repository, base_path, hidden, pulp_labels, repository_version, private, description].hash
240
+ [hidden, pulp_labels, repository, base_path, name, content_guard, repository_version, private, description].hash
241
241
  end
242
242
 
243
243
  # Builds the object from hash
@@ -15,14 +15,16 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for ContainerDistribution.
17
17
  class ContainerContainerDistributionResponse
18
- # An optional content-guard. If none is specified, a default one will be used.
19
- attr_accessor :content_guard
18
+ # Whether this distribution should be shown in the content app.
19
+ attr_accessor :hidden
20
20
 
21
21
  # 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.
22
22
  attr_accessor :pulp_last_updated
23
23
 
24
- # A unique name. Ex, `rawhide` and `stable`.
25
- attr_accessor :name
24
+ # Timestamp of creation.
25
+ attr_accessor :pulp_created
26
+
27
+ attr_accessor :pulp_labels
26
28
 
27
29
  # The latest RepositoryVersion for this Repository will be served.
28
30
  attr_accessor :repository
@@ -30,15 +32,13 @@ module PulpContainerClient
30
32
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
31
33
  attr_accessor :base_path
32
34
 
33
- # Whether this distribution should be shown in the content app.
34
- attr_accessor :hidden
35
-
36
- # Timestamp of creation.
37
- attr_accessor :pulp_created
38
-
39
35
  attr_accessor :pulp_href
40
36
 
41
- attr_accessor :pulp_labels
37
+ # A unique name. Ex, `rawhide` and `stable`.
38
+ attr_accessor :name
39
+
40
+ # An optional content-guard. If none is specified, a default one will be used.
41
+ attr_accessor :content_guard
42
42
 
43
43
  # RepositoryVersion to be served
44
44
  attr_accessor :repository_version
@@ -61,15 +61,15 @@ module PulpContainerClient
61
61
  # Attribute mapping from ruby-style variable name to JSON key.
62
62
  def self.attribute_map
63
63
  {
64
- :'content_guard' => :'content_guard',
64
+ :'hidden' => :'hidden',
65
65
  :'pulp_last_updated' => :'pulp_last_updated',
66
- :'name' => :'name',
66
+ :'pulp_created' => :'pulp_created',
67
+ :'pulp_labels' => :'pulp_labels',
67
68
  :'repository' => :'repository',
68
69
  :'base_path' => :'base_path',
69
- :'hidden' => :'hidden',
70
- :'pulp_created' => :'pulp_created',
71
70
  :'pulp_href' => :'pulp_href',
72
- :'pulp_labels' => :'pulp_labels',
71
+ :'name' => :'name',
72
+ :'content_guard' => :'content_guard',
73
73
  :'repository_version' => :'repository_version',
74
74
  :'registry_path' => :'registry_path',
75
75
  :'remote' => :'remote',
@@ -82,15 +82,15 @@ module PulpContainerClient
82
82
  # Attribute type mapping.
83
83
  def self.openapi_types
84
84
  {
85
- :'content_guard' => :'String',
85
+ :'hidden' => :'Boolean',
86
86
  :'pulp_last_updated' => :'DateTime',
87
- :'name' => :'String',
87
+ :'pulp_created' => :'DateTime',
88
+ :'pulp_labels' => :'Hash<String, String>',
88
89
  :'repository' => :'String',
89
90
  :'base_path' => :'String',
90
- :'hidden' => :'Boolean',
91
- :'pulp_created' => :'DateTime',
92
91
  :'pulp_href' => :'String',
93
- :'pulp_labels' => :'Hash<String, String>',
92
+ :'name' => :'String',
93
+ :'content_guard' => :'String',
94
94
  :'repository_version' => :'String',
95
95
  :'registry_path' => :'String',
96
96
  :'remote' => :'String',
@@ -124,16 +124,24 @@ module PulpContainerClient
124
124
  h[k.to_sym] = v
125
125
  }
126
126
 
127
- if attributes.key?(:'content_guard')
128
- self.content_guard = attributes[:'content_guard']
127
+ if attributes.key?(:'hidden')
128
+ self.hidden = attributes[:'hidden']
129
+ else
130
+ self.hidden = false
129
131
  end
130
132
 
131
133
  if attributes.key?(:'pulp_last_updated')
132
134
  self.pulp_last_updated = attributes[:'pulp_last_updated']
133
135
  end
134
136
 
135
- if attributes.key?(:'name')
136
- self.name = attributes[:'name']
137
+ if attributes.key?(:'pulp_created')
138
+ self.pulp_created = attributes[:'pulp_created']
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
137
145
  end
138
146
 
139
147
  if attributes.key?(:'repository')
@@ -144,24 +152,16 @@ module PulpContainerClient
144
152
  self.base_path = attributes[:'base_path']
145
153
  end
146
154
 
147
- if attributes.key?(:'hidden')
148
- self.hidden = attributes[:'hidden']
149
- else
150
- self.hidden = false
151
- end
152
-
153
- if attributes.key?(:'pulp_created')
154
- self.pulp_created = attributes[:'pulp_created']
155
- end
156
-
157
155
  if attributes.key?(:'pulp_href')
158
156
  self.pulp_href = attributes[:'pulp_href']
159
157
  end
160
158
 
161
- if attributes.key?(:'pulp_labels')
162
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
163
- self.pulp_labels = value
164
- end
159
+ if attributes.key?(:'name')
160
+ self.name = attributes[:'name']
161
+ end
162
+
163
+ if attributes.key?(:'content_guard')
164
+ self.content_guard = attributes[:'content_guard']
165
165
  end
166
166
 
167
167
  if attributes.key?(:'repository_version')
@@ -193,22 +193,22 @@ module PulpContainerClient
193
193
  # @return Array for valid properties with the reasons
194
194
  def list_invalid_properties
195
195
  invalid_properties = Array.new
196
- if @name.nil?
197
- invalid_properties.push('invalid value for "name", name cannot be nil.')
198
- end
199
-
200
196
  if @base_path.nil?
201
197
  invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
202
198
  end
203
199
 
200
+ if @name.nil?
201
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
202
+ end
203
+
204
204
  invalid_properties
205
205
  end
206
206
 
207
207
  # Check to see if the all the properties in the model are valid
208
208
  # @return true if the model is valid
209
209
  def valid?
210
- return false if @name.nil?
211
210
  return false if @base_path.nil?
211
+ return false if @name.nil?
212
212
  true
213
213
  end
214
214
 
@@ -217,15 +217,15 @@ module PulpContainerClient
217
217
  def ==(o)
218
218
  return true if self.equal?(o)
219
219
  self.class == o.class &&
220
- content_guard == o.content_guard &&
220
+ hidden == o.hidden &&
221
221
  pulp_last_updated == o.pulp_last_updated &&
222
- name == o.name &&
222
+ pulp_created == o.pulp_created &&
223
+ pulp_labels == o.pulp_labels &&
223
224
  repository == o.repository &&
224
225
  base_path == o.base_path &&
225
- hidden == o.hidden &&
226
- pulp_created == o.pulp_created &&
227
226
  pulp_href == o.pulp_href &&
228
- pulp_labels == o.pulp_labels &&
227
+ name == o.name &&
228
+ content_guard == o.content_guard &&
229
229
  repository_version == o.repository_version &&
230
230
  registry_path == o.registry_path &&
231
231
  remote == o.remote &&
@@ -243,7 +243,7 @@ module PulpContainerClient
243
243
  # Calculates hash code according to all attributes.
244
244
  # @return [Integer] Hash code
245
245
  def hash
246
- [content_guard, pulp_last_updated, name, repository, base_path, hidden, pulp_created, pulp_href, pulp_labels, repository_version, registry_path, remote, namespace, private, description].hash
246
+ [hidden, pulp_last_updated, pulp_created, pulp_labels, repository, base_path, pulp_href, name, content_guard, repository_version, registry_path, remote, namespace, private, description].hash
247
247
  end
248
248
 
249
249
  # Builds the object from hash
@@ -15,11 +15,10 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
17
17
  class ContainerContainerPullThroughDistribution
18
- # An optional content-guard. If none is specified, a default one will be used.
19
- attr_accessor :content_guard
18
+ # Whether this distribution should be shown in the content app.
19
+ attr_accessor :hidden
20
20
 
21
- # A unique name. Ex, `rawhide` and `stable`.
22
- attr_accessor :name
21
+ attr_accessor :pulp_labels
23
22
 
24
23
  # The latest RepositoryVersion for this Repository will be served.
25
24
  attr_accessor :repository
@@ -27,10 +26,11 @@ module PulpContainerClient
27
26
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
28
27
  attr_accessor :base_path
29
28
 
30
- # Whether this distribution should be shown in the content app.
31
- attr_accessor :hidden
29
+ # A unique name. Ex, `rawhide` and `stable`.
30
+ attr_accessor :name
32
31
 
33
- attr_accessor :pulp_labels
32
+ # An optional content-guard. If none is specified, a default one will be used.
33
+ attr_accessor :content_guard
34
34
 
35
35
  # Remote that can be used to fetch content when using pull-through caching.
36
36
  attr_accessor :remote
@@ -47,12 +47,12 @@ module PulpContainerClient
47
47
  # Attribute mapping from ruby-style variable name to JSON key.
48
48
  def self.attribute_map
49
49
  {
50
- :'content_guard' => :'content_guard',
51
- :'name' => :'name',
52
- :'repository' => :'repository',
53
- :'base_path' => :'base_path',
54
50
  :'hidden' => :'hidden',
55
51
  :'pulp_labels' => :'pulp_labels',
52
+ :'repository' => :'repository',
53
+ :'base_path' => :'base_path',
54
+ :'name' => :'name',
55
+ :'content_guard' => :'content_guard',
56
56
  :'remote' => :'remote',
57
57
  :'distributions' => :'distributions',
58
58
  :'private' => :'private',
@@ -63,12 +63,12 @@ module PulpContainerClient
63
63
  # Attribute type mapping.
64
64
  def self.openapi_types
65
65
  {
66
- :'content_guard' => :'String',
67
- :'name' => :'String',
68
- :'repository' => :'String',
69
- :'base_path' => :'String',
70
66
  :'hidden' => :'Boolean',
71
67
  :'pulp_labels' => :'Hash<String, String>',
68
+ :'repository' => :'String',
69
+ :'base_path' => :'String',
70
+ :'name' => :'String',
71
+ :'content_guard' => :'String',
72
72
  :'remote' => :'String',
73
73
  :'distributions' => :'Array<String>',
74
74
  :'private' => :'Boolean',
@@ -99,12 +99,16 @@ module PulpContainerClient
99
99
  h[k.to_sym] = v
100
100
  }
101
101
 
102
- if attributes.key?(:'content_guard')
103
- self.content_guard = attributes[:'content_guard']
102
+ if attributes.key?(:'hidden')
103
+ self.hidden = attributes[:'hidden']
104
+ else
105
+ self.hidden = false
104
106
  end
105
107
 
106
- if attributes.key?(:'name')
107
- self.name = attributes[:'name']
108
+ if attributes.key?(:'pulp_labels')
109
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
110
+ self.pulp_labels = value
111
+ end
108
112
  end
109
113
 
110
114
  if attributes.key?(:'repository')
@@ -115,16 +119,12 @@ module PulpContainerClient
115
119
  self.base_path = attributes[:'base_path']
116
120
  end
117
121
 
118
- if attributes.key?(:'hidden')
119
- self.hidden = attributes[:'hidden']
120
- else
121
- self.hidden = false
122
+ if attributes.key?(:'name')
123
+ self.name = attributes[:'name']
122
124
  end
123
125
 
124
- if attributes.key?(:'pulp_labels')
125
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
126
- self.pulp_labels = value
127
- end
126
+ if attributes.key?(:'content_guard')
127
+ self.content_guard = attributes[:'content_guard']
128
128
  end
129
129
 
130
130
  if attributes.key?(:'remote')
@@ -150,14 +150,6 @@ module PulpContainerClient
150
150
  # @return Array for valid properties with the reasons
151
151
  def list_invalid_properties
152
152
  invalid_properties = Array.new
153
- if @name.nil?
154
- invalid_properties.push('invalid value for "name", name cannot be nil.')
155
- end
156
-
157
- if @name.to_s.length < 1
158
- invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
159
- end
160
-
161
153
  if @base_path.nil?
162
154
  invalid_properties.push('invalid value for "base_path", base_path cannot be nil.')
163
155
  end
@@ -166,6 +158,14 @@ module PulpContainerClient
166
158
  invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
167
159
  end
168
160
 
161
+ if @name.nil?
162
+ invalid_properties.push('invalid value for "name", name cannot be nil.')
163
+ end
164
+
165
+ if @name.to_s.length < 1
166
+ invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
167
+ end
168
+
169
169
  if @remote.nil?
170
170
  invalid_properties.push('invalid value for "remote", remote cannot be nil.')
171
171
  end
@@ -180,29 +180,15 @@ module PulpContainerClient
180
180
  # Check to see if the all the properties in the model are valid
181
181
  # @return true if the model is valid
182
182
  def valid?
183
- return false if @name.nil?
184
- return false if @name.to_s.length < 1
185
183
  return false if @base_path.nil?
186
184
  return false if @base_path.to_s.length < 1
185
+ return false if @name.nil?
186
+ return false if @name.to_s.length < 1
187
187
  return false if @remote.nil?
188
188
  return false if !@description.nil? && @description.to_s.length < 1
189
189
  true
190
190
  end
191
191
 
192
- # Custom attribute writer method with validation
193
- # @param [Object] name Value to be assigned
194
- def name=(name)
195
- if name.nil?
196
- fail ArgumentError, 'name cannot be nil'
197
- end
198
-
199
- if name.to_s.length < 1
200
- fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
201
- end
202
-
203
- @name = name
204
- end
205
-
206
192
  # Custom attribute writer method with validation
207
193
  # @param [Object] base_path Value to be assigned
208
194
  def base_path=(base_path)
@@ -217,6 +203,20 @@ module PulpContainerClient
217
203
  @base_path = base_path
218
204
  end
219
205
 
206
+ # Custom attribute writer method with validation
207
+ # @param [Object] name Value to be assigned
208
+ def name=(name)
209
+ if name.nil?
210
+ fail ArgumentError, 'name cannot be nil'
211
+ end
212
+
213
+ if name.to_s.length < 1
214
+ fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
215
+ end
216
+
217
+ @name = name
218
+ end
219
+
220
220
  # Custom attribute writer method with validation
221
221
  # @param [Object] description Value to be assigned
222
222
  def description=(description)
@@ -232,12 +232,12 @@ module PulpContainerClient
232
232
  def ==(o)
233
233
  return true if self.equal?(o)
234
234
  self.class == o.class &&
235
- content_guard == o.content_guard &&
236
- name == o.name &&
237
- repository == o.repository &&
238
- base_path == o.base_path &&
239
235
  hidden == o.hidden &&
240
236
  pulp_labels == o.pulp_labels &&
237
+ repository == o.repository &&
238
+ base_path == o.base_path &&
239
+ name == o.name &&
240
+ content_guard == o.content_guard &&
241
241
  remote == o.remote &&
242
242
  distributions == o.distributions &&
243
243
  private == o.private &&
@@ -253,7 +253,7 @@ module PulpContainerClient
253
253
  # Calculates hash code according to all attributes.
254
254
  # @return [Integer] Hash code
255
255
  def hash
256
- [content_guard, name, repository, base_path, hidden, pulp_labels, remote, distributions, private, description].hash
256
+ [hidden, pulp_labels, repository, base_path, name, content_guard, remote, distributions, private, description].hash
257
257
  end
258
258
 
259
259
  # Builds the object from hash