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