pulp_container_client 2.9.2 → 2.9.5
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 +2 -2
- data/docs/ContainerContainerDistributionResponse.md +7 -7
- data/docs/ContainerContainerPushRepository.md +5 -5
- data/docs/ContainerContainerPushRepositoryResponse.md +9 -9
- data/docs/PatchedcontainerContainerDistribution.md +2 -2
- data/docs/PatchedcontainerContainerPushRepository.md +5 -5
- data/lib/pulp_container_client/api_client.rb +1 -4
- data/lib/pulp_container_client/configuration.rb +1 -0
- data/lib/pulp_container_client/models/container_container_distribution.rb +11 -11
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +28 -28
- data/lib/pulp_container_client/models/container_container_push_repository.rb +25 -25
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +43 -43
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +11 -11
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +20 -20
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/models/container_container_distribution_response_spec.rb +6 -6
- data/spec/models/container_container_distribution_spec.rb +3 -3
- data/spec/models/container_container_push_repository_response_spec.rb +8 -8
- data/spec/models/container_container_push_repository_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_distribution_spec.rb +3 -3
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +3 -3
- metadata +42 -42
|
@@ -15,6 +15,14 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# Serializer for Container Push Repositories.
|
|
17
17
|
class ContainerContainerPushRepositoryResponse
|
|
18
|
+
attr_accessor :versions_href
|
|
19
|
+
|
|
20
|
+
# 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
|
+
attr_accessor :retain_repo_versions
|
|
22
|
+
|
|
23
|
+
# Timestamp of creation.
|
|
24
|
+
attr_accessor :pulp_created
|
|
25
|
+
|
|
18
26
|
attr_accessor :latest_version_href
|
|
19
27
|
|
|
20
28
|
# A unique name for this repository.
|
|
@@ -22,52 +30,44 @@ module PulpContainerClient
|
|
|
22
30
|
|
|
23
31
|
attr_accessor :pulp_href
|
|
24
32
|
|
|
25
|
-
# An optional description.
|
|
26
|
-
attr_accessor :description
|
|
27
|
-
|
|
28
|
-
# Timestamp of creation.
|
|
29
|
-
attr_accessor :pulp_created
|
|
30
|
-
|
|
31
33
|
attr_accessor :pulp_labels
|
|
32
34
|
|
|
33
|
-
#
|
|
34
|
-
attr_accessor :
|
|
35
|
-
|
|
36
|
-
attr_accessor :versions_href
|
|
35
|
+
# An optional description.
|
|
36
|
+
attr_accessor :description
|
|
37
37
|
|
|
38
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
39
39
|
def self.attribute_map
|
|
40
40
|
{
|
|
41
|
+
:'versions_href' => :'versions_href',
|
|
42
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
|
43
|
+
:'pulp_created' => :'pulp_created',
|
|
41
44
|
:'latest_version_href' => :'latest_version_href',
|
|
42
45
|
:'name' => :'name',
|
|
43
46
|
:'pulp_href' => :'pulp_href',
|
|
44
|
-
:'description' => :'description',
|
|
45
|
-
:'pulp_created' => :'pulp_created',
|
|
46
47
|
:'pulp_labels' => :'pulp_labels',
|
|
47
|
-
:'
|
|
48
|
-
:'versions_href' => :'versions_href'
|
|
48
|
+
:'description' => :'description'
|
|
49
49
|
}
|
|
50
50
|
end
|
|
51
51
|
|
|
52
52
|
# Attribute type mapping.
|
|
53
53
|
def self.openapi_types
|
|
54
54
|
{
|
|
55
|
+
:'versions_href' => :'String',
|
|
56
|
+
:'retain_repo_versions' => :'Integer',
|
|
57
|
+
:'pulp_created' => :'DateTime',
|
|
55
58
|
:'latest_version_href' => :'String',
|
|
56
59
|
:'name' => :'String',
|
|
57
60
|
:'pulp_href' => :'String',
|
|
58
|
-
:'description' => :'String',
|
|
59
|
-
:'pulp_created' => :'DateTime',
|
|
60
61
|
:'pulp_labels' => :'Object',
|
|
61
|
-
:'
|
|
62
|
-
:'versions_href' => :'String'
|
|
62
|
+
:'description' => :'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
|
-
:'description',
|
|
70
69
|
:'retain_repo_versions',
|
|
70
|
+
:'description'
|
|
71
71
|
])
|
|
72
72
|
end
|
|
73
73
|
|
|
@@ -86,6 +86,18 @@ module PulpContainerClient
|
|
|
86
86
|
h[k.to_sym] = v
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
+
if attributes.key?(:'versions_href')
|
|
90
|
+
self.versions_href = attributes[:'versions_href']
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
if attributes.key?(:'retain_repo_versions')
|
|
94
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
95
|
+
end
|
|
96
|
+
|
|
97
|
+
if attributes.key?(:'pulp_created')
|
|
98
|
+
self.pulp_created = attributes[:'pulp_created']
|
|
99
|
+
end
|
|
100
|
+
|
|
89
101
|
if attributes.key?(:'latest_version_href')
|
|
90
102
|
self.latest_version_href = attributes[:'latest_version_href']
|
|
91
103
|
end
|
|
@@ -98,24 +110,12 @@ module PulpContainerClient
|
|
|
98
110
|
self.pulp_href = attributes[:'pulp_href']
|
|
99
111
|
end
|
|
100
112
|
|
|
101
|
-
if attributes.key?(:'description')
|
|
102
|
-
self.description = attributes[:'description']
|
|
103
|
-
end
|
|
104
|
-
|
|
105
|
-
if attributes.key?(:'pulp_created')
|
|
106
|
-
self.pulp_created = attributes[:'pulp_created']
|
|
107
|
-
end
|
|
108
|
-
|
|
109
113
|
if attributes.key?(:'pulp_labels')
|
|
110
114
|
self.pulp_labels = attributes[:'pulp_labels']
|
|
111
115
|
end
|
|
112
116
|
|
|
113
|
-
if attributes.key?(:'
|
|
114
|
-
self.
|
|
115
|
-
end
|
|
116
|
-
|
|
117
|
-
if attributes.key?(:'versions_href')
|
|
118
|
-
self.versions_href = attributes[:'versions_href']
|
|
117
|
+
if attributes.key?(:'description')
|
|
118
|
+
self.description = attributes[:'description']
|
|
119
119
|
end
|
|
120
120
|
end
|
|
121
121
|
|
|
@@ -123,22 +123,22 @@ module PulpContainerClient
|
|
|
123
123
|
# @return Array for valid properties with the reasons
|
|
124
124
|
def list_invalid_properties
|
|
125
125
|
invalid_properties = Array.new
|
|
126
|
-
if @name.nil?
|
|
127
|
-
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
128
|
-
end
|
|
129
|
-
|
|
130
126
|
if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
131
127
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
|
132
128
|
end
|
|
133
129
|
|
|
130
|
+
if @name.nil?
|
|
131
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
132
|
+
end
|
|
133
|
+
|
|
134
134
|
invalid_properties
|
|
135
135
|
end
|
|
136
136
|
|
|
137
137
|
# Check to see if the all the properties in the model are valid
|
|
138
138
|
# @return true if the model is valid
|
|
139
139
|
def valid?
|
|
140
|
-
return false if @name.nil?
|
|
141
140
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
|
141
|
+
return false if @name.nil?
|
|
142
142
|
true
|
|
143
143
|
end
|
|
144
144
|
|
|
@@ -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
|
+
versions_href == o.versions_href &&
|
|
161
|
+
retain_repo_versions == o.retain_repo_versions &&
|
|
162
|
+
pulp_created == o.pulp_created &&
|
|
160
163
|
latest_version_href == o.latest_version_href &&
|
|
161
164
|
name == o.name &&
|
|
162
165
|
pulp_href == o.pulp_href &&
|
|
163
|
-
description == o.description &&
|
|
164
|
-
pulp_created == o.pulp_created &&
|
|
165
166
|
pulp_labels == o.pulp_labels &&
|
|
166
|
-
|
|
167
|
-
versions_href == o.versions_href
|
|
167
|
+
description == o.description
|
|
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
|
-
[
|
|
179
|
+
[versions_href, retain_repo_versions, pulp_created, latest_version_href, name, pulp_href, pulp_labels, description].hash
|
|
180
180
|
end
|
|
181
181
|
|
|
182
182
|
# Builds the object from hash
|
|
@@ -21,14 +21,14 @@ module PulpContainerClient
|
|
|
21
21
|
# An optional content-guard. If none is specified, a default one will be used.
|
|
22
22
|
attr_accessor :content_guard
|
|
23
23
|
|
|
24
|
-
# The latest RepositoryVersion for this Repository will be served.
|
|
25
|
-
attr_accessor :repository
|
|
26
|
-
|
|
27
24
|
attr_accessor :pulp_labels
|
|
28
25
|
|
|
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
|
|
|
@@ -43,9 +43,9 @@ module PulpContainerClient
|
|
|
43
43
|
{
|
|
44
44
|
:'name' => :'name',
|
|
45
45
|
:'content_guard' => :'content_guard',
|
|
46
|
-
:'repository' => :'repository',
|
|
47
46
|
:'pulp_labels' => :'pulp_labels',
|
|
48
47
|
:'base_path' => :'base_path',
|
|
48
|
+
:'repository' => :'repository',
|
|
49
49
|
:'repository_version' => :'repository_version',
|
|
50
50
|
:'private' => :'private',
|
|
51
51
|
:'description' => :'description'
|
|
@@ -57,9 +57,9 @@ module PulpContainerClient
|
|
|
57
57
|
{
|
|
58
58
|
:'name' => :'String',
|
|
59
59
|
:'content_guard' => :'String',
|
|
60
|
-
:'repository' => :'String',
|
|
61
60
|
:'pulp_labels' => :'Object',
|
|
62
61
|
:'base_path' => :'String',
|
|
62
|
+
:'repository' => :'String',
|
|
63
63
|
:'repository_version' => :'String',
|
|
64
64
|
:'private' => :'Boolean',
|
|
65
65
|
:'description' => :'String'
|
|
@@ -98,10 +98,6 @@ module PulpContainerClient
|
|
|
98
98
|
self.content_guard = attributes[:'content_guard']
|
|
99
99
|
end
|
|
100
100
|
|
|
101
|
-
if attributes.key?(:'repository')
|
|
102
|
-
self.repository = attributes[:'repository']
|
|
103
|
-
end
|
|
104
|
-
|
|
105
101
|
if attributes.key?(:'pulp_labels')
|
|
106
102
|
self.pulp_labels = attributes[:'pulp_labels']
|
|
107
103
|
end
|
|
@@ -110,6 +106,10 @@ module PulpContainerClient
|
|
|
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
|
|
@@ -143,9 +143,9 @@ module PulpContainerClient
|
|
|
143
143
|
self.class == o.class &&
|
|
144
144
|
name == o.name &&
|
|
145
145
|
content_guard == o.content_guard &&
|
|
146
|
-
repository == o.repository &&
|
|
147
146
|
pulp_labels == o.pulp_labels &&
|
|
148
147
|
base_path == o.base_path &&
|
|
148
|
+
repository == o.repository &&
|
|
149
149
|
repository_version == o.repository_version &&
|
|
150
150
|
private == o.private &&
|
|
151
151
|
description == o.description
|
|
@@ -160,7 +160,7 @@ module PulpContainerClient
|
|
|
160
160
|
# Calculates hash code according to all attributes.
|
|
161
161
|
# @return [Integer] Hash code
|
|
162
162
|
def hash
|
|
163
|
-
[name, content_guard,
|
|
163
|
+
[name, content_guard, pulp_labels, base_path, repository, repository_version, private, description].hash
|
|
164
164
|
end
|
|
165
165
|
|
|
166
166
|
# Builds the object from hash
|
|
@@ -15,42 +15,42 @@ require 'date'
|
|
|
15
15
|
module PulpContainerClient
|
|
16
16
|
# Serializer for Container Push Repositories.
|
|
17
17
|
class PatchedcontainerContainerPushRepository
|
|
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
|
+
|
|
18
21
|
# A unique name for this repository.
|
|
19
22
|
attr_accessor :name
|
|
20
23
|
|
|
21
|
-
# An optional description.
|
|
22
|
-
attr_accessor :description
|
|
23
|
-
|
|
24
24
|
attr_accessor :pulp_labels
|
|
25
25
|
|
|
26
|
-
#
|
|
27
|
-
attr_accessor :
|
|
26
|
+
# An optional description.
|
|
27
|
+
attr_accessor :description
|
|
28
28
|
|
|
29
29
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
30
|
def self.attribute_map
|
|
31
31
|
{
|
|
32
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
|
32
33
|
:'name' => :'name',
|
|
33
|
-
:'description' => :'description',
|
|
34
34
|
:'pulp_labels' => :'pulp_labels',
|
|
35
|
-
:'
|
|
35
|
+
:'description' => :'description'
|
|
36
36
|
}
|
|
37
37
|
end
|
|
38
38
|
|
|
39
39
|
# Attribute type mapping.
|
|
40
40
|
def self.openapi_types
|
|
41
41
|
{
|
|
42
|
+
:'retain_repo_versions' => :'Integer',
|
|
42
43
|
:'name' => :'String',
|
|
43
|
-
:'description' => :'String',
|
|
44
44
|
:'pulp_labels' => :'Object',
|
|
45
|
-
:'
|
|
45
|
+
:'description' => :'String'
|
|
46
46
|
}
|
|
47
47
|
end
|
|
48
48
|
|
|
49
49
|
# List of attributes with nullable: true
|
|
50
50
|
def self.openapi_nullable
|
|
51
51
|
Set.new([
|
|
52
|
-
:'
|
|
53
|
-
:'
|
|
52
|
+
:'retain_repo_versions',
|
|
53
|
+
:'description'
|
|
54
54
|
])
|
|
55
55
|
end
|
|
56
56
|
|
|
@@ -69,20 +69,20 @@ module PulpContainerClient
|
|
|
69
69
|
h[k.to_sym] = v
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
if attributes.key?(:'
|
|
73
|
-
self.
|
|
72
|
+
if attributes.key?(:'retain_repo_versions')
|
|
73
|
+
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
|
74
74
|
end
|
|
75
75
|
|
|
76
|
-
if attributes.key?(:'
|
|
77
|
-
self.
|
|
76
|
+
if attributes.key?(:'name')
|
|
77
|
+
self.name = attributes[:'name']
|
|
78
78
|
end
|
|
79
79
|
|
|
80
80
|
if attributes.key?(:'pulp_labels')
|
|
81
81
|
self.pulp_labels = attributes[:'pulp_labels']
|
|
82
82
|
end
|
|
83
83
|
|
|
84
|
-
if attributes.key?(:'
|
|
85
|
-
self.
|
|
84
|
+
if attributes.key?(:'description')
|
|
85
|
+
self.description = attributes[:'description']
|
|
86
86
|
end
|
|
87
87
|
end
|
|
88
88
|
|
|
@@ -119,10 +119,10 @@ module PulpContainerClient
|
|
|
119
119
|
def ==(o)
|
|
120
120
|
return true if self.equal?(o)
|
|
121
121
|
self.class == o.class &&
|
|
122
|
+
retain_repo_versions == o.retain_repo_versions &&
|
|
122
123
|
name == o.name &&
|
|
123
|
-
description == o.description &&
|
|
124
124
|
pulp_labels == o.pulp_labels &&
|
|
125
|
-
|
|
125
|
+
description == o.description
|
|
126
126
|
end
|
|
127
127
|
|
|
128
128
|
# @see the `==` method
|
|
@@ -134,7 +134,7 @@ module PulpContainerClient
|
|
|
134
134
|
# Calculates hash code according to all attributes.
|
|
135
135
|
# @return [Integer] Hash code
|
|
136
136
|
def hash
|
|
137
|
-
[
|
|
137
|
+
[retain_repo_versions, name, pulp_labels, description].hash
|
|
138
138
|
end
|
|
139
139
|
|
|
140
140
|
# Builds the object from hash
|
|
@@ -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 "
|
|
35
|
+
describe 'test attribute "pulp_created"' 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 "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
|
|
@@ -50,25 +50,25 @@ describe 'ContainerContainerDistributionResponse' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "
|
|
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 "
|
|
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 "
|
|
65
|
+
describe 'test attribute "base_path"' 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
|
|
@@ -44,19 +44,19 @@ describe 'ContainerContainerDistribution' do
|
|
|
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 "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,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 "
|
|
35
|
+
describe 'test attribute "versions_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 "
|
|
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 "
|
|
47
|
+
describe 'test attribute "pulp_created"' 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_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 "
|
|
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
|
|
@@ -32,13 +32,13 @@ 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 "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
|
|
@@ -50,7 +50,7 @@ describe 'ContainerContainerPushRepository' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "
|
|
53
|
+
describe 'test attribute "description"' 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
|
|
@@ -44,19 +44,19 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
|
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 "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,13 +32,13 @@ 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 "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
|
|
@@ -50,7 +50,7 @@ describe 'PatchedcontainerContainerPushRepository' do
|
|
|
50
50
|
end
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
-
describe 'test attribute "
|
|
53
|
+
describe 'test attribute "description"' 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
|