pulp_container_client 2.15.5 → 2.15.6

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.
@@ -17,39 +17,39 @@ module PulpContainerClient
17
17
  class ContainerContainerPushRepositoryResponse
18
18
  attr_accessor :pulp_href
19
19
 
20
- # Timestamp of creation.
21
- attr_accessor :pulp_created
22
-
23
- attr_accessor :pulp_labels
24
-
25
20
  # Retain X versions of the repository. Default is null which retains all versions.
26
21
  attr_accessor :retain_repo_versions
27
22
 
28
- attr_accessor :latest_version_href
29
-
30
- # A reference to an associated signing service.
31
- attr_accessor :manifest_signing_service
32
-
33
23
  # An optional description.
34
24
  attr_accessor :description
35
25
 
36
- attr_accessor :versions_href
26
+ attr_accessor :pulp_labels
37
27
 
38
28
  # A unique name for this repository.
39
29
  attr_accessor :name
40
30
 
31
+ attr_accessor :versions_href
32
+
33
+ # A reference to an associated signing service.
34
+ attr_accessor :manifest_signing_service
35
+
36
+ # Timestamp of creation.
37
+ attr_accessor :pulp_created
38
+
39
+ attr_accessor :latest_version_href
40
+
41
41
  # Attribute mapping from ruby-style variable name to JSON key.
42
42
  def self.attribute_map
43
43
  {
44
44
  :'pulp_href' => :'pulp_href',
45
- :'pulp_created' => :'pulp_created',
46
- :'pulp_labels' => :'pulp_labels',
47
45
  :'retain_repo_versions' => :'retain_repo_versions',
48
- :'latest_version_href' => :'latest_version_href',
49
- :'manifest_signing_service' => :'manifest_signing_service',
50
46
  :'description' => :'description',
47
+ :'pulp_labels' => :'pulp_labels',
48
+ :'name' => :'name',
51
49
  :'versions_href' => :'versions_href',
52
- :'name' => :'name'
50
+ :'manifest_signing_service' => :'manifest_signing_service',
51
+ :'pulp_created' => :'pulp_created',
52
+ :'latest_version_href' => :'latest_version_href'
53
53
  }
54
54
  end
55
55
 
@@ -57,14 +57,14 @@ module PulpContainerClient
57
57
  def self.openapi_types
58
58
  {
59
59
  :'pulp_href' => :'String',
60
- :'pulp_created' => :'DateTime',
61
- :'pulp_labels' => :'Hash<String, String>',
62
60
  :'retain_repo_versions' => :'Integer',
63
- :'latest_version_href' => :'String',
64
- :'manifest_signing_service' => :'String',
65
61
  :'description' => :'String',
62
+ :'pulp_labels' => :'Hash<String, String>',
63
+ :'name' => :'String',
66
64
  :'versions_href' => :'String',
67
- :'name' => :'String'
65
+ :'manifest_signing_service' => :'String',
66
+ :'pulp_created' => :'DateTime',
67
+ :'latest_version_href' => :'String'
68
68
  }
69
69
  end
70
70
 
@@ -72,8 +72,8 @@ module PulpContainerClient
72
72
  def self.openapi_nullable
73
73
  Set.new([
74
74
  :'retain_repo_versions',
75
- :'manifest_signing_service',
76
75
  :'description',
76
+ :'manifest_signing_service',
77
77
  ])
78
78
  end
79
79
 
@@ -96,8 +96,12 @@ module PulpContainerClient
96
96
  self.pulp_href = attributes[:'pulp_href']
97
97
  end
98
98
 
99
- if attributes.key?(:'pulp_created')
100
- self.pulp_created = attributes[:'pulp_created']
99
+ if attributes.key?(:'retain_repo_versions')
100
+ self.retain_repo_versions = attributes[:'retain_repo_versions']
101
+ end
102
+
103
+ if attributes.key?(:'description')
104
+ self.description = attributes[:'description']
101
105
  end
102
106
 
103
107
  if attributes.key?(:'pulp_labels')
@@ -106,28 +110,24 @@ module PulpContainerClient
106
110
  end
107
111
  end
108
112
 
109
- if attributes.key?(:'retain_repo_versions')
110
- self.retain_repo_versions = attributes[:'retain_repo_versions']
113
+ if attributes.key?(:'name')
114
+ self.name = attributes[:'name']
111
115
  end
112
116
 
113
- if attributes.key?(:'latest_version_href')
114
- self.latest_version_href = attributes[:'latest_version_href']
117
+ if attributes.key?(:'versions_href')
118
+ self.versions_href = attributes[:'versions_href']
115
119
  end
116
120
 
117
121
  if attributes.key?(:'manifest_signing_service')
118
122
  self.manifest_signing_service = attributes[:'manifest_signing_service']
119
123
  end
120
124
 
121
- if attributes.key?(:'description')
122
- self.description = attributes[:'description']
123
- end
124
-
125
- if attributes.key?(:'versions_href')
126
- self.versions_href = attributes[:'versions_href']
125
+ if attributes.key?(:'pulp_created')
126
+ self.pulp_created = attributes[:'pulp_created']
127
127
  end
128
128
 
129
- if attributes.key?(:'name')
130
- self.name = attributes[:'name']
129
+ if attributes.key?(:'latest_version_href')
130
+ self.latest_version_href = attributes[:'latest_version_href']
131
131
  end
132
132
  end
133
133
 
@@ -170,14 +170,14 @@ module PulpContainerClient
170
170
  return true if self.equal?(o)
171
171
  self.class == o.class &&
172
172
  pulp_href == o.pulp_href &&
173
- pulp_created == o.pulp_created &&
174
- pulp_labels == o.pulp_labels &&
175
173
  retain_repo_versions == o.retain_repo_versions &&
176
- latest_version_href == o.latest_version_href &&
177
- manifest_signing_service == o.manifest_signing_service &&
178
174
  description == o.description &&
175
+ pulp_labels == o.pulp_labels &&
176
+ name == o.name &&
179
177
  versions_href == o.versions_href &&
180
- name == o.name
178
+ manifest_signing_service == o.manifest_signing_service &&
179
+ pulp_created == o.pulp_created &&
180
+ latest_version_href == o.latest_version_href
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
- [pulp_href, pulp_created, pulp_labels, retain_repo_versions, latest_version_href, manifest_signing_service, description, versions_href, name].hash
192
+ [pulp_href, retain_repo_versions, description, pulp_labels, name, versions_href, manifest_signing_service, pulp_created, latest_version_href].hash
193
193
  end
194
194
 
195
195
  # 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
- # Whether this distribution should be shown in the content app.
19
- attr_accessor :hidden
20
-
21
18
  # The base (relative) path component of the published url. Avoid paths that overlap with other distribution base paths (e.g. \"foo\" and \"foo/bar\")
22
19
  attr_accessor :base_path
23
20
 
24
- # An optional content-guard. If none is specified, a default one will be used.
25
- attr_accessor :content_guard
26
-
27
- attr_accessor :pulp_labels
21
+ # Whether this distribution should be shown in the content app.
22
+ attr_accessor :hidden
28
23
 
29
24
  # The latest RepositoryVersion for this Repository will be served.
30
25
  attr_accessor :repository
31
26
 
27
+ attr_accessor :pulp_labels
28
+
29
+ # An optional content-guard. If none is specified, a default one will be used.
30
+ attr_accessor :content_guard
31
+
32
32
  # A unique name. Ex, `rawhide` and `stable`.
33
33
  attr_accessor :name
34
34
 
@@ -44,11 +44,11 @@ module PulpContainerClient
44
44
  # Attribute mapping from ruby-style variable name to JSON key.
45
45
  def self.attribute_map
46
46
  {
47
- :'hidden' => :'hidden',
48
47
  :'base_path' => :'base_path',
49
- :'content_guard' => :'content_guard',
50
- :'pulp_labels' => :'pulp_labels',
48
+ :'hidden' => :'hidden',
51
49
  :'repository' => :'repository',
50
+ :'pulp_labels' => :'pulp_labels',
51
+ :'content_guard' => :'content_guard',
52
52
  :'name' => :'name',
53
53
  :'repository_version' => :'repository_version',
54
54
  :'private' => :'private',
@@ -59,11 +59,11 @@ module PulpContainerClient
59
59
  # Attribute type mapping.
60
60
  def self.openapi_types
61
61
  {
62
- :'hidden' => :'Boolean',
63
62
  :'base_path' => :'String',
64
- :'content_guard' => :'String',
65
- :'pulp_labels' => :'Hash<String, String>',
63
+ :'hidden' => :'Boolean',
66
64
  :'repository' => :'String',
65
+ :'pulp_labels' => :'Hash<String, String>',
66
+ :'content_guard' => :'String',
67
67
  :'name' => :'String',
68
68
  :'repository_version' => :'String',
69
69
  :'private' => :'Boolean',
@@ -95,18 +95,18 @@ module PulpContainerClient
95
95
  h[k.to_sym] = v
96
96
  }
97
97
 
98
+ if attributes.key?(:'base_path')
99
+ self.base_path = attributes[:'base_path']
100
+ end
101
+
98
102
  if attributes.key?(:'hidden')
99
103
  self.hidden = attributes[:'hidden']
100
104
  else
101
105
  self.hidden = false
102
106
  end
103
107
 
104
- if attributes.key?(:'base_path')
105
- self.base_path = attributes[:'base_path']
106
- end
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?(:'pulp_labels')
@@ -115,8 +115,8 @@ module PulpContainerClient
115
115
  end
116
116
  end
117
117
 
118
- if attributes.key?(:'repository')
119
- self.repository = attributes[:'repository']
118
+ if attributes.key?(:'content_guard')
119
+ self.content_guard = attributes[:'content_guard']
120
120
  end
121
121
 
122
122
  if attributes.key?(:'name')
@@ -199,11 +199,11 @@ module PulpContainerClient
199
199
  def ==(o)
200
200
  return true if self.equal?(o)
201
201
  self.class == o.class &&
202
- hidden == o.hidden &&
203
202
  base_path == o.base_path &&
204
- content_guard == o.content_guard &&
205
- pulp_labels == o.pulp_labels &&
203
+ hidden == o.hidden &&
206
204
  repository == o.repository &&
205
+ pulp_labels == o.pulp_labels &&
206
+ content_guard == o.content_guard &&
207
207
  name == o.name &&
208
208
  repository_version == o.repository_version &&
209
209
  private == o.private &&
@@ -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
- [hidden, base_path, content_guard, pulp_labels, repository, name, repository_version, private, description].hash
222
+ [base_path, hidden, repository, pulp_labels, content_guard, name, repository_version, private, description].hash
223
223
  end
224
224
 
225
225
  # Builds the object from hash
@@ -15,39 +15,39 @@ require 'date'
15
15
  module PulpContainerClient
16
16
  # Serializer for Container Push Repositories.
17
17
  class PatchedcontainerContainerPushRepository
18
- attr_accessor :pulp_labels
19
-
20
18
  # Retain X versions of the repository. Default is null which retains all versions.
21
19
  attr_accessor :retain_repo_versions
22
20
 
23
- # A reference to an associated signing service.
24
- attr_accessor :manifest_signing_service
25
-
26
21
  # An optional description.
27
22
  attr_accessor :description
28
23
 
24
+ attr_accessor :pulp_labels
25
+
29
26
  # A unique name for this repository.
30
27
  attr_accessor :name
31
28
 
29
+ # A reference to an associated signing service.
30
+ attr_accessor :manifest_signing_service
31
+
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',
36
35
  :'retain_repo_versions' => :'retain_repo_versions',
37
- :'manifest_signing_service' => :'manifest_signing_service',
38
36
  :'description' => :'description',
39
- :'name' => :'name'
37
+ :'pulp_labels' => :'pulp_labels',
38
+ :'name' => :'name',
39
+ :'manifest_signing_service' => :'manifest_signing_service'
40
40
  }
41
41
  end
42
42
 
43
43
  # Attribute type mapping.
44
44
  def self.openapi_types
45
45
  {
46
- :'pulp_labels' => :'Hash<String, String>',
47
46
  :'retain_repo_versions' => :'Integer',
48
- :'manifest_signing_service' => :'String',
49
47
  :'description' => :'String',
50
- :'name' => :'String'
48
+ :'pulp_labels' => :'Hash<String, String>',
49
+ :'name' => :'String',
50
+ :'manifest_signing_service' => :'String'
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
  :'retain_repo_versions',
58
- :'manifest_signing_service',
59
58
  :'description',
59
+ :'manifest_signing_service'
60
60
  ])
61
61
  end
62
62
 
@@ -75,27 +75,27 @@ 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
82
- end
83
-
84
78
  if attributes.key?(:'retain_repo_versions')
85
79
  self.retain_repo_versions = attributes[:'retain_repo_versions']
86
80
  end
87
81
 
88
- if attributes.key?(:'manifest_signing_service')
89
- self.manifest_signing_service = attributes[:'manifest_signing_service']
90
- end
91
-
92
82
  if attributes.key?(:'description')
93
83
  self.description = attributes[:'description']
94
84
  end
95
85
 
86
+ if attributes.key?(:'pulp_labels')
87
+ if (value = attributes[:'pulp_labels']).is_a?(Hash)
88
+ self.pulp_labels = value
89
+ end
90
+ end
91
+
96
92
  if attributes.key?(:'name')
97
93
  self.name = attributes[:'name']
98
94
  end
95
+
96
+ if attributes.key?(:'manifest_signing_service')
97
+ self.manifest_signing_service = attributes[:'manifest_signing_service']
98
+ end
99
99
  end
100
100
 
101
101
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -161,11 +161,11 @@ module PulpContainerClient
161
161
  def ==(o)
162
162
  return true if self.equal?(o)
163
163
  self.class == o.class &&
164
- pulp_labels == o.pulp_labels &&
165
164
  retain_repo_versions == o.retain_repo_versions &&
166
- manifest_signing_service == o.manifest_signing_service &&
167
165
  description == o.description &&
168
- name == o.name
166
+ pulp_labels == o.pulp_labels &&
167
+ name == o.name &&
168
+ manifest_signing_service == o.manifest_signing_service
169
169
  end
170
170
 
171
171
  # @see the `==` method
@@ -177,7 +177,7 @@ module PulpContainerClient
177
177
  # Calculates hash code according to all attributes.
178
178
  # @return [Integer] Hash code
179
179
  def hash
180
- [pulp_labels, retain_repo_versions, manifest_signing_service, description, name].hash
180
+ [retain_repo_versions, description, pulp_labels, name, manifest_signing_service].hash
181
181
  end
182
182
 
183
183
  # 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.15.5'
14
+ VERSION = '2.15.6'
15
15
  end
@@ -32,13 +32,13 @@ describe 'ContainerContainerDistributionResponse' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
33
33
  end
34
34
  end
35
- describe 'test attribute "hidden"' do
35
+ describe 'test attribute "base_path"' 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 "base_path"' do
41
+ describe 'test attribute "hidden"' 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
@@ -50,25 +50,25 @@ describe 'ContainerContainerDistributionResponse' do
50
50
  end
51
51
  end
52
52
 
53
- describe 'test attribute "pulp_created"' do
53
+ describe 'test attribute "repository"' 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 "content_guard"' do
59
+ describe 'test attribute "pulp_labels"' 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_labels"' do
65
+ describe 'test attribute "content_guard"' 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 "repository"' do
71
+ describe 'test attribute "pulp_created"' 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,19 +32,19 @@ describe 'ContainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "hidden"' do
35
+ describe 'test attribute "base_path"' 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 "base_path"' do
41
+ describe 'test attribute "hidden"' 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 "content_guard"' do
47
+ describe 'test attribute "repository"' 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
@@ -56,7 +56,7 @@ describe 'ContainerContainerDistribution' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "content_guard"' 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,49 +38,49 @@ describe 'ContainerContainerPushRepositoryResponse' do
38
38
  end
39
39
  end
40
40
 
41
- describe 'test attribute "pulp_created"' do
41
+ describe 'test attribute "retain_repo_versions"' 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 "pulp_labels"' do
47
+ describe 'test attribute "description"' 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_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 "latest_version_href"' do
59
+ describe 'test attribute "name"' 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 "manifest_signing_service"' do
65
+ describe 'test attribute "versions_href"' 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 "description"' do
71
+ describe 'test attribute "manifest_signing_service"' 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 "versions_href"' do
77
+ describe 'test attribute "pulp_created"' 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
81
81
  end
82
82
 
83
- describe 'test attribute "name"' do
83
+ describe 'test attribute "latest_version_href"' do
84
84
  it 'should work' do
85
85
  # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
86
86
  end
@@ -32,31 +32,31 @@ describe 'ContainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_labels"' do
35
+ describe 'test attribute "retain_repo_versions"' 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 "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 "manifest_signing_service"' do
47
+ describe 'test attribute "pulp_labels"' 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 "description"' do
53
+ describe 'test attribute "name"' 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 "name"' do
59
+ describe 'test attribute "manifest_signing_service"' 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,19 +32,19 @@ describe 'PatchedcontainerContainerDistribution' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
33
33
  end
34
34
  end
35
- describe 'test attribute "hidden"' do
35
+ describe 'test attribute "base_path"' 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 "base_path"' do
41
+ describe 'test attribute "hidden"' 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 "content_guard"' do
47
+ describe 'test attribute "repository"' 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
@@ -56,7 +56,7 @@ describe 'PatchedcontainerContainerDistribution' do
56
56
  end
57
57
  end
58
58
 
59
- describe 'test attribute "repository"' do
59
+ describe 'test attribute "content_guard"' 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,31 +32,31 @@ describe 'PatchedcontainerContainerPushRepository' do
32
32
  expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
33
33
  end
34
34
  end
35
- describe 'test attribute "pulp_labels"' do
35
+ describe 'test attribute "retain_repo_versions"' 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 "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 "manifest_signing_service"' do
47
+ describe 'test attribute "pulp_labels"' 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 "description"' do
53
+ describe 'test attribute "name"' 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 "name"' do
59
+ describe 'test attribute "manifest_signing_service"' 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