pulp_container_client 2.13.0 → 2.13.1
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.
- checksums.yaml +4 -4
- data/README.md +4 -4
- data/docs/ContainerContainerDistribution.md +5 -5
- data/docs/ContainerContainerDistributionResponse.md +8 -8
- data/docs/ContainerContainerPushRepository.md +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/PatchedcontainerContainerDistribution.md +5 -5
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/lib/pulp_container_client/models/container_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +32 -32
- data/lib/pulp_container_client/models/container_container_push_repository.rb +20 -20
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +37 -37
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +21 -21
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +20 -20
- data/lib/pulp_container_client/version.rb +1 -1
- data/pulp_container_client.gemspec +3 -3
- data/spec/models/container_container_distribution_response_spec.rb +6 -6
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +9 -9
- data/spec/models/container_container_push_repository_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +4 -4
- metadata +52 -53
- data/git_push.sh +0 -58
@@ -15,56 +15,56 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class ContainerContainerPushRepositoryResponse
|
18
|
-
#
|
19
|
-
attr_accessor :
|
18
|
+
# 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.
|
19
|
+
attr_accessor :retain_repo_versions
|
20
|
+
|
21
|
+
# A reference to an associated signing service.
|
22
|
+
attr_accessor :manifest_signing_service
|
20
23
|
|
21
24
|
attr_accessor :pulp_labels
|
22
25
|
|
23
|
-
|
24
|
-
attr_accessor :retain_repo_versions
|
26
|
+
attr_accessor :latest_version_href
|
25
27
|
|
26
28
|
# A unique name for this repository.
|
27
29
|
attr_accessor :name
|
28
30
|
|
29
|
-
|
30
|
-
attr_accessor :manifest_signing_service
|
31
|
+
attr_accessor :pulp_href
|
31
32
|
|
32
|
-
|
33
|
+
# Timestamp of creation.
|
34
|
+
attr_accessor :pulp_created
|
33
35
|
|
34
36
|
# An optional description.
|
35
37
|
attr_accessor :description
|
36
38
|
|
37
39
|
attr_accessor :versions_href
|
38
40
|
|
39
|
-
attr_accessor :pulp_href
|
40
|
-
|
41
41
|
# Attribute mapping from ruby-style variable name to JSON key.
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
|
-
:'pulp_created' => :'pulp_created',
|
45
|
-
:'pulp_labels' => :'pulp_labels',
|
46
44
|
:'retain_repo_versions' => :'retain_repo_versions',
|
47
|
-
:'name' => :'name',
|
48
45
|
:'manifest_signing_service' => :'manifest_signing_service',
|
46
|
+
:'pulp_labels' => :'pulp_labels',
|
49
47
|
:'latest_version_href' => :'latest_version_href',
|
48
|
+
:'name' => :'name',
|
49
|
+
:'pulp_href' => :'pulp_href',
|
50
|
+
:'pulp_created' => :'pulp_created',
|
50
51
|
:'description' => :'description',
|
51
|
-
:'versions_href' => :'versions_href'
|
52
|
-
:'pulp_href' => :'pulp_href'
|
52
|
+
:'versions_href' => :'versions_href'
|
53
53
|
}
|
54
54
|
end
|
55
55
|
|
56
56
|
# Attribute type mapping.
|
57
57
|
def self.openapi_types
|
58
58
|
{
|
59
|
-
:'pulp_created' => :'DateTime',
|
60
|
-
:'pulp_labels' => :'Object',
|
61
59
|
:'retain_repo_versions' => :'Integer',
|
62
|
-
:'name' => :'String',
|
63
60
|
:'manifest_signing_service' => :'String',
|
61
|
+
:'pulp_labels' => :'Object',
|
64
62
|
:'latest_version_href' => :'String',
|
63
|
+
:'name' => :'String',
|
64
|
+
:'pulp_href' => :'String',
|
65
|
+
:'pulp_created' => :'DateTime',
|
65
66
|
:'description' => :'String',
|
66
|
-
:'versions_href' => :'String'
|
67
|
-
:'pulp_href' => :'String'
|
67
|
+
:'versions_href' => :'String'
|
68
68
|
}
|
69
69
|
end
|
70
70
|
|
@@ -92,28 +92,32 @@ module PulpContainerClient
|
|
92
92
|
h[k.to_sym] = v
|
93
93
|
}
|
94
94
|
|
95
|
-
if attributes.key?(:'
|
96
|
-
self.
|
95
|
+
if attributes.key?(:'retain_repo_versions')
|
96
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
97
|
+
end
|
98
|
+
|
99
|
+
if attributes.key?(:'manifest_signing_service')
|
100
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
97
101
|
end
|
98
102
|
|
99
103
|
if attributes.key?(:'pulp_labels')
|
100
104
|
self.pulp_labels = attributes[:'pulp_labels']
|
101
105
|
end
|
102
106
|
|
103
|
-
if attributes.key?(:'
|
104
|
-
self.
|
107
|
+
if attributes.key?(:'latest_version_href')
|
108
|
+
self.latest_version_href = attributes[:'latest_version_href']
|
105
109
|
end
|
106
110
|
|
107
111
|
if attributes.key?(:'name')
|
108
112
|
self.name = attributes[:'name']
|
109
113
|
end
|
110
114
|
|
111
|
-
if attributes.key?(:'
|
112
|
-
self.
|
115
|
+
if attributes.key?(:'pulp_href')
|
116
|
+
self.pulp_href = attributes[:'pulp_href']
|
113
117
|
end
|
114
118
|
|
115
|
-
if attributes.key?(:'
|
116
|
-
self.
|
119
|
+
if attributes.key?(:'pulp_created')
|
120
|
+
self.pulp_created = attributes[:'pulp_created']
|
117
121
|
end
|
118
122
|
|
119
123
|
if attributes.key?(:'description')
|
@@ -123,10 +127,6 @@ module PulpContainerClient
|
|
123
127
|
if attributes.key?(:'versions_href')
|
124
128
|
self.versions_href = attributes[:'versions_href']
|
125
129
|
end
|
126
|
-
|
127
|
-
if attributes.key?(:'pulp_href')
|
128
|
-
self.pulp_href = attributes[:'pulp_href']
|
129
|
-
end
|
130
130
|
end
|
131
131
|
|
132
132
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -167,15 +167,15 @@ module PulpContainerClient
|
|
167
167
|
def ==(o)
|
168
168
|
return true if self.equal?(o)
|
169
169
|
self.class == o.class &&
|
170
|
-
pulp_created == o.pulp_created &&
|
171
|
-
pulp_labels == o.pulp_labels &&
|
172
170
|
retain_repo_versions == o.retain_repo_versions &&
|
173
|
-
name == o.name &&
|
174
171
|
manifest_signing_service == o.manifest_signing_service &&
|
172
|
+
pulp_labels == o.pulp_labels &&
|
175
173
|
latest_version_href == o.latest_version_href &&
|
174
|
+
name == o.name &&
|
175
|
+
pulp_href == o.pulp_href &&
|
176
|
+
pulp_created == o.pulp_created &&
|
176
177
|
description == o.description &&
|
177
|
-
versions_href == o.versions_href
|
178
|
-
pulp_href == o.pulp_href
|
178
|
+
versions_href == o.versions_href
|
179
179
|
end
|
180
180
|
|
181
181
|
# @see the `==` method
|
@@ -187,7 +187,7 @@ module PulpContainerClient
|
|
187
187
|
# Calculates hash code according to all attributes.
|
188
188
|
# @return [Integer] Hash code
|
189
189
|
def hash
|
190
|
-
[
|
190
|
+
[retain_repo_versions, manifest_signing_service, pulp_labels, latest_version_href, name, pulp_href, pulp_created, description, versions_href].hash
|
191
191
|
end
|
192
192
|
|
193
193
|
# 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
|
-
|
18
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
19
|
+
attr_accessor :content_guard
|
19
20
|
|
20
|
-
|
21
|
-
attr_accessor :repository
|
21
|
+
attr_accessor :pulp_labels
|
22
22
|
|
23
23
|
# A unique name. Ex, `rawhide` and `stable`.
|
24
24
|
attr_accessor :name
|
25
25
|
|
26
|
-
# An optional content-guard. If none is specified, a default one will be used.
|
27
|
-
attr_accessor :content_guard
|
28
|
-
|
29
26
|
# 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
27
|
attr_accessor :base_path
|
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',
|
44
45
|
:'pulp_labels' => :'pulp_labels',
|
45
|
-
:'repository' => :'repository',
|
46
46
|
:'name' => :'name',
|
47
|
-
:'content_guard' => :'content_guard',
|
48
47
|
:'base_path' => :'base_path',
|
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',
|
58
59
|
:'pulp_labels' => :'Object',
|
59
|
-
:'repository' => :'String',
|
60
60
|
:'name' => :'String',
|
61
|
-
:'content_guard' => :'String',
|
62
61
|
:'base_path' => :'String',
|
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?(:'
|
94
|
-
self.
|
93
|
+
if attributes.key?(:'content_guard')
|
94
|
+
self.content_guard = attributes[:'content_guard']
|
95
95
|
end
|
96
96
|
|
97
|
-
if attributes.key?(:'
|
98
|
-
self.
|
97
|
+
if attributes.key?(:'pulp_labels')
|
98
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
99
99
|
end
|
100
100
|
|
101
101
|
if attributes.key?(:'name')
|
102
102
|
self.name = attributes[:'name']
|
103
103
|
end
|
104
104
|
|
105
|
-
if attributes.key?(:'content_guard')
|
106
|
-
self.content_guard = attributes[:'content_guard']
|
107
|
-
end
|
108
|
-
|
109
105
|
if attributes.key?(:'base_path')
|
110
106
|
self.base_path = attributes[:'base_path']
|
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 &&
|
189
190
|
pulp_labels == o.pulp_labels &&
|
190
|
-
repository == o.repository &&
|
191
191
|
name == o.name &&
|
192
|
-
content_guard == o.content_guard &&
|
193
192
|
base_path == o.base_path &&
|
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
|
-
[
|
208
|
+
[content_guard, pulp_labels, name, base_path, repository, repository_version, private, description].hash
|
209
209
|
end
|
210
210
|
|
211
211
|
# Builds the object from hash
|
@@ -15,27 +15,27 @@ 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. This is provided as a tech preview in Pulp 3 and may change in the future.
|
21
19
|
attr_accessor :retain_repo_versions
|
22
20
|
|
23
|
-
# A unique name for this repository.
|
24
|
-
attr_accessor :name
|
25
|
-
|
26
21
|
# A reference to an associated signing service.
|
27
22
|
attr_accessor :manifest_signing_service
|
28
23
|
|
24
|
+
attr_accessor :pulp_labels
|
25
|
+
|
26
|
+
# A unique name for this repository.
|
27
|
+
attr_accessor :name
|
28
|
+
|
29
29
|
# An optional description.
|
30
30
|
attr_accessor :description
|
31
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
|
-
:'name' => :'name',
|
38
36
|
:'manifest_signing_service' => :'manifest_signing_service',
|
37
|
+
:'pulp_labels' => :'pulp_labels',
|
38
|
+
:'name' => :'name',
|
39
39
|
:'description' => :'description'
|
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' => :'Object',
|
47
46
|
:'retain_repo_versions' => :'Integer',
|
48
|
-
:'name' => :'String',
|
49
47
|
:'manifest_signing_service' => :'String',
|
48
|
+
:'pulp_labels' => :'Object',
|
49
|
+
:'name' => :'String',
|
50
50
|
:'description' => :'String'
|
51
51
|
}
|
52
52
|
end
|
@@ -75,22 +75,22 @@ module PulpContainerClient
|
|
75
75
|
h[k.to_sym] = v
|
76
76
|
}
|
77
77
|
|
78
|
-
if attributes.key?(:'pulp_labels')
|
79
|
-
self.pulp_labels = attributes[:'pulp_labels']
|
80
|
-
end
|
81
|
-
|
82
78
|
if attributes.key?(:'retain_repo_versions')
|
83
79
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
84
80
|
end
|
85
81
|
|
86
|
-
if attributes.key?(:'name')
|
87
|
-
self.name = attributes[:'name']
|
88
|
-
end
|
89
|
-
|
90
82
|
if attributes.key?(:'manifest_signing_service')
|
91
83
|
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
92
84
|
end
|
93
85
|
|
86
|
+
if attributes.key?(:'pulp_labels')
|
87
|
+
self.pulp_labels = attributes[:'pulp_labels']
|
88
|
+
end
|
89
|
+
|
90
|
+
if attributes.key?(:'name')
|
91
|
+
self.name = attributes[:'name']
|
92
|
+
end
|
93
|
+
|
94
94
|
if attributes.key?(:'description')
|
95
95
|
self.description = attributes[:'description']
|
96
96
|
end
|
@@ -159,10 +159,10 @@ module PulpContainerClient
|
|
159
159
|
def ==(o)
|
160
160
|
return true if self.equal?(o)
|
161
161
|
self.class == o.class &&
|
162
|
-
pulp_labels == o.pulp_labels &&
|
163
162
|
retain_repo_versions == o.retain_repo_versions &&
|
164
|
-
name == o.name &&
|
165
163
|
manifest_signing_service == o.manifest_signing_service &&
|
164
|
+
pulp_labels == o.pulp_labels &&
|
165
|
+
name == o.name &&
|
166
166
|
description == o.description
|
167
167
|
end
|
168
168
|
|
@@ -175,7 +175,7 @@ module PulpContainerClient
|
|
175
175
|
# Calculates hash code according to all attributes.
|
176
176
|
# @return [Integer] Hash code
|
177
177
|
def hash
|
178
|
-
[
|
178
|
+
[retain_repo_versions, manifest_signing_service, pulp_labels, name, description].hash
|
179
179
|
end
|
180
180
|
|
181
181
|
# Builds the object from hash
|
@@ -21,13 +21,13 @@ Gem::Specification.new do |s|
|
|
21
21
|
s.platform = Gem::Platform::RUBY
|
22
22
|
s.authors = ["OpenAPI-Generator"]
|
23
23
|
s.email = ["pulp-list@redhat.com"]
|
24
|
-
s.homepage = "https://
|
24
|
+
s.homepage = "https://github.com/pulp/pulp_container"
|
25
25
|
s.summary = "Pulp 3 API Ruby Gem"
|
26
26
|
s.description = "Fetch, Upload, Organize, and Distribute Software Packages"
|
27
|
-
s.license = '
|
27
|
+
s.license = 'GPLv2+'
|
28
28
|
s.required_ruby_version = ">= 1.9"
|
29
29
|
|
30
|
-
s.add_runtime_dependency 'faraday', '
|
30
|
+
s.add_runtime_dependency 'faraday', '>= 0.17', '< 1.9.0'
|
31
31
|
s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
|
32
32
|
|
33
33
|
s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
|
@@ -32,7 +32,7 @@ describe 'ContainerContainerDistributionResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistributionResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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
|
@@ -44,31 +44,31 @@ describe 'ContainerContainerDistributionResponse' do
|
|
44
44
|
end
|
45
45
|
end
|
46
46
|
|
47
|
-
describe 'test attribute "
|
47
|
+
describe 'test attribute "name"' 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 "
|
53
|
+
describe 'test attribute "base_path"' 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 "
|
59
|
+
describe 'test attribute "pulp_href"' 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 "
|
65
|
+
describe 'test attribute "pulp_created"' 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 "
|
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,13 +32,13 @@ describe 'ContainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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 "
|
41
|
+
describe 'test attribute "pulp_labels"' 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,13 +50,13 @@ describe 'ContainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "base_path"' 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 "
|
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,55 +32,55 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepositoryResponse)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
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 "
|
41
|
+
describe 'test attribute "manifest_signing_service"' 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 "
|
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 "
|
53
|
+
describe 'test attribute "latest_version_href"' 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 "
|
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 "
|
65
|
+
describe 'test attribute "pulp_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 "
|
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
|
75
75
|
end
|
76
76
|
|
77
|
-
describe 'test attribute "
|
77
|
+
describe 'test attribute "description"' 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 "
|
83
|
+
describe 'test attribute "versions_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,25 +32,25 @@ describe 'ContainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::ContainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
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 "
|
41
|
+
describe 'test attribute "manifest_signing_service"' 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 "
|
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 "
|
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
|
@@ -32,13 +32,13 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerDistribution)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
35
|
+
describe 'test attribute "content_guard"' 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 "
|
41
|
+
describe 'test attribute "pulp_labels"' 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,13 +50,13 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
-
describe 'test attribute "
|
53
|
+
describe 'test attribute "base_path"' 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 "
|
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,25 +32,25 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
32
32
|
expect(@instance).to be_instance_of(PulpContainerClient::PatchedcontainerContainerPushRepository)
|
33
33
|
end
|
34
34
|
end
|
35
|
-
describe 'test attribute "
|
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 "
|
41
|
+
describe 'test attribute "manifest_signing_service"' 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 "
|
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 "
|
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
|