pulp_container_client 2.10.12 → 2.10.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -15,59 +15,59 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class ContainerContainerPushRepositoryResponse
18
- # Timestamp of creation.
19
- attr_accessor :pulp_created
20
-
21
18
  # A unique name for this repository.
22
19
  attr_accessor :name
23
20
 
24
- attr_accessor :latest_version_href
21
+ attr_accessor :pulp_href
25
22
 
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
23
+ attr_accessor :versions_href
28
24
 
29
- attr_accessor :pulp_href
25
+ # Timestamp of creation.
26
+ attr_accessor :pulp_created
30
27
 
31
28
  # An optional description.
32
29
  attr_accessor :description
33
30
 
34
- attr_accessor :versions_href
31
+ # 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.
32
+ attr_accessor :retain_repo_versions
35
33
 
36
34
  attr_accessor :pulp_labels
37
35
 
36
+ attr_accessor :latest_version_href
37
+
38
38
  # Attribute mapping from ruby-style variable name to JSON key.
39
39
  def self.attribute_map
40
40
  {
41
- :'pulp_created' => :'pulp_created',
42
41
  :'name' => :'name',
43
- :'latest_version_href' => :'latest_version_href',
44
- :'retain_repo_versions' => :'retain_repo_versions',
45
42
  :'pulp_href' => :'pulp_href',
46
- :'description' => :'description',
47
43
  :'versions_href' => :'versions_href',
48
- :'pulp_labels' => :'pulp_labels'
44
+ :'pulp_created' => :'pulp_created',
45
+ :'description' => :'description',
46
+ :'retain_repo_versions' => :'retain_repo_versions',
47
+ :'pulp_labels' => :'pulp_labels',
48
+ :'latest_version_href' => :'latest_version_href'
49
49
  }
50
50
  end
51
51
 
52
52
  # Attribute type mapping.
53
53
  def self.openapi_types
54
54
  {
55
- :'pulp_created' => :'DateTime',
56
55
  :'name' => :'String',
57
- :'latest_version_href' => :'String',
58
- :'retain_repo_versions' => :'Integer',
59
56
  :'pulp_href' => :'String',
60
- :'description' => :'String',
61
57
  :'versions_href' => :'String',
62
- :'pulp_labels' => :'Object'
58
+ :'pulp_created' => :'DateTime',
59
+ :'description' => :'String',
60
+ :'retain_repo_versions' => :'Integer',
61
+ :'pulp_labels' => :'Object',
62
+ :'latest_version_href' => :'String'
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',
70
69
  :'description',
70
+ :'retain_repo_versions',
71
71
  ])
72
72
  end
73
73
 
@@ -86,37 +86,37 @@ module PulpContainerClient
86
86
  h[k.to_sym] = v
87
87
  }
88
88
 
89
- if attributes.key?(:'pulp_created')
90
- self.pulp_created = attributes[:'pulp_created']
91
- end
92
-
93
89
  if attributes.key?(:'name')
94
90
  self.name = attributes[:'name']
95
91
  end
96
92
 
97
- if attributes.key?(:'latest_version_href')
98
- self.latest_version_href = attributes[:'latest_version_href']
93
+ if attributes.key?(:'pulp_href')
94
+ self.pulp_href = attributes[:'pulp_href']
99
95
  end
100
96
 
101
- if attributes.key?(:'retain_repo_versions')
102
- self.retain_repo_versions = attributes[:'retain_repo_versions']
97
+ if attributes.key?(:'versions_href')
98
+ self.versions_href = attributes[:'versions_href']
103
99
  end
104
100
 
105
- if attributes.key?(:'pulp_href')
106
- self.pulp_href = attributes[:'pulp_href']
101
+ if attributes.key?(:'pulp_created')
102
+ self.pulp_created = attributes[:'pulp_created']
107
103
  end
108
104
 
109
105
  if attributes.key?(:'description')
110
106
  self.description = attributes[:'description']
111
107
  end
112
108
 
113
- if attributes.key?(:'versions_href')
114
- self.versions_href = attributes[:'versions_href']
109
+ if attributes.key?(:'retain_repo_versions')
110
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
115
111
  end
116
112
 
117
113
  if attributes.key?(:'pulp_labels')
118
114
  self.pulp_labels = attributes[:'pulp_labels']
119
115
  end
116
+
117
+ if attributes.key?(:'latest_version_href')
118
+ self.latest_version_href = attributes[:'latest_version_href']
119
+ end
120
120
  end
121
121
 
122
122
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -157,14 +157,14 @@ module PulpContainerClient
157
157
  def ==(o)
158
158
  return true if self.equal?(o)
159
159
  self.class == o.class &&
160
- pulp_created == o.pulp_created &&
161
160
  name == o.name &&
162
- latest_version_href == o.latest_version_href &&
163
- retain_repo_versions == o.retain_repo_versions &&
164
161
  pulp_href == o.pulp_href &&
165
- description == o.description &&
166
162
  versions_href == o.versions_href &&
167
- pulp_labels == o.pulp_labels
163
+ pulp_created == o.pulp_created &&
164
+ description == o.description &&
165
+ retain_repo_versions == o.retain_repo_versions &&
166
+ pulp_labels == o.pulp_labels &&
167
+ latest_version_href == o.latest_version_href
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_created, name, latest_version_href, retain_repo_versions, pulp_href, description, versions_href, pulp_labels].hash
179
+ [name, pulp_href, versions_href, pulp_created, description, retain_repo_versions, pulp_labels, latest_version_href].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
- # An optional content-guard. If none is specified, a default one will be used.
19
- attr_accessor :content_guard
20
-
21
18
  # A unique name. Ex, `rawhide` and `stable`.
22
19
  attr_accessor :name
23
20
 
24
- # The latest RepositoryVersion for this Repository will be served.
25
- attr_accessor :repository
26
-
27
21
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
28
22
  attr_accessor :base_path
29
23
 
24
+ # An optional content-guard. If none is specified, a default one will be used.
25
+ attr_accessor :content_guard
26
+
30
27
  attr_accessor :pulp_labels
31
28
 
29
+ # The latest RepositoryVersion for this Repository will be served.
30
+ attr_accessor :repository
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
- :'content_guard' => :'content_guard',
45
44
  :'name' => :'name',
46
- :'repository' => :'repository',
47
45
  :'base_path' => :'base_path',
46
+ :'content_guard' => :'content_guard',
48
47
  :'pulp_labels' => :'pulp_labels',
48
+ :'repository' => :'repository',
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
- :'content_guard' => :'String',
59
58
  :'name' => :'String',
60
- :'repository' => :'String',
61
59
  :'base_path' => :'String',
60
+ :'content_guard' => :'String',
62
61
  :'pulp_labels' => :'Object',
62
+ :'repository' => :'String',
63
63
  :'repository_version' => :'String',
64
64
  :'private' => :'Boolean',
65
65
  :'description' => :'String'
@@ -90,26 +90,26 @@ module PulpContainerClient
90
90
  h[k.to_sym] = v
91
91
  }
92
92
 
93
- if attributes.key?(:'content_guard')
94
- self.content_guard = attributes[:'content_guard']
95
- end
96
-
97
93
  if attributes.key?(:'name')
98
94
  self.name = attributes[:'name']
99
95
  end
100
96
 
101
- if attributes.key?(:'repository')
102
- self.repository = attributes[:'repository']
103
- end
104
-
105
97
  if attributes.key?(:'base_path')
106
98
  self.base_path = attributes[:'base_path']
107
99
  end
108
100
 
101
+ if attributes.key?(:'content_guard')
102
+ self.content_guard = attributes[:'content_guard']
103
+ end
104
+
109
105
  if attributes.key?(:'pulp_labels')
110
106
  self.pulp_labels = attributes[:'pulp_labels']
111
107
  end
112
108
 
109
+ if attributes.key?(:'repository')
110
+ self.repository = attributes[:'repository']
111
+ end
112
+
113
113
  if attributes.key?(:'repository_version')
114
114
  self.repository_version = attributes[:'repository_version']
115
115
  end
@@ -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
- content_guard == o.content_guard &&
190
189
  name == o.name &&
191
- repository == o.repository &&
192
190
  base_path == o.base_path &&
191
+ content_guard == o.content_guard &&
193
192
  pulp_labels == o.pulp_labels &&
193
+ repository == o.repository &&
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
- [content_guard, name, repository, base_path, pulp_labels, repository_version, private, description].hash
208
+ [name, base_path, content_guard, pulp_labels, repository, repository_version, private, description].hash
209
209
  end
210
210
 
211
211
  # Builds the object from hash
@@ -18,20 +18,20 @@ module PulpContainerClient
18
18
  # A unique name for this repository.
19
19
  attr_accessor :name
20
20
 
21
- # 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.
22
- attr_accessor :retain_repo_versions
23
-
24
21
  # An optional description.
25
22
  attr_accessor :description
26
23
 
24
+ # 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.
25
+ attr_accessor :retain_repo_versions
26
+
27
27
  attr_accessor :pulp_labels
28
28
 
29
29
  # Attribute mapping from ruby-style variable name to JSON key.
30
30
  def self.attribute_map
31
31
  {
32
32
  :'name' => :'name',
33
- :'retain_repo_versions' => :'retain_repo_versions',
34
33
  :'description' => :'description',
34
+ :'retain_repo_versions' => :'retain_repo_versions',
35
35
  :'pulp_labels' => :'pulp_labels'
36
36
  }
37
37
  end
@@ -40,8 +40,8 @@ module PulpContainerClient
40
40
  def self.openapi_types
41
41
  {
42
42
  :'name' => :'String',
43
- :'retain_repo_versions' => :'Integer',
44
43
  :'description' => :'String',
44
+ :'retain_repo_versions' => :'Integer',
45
45
  :'pulp_labels' => :'Object'
46
46
  }
47
47
  end
@@ -49,8 +49,8 @@ module PulpContainerClient
49
49
  # List of attributes with nullable: true
50
50
  def self.openapi_nullable
51
51
  Set.new([
52
- :'retain_repo_versions',
53
52
  :'description',
53
+ :'retain_repo_versions',
54
54
  ])
55
55
  end
56
56
 
@@ -73,14 +73,14 @@ module PulpContainerClient
73
73
  self.name = attributes[:'name']
74
74
  end
75
75
 
76
- if attributes.key?(:'retain_repo_versions')
77
- self.retain_repo_versions = attributes[:'retain_repo_versions']
78
- end
79
-
80
76
  if attributes.key?(:'description')
81
77
  self.description = attributes[:'description']
82
78
  end
83
79
 
80
+ if attributes.key?(:'retain_repo_versions')
81
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
82
+ end
83
+
84
84
  if attributes.key?(:'pulp_labels')
85
85
  self.pulp_labels = attributes[:'pulp_labels']
86
86
  end
@@ -94,14 +94,14 @@ module PulpContainerClient
94
94
  invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
95
95
  end
96
96
 
97
- if !@retain_repo_versions.nil? && @retain_repo_versions < 1
98
- invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
99
- end
100
-
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
 
101
+ if !@retain_repo_versions.nil? && @retain_repo_versions < 1
102
+ invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
103
+ end
104
+
105
105
  invalid_properties
106
106
  end
107
107
 
@@ -109,8 +109,8 @@ module PulpContainerClient
109
109
  # @return true if the model is valid
110
110
  def valid?
111
111
  return false if !@name.nil? && @name.to_s.length < 1
112
- return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
113
112
  return false if !@description.nil? && @description.to_s.length < 1
113
+ return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
114
114
  true
115
115
  end
116
116
 
@@ -124,16 +124,6 @@ module PulpContainerClient
124
124
  @name = name
125
125
  end
126
126
 
127
- # Custom attribute writer method with validation
128
- # @param [Object] retain_repo_versions Value to be assigned
129
- def retain_repo_versions=(retain_repo_versions)
130
- if !retain_repo_versions.nil? && retain_repo_versions < 1
131
- fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
132
- end
133
-
134
- @retain_repo_versions = retain_repo_versions
135
- end
136
-
137
127
  # Custom attribute writer method with validation
138
128
  # @param [Object] description Value to be assigned
139
129
  def description=(description)
@@ -144,14 +134,24 @@ module PulpContainerClient
144
134
  @description = description
145
135
  end
146
136
 
137
+ # Custom attribute writer method with validation
138
+ # @param [Object] retain_repo_versions Value to be assigned
139
+ def retain_repo_versions=(retain_repo_versions)
140
+ if !retain_repo_versions.nil? && retain_repo_versions < 1
141
+ fail ArgumentError, 'invalid value for "retain_repo_versions", must be greater than or equal to 1.'
142
+ end
143
+
144
+ @retain_repo_versions = retain_repo_versions
145
+ end
146
+
147
147
  # Checks equality by comparing each attribute.
148
148
  # @param [Object] Object to be compared
149
149
  def ==(o)
150
150
  return true if self.equal?(o)
151
151
  self.class == o.class &&
152
152
  name == o.name &&
153
- retain_repo_versions == o.retain_repo_versions &&
154
153
  description == o.description &&
154
+ retain_repo_versions == o.retain_repo_versions &&
155
155
  pulp_labels == o.pulp_labels
156
156
  end
157
157
 
@@ -164,7 +164,7 @@ module PulpContainerClient
164
164
  # Calculates hash code according to all attributes.
165
165
  # @return [Integer] Hash code
166
166
  def hash
167
- [name, retain_repo_versions, description, pulp_labels].hash
167
+ [name, description, retain_repo_versions, pulp_labels].hash
168
168
  end
169
169
 
170
170
  # Builds the object from hash
@@ -11,5 +11,5 @@ OpenAPI Generator version: 4.3.1
11
11
  =end
12
12
 
13
13
  module PulpContainerClient
14
- VERSION = '2.10.12'
14
+ VERSION = '2.10.13'
15
15
  end
@@ -32,43 +32,43 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' do
35
+ describe 'test attribute "pulp_href"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_created"' do
41
+ describe 'test attribute "name"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "name"' do
47
+ describe 'test attribute "base_path"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "repository"' do
53
+ describe 'test attribute "content_guard"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "base_path"' do
59
+ describe 'test attribute "pulp_created"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "pulp_href"' do
65
+ describe 'test attribute "pulp_labels"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "pulp_labels"' do
71
+ describe 'test attribute "repository"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
@@ -32,31 +32,31 @@ describe 'ContainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' do
35
+ describe 'test attribute "name"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "name"' do
41
+ describe 'test attribute "base_path"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "repository"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "base_path"' do
53
+ describe 'test attribute "pulp_labels"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_labels"' do
59
+ describe 'test attribute "repository"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -32,49 +32,49 @@ describe 'ContainerContainerPushRepositoryResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_created"' do
35
+ describe 'test attribute "name"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "name"' do
41
+ describe 'test attribute "pulp_href"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "latest_version_href"' do
47
+ describe 'test attribute "versions_href"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "retain_repo_versions"' do
53
+ describe 'test attribute "pulp_created"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_href"' do
59
+ describe 'test attribute "description"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
63
63
  end
64
64
 
65
- describe 'test attribute "description"' do
65
+ describe 'test attribute "retain_repo_versions"' do
66
66
  it 'should work' do
67
67
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
68
  end
69
69
  end
70
70
 
71
- describe 'test attribute "versions_href"' do
71
+ describe 'test attribute "pulp_labels"' do
72
72
  it 'should work' do
73
73
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
74
  end
75
75
  end
76
76
 
77
- describe 'test attribute "pulp_labels"' do
77
+ describe 'test attribute "latest_version_href"' do
78
78
  it 'should work' do
79
79
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
80
80
  end
@@ -38,13 +38,13 @@ describe 'ContainerContainerPushRepository' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "retain_repo_versions"' do
41
+ describe 'test attribute "description"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "description"' do
47
+ describe 'test attribute "retain_repo_versions"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
@@ -32,31 +32,31 @@ describe 'PatchedcontainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "content_guard"' do
35
+ describe 'test attribute "name"' do
36
36
  it 'should work' do
37
37
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "name"' do
41
+ describe 'test attribute "base_path"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "repository"' do
47
+ describe 'test attribute "content_guard"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "base_path"' do
53
+ describe 'test attribute "pulp_labels"' do
54
54
  it 'should work' do
55
55
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "pulp_labels"' do
59
+ describe 'test attribute "repository"' do
60
60
  it 'should work' do
61
61
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
62
  end
@@ -38,13 +38,13 @@ describe 'PatchedcontainerContainerPushRepository' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "retain_repo_versions"' do
41
+ describe 'test attribute "description"' do
42
42
  it 'should work' do
43
43
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
44
  end
45
45
  end
46
46
 
47
- describe 'test attribute "description"' do
47
+ describe 'test attribute "retain_repo_versions"' do
48
48
  it 'should work' do
49
49
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
50
  end