pulp_container_client 2.13.3 → 2.14.0
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 +6 -6
- data/docs/ContainerContainerDistributionResponse.md +9 -9
- data/docs/ContainerContainerPushRepository.md +6 -6
- data/docs/ContainerContainerPushRepositoryResponse.md +10 -10
- data/docs/DistributionsContainerApi.md +0 -2
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPushRepository.md +6 -6
- data/docs/RepositoriesContainerApi.md +0 -2
- data/docs/RepositoriesContainerPushApi.md +0 -2
- data/lib/pulp_container_client/api/distributions_container_api.rb +0 -3
- data/lib/pulp_container_client/api/repositories_container_api.rb +0 -3
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +0 -3
- data/lib/pulp_container_client/api/repositories_container_push_versions_api.rb +1 -1
- data/lib/pulp_container_client/api/repositories_container_versions_api.rb +1 -1
- data/lib/pulp_container_client/models/container_container_distribution.rb +48 -48
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +43 -43
- data/lib/pulp_container_client/models/container_container_push_repository.rb +49 -49
- data/lib/pulp_container_client/models/container_container_push_repository_response.rb +48 -48
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +39 -39
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +40 -40
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/distributions_container_api_spec.rb +0 -1
- data/spec/api/repositories_container_api_spec.rb +0 -1
- data/spec/api/repositories_container_push_api_spec.rb +0 -1
- data/spec/models/container_container_distribution_response_spec.rb +7 -7
- data/spec/models/container_container_distribution_spec.rb +4 -4
- data/spec/models/container_container_push_repository_response_spec.rb +8 -8
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_distribution_spec.rb +4 -4
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
- metadata +2 -2
@@ -18,16 +18,16 @@ module PulpContainerClient
|
|
18
18
|
# The latest RepositoryVersion for this Repository will be served.
|
19
19
|
attr_accessor :repository
|
20
20
|
|
21
|
-
#
|
22
|
-
attr_accessor :
|
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\")
|
22
|
+
attr_accessor :base_path
|
23
|
+
|
24
|
+
attr_accessor :pulp_labels
|
23
25
|
|
24
26
|
# A unique name. Ex, `rawhide` and `stable`.
|
25
27
|
attr_accessor :name
|
26
28
|
|
27
|
-
|
28
|
-
|
29
|
-
# 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
|
-
attr_accessor :base_path
|
29
|
+
# An optional content-guard. If none is specified, a default one will be used.
|
30
|
+
attr_accessor :content_guard
|
31
31
|
|
32
32
|
# RepositoryVersion to be served
|
33
33
|
attr_accessor :repository_version
|
@@ -42,10 +42,10 @@ module PulpContainerClient
|
|
42
42
|
def self.attribute_map
|
43
43
|
{
|
44
44
|
:'repository' => :'repository',
|
45
|
-
:'content_guard' => :'content_guard',
|
46
|
-
:'name' => :'name',
|
47
|
-
:'pulp_labels' => :'pulp_labels',
|
48
45
|
:'base_path' => :'base_path',
|
46
|
+
:'pulp_labels' => :'pulp_labels',
|
47
|
+
:'name' => :'name',
|
48
|
+
:'content_guard' => :'content_guard',
|
49
49
|
:'repository_version' => :'repository_version',
|
50
50
|
:'private' => :'private',
|
51
51
|
:'description' => :'description'
|
@@ -56,10 +56,10 @@ module PulpContainerClient
|
|
56
56
|
def self.openapi_types
|
57
57
|
{
|
58
58
|
:'repository' => :'String',
|
59
|
-
:'content_guard' => :'String',
|
60
|
-
:'name' => :'String',
|
61
|
-
:'pulp_labels' => :'Object',
|
62
59
|
:'base_path' => :'String',
|
60
|
+
:'pulp_labels' => :'Object',
|
61
|
+
:'name' => :'String',
|
62
|
+
:'content_guard' => :'String',
|
63
63
|
:'repository_version' => :'String',
|
64
64
|
:'private' => :'Boolean',
|
65
65
|
:'description' => :'String'
|
@@ -94,20 +94,20 @@ module PulpContainerClient
|
|
94
94
|
self.repository = attributes[:'repository']
|
95
95
|
end
|
96
96
|
|
97
|
-
if attributes.key?(:'
|
98
|
-
self.
|
99
|
-
end
|
100
|
-
|
101
|
-
if attributes.key?(:'name')
|
102
|
-
self.name = attributes[:'name']
|
97
|
+
if attributes.key?(:'base_path')
|
98
|
+
self.base_path = attributes[:'base_path']
|
103
99
|
end
|
104
100
|
|
105
101
|
if attributes.key?(:'pulp_labels')
|
106
102
|
self.pulp_labels = attributes[:'pulp_labels']
|
107
103
|
end
|
108
104
|
|
109
|
-
if attributes.key?(:'
|
110
|
-
self.
|
105
|
+
if attributes.key?(:'name')
|
106
|
+
self.name = attributes[:'name']
|
107
|
+
end
|
108
|
+
|
109
|
+
if attributes.key?(:'content_guard')
|
110
|
+
self.content_guard = attributes[:'content_guard']
|
111
111
|
end
|
112
112
|
|
113
113
|
if attributes.key?(:'repository_version')
|
@@ -127,14 +127,14 @@ module PulpContainerClient
|
|
127
127
|
# @return Array for valid properties with the reasons
|
128
128
|
def list_invalid_properties
|
129
129
|
invalid_properties = Array.new
|
130
|
-
if !@name.nil? && @name.to_s.length < 1
|
131
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
132
|
-
end
|
133
|
-
|
134
130
|
if !@base_path.nil? && @base_path.to_s.length < 1
|
135
131
|
invalid_properties.push('invalid value for "base_path", the character length must be great than or equal to 1.')
|
136
132
|
end
|
137
133
|
|
134
|
+
if !@name.nil? && @name.to_s.length < 1
|
135
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
136
|
+
end
|
137
|
+
|
138
138
|
if !@description.nil? && @description.to_s.length < 1
|
139
139
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
140
140
|
end
|
@@ -145,22 +145,12 @@ module PulpContainerClient
|
|
145
145
|
# Check to see if the all the properties in the model are valid
|
146
146
|
# @return true if the model is valid
|
147
147
|
def valid?
|
148
|
-
return false if !@name.nil? && @name.to_s.length < 1
|
149
148
|
return false if !@base_path.nil? && @base_path.to_s.length < 1
|
149
|
+
return false if !@name.nil? && @name.to_s.length < 1
|
150
150
|
return false if !@description.nil? && @description.to_s.length < 1
|
151
151
|
true
|
152
152
|
end
|
153
153
|
|
154
|
-
# Custom attribute writer method with validation
|
155
|
-
# @param [Object] name Value to be assigned
|
156
|
-
def name=(name)
|
157
|
-
if !name.nil? && name.to_s.length < 1
|
158
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
159
|
-
end
|
160
|
-
|
161
|
-
@name = name
|
162
|
-
end
|
163
|
-
|
164
154
|
# Custom attribute writer method with validation
|
165
155
|
# @param [Object] base_path Value to be assigned
|
166
156
|
def base_path=(base_path)
|
@@ -171,6 +161,16 @@ module PulpContainerClient
|
|
171
161
|
@base_path = base_path
|
172
162
|
end
|
173
163
|
|
164
|
+
# Custom attribute writer method with validation
|
165
|
+
# @param [Object] name Value to be assigned
|
166
|
+
def name=(name)
|
167
|
+
if !name.nil? && name.to_s.length < 1
|
168
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
169
|
+
end
|
170
|
+
|
171
|
+
@name = name
|
172
|
+
end
|
173
|
+
|
174
174
|
# Custom attribute writer method with validation
|
175
175
|
# @param [Object] description Value to be assigned
|
176
176
|
def description=(description)
|
@@ -187,10 +187,10 @@ module PulpContainerClient
|
|
187
187
|
return true if self.equal?(o)
|
188
188
|
self.class == o.class &&
|
189
189
|
repository == o.repository &&
|
190
|
-
content_guard == o.content_guard &&
|
191
|
-
name == o.name &&
|
192
|
-
pulp_labels == o.pulp_labels &&
|
193
190
|
base_path == o.base_path &&
|
191
|
+
pulp_labels == o.pulp_labels &&
|
192
|
+
name == o.name &&
|
193
|
+
content_guard == o.content_guard &&
|
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
|
-
[repository,
|
208
|
+
[repository, base_path, pulp_labels, name, content_guard, repository_version, private, description].hash
|
209
209
|
end
|
210
210
|
|
211
211
|
# Builds the object from hash
|
@@ -15,12 +15,6 @@ require 'date'
|
|
15
15
|
module PulpContainerClient
|
16
16
|
# Serializer for Container Push Repositories.
|
17
17
|
class PatchedcontainerContainerPushRepository
|
18
|
-
# A reference to an associated signing service.
|
19
|
-
attr_accessor :manifest_signing_service
|
20
|
-
|
21
|
-
# A unique name for this repository.
|
22
|
-
attr_accessor :name
|
23
|
-
|
24
18
|
# An optional description.
|
25
19
|
attr_accessor :description
|
26
20
|
|
@@ -29,34 +23,40 @@ module PulpContainerClient
|
|
29
23
|
|
30
24
|
attr_accessor :pulp_labels
|
31
25
|
|
26
|
+
# A unique name for this repository.
|
27
|
+
attr_accessor :name
|
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
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
36
|
-
:'name' => :'name',
|
37
35
|
:'description' => :'description',
|
38
36
|
:'retain_repo_versions' => :'retain_repo_versions',
|
39
|
-
:'pulp_labels' => :'pulp_labels'
|
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
|
-
:'manifest_signing_service' => :'String',
|
47
|
-
:'name' => :'String',
|
48
46
|
:'description' => :'String',
|
49
47
|
:'retain_repo_versions' => :'Integer',
|
50
|
-
:'pulp_labels' => :'Object'
|
48
|
+
:'pulp_labels' => :'Object',
|
49
|
+
:'name' => :'String',
|
50
|
+
:'manifest_signing_service' => :'String'
|
51
51
|
}
|
52
52
|
end
|
53
53
|
|
54
54
|
# List of attributes with nullable: true
|
55
55
|
def self.openapi_nullable
|
56
56
|
Set.new([
|
57
|
-
:'manifest_signing_service',
|
58
57
|
:'description',
|
59
58
|
:'retain_repo_versions',
|
59
|
+
:'manifest_signing_service'
|
60
60
|
])
|
61
61
|
end
|
62
62
|
|
@@ -75,14 +75,6 @@ module PulpContainerClient
|
|
75
75
|
h[k.to_sym] = v
|
76
76
|
}
|
77
77
|
|
78
|
-
if attributes.key?(:'manifest_signing_service')
|
79
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
80
|
-
end
|
81
|
-
|
82
|
-
if attributes.key?(:'name')
|
83
|
-
self.name = attributes[:'name']
|
84
|
-
end
|
85
|
-
|
86
78
|
if attributes.key?(:'description')
|
87
79
|
self.description = attributes[:'description']
|
88
80
|
end
|
@@ -94,16 +86,20 @@ module PulpContainerClient
|
|
94
86
|
if attributes.key?(:'pulp_labels')
|
95
87
|
self.pulp_labels = attributes[:'pulp_labels']
|
96
88
|
end
|
89
|
+
|
90
|
+
if attributes.key?(:'name')
|
91
|
+
self.name = attributes[:'name']
|
92
|
+
end
|
93
|
+
|
94
|
+
if attributes.key?(:'manifest_signing_service')
|
95
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
96
|
+
end
|
97
97
|
end
|
98
98
|
|
99
99
|
# Show invalid properties with the reasons. Usually used together with valid?
|
100
100
|
# @return Array for valid properties with the reasons
|
101
101
|
def list_invalid_properties
|
102
102
|
invalid_properties = Array.new
|
103
|
-
if !@name.nil? && @name.to_s.length < 1
|
104
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
105
|
-
end
|
106
|
-
|
107
103
|
if !@description.nil? && @description.to_s.length < 1
|
108
104
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
109
105
|
end
|
@@ -112,28 +108,22 @@ module PulpContainerClient
|
|
112
108
|
invalid_properties.push('invalid value for "retain_repo_versions", must be greater than or equal to 1.')
|
113
109
|
end
|
114
110
|
|
111
|
+
if !@name.nil? && @name.to_s.length < 1
|
112
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
113
|
+
end
|
114
|
+
|
115
115
|
invalid_properties
|
116
116
|
end
|
117
117
|
|
118
118
|
# Check to see if the all the properties in the model are valid
|
119
119
|
# @return true if the model is valid
|
120
120
|
def valid?
|
121
|
-
return false if !@name.nil? && @name.to_s.length < 1
|
122
121
|
return false if !@description.nil? && @description.to_s.length < 1
|
123
122
|
return false if !@retain_repo_versions.nil? && @retain_repo_versions < 1
|
123
|
+
return false if !@name.nil? && @name.to_s.length < 1
|
124
124
|
true
|
125
125
|
end
|
126
126
|
|
127
|
-
# Custom attribute writer method with validation
|
128
|
-
# @param [Object] name Value to be assigned
|
129
|
-
def name=(name)
|
130
|
-
if !name.nil? && name.to_s.length < 1
|
131
|
-
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
132
|
-
end
|
133
|
-
|
134
|
-
@name = name
|
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)
|
@@ -154,16 +144,26 @@ module PulpContainerClient
|
|
154
144
|
@retain_repo_versions = retain_repo_versions
|
155
145
|
end
|
156
146
|
|
147
|
+
# Custom attribute writer method with validation
|
148
|
+
# @param [Object] name Value to be assigned
|
149
|
+
def name=(name)
|
150
|
+
if !name.nil? && name.to_s.length < 1
|
151
|
+
fail ArgumentError, 'invalid value for "name", the character length must be great than or equal to 1.'
|
152
|
+
end
|
153
|
+
|
154
|
+
@name = name
|
155
|
+
end
|
156
|
+
|
157
157
|
# Checks equality by comparing each attribute.
|
158
158
|
# @param [Object] Object to be compared
|
159
159
|
def ==(o)
|
160
160
|
return true if self.equal?(o)
|
161
161
|
self.class == o.class &&
|
162
|
-
manifest_signing_service == o.manifest_signing_service &&
|
163
|
-
name == o.name &&
|
164
162
|
description == o.description &&
|
165
163
|
retain_repo_versions == o.retain_repo_versions &&
|
166
|
-
pulp_labels == o.pulp_labels
|
164
|
+
pulp_labels == o.pulp_labels &&
|
165
|
+
name == o.name &&
|
166
|
+
manifest_signing_service == o.manifest_signing_service
|
167
167
|
end
|
168
168
|
|
169
169
|
# @see the `==` method
|
@@ -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
|
+
[description, retain_repo_versions, pulp_labels, name, manifest_signing_service].hash
|
179
179
|
end
|
180
180
|
|
181
181
|
# Builds the object from hash
|
@@ -86,7 +86,6 @@ describe 'DistributionsContainerApi' do
|
|
86
86
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
87
87
|
# @option opts [Array<String>] :ordering Ordering
|
88
88
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
89
|
-
# @option opts [String] :with_content Filter distributions based on the content served by them
|
90
89
|
# @option opts [String] :fields A list of fields to include in the response.
|
91
90
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
92
91
|
# @return [PaginatedcontainerContainerDistributionResponseList]
|
@@ -136,7 +136,6 @@ describe 'RepositoriesContainerApi' do
|
|
136
136
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
137
137
|
# @option opts [Array<String>] :ordering Ordering
|
138
138
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
139
|
-
# @option opts [String] :remote Foreign Key referenced by HREF
|
140
139
|
# @option opts [String] :fields A list of fields to include in the response.
|
141
140
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
142
141
|
# @return [PaginatedcontainerContainerRepositoryResponseList]
|
@@ -57,7 +57,6 @@ describe 'RepositoriesContainerPushApi' do
|
|
57
57
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
58
58
|
# @option opts [Array<String>] :ordering Ordering
|
59
59
|
# @option opts [String] :pulp_label_select Filter labels by search string
|
60
|
-
# @option opts [String] :remote Foreign Key referenced by HREF
|
61
60
|
# @option opts [String] :fields A list of fields to include in the response.
|
62
61
|
# @option opts [String] :exclude_fields A list of fields to exclude from the response.
|
63
62
|
# @return [PaginatedcontainerContainerPushRepositoryResponseList]
|
@@ -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 "
|
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 "repository"' 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_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 "
|
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_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 "name"' 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 "content_guard"' 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
|
@@ -38,25 +38,25 @@ describe 'ContainerContainerDistribution' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
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 "
|
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
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
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,19 +32,19 @@ 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 "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 "latest_version_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 "
|
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
|
@@ -56,31 +56,31 @@ describe 'ContainerContainerPushRepositoryResponse' do
|
|
56
56
|
end
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
59
|
+
describe 'test attribute "retain_repo_versions"' 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_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 "
|
71
|
+
describe 'test attribute "name"' 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 "manifest_signing_service"' 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,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 "
|
35
|
+
describe 'test attribute "description"' 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_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
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
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
|
@@ -38,25 +38,25 @@ describe 'PatchedcontainerContainerDistribution' do
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
describe 'test attribute "
|
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 "
|
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
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
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 "
|
35
|
+
describe 'test attribute "description"' 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_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
|
57
57
|
end
|
58
58
|
|
59
|
-
describe 'test attribute "
|
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
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pulp_container_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|