pulp_container_client 2.24.6 → 2.24.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 (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 +12 -12
  5. data/docs/ContainerContainerPullThroughDistribution.md +4 -4
  6. data/docs/ContainerContainerPullThroughDistributionResponse.md +12 -12
  7. data/docs/ContainerContainerPushRepository.md +5 -5
  8. data/docs/ContainerContainerPushRepositoryResponse.md +11 -11
  9. data/docs/PatchedcontainerContainerDistribution.md +4 -4
  10. data/docs/PatchedcontainerContainerPullThroughDistribution.md +4 -4
  11. data/docs/PatchedcontainerContainerPushRepository.md +5 -5
  12. data/lib/pulp_container_client/models/container_container_distribution.rb +18 -18
  13. data/lib/pulp_container_client/models/container_container_distribution_response.rb +55 -55
  14. data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +18 -18
  15. data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +55 -55
  16. data/lib/pulp_container_client/models/container_container_push_repository.rb +24 -24
  17. data/lib/pulp_container_client/models/container_container_push_repository_response.rb +49 -49
  18. data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +18 -18
  19. data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +18 -18
  20. data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +24 -24
  21. data/lib/pulp_container_client/version.rb +1 -1
  22. data/spec/models/container_container_distribution_response_spec.rb +10 -10
  23. data/spec/models/container_container_distribution_spec.rb +4 -4
  24. data/spec/models/container_container_pull_through_distribution_response_spec.rb +10 -10
  25. data/spec/models/container_container_pull_through_distribution_spec.rb +4 -4
  26. data/spec/models/container_container_push_repository_response_spec.rb +9 -9
  27. data/spec/models/container_container_push_repository_spec.rb +3 -3
  28. data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
  29. data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +4 -4
  30. data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
  31. metadata +60 -60
@@ -16,49 +16,49 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # Serializer for Container Push Repositories.
18
18
  class ContainerContainerPushRepositoryResponse
19
+ attr_accessor :pulp_href
20
+
19
21
  # A unique name for this repository.
20
22
  attr_accessor :name
21
23
 
22
- attr_accessor :pulp_labels
23
-
24
24
  attr_accessor :versions_href
25
25
 
26
26
  # 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.
27
27
  attr_accessor :pulp_last_updated
28
28
 
29
- attr_accessor :pulp_href
30
-
31
- attr_accessor :latest_version_href
32
-
33
- # Retain X versions of the repository. Default is null which retains all versions.
34
- attr_accessor :retain_repo_versions
29
+ # A reference to an associated signing service.
30
+ attr_accessor :manifest_signing_service
35
31
 
36
32
  # Timestamp of creation.
37
33
  attr_accessor :pulp_created
38
34
 
35
+ attr_accessor :latest_version_href
36
+
39
37
  # The Pulp Resource Name (PRN).
40
38
  attr_accessor :prn
41
39
 
42
- # A reference to an associated signing service.
43
- attr_accessor :manifest_signing_service
40
+ # Retain X versions of the repository. Default is null which retains all versions.
41
+ attr_accessor :retain_repo_versions
44
42
 
45
43
  # An optional description.
46
44
  attr_accessor :description
47
45
 
46
+ attr_accessor :pulp_labels
47
+
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
+ :'pulp_href' => :'pulp_href',
51
52
  :'name' => :'name',
52
- :'pulp_labels' => :'pulp_labels',
53
53
  :'versions_href' => :'versions_href',
54
54
  :'pulp_last_updated' => :'pulp_last_updated',
55
- :'pulp_href' => :'pulp_href',
56
- :'latest_version_href' => :'latest_version_href',
57
- :'retain_repo_versions' => :'retain_repo_versions',
55
+ :'manifest_signing_service' => :'manifest_signing_service',
58
56
  :'pulp_created' => :'pulp_created',
57
+ :'latest_version_href' => :'latest_version_href',
59
58
  :'prn' => :'prn',
60
- :'manifest_signing_service' => :'manifest_signing_service',
61
- :'description' => :'description'
59
+ :'retain_repo_versions' => :'retain_repo_versions',
60
+ :'description' => :'description',
61
+ :'pulp_labels' => :'pulp_labels'
62
62
  }
63
63
  end
64
64
 
@@ -70,26 +70,26 @@ module PulpContainerClient
70
70
  # Attribute type mapping.
71
71
  def self.openapi_types
72
72
  {
73
+ :'pulp_href' => :'String',
73
74
  :'name' => :'String',
74
- :'pulp_labels' => :'Hash<String, String>',
75
75
  :'versions_href' => :'String',
76
76
  :'pulp_last_updated' => :'Time',
77
- :'pulp_href' => :'String',
78
- :'latest_version_href' => :'String',
79
- :'retain_repo_versions' => :'Integer',
77
+ :'manifest_signing_service' => :'String',
80
78
  :'pulp_created' => :'Time',
79
+ :'latest_version_href' => :'String',
81
80
  :'prn' => :'String',
82
- :'manifest_signing_service' => :'String',
83
- :'description' => :'String'
81
+ :'retain_repo_versions' => :'Integer',
82
+ :'description' => :'String',
83
+ :'pulp_labels' => :'Hash<String, String>'
84
84
  }
85
85
  end
86
86
 
87
87
  # List of attributes with nullable: true
88
88
  def self.openapi_nullable
89
89
  Set.new([
90
- :'retain_repo_versions',
91
90
  :'manifest_signing_service',
92
- :'description'
91
+ :'retain_repo_versions',
92
+ :'description',
93
93
  ])
94
94
  end
95
95
 
@@ -108,18 +108,16 @@ module PulpContainerClient
108
108
  h[k.to_sym] = v
109
109
  }
110
110
 
111
+ if attributes.key?(:'pulp_href')
112
+ self.pulp_href = attributes[:'pulp_href']
113
+ end
114
+
111
115
  if attributes.key?(:'name')
112
116
  self.name = attributes[:'name']
113
117
  else
114
118
  self.name = nil
115
119
  end
116
120
 
117
- if attributes.key?(:'pulp_labels')
118
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
119
- self.pulp_labels = value
120
- end
121
- end
122
-
123
121
  if attributes.key?(:'versions_href')
124
122
  self.versions_href = attributes[:'versions_href']
125
123
  end
@@ -128,33 +126,35 @@ module PulpContainerClient
128
126
  self.pulp_last_updated = attributes[:'pulp_last_updated']
129
127
  end
130
128
 
131
- if attributes.key?(:'pulp_href')
132
- self.pulp_href = attributes[:'pulp_href']
133
- end
134
-
135
- if attributes.key?(:'latest_version_href')
136
- self.latest_version_href = attributes[:'latest_version_href']
137
- end
138
-
139
- if attributes.key?(:'retain_repo_versions')
140
- self.retain_repo_versions = attributes[:'retain_repo_versions']
129
+ if attributes.key?(:'manifest_signing_service')
130
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
141
131
  end
142
132
 
143
133
  if attributes.key?(:'pulp_created')
144
134
  self.pulp_created = attributes[:'pulp_created']
145
135
  end
146
136
 
137
+ if attributes.key?(:'latest_version_href')
138
+ self.latest_version_href = attributes[:'latest_version_href']
139
+ end
140
+
147
141
  if attributes.key?(:'prn')
148
142
  self.prn = attributes[:'prn']
149
143
  end
150
144
 
151
- if attributes.key?(:'manifest_signing_service')
152
- self.manifest_signing_service = attributes[:'manifest_signing_service']
145
+ if attributes.key?(:'retain_repo_versions')
146
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
153
147
  end
154
148
 
155
149
  if attributes.key?(:'description')
156
150
  self.description = attributes[:'description']
157
151
  end
152
+
153
+ if attributes.key?(:'pulp_labels')
154
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
155
+ self.pulp_labels = value
156
+ end
157
+ end
158
158
  end
159
159
 
160
160
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -197,17 +197,17 @@ module PulpContainerClient
197
197
  def ==(o)
198
198
  return true if self.equal?(o)
199
199
  self.class == o.class &&
200
+ pulp_href == o.pulp_href &&
200
201
  name == o.name &&
201
- pulp_labels == o.pulp_labels &&
202
202
  versions_href == o.versions_href &&
203
203
  pulp_last_updated == o.pulp_last_updated &&
204
- pulp_href == o.pulp_href &&
205
- latest_version_href == o.latest_version_href &&
206
- retain_repo_versions == o.retain_repo_versions &&
204
+ manifest_signing_service == o.manifest_signing_service &&
207
205
  pulp_created == o.pulp_created &&
206
+ latest_version_href == o.latest_version_href &&
208
207
  prn == o.prn &&
209
- manifest_signing_service == o.manifest_signing_service &&
210
- description == o.description
208
+ retain_repo_versions == o.retain_repo_versions &&
209
+ description == o.description &&
210
+ pulp_labels == o.pulp_labels
211
211
  end
212
212
 
213
213
  # @see the `==` method
@@ -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, pulp_labels, versions_href, pulp_last_updated, pulp_href, latest_version_href, retain_repo_versions, pulp_created, prn, manifest_signing_service, description].hash
222
+ [pulp_href, name, versions_href, pulp_last_updated, manifest_signing_service, pulp_created, latest_version_href, prn, retain_repo_versions, description, pulp_labels].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -16,23 +16,23 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for ContainerDistribution.
18
18
  class PatchedcontainerContainerDistribution
19
- # An optional content-guard. If none is specified, a default one will be used.
20
- attr_accessor :content_guard
19
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
21
21
 
22
22
  # A unique name. Ex, `rawhide` and `stable`.
23
23
  attr_accessor :name
24
24
 
25
25
  attr_accessor :pulp_labels
26
26
 
27
+ # An optional content-guard. If none is specified, a default one will be used.
28
+ attr_accessor :content_guard
29
+
27
30
  # Whether this distribution should be shown in the content app.
28
31
  attr_accessor :hidden
29
32
 
30
33
  # 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
34
  attr_accessor :base_path
32
35
 
33
- # The latest RepositoryVersion for this Repository will be served.
34
- attr_accessor :repository
35
-
36
36
  # RepositoryVersion to be served
37
37
  attr_accessor :repository_version
38
38
 
@@ -45,12 +45,12 @@ module PulpContainerClient
45
45
  # Attribute mapping from ruby-style variable name to JSON key.
46
46
  def self.attribute_map
47
47
  {
48
- :'content_guard' => :'content_guard',
48
+ :'repository' => :'repository',
49
49
  :'name' => :'name',
50
50
  :'pulp_labels' => :'pulp_labels',
51
+ :'content_guard' => :'content_guard',
51
52
  :'hidden' => :'hidden',
52
53
  :'base_path' => :'base_path',
53
- :'repository' => :'repository',
54
54
  :'repository_version' => :'repository_version',
55
55
  :'private' => :'private',
56
56
  :'description' => :'description'
@@ -65,12 +65,12 @@ module PulpContainerClient
65
65
  # Attribute type mapping.
66
66
  def self.openapi_types
67
67
  {
68
- :'content_guard' => :'String',
68
+ :'repository' => :'String',
69
69
  :'name' => :'String',
70
70
  :'pulp_labels' => :'Hash<String, String>',
71
+ :'content_guard' => :'String',
71
72
  :'hidden' => :'Boolean',
72
73
  :'base_path' => :'String',
73
- :'repository' => :'String',
74
74
  :'repository_version' => :'String',
75
75
  :'private' => :'Boolean',
76
76
  :'description' => :'String'
@@ -101,8 +101,8 @@ module PulpContainerClient
101
101
  h[k.to_sym] = v
102
102
  }
103
103
 
104
- if attributes.key?(:'content_guard')
105
- self.content_guard = attributes[:'content_guard']
104
+ if attributes.key?(:'repository')
105
+ self.repository = attributes[:'repository']
106
106
  end
107
107
 
108
108
  if attributes.key?(:'name')
@@ -115,6 +115,10 @@ module PulpContainerClient
115
115
  end
116
116
  end
117
117
 
118
+ if attributes.key?(:'content_guard')
119
+ self.content_guard = attributes[:'content_guard']
120
+ end
121
+
118
122
  if attributes.key?(:'hidden')
119
123
  self.hidden = attributes[:'hidden']
120
124
  else
@@ -125,10 +129,6 @@ module PulpContainerClient
125
129
  self.base_path = attributes[:'base_path']
126
130
  end
127
131
 
128
- if attributes.key?(:'repository')
129
- self.repository = attributes[:'repository']
130
- end
131
-
132
132
  if attributes.key?(:'repository_version')
133
133
  self.repository_version = attributes[:'repository_version']
134
134
  end
@@ -215,12 +215,12 @@ module PulpContainerClient
215
215
  def ==(o)
216
216
  return true if self.equal?(o)
217
217
  self.class == o.class &&
218
- content_guard == o.content_guard &&
218
+ repository == o.repository &&
219
219
  name == o.name &&
220
220
  pulp_labels == o.pulp_labels &&
221
+ content_guard == o.content_guard &&
221
222
  hidden == o.hidden &&
222
223
  base_path == o.base_path &&
223
- repository == o.repository &&
224
224
  repository_version == o.repository_version &&
225
225
  private == o.private &&
226
226
  description == o.description
@@ -235,7 +235,7 @@ module PulpContainerClient
235
235
  # Calculates hash code according to all attributes.
236
236
  # @return [Integer] Hash code
237
237
  def hash
238
- [content_guard, name, pulp_labels, hidden, base_path, repository, repository_version, private, description].hash
238
+ [repository, name, pulp_labels, content_guard, hidden, base_path, repository_version, private, description].hash
239
239
  end
240
240
 
241
241
  # Builds the object from hash
@@ -16,23 +16,23 @@ require 'time'
16
16
  module PulpContainerClient
17
17
  # A serializer for a specialized pull-through distribution referencing sub-distributions.
18
18
  class PatchedcontainerContainerPullThroughDistribution
19
- # An optional content-guard. If none is specified, a default one will be used.
20
- attr_accessor :content_guard
19
+ # The latest RepositoryVersion for this Repository will be served.
20
+ attr_accessor :repository
21
21
 
22
22
  # A unique name. Ex, `rawhide` and `stable`.
23
23
  attr_accessor :name
24
24
 
25
25
  attr_accessor :pulp_labels
26
26
 
27
+ # An optional content-guard. If none is specified, a default one will be used.
28
+ attr_accessor :content_guard
29
+
27
30
  # Whether this distribution should be shown in the content app.
28
31
  attr_accessor :hidden
29
32
 
30
33
  # 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
34
  attr_accessor :base_path
32
35
 
33
- # The latest RepositoryVersion for this Repository will be served.
34
- attr_accessor :repository
35
-
36
36
  # Remote that can be used to fetch content when using pull-through caching.
37
37
  attr_accessor :remote
38
38
 
@@ -48,12 +48,12 @@ module PulpContainerClient
48
48
  # Attribute mapping from ruby-style variable name to JSON key.
49
49
  def self.attribute_map
50
50
  {
51
- :'content_guard' => :'content_guard',
51
+ :'repository' => :'repository',
52
52
  :'name' => :'name',
53
53
  :'pulp_labels' => :'pulp_labels',
54
+ :'content_guard' => :'content_guard',
54
55
  :'hidden' => :'hidden',
55
56
  :'base_path' => :'base_path',
56
- :'repository' => :'repository',
57
57
  :'remote' => :'remote',
58
58
  :'distributions' => :'distributions',
59
59
  :'private' => :'private',
@@ -69,12 +69,12 @@ module PulpContainerClient
69
69
  # Attribute type mapping.
70
70
  def self.openapi_types
71
71
  {
72
- :'content_guard' => :'String',
72
+ :'repository' => :'String',
73
73
  :'name' => :'String',
74
74
  :'pulp_labels' => :'Hash<String, String>',
75
+ :'content_guard' => :'String',
75
76
  :'hidden' => :'Boolean',
76
77
  :'base_path' => :'String',
77
- :'repository' => :'String',
78
78
  :'remote' => :'String',
79
79
  :'distributions' => :'Array<String>',
80
80
  :'private' => :'Boolean',
@@ -105,8 +105,8 @@ module PulpContainerClient
105
105
  h[k.to_sym] = v
106
106
  }
107
107
 
108
- if attributes.key?(:'content_guard')
109
- self.content_guard = attributes[:'content_guard']
108
+ if attributes.key?(:'repository')
109
+ self.repository = attributes[:'repository']
110
110
  end
111
111
 
112
112
  if attributes.key?(:'name')
@@ -119,6 +119,10 @@ module PulpContainerClient
119
119
  end
120
120
  end
121
121
 
122
+ if attributes.key?(:'content_guard')
123
+ self.content_guard = attributes[:'content_guard']
124
+ end
125
+
122
126
  if attributes.key?(:'hidden')
123
127
  self.hidden = attributes[:'hidden']
124
128
  else
@@ -129,10 +133,6 @@ module PulpContainerClient
129
133
  self.base_path = attributes[:'base_path']
130
134
  end
131
135
 
132
- if attributes.key?(:'repository')
133
- self.repository = attributes[:'repository']
134
- end
135
-
136
136
  if attributes.key?(:'remote')
137
137
  self.remote = attributes[:'remote']
138
138
  end
@@ -225,12 +225,12 @@ module PulpContainerClient
225
225
  def ==(o)
226
226
  return true if self.equal?(o)
227
227
  self.class == o.class &&
228
- content_guard == o.content_guard &&
228
+ repository == o.repository &&
229
229
  name == o.name &&
230
230
  pulp_labels == o.pulp_labels &&
231
+ content_guard == o.content_guard &&
231
232
  hidden == o.hidden &&
232
233
  base_path == o.base_path &&
233
- repository == o.repository &&
234
234
  remote == o.remote &&
235
235
  distributions == o.distributions &&
236
236
  private == o.private &&
@@ -246,7 +246,7 @@ module PulpContainerClient
246
246
  # Calculates hash code according to all attributes.
247
247
  # @return [Integer] Hash code
248
248
  def hash
249
- [content_guard, name, pulp_labels, hidden, base_path, repository, remote, distributions, private, description].hash
249
+ [repository, name, pulp_labels, content_guard, hidden, base_path, remote, distributions, private, description].hash
250
250
  end
251
251
 
252
252
  # Builds the object from hash
@@ -19,25 +19,25 @@ module PulpContainerClient
19
19
  # A unique name for this repository.
20
20
  attr_accessor :name
21
21
 
22
- attr_accessor :pulp_labels
22
+ # A reference to an associated signing service.
23
+ attr_accessor :manifest_signing_service
23
24
 
24
25
  # Retain X versions of the repository. Default is null which retains all versions.
25
26
  attr_accessor :retain_repo_versions
26
27
 
27
- # A reference to an associated signing service.
28
- attr_accessor :manifest_signing_service
29
-
30
28
  # An optional description.
31
29
  attr_accessor :description
32
30
 
31
+ attr_accessor :pulp_labels
32
+
33
33
  # Attribute mapping from ruby-style variable name to JSON key.
34
34
  def self.attribute_map
35
35
  {
36
36
  :'name' => :'name',
37
- :'pulp_labels' => :'pulp_labels',
38
- :'retain_repo_versions' => :'retain_repo_versions',
39
37
  :'manifest_signing_service' => :'manifest_signing_service',
40
- :'description' => :'description'
38
+ :'retain_repo_versions' => :'retain_repo_versions',
39
+ :'description' => :'description',
40
+ :'pulp_labels' => :'pulp_labels'
41
41
  }
42
42
  end
43
43
 
@@ -50,19 +50,19 @@ module PulpContainerClient
50
50
  def self.openapi_types
51
51
  {
52
52
  :'name' => :'String',
53
- :'pulp_labels' => :'Hash<String, String>',
54
- :'retain_repo_versions' => :'Integer',
55
53
  :'manifest_signing_service' => :'String',
56
- :'description' => :'String'
54
+ :'retain_repo_versions' => :'Integer',
55
+ :'description' => :'String',
56
+ :'pulp_labels' => :'Hash<String, String>'
57
57
  }
58
58
  end
59
59
 
60
60
  # List of attributes with nullable: true
61
61
  def self.openapi_nullable
62
62
  Set.new([
63
- :'retain_repo_versions',
64
63
  :'manifest_signing_service',
65
- :'description'
64
+ :'retain_repo_versions',
65
+ :'description',
66
66
  ])
67
67
  end
68
68
 
@@ -85,23 +85,23 @@ module PulpContainerClient
85
85
  self.name = attributes[:'name']
86
86
  end
87
87
 
88
- if attributes.key?(:'pulp_labels')
89
- if (value = attributes[:'pulp_labels']).is_a?(Hash)
90
- self.pulp_labels = value
91
- end
88
+ if attributes.key?(:'manifest_signing_service')
89
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
92
90
  end
93
91
 
94
92
  if attributes.key?(:'retain_repo_versions')
95
93
  self.retain_repo_versions = attributes[:'retain_repo_versions']
96
94
  end
97
95
 
98
- if attributes.key?(:'manifest_signing_service')
99
- self.manifest_signing_service = attributes[:'manifest_signing_service']
100
- end
101
-
102
96
  if attributes.key?(:'description')
103
97
  self.description = attributes[:'description']
104
98
  end
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
105
  end
106
106
 
107
107
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -174,10 +174,10 @@ module PulpContainerClient
174
174
  return true if self.equal?(o)
175
175
  self.class == o.class &&
176
176
  name == o.name &&
177
- pulp_labels == o.pulp_labels &&
178
- retain_repo_versions == o.retain_repo_versions &&
179
177
  manifest_signing_service == o.manifest_signing_service &&
180
- description == o.description
178
+ retain_repo_versions == o.retain_repo_versions &&
179
+ description == o.description &&
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
- [name, pulp_labels, retain_repo_versions, manifest_signing_service, description].hash
192
+ [name, manifest_signing_service, retain_repo_versions, description, pulp_labels].hash
193
193
  end
194
194
 
195
195
  # Builds the object from hash
@@ -11,5 +11,5 @@ Generator version: 7.10.0
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.24.6'
14
+ VERSION = '2.24.8'
15
15
  end
@@ -27,49 +27,49 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "content_guard"' do
30
+ describe 'test attribute "pulp_href"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
34
34
  end
35
35
 
36
- describe 'test attribute "name"' do
36
+ describe 'test attribute "repository"' do
37
37
  it 'should work' do
38
38
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
39
  end
40
40
  end
41
41
 
42
- describe 'test attribute "pulp_labels"' do
42
+ describe 'test attribute "name"' do
43
43
  it 'should work' do
44
44
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "hidden"' do
48
+ describe 'test attribute "pulp_last_updated"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "pulp_labels"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "pulp_last_updated"' do
60
+ describe 'test attribute "pulp_created"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end
64
64
  end
65
65
 
66
- describe 'test attribute "pulp_href"' do
66
+ describe 'test attribute "content_guard"' do
67
67
  it 'should work' do
68
68
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
69
  end
70
70
  end
71
71
 
72
- describe 'test attribute "pulp_created"' do
72
+ describe 'test attribute "hidden"' do
73
73
  it 'should work' do
74
74
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
75
75
  end
@@ -81,13 +81,13 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
81
81
  end
82
82
  end
83
83
 
84
- describe 'test attribute "no_content_change_since"' do
84
+ describe 'test attribute "base_path"' do
85
85
  it 'should work' do
86
86
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
87
87
  end
88
88
  end
89
89
 
90
- describe 'test attribute "repository"' do
90
+ describe 'test attribute "no_content_change_since"' do
91
91
  it 'should work' do
92
92
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
93
93
  end
@@ -27,7 +27,7 @@ describe PulpContainerClient::ContainerContainerDistribution do
27
27
  end
28
28
  end
29
29
 
30
- describe 'test attribute "content_guard"' do
30
+ describe 'test attribute "repository"' do
31
31
  it 'should work' do
32
32
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
33
  end
@@ -45,19 +45,19 @@ describe PulpContainerClient::ContainerContainerDistribution do
45
45
  end
46
46
  end
47
47
 
48
- describe 'test attribute "hidden"' do
48
+ describe 'test attribute "content_guard"' do
49
49
  it 'should work' do
50
50
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
51
  end
52
52
  end
53
53
 
54
- describe 'test attribute "base_path"' do
54
+ describe 'test attribute "hidden"' do
55
55
  it 'should work' do
56
56
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
57
  end
58
58
  end
59
59
 
60
- describe 'test attribute "repository"' do
60
+ describe 'test attribute "base_path"' do
61
61
  it 'should work' do
62
62
  # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
63
  end