pulp_container_client 2.19.10 → 2.19.11

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