pulp_container_client 2.26.2 → 2.26.3
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 +14 -14
- data/docs/ContainerContainerPullThroughDistribution.md +6 -6
- data/docs/ContainerContainerPullThroughDistributionResponse.md +14 -14
- data/docs/ContainerContainerPushRepository.md +7 -7
- data/docs/ContainerContainerPushRepositoryResponse.md +16 -16
- data/docs/DistributionsContainerApi.md +12 -12
- data/docs/DistributionsPullThroughApi.md +12 -12
- data/docs/PatchedcontainerContainerDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPullThroughDistribution.md +6 -6
- data/docs/PatchedcontainerContainerPushRepository.md +7 -7
- data/docs/RemotesContainerApi.md +10 -10
- data/docs/RemotesPullThroughApi.md +10 -10
- data/docs/RepositoriesContainerApi.md +10 -10
- data/docs/RepositoriesContainerPushApi.md +10 -10
- data/lib/pulp_container_client/api/distributions_container_api.rb +10 -10
- data/lib/pulp_container_client/api/distributions_pull_through_api.rb +10 -10
- data/lib/pulp_container_client/api/remotes_container_api.rb +10 -10
- data/lib/pulp_container_client/api/remotes_pull_through_api.rb +10 -10
- data/lib/pulp_container_client/api/repositories_container_api.rb +10 -10
- data/lib/pulp_container_client/api/repositories_container_push_api.rb +10 -10
- data/lib/pulp_container_client/models/container_container_distribution.rb +55 -55
- data/lib/pulp_container_client/models/container_container_distribution_response.rb +70 -70
- data/lib/pulp_container_client/models/container_container_pull_through_distribution.rb +55 -55
- data/lib/pulp_container_client/models/container_container_pull_through_distribution_response.rb +70 -70
- 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 +66 -66
- data/lib/pulp_container_client/models/patchedcontainer_container_distribution.rb +48 -48
- data/lib/pulp_container_client/models/patchedcontainer_container_pull_through_distribution.rb +48 -48
- data/lib/pulp_container_client/models/patchedcontainer_container_push_repository.rb +49 -49
- data/lib/pulp_container_client/version.rb +1 -1
- data/spec/api/distributions_container_api_spec.rb +4 -4
- data/spec/api/distributions_pull_through_api_spec.rb +4 -4
- data/spec/api/remotes_container_api_spec.rb +4 -4
- data/spec/api/remotes_pull_through_api_spec.rb +4 -4
- data/spec/api/repositories_container_api_spec.rb +4 -4
- data/spec/api/repositories_container_push_api_spec.rb +4 -4
- data/spec/models/container_container_distribution_response_spec.rb +11 -11
- data/spec/models/container_container_distribution_spec.rb +6 -6
- data/spec/models/container_container_pull_through_distribution_response_spec.rb +11 -11
- data/spec/models/container_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/container_container_push_repository_response_spec.rb +10 -10
- data/spec/models/container_container_push_repository_spec.rb +5 -5
- data/spec/models/patchedcontainer_container_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_pull_through_distribution_spec.rb +6 -6
- data/spec/models/patchedcontainer_container_push_repository_spec.rb +5 -5
- metadata +58 -58
@@ -16,28 +16,28 @@ require 'time'
|
|
16
16
|
module PulpContainerClient
|
17
17
|
# Serializer for Container Push Repositories.
|
18
18
|
class PatchedcontainerContainerPushRepository
|
19
|
-
|
20
|
-
|
21
|
-
# A reference to an associated signing service.
|
22
|
-
attr_accessor :manifest_signing_service
|
19
|
+
# An optional description.
|
20
|
+
attr_accessor :description
|
23
21
|
|
24
22
|
# A unique name for this repository.
|
25
23
|
attr_accessor :name
|
26
24
|
|
27
|
-
# An optional description.
|
28
|
-
attr_accessor :description
|
29
|
-
|
30
25
|
# Retain X versions of the repository. Default is null which retains all versions.
|
31
26
|
attr_accessor :retain_repo_versions
|
32
27
|
|
28
|
+
attr_accessor :pulp_labels
|
29
|
+
|
30
|
+
# A reference to an associated signing service.
|
31
|
+
attr_accessor :manifest_signing_service
|
32
|
+
|
33
33
|
# Attribute mapping from ruby-style variable name to JSON key.
|
34
34
|
def self.attribute_map
|
35
35
|
{
|
36
|
-
:'pulp_labels' => :'pulp_labels',
|
37
|
-
:'manifest_signing_service' => :'manifest_signing_service',
|
38
|
-
:'name' => :'name',
|
39
36
|
:'description' => :'description',
|
40
|
-
:'
|
37
|
+
:'name' => :'name',
|
38
|
+
:'retain_repo_versions' => :'retain_repo_versions',
|
39
|
+
:'pulp_labels' => :'pulp_labels',
|
40
|
+
:'manifest_signing_service' => :'manifest_signing_service'
|
41
41
|
}
|
42
42
|
end
|
43
43
|
|
@@ -49,20 +49,20 @@ module PulpContainerClient
|
|
49
49
|
# Attribute type mapping.
|
50
50
|
def self.openapi_types
|
51
51
|
{
|
52
|
-
:'pulp_labels' => :'Hash<String, String>',
|
53
|
-
:'manifest_signing_service' => :'String',
|
54
|
-
:'name' => :'String',
|
55
52
|
:'description' => :'String',
|
56
|
-
:'
|
53
|
+
:'name' => :'String',
|
54
|
+
:'retain_repo_versions' => :'Integer',
|
55
|
+
:'pulp_labels' => :'Hash<String, String>',
|
56
|
+
:'manifest_signing_service' => :'String'
|
57
57
|
}
|
58
58
|
end
|
59
59
|
|
60
60
|
# List of attributes with nullable: true
|
61
61
|
def self.openapi_nullable
|
62
62
|
Set.new([
|
63
|
-
:'manifest_signing_service',
|
64
63
|
:'description',
|
65
|
-
:'retain_repo_versions'
|
64
|
+
:'retain_repo_versions',
|
65
|
+
:'manifest_signing_service'
|
66
66
|
])
|
67
67
|
end
|
68
68
|
|
@@ -81,27 +81,27 @@ module PulpContainerClient
|
|
81
81
|
h[k.to_sym] = v
|
82
82
|
}
|
83
83
|
|
84
|
-
if attributes.key?(:'
|
85
|
-
|
86
|
-
self.pulp_labels = value
|
87
|
-
end
|
88
|
-
end
|
89
|
-
|
90
|
-
if attributes.key?(:'manifest_signing_service')
|
91
|
-
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
84
|
+
if attributes.key?(:'description')
|
85
|
+
self.description = attributes[:'description']
|
92
86
|
end
|
93
87
|
|
94
88
|
if attributes.key?(:'name')
|
95
89
|
self.name = attributes[:'name']
|
96
90
|
end
|
97
91
|
|
98
|
-
if attributes.key?(:'description')
|
99
|
-
self.description = attributes[:'description']
|
100
|
-
end
|
101
|
-
|
102
92
|
if attributes.key?(:'retain_repo_versions')
|
103
93
|
self.retain_repo_versions = attributes[:'retain_repo_versions']
|
104
94
|
end
|
95
|
+
|
96
|
+
if attributes.key?(:'pulp_labels')
|
97
|
+
if (value = attributes[:'pulp_labels']).is_a?(Hash)
|
98
|
+
self.pulp_labels = value
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
if attributes.key?(:'manifest_signing_service')
|
103
|
+
self.manifest_signing_service = attributes[:'manifest_signing_service']
|
104
|
+
end
|
105
105
|
end
|
106
106
|
|
107
107
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -109,14 +109,14 @@ module PulpContainerClient
|
|
109
109
|
def list_invalid_properties
|
110
110
|
warn '[DEPRECATED] the `list_invalid_properties` method is obsolete'
|
111
111
|
invalid_properties = Array.new
|
112
|
-
if !@name.nil? && @name.to_s.length < 1
|
113
|
-
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
114
|
-
end
|
115
|
-
|
116
112
|
if !@description.nil? && @description.to_s.length < 1
|
117
113
|
invalid_properties.push('invalid value for "description", the character length must be great than or equal to 1.')
|
118
114
|
end
|
119
115
|
|
116
|
+
if !@name.nil? && @name.to_s.length < 1
|
117
|
+
invalid_properties.push('invalid value for "name", the character length must be great than or equal to 1.')
|
118
|
+
end
|
119
|
+
|
120
120
|
invalid_properties
|
121
121
|
end
|
122
122
|
|
@@ -124,11 +124,21 @@ module PulpContainerClient
|
|
124
124
|
# @return true if the model is valid
|
125
125
|
def valid?
|
126
126
|
warn '[DEPRECATED] the `valid?` method is obsolete'
|
127
|
-
return false if !@name.nil? && @name.to_s.length < 1
|
128
127
|
return false if !@description.nil? && @description.to_s.length < 1
|
128
|
+
return false if !@name.nil? && @name.to_s.length < 1
|
129
129
|
true
|
130
130
|
end
|
131
131
|
|
132
|
+
# Custom attribute writer method with validation
|
133
|
+
# @param [Object] description Value to be assigned
|
134
|
+
def description=(description)
|
135
|
+
if !description.nil? && description.to_s.length < 1
|
136
|
+
fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
|
137
|
+
end
|
138
|
+
|
139
|
+
@description = description
|
140
|
+
end
|
141
|
+
|
132
142
|
# Custom attribute writer method with validation
|
133
143
|
# @param [Object] name Value to be assigned
|
134
144
|
def name=(name)
|
@@ -143,26 +153,16 @@ module PulpContainerClient
|
|
143
153
|
@name = name
|
144
154
|
end
|
145
155
|
|
146
|
-
# Custom attribute writer method with validation
|
147
|
-
# @param [Object] description Value to be assigned
|
148
|
-
def description=(description)
|
149
|
-
if !description.nil? && description.to_s.length < 1
|
150
|
-
fail ArgumentError, 'invalid value for "description", the character length must be great than or equal to 1.'
|
151
|
-
end
|
152
|
-
|
153
|
-
@description = description
|
154
|
-
end
|
155
|
-
|
156
156
|
# Checks equality by comparing each attribute.
|
157
157
|
# @param [Object] Object to be compared
|
158
158
|
def ==(o)
|
159
159
|
return true if self.equal?(o)
|
160
160
|
self.class == o.class &&
|
161
|
-
pulp_labels == o.pulp_labels &&
|
162
|
-
manifest_signing_service == o.manifest_signing_service &&
|
163
|
-
name == o.name &&
|
164
161
|
description == o.description &&
|
165
|
-
|
162
|
+
name == o.name &&
|
163
|
+
retain_repo_versions == o.retain_repo_versions &&
|
164
|
+
pulp_labels == o.pulp_labels &&
|
165
|
+
manifest_signing_service == o.manifest_signing_service
|
166
166
|
end
|
167
167
|
|
168
168
|
# @see the `==` method
|
@@ -174,7 +174,7 @@ module PulpContainerClient
|
|
174
174
|
# Calculates hash code according to all attributes.
|
175
175
|
# @return [Integer] Hash code
|
176
176
|
def hash
|
177
|
-
[
|
177
|
+
[description, name, retain_repo_versions, pulp_labels, manifest_signing_service].hash
|
178
178
|
end
|
179
179
|
|
180
180
|
# Builds the object from hash
|
@@ -144,12 +144,12 @@ describe 'DistributionsContainerApi' do
|
|
144
144
|
|
145
145
|
# unit tests for partial_update
|
146
146
|
# Update a container distribution
|
147
|
-
#
|
147
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
148
148
|
# @param container_container_distribution_href
|
149
149
|
# @param patchedcontainer_container_distribution
|
150
150
|
# @param [Hash] opts the optional parameters
|
151
151
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
152
|
-
# @return [
|
152
|
+
# @return [ContainerContainerDistributionResponse]
|
153
153
|
describe 'partial_update test' do
|
154
154
|
it 'should work' do
|
155
155
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -215,12 +215,12 @@ describe 'DistributionsContainerApi' do
|
|
215
215
|
|
216
216
|
# unit tests for update
|
217
217
|
# Update a container distribution
|
218
|
-
#
|
218
|
+
# Update the entity and trigger an asynchronous task if necessary
|
219
219
|
# @param container_container_distribution_href
|
220
220
|
# @param container_container_distribution
|
221
221
|
# @param [Hash] opts the optional parameters
|
222
222
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
223
|
-
# @return [
|
223
|
+
# @return [ContainerContainerDistributionResponse]
|
224
224
|
describe 'update test' do
|
225
225
|
it 'should work' do
|
226
226
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -143,12 +143,12 @@ describe 'DistributionsPullThroughApi' do
|
|
143
143
|
|
144
144
|
# unit tests for partial_update
|
145
145
|
# Update a container pull through distribution
|
146
|
-
#
|
146
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
147
147
|
# @param container_container_pull_through_distribution_href
|
148
148
|
# @param patchedcontainer_container_pull_through_distribution
|
149
149
|
# @param [Hash] opts the optional parameters
|
150
150
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
151
|
-
# @return [
|
151
|
+
# @return [ContainerContainerPullThroughDistributionResponse]
|
152
152
|
describe 'partial_update test' do
|
153
153
|
it 'should work' do
|
154
154
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -214,12 +214,12 @@ describe 'DistributionsPullThroughApi' do
|
|
214
214
|
|
215
215
|
# unit tests for update
|
216
216
|
# Update a container pull through distribution
|
217
|
-
#
|
217
|
+
# Update the entity and trigger an asynchronous task if necessary
|
218
218
|
# @param container_container_pull_through_distribution_href
|
219
219
|
# @param container_container_pull_through_distribution
|
220
220
|
# @param [Hash] opts the optional parameters
|
221
221
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
222
|
-
# @return [
|
222
|
+
# @return [ContainerContainerPullThroughDistributionResponse]
|
223
223
|
describe 'update test' do
|
224
224
|
it 'should work' do
|
225
225
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -142,12 +142,12 @@ describe 'RemotesContainerApi' do
|
|
142
142
|
|
143
143
|
# unit tests for partial_update
|
144
144
|
# Update a container remote
|
145
|
-
#
|
145
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
146
146
|
# @param container_container_remote_href
|
147
147
|
# @param patchedcontainer_container_remote
|
148
148
|
# @param [Hash] opts the optional parameters
|
149
149
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
150
|
-
# @return [
|
150
|
+
# @return [ContainerContainerRemoteResponse]
|
151
151
|
describe 'partial_update test' do
|
152
152
|
it 'should work' do
|
153
153
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -213,12 +213,12 @@ describe 'RemotesContainerApi' do
|
|
213
213
|
|
214
214
|
# unit tests for update
|
215
215
|
# Update a container remote
|
216
|
-
#
|
216
|
+
# Update the entity and trigger an asynchronous task if necessary
|
217
217
|
# @param container_container_remote_href
|
218
218
|
# @param container_container_remote
|
219
219
|
# @param [Hash] opts the optional parameters
|
220
220
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
221
|
-
# @return [
|
221
|
+
# @return [ContainerContainerRemoteResponse]
|
222
222
|
describe 'update test' do
|
223
223
|
it 'should work' do
|
224
224
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -142,12 +142,12 @@ describe 'RemotesPullThroughApi' do
|
|
142
142
|
|
143
143
|
# unit tests for partial_update
|
144
144
|
# Update a container pull through remote
|
145
|
-
#
|
145
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
146
146
|
# @param container_container_pull_through_remote_href
|
147
147
|
# @param patchedcontainer_container_pull_through_remote
|
148
148
|
# @param [Hash] opts the optional parameters
|
149
149
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
150
|
-
# @return [
|
150
|
+
# @return [ContainerContainerPullThroughRemoteResponse]
|
151
151
|
describe 'partial_update test' do
|
152
152
|
it 'should work' do
|
153
153
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -213,12 +213,12 @@ describe 'RemotesPullThroughApi' do
|
|
213
213
|
|
214
214
|
# unit tests for update
|
215
215
|
# Update a container pull through remote
|
216
|
-
#
|
216
|
+
# Update the entity and trigger an asynchronous task if necessary
|
217
217
|
# @param container_container_pull_through_remote_href
|
218
218
|
# @param container_container_pull_through_remote
|
219
219
|
# @param [Hash] opts the optional parameters
|
220
220
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
221
|
-
# @return [
|
221
|
+
# @return [ContainerContainerPullThroughRemoteResponse]
|
222
222
|
describe 'update test' do
|
223
223
|
it 'should work' do
|
224
224
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -205,12 +205,12 @@ describe 'RepositoriesContainerApi' do
|
|
205
205
|
|
206
206
|
# unit tests for partial_update
|
207
207
|
# Update a container repository
|
208
|
-
#
|
208
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
209
209
|
# @param container_container_repository_href
|
210
210
|
# @param patchedcontainer_container_repository
|
211
211
|
# @param [Hash] opts the optional parameters
|
212
212
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
213
|
-
# @return [
|
213
|
+
# @return [ContainerContainerRepositoryResponse]
|
214
214
|
describe 'partial_update test' do
|
215
215
|
it 'should work' do
|
216
216
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -346,12 +346,12 @@ describe 'RepositoriesContainerApi' do
|
|
346
346
|
|
347
347
|
# unit tests for update
|
348
348
|
# Update a container repository
|
349
|
-
#
|
349
|
+
# Update the entity and trigger an asynchronous task if necessary
|
350
350
|
# @param container_container_repository_href
|
351
351
|
# @param container_container_repository
|
352
352
|
# @param [Hash] opts the optional parameters
|
353
353
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
354
|
-
# @return [
|
354
|
+
# @return [ContainerContainerRepositoryResponse]
|
355
355
|
describe 'update test' do
|
356
356
|
it 'should work' do
|
357
357
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -120,12 +120,12 @@ describe 'RepositoriesContainerPushApi' do
|
|
120
120
|
|
121
121
|
# unit tests for partial_update
|
122
122
|
# Update a container push repository
|
123
|
-
#
|
123
|
+
# Update the entity partially and trigger an asynchronous task if necessary
|
124
124
|
# @param container_container_push_repository_href
|
125
125
|
# @param patchedcontainer_container_push_repository
|
126
126
|
# @param [Hash] opts the optional parameters
|
127
127
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
128
|
-
# @return [
|
128
|
+
# @return [ContainerContainerPushRepositoryResponse]
|
129
129
|
describe 'partial_update test' do
|
130
130
|
it 'should work' do
|
131
131
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -232,12 +232,12 @@ describe 'RepositoriesContainerPushApi' do
|
|
232
232
|
|
233
233
|
# unit tests for update
|
234
234
|
# Update a container push repository
|
235
|
-
#
|
235
|
+
# Update the entity and trigger an asynchronous task if necessary
|
236
236
|
# @param container_container_push_repository_href
|
237
237
|
# @param container_container_push_repository
|
238
238
|
# @param [Hash] opts the optional parameters
|
239
239
|
# @option opts [Array<String>] :x_task_diagnostics List of profilers to use on tasks.
|
240
|
-
# @return [
|
240
|
+
# @return [ContainerContainerPushRepositoryResponse]
|
241
241
|
describe 'update test' do
|
242
242
|
it 'should work' do
|
243
243
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerDistributionResponse do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test attribute "
|
30
|
+
describe 'test attribute "pulp_last_updated"' do
|
31
31
|
it 'should work' do
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe 'test attribute "
|
36
|
+
describe 'test attribute "pulp_href"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe 'test attribute "
|
42
|
+
describe 'test attribute "no_content_change_since"' do
|
43
43
|
it 'should work' do
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "repository"' do
|
49
49
|
it 'should work' do
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
describe 'test attribute "
|
54
|
+
describe 'test attribute "name"' do
|
55
55
|
it 'should work' do
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
describe 'test attribute "
|
60
|
+
describe 'test attribute "hidden"' do
|
61
61
|
it 'should work' do
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
-
describe 'test attribute "
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
67
67
|
it 'should work' do
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
-
describe 'test attribute "
|
72
|
+
describe 'test attribute "pulp_created"' do
|
73
73
|
it 'should work' do
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
describe 'test attribute "
|
78
|
+
describe 'test attribute "base_path"' do
|
79
79
|
it 'should work' do
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
84
|
-
describe 'test attribute "
|
84
|
+
describe 'test attribute "prn"' do
|
85
85
|
it 'should work' do
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
|
-
describe 'test attribute "
|
90
|
+
describe 'test attribute "content_guard"' do
|
91
91
|
it 'should work' do
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
93
93
|
end
|
@@ -27,37 +27,37 @@ describe PulpContainerClient::ContainerContainerDistribution do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test attribute "
|
30
|
+
describe 'test attribute "repository"' do
|
31
31
|
it 'should work' do
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe 'test attribute "
|
36
|
+
describe 'test attribute "name"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe 'test attribute "
|
42
|
+
describe 'test attribute "hidden"' do
|
43
43
|
it 'should work' do
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "pulp_labels"' do
|
49
49
|
it 'should work' do
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
describe 'test attribute "
|
54
|
+
describe 'test attribute "base_path"' do
|
55
55
|
it 'should work' do
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
describe 'test attribute "
|
60
|
+
describe 'test attribute "content_guard"' do
|
61
61
|
it 'should work' do
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
63
|
end
|
@@ -27,67 +27,67 @@ describe PulpContainerClient::ContainerContainerPullThroughDistributionResponse
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test attribute "
|
30
|
+
describe 'test attribute "pulp_last_updated"' do
|
31
31
|
it 'should work' do
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe 'test attribute "
|
36
|
+
describe 'test attribute "pulp_href"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe 'test attribute "
|
42
|
+
describe 'test attribute "no_content_change_since"' do
|
43
43
|
it 'should work' do
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "repository"' do
|
49
49
|
it 'should work' do
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
describe 'test attribute "
|
54
|
+
describe 'test attribute "name"' do
|
55
55
|
it 'should work' do
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
describe 'test attribute "
|
60
|
+
describe 'test attribute "hidden"' do
|
61
61
|
it 'should work' do
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
63
|
end
|
64
64
|
end
|
65
65
|
|
66
|
-
describe 'test attribute "
|
66
|
+
describe 'test attribute "pulp_labels"' do
|
67
67
|
it 'should work' do
|
68
68
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
-
describe 'test attribute "
|
72
|
+
describe 'test attribute "pulp_created"' do
|
73
73
|
it 'should work' do
|
74
74
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
describe 'test attribute "
|
78
|
+
describe 'test attribute "base_path"' do
|
79
79
|
it 'should work' do
|
80
80
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
84
|
-
describe 'test attribute "
|
84
|
+
describe 'test attribute "prn"' do
|
85
85
|
it 'should work' do
|
86
86
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
87
87
|
end
|
88
88
|
end
|
89
89
|
|
90
|
-
describe 'test attribute "
|
90
|
+
describe 'test attribute "content_guard"' do
|
91
91
|
it 'should work' do
|
92
92
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
93
93
|
end
|
@@ -27,37 +27,37 @@ describe PulpContainerClient::ContainerContainerPullThroughDistribution do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test attribute "
|
30
|
+
describe 'test attribute "repository"' do
|
31
31
|
it 'should work' do
|
32
32
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
33
|
end
|
34
34
|
end
|
35
35
|
|
36
|
-
describe 'test attribute "
|
36
|
+
describe 'test attribute "name"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
42
|
-
describe 'test attribute "
|
42
|
+
describe 'test attribute "hidden"' do
|
43
43
|
it 'should work' do
|
44
44
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
45
|
end
|
46
46
|
end
|
47
47
|
|
48
|
-
describe 'test attribute "
|
48
|
+
describe 'test attribute "pulp_labels"' do
|
49
49
|
it 'should work' do
|
50
50
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
-
describe 'test attribute "
|
54
|
+
describe 'test attribute "base_path"' do
|
55
55
|
it 'should work' do
|
56
56
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
-
describe 'test attribute "
|
60
|
+
describe 'test attribute "content_guard"' do
|
61
61
|
it 'should work' do
|
62
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
63
63
|
end
|