pulp_container_client 2.14.11 → 2.14.12

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