pulp_container_client 2.10.6 → 2.10.7

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