pulpcore_client 3.72.2 → 3.73.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 +8 -5
- data/docs/ArtifactDistributionResponse.md +15 -15
- data/docs/ContentApi.md +2 -0
- data/docs/ContentOpenpgpPublickeyApi.md +152 -2
- data/docs/ContentOpenpgpPublicsubkeyApi.md +4 -2
- data/docs/ContentOpenpgpSignatureApi.md +4 -2
- data/docs/ContentOpenpgpUserattributeApi.md +4 -2
- data/docs/ContentOpenpgpUseridApi.md +4 -2
- data/docs/GenericRemoteResponse.md +1 -1
- data/docs/GenericRemoteResponsePolicyEnum.md +15 -0
- data/docs/MultipleArtifactContentResponse.md +2 -0
- data/docs/OpenPGPPublicKeyResponse.md +2 -0
- data/docs/OpenPGPPublicSubkeyResponse.md +2 -0
- data/docs/OpenPGPSignatureResponse.md +2 -0
- data/docs/OpenPGPUserAttributeResponse.md +2 -0
- data/docs/OpenPGPUserIDResponse.md +2 -0
- data/docs/PatchedUpstreamPulp.md +3 -1
- data/docs/{PolicyEnum.md → Policy357Enum.md} +2 -2
- data/docs/UpstreamPulp.md +3 -1
- data/docs/UpstreamPulpResponse.md +3 -1
- data/docs/UpstreamPulpsApi.md +2 -2
- data/lib/pulpcore_client/api/content_api.rb +3 -0
- data/lib/pulpcore_client/api/content_openpgp_publickey_api.rb +157 -3
- data/lib/pulpcore_client/api/content_openpgp_publicsubkey_api.rb +6 -3
- data/lib/pulpcore_client/api/content_openpgp_signature_api.rb +6 -3
- data/lib/pulpcore_client/api/content_openpgp_userattribute_api.rb +6 -3
- data/lib/pulpcore_client/api/content_openpgp_userid_api.rb +6 -3
- data/lib/pulpcore_client/api/upstream_pulps_api.rb +3 -3
- data/lib/pulpcore_client/models/artifact_distribution_response.rb +67 -67
- data/lib/pulpcore_client/models/generic_remote_response.rb +1 -1
- data/lib/pulpcore_client/models/{policy_enum.rb → generic_remote_response_policy_enum.rb} +3 -3
- data/lib/pulpcore_client/models/multiple_artifact_content_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_public_key_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_public_subkey_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_signature_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_user_attribute_response.rb +13 -1
- data/lib/pulpcore_client/models/open_pgp_user_id_response.rb +13 -1
- data/lib/pulpcore_client/models/patched_upstream_pulp.rb +37 -5
- data/lib/pulpcore_client/models/policy357_enum.rb +41 -0
- data/lib/pulpcore_client/models/upstream_pulp.rb +37 -5
- data/lib/pulpcore_client/models/upstream_pulp_response.rb +36 -4
- data/lib/pulpcore_client/version.rb +1 -1
- data/lib/pulpcore_client.rb +2 -1
- data/spec/api/content_api_spec.rb +1 -0
- data/spec/api/content_openpgp_publickey_api_spec.rb +29 -1
- data/spec/api/content_openpgp_publicsubkey_api_spec.rb +2 -1
- data/spec/api/content_openpgp_signature_api_spec.rb +2 -1
- data/spec/api/content_openpgp_userattribute_api_spec.rb +2 -1
- data/spec/api/content_openpgp_userid_api_spec.rb +2 -1
- data/spec/api/upstream_pulps_api_spec.rb +1 -1
- data/spec/models/artifact_distribution_response_spec.rb +10 -10
- data/spec/models/generic_remote_response_policy_enum_spec.rb +30 -0
- data/spec/models/multiple_artifact_content_response_spec.rb +6 -0
- data/spec/models/open_pgp_public_key_response_spec.rb +6 -0
- data/spec/models/open_pgp_public_subkey_response_spec.rb +6 -0
- data/spec/models/open_pgp_signature_response_spec.rb +6 -0
- data/spec/models/open_pgp_user_attribute_response_spec.rb +6 -0
- data/spec/models/open_pgp_user_id_response_spec.rb +6 -0
- data/spec/models/patched_upstream_pulp_spec.rb +6 -0
- data/spec/models/{policy_enum_spec.rb → policy357_enum_spec.rb} +6 -6
- data/spec/models/upstream_pulp_response_spec.rb +6 -0
- data/spec/models/upstream_pulp_spec.rb +6 -0
- metadata +9 -5
@@ -49,6 +49,31 @@ module PulpcoreClient
|
|
49
49
|
# Filter distributions on the upstream Pulp using complex filtering. E.g. pulp_label_select=\"foo\" OR pulp_label_select=\"key=val\"
|
50
50
|
attr_accessor :q_select
|
51
51
|
|
52
|
+
# Policy for how replicate will manage the local objects within the domain. * `all` - Replicate manages ALL local objects within the domain. * `labeled` - Replicate will only manage the objects created from a previous replication, unlabled local objects will be untouched. * `nodelete` - Replicate will not delete any local object whether they were created by replication or not.
|
53
|
+
attr_accessor :policy
|
54
|
+
|
55
|
+
class EnumAttributeValidator
|
56
|
+
attr_reader :datatype
|
57
|
+
attr_reader :allowable_values
|
58
|
+
|
59
|
+
def initialize(datatype, allowable_values)
|
60
|
+
@allowable_values = allowable_values.map do |value|
|
61
|
+
case datatype.to_s
|
62
|
+
when /Integer/i
|
63
|
+
value.to_i
|
64
|
+
when /Float/i
|
65
|
+
value.to_f
|
66
|
+
else
|
67
|
+
value
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def valid?(value)
|
73
|
+
!value || allowable_values.include?(value)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
52
77
|
# Attribute mapping from ruby-style variable name to JSON key.
|
53
78
|
def self.attribute_map
|
54
79
|
{
|
@@ -62,7 +87,8 @@ module PulpcoreClient
|
|
62
87
|
:'tls_validation' => :'tls_validation',
|
63
88
|
:'username' => :'username',
|
64
89
|
:'password' => :'password',
|
65
|
-
:'q_select' => :'q_select'
|
90
|
+
:'q_select' => :'q_select',
|
91
|
+
:'policy' => :'policy'
|
66
92
|
}
|
67
93
|
end
|
68
94
|
|
@@ -84,7 +110,8 @@ module PulpcoreClient
|
|
84
110
|
:'tls_validation' => :'Boolean',
|
85
111
|
:'username' => :'String',
|
86
112
|
:'password' => :'String',
|
87
|
-
:'q_select' => :'String'
|
113
|
+
:'q_select' => :'String',
|
114
|
+
:'policy' => :'Policy357Enum'
|
88
115
|
}
|
89
116
|
end
|
90
117
|
|
@@ -97,7 +124,7 @@ module PulpcoreClient
|
|
97
124
|
:'client_key',
|
98
125
|
:'username',
|
99
126
|
:'password',
|
100
|
-
:'q_select'
|
127
|
+
:'q_select',
|
101
128
|
])
|
102
129
|
end
|
103
130
|
|
@@ -159,6 +186,10 @@ module PulpcoreClient
|
|
159
186
|
if attributes.key?(:'q_select')
|
160
187
|
self.q_select = attributes[:'q_select']
|
161
188
|
end
|
189
|
+
|
190
|
+
if attributes.key?(:'policy')
|
191
|
+
self.policy = attributes[:'policy']
|
192
|
+
end
|
162
193
|
end
|
163
194
|
|
164
195
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -338,7 +369,8 @@ module PulpcoreClient
|
|
338
369
|
tls_validation == o.tls_validation &&
|
339
370
|
username == o.username &&
|
340
371
|
password == o.password &&
|
341
|
-
q_select == o.q_select
|
372
|
+
q_select == o.q_select &&
|
373
|
+
policy == o.policy
|
342
374
|
end
|
343
375
|
|
344
376
|
# @see the `==` method
|
@@ -350,7 +382,7 @@ module PulpcoreClient
|
|
350
382
|
# Calculates hash code according to all attributes.
|
351
383
|
# @return [Integer] Hash code
|
352
384
|
def hash
|
353
|
-
[name, base_url, api_root, domain, ca_cert, client_cert, client_key, tls_validation, username, password, q_select].hash
|
385
|
+
[name, base_url, api_root, domain, ca_cert, client_cert, client_key, tls_validation, username, password, q_select, policy].hash
|
354
386
|
end
|
355
387
|
|
356
388
|
# Builds the object from hash
|
@@ -0,0 +1,41 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.10.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'date'
|
14
|
+
require 'time'
|
15
|
+
|
16
|
+
module PulpcoreClient
|
17
|
+
class Policy357Enum
|
18
|
+
ALL = "all".freeze
|
19
|
+
LABELED = "labeled".freeze
|
20
|
+
NODELETE = "nodelete".freeze
|
21
|
+
|
22
|
+
def self.all_vars
|
23
|
+
@all_vars ||= [ALL, LABELED, NODELETE].freeze
|
24
|
+
end
|
25
|
+
|
26
|
+
# Builds the enum from string
|
27
|
+
# @param [String] The enum value in the form of the string
|
28
|
+
# @return [String] The enum value
|
29
|
+
def self.build_from_hash(value)
|
30
|
+
new.build_from_hash(value)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Builds the enum from string
|
34
|
+
# @param [String] The enum value in the form of the string
|
35
|
+
# @return [String] The enum value
|
36
|
+
def build_from_hash(value)
|
37
|
+
return value if Policy357Enum.all_vars.include?(value)
|
38
|
+
raise "Invalid ENUM value #{value} for class #Policy357Enum"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -49,6 +49,31 @@ module PulpcoreClient
|
|
49
49
|
# Filter distributions on the upstream Pulp using complex filtering. E.g. pulp_label_select=\"foo\" OR pulp_label_select=\"key=val\"
|
50
50
|
attr_accessor :q_select
|
51
51
|
|
52
|
+
# Policy for how replicate will manage the local objects within the domain. * `all` - Replicate manages ALL local objects within the domain. * `labeled` - Replicate will only manage the objects created from a previous replication, unlabled local objects will be untouched. * `nodelete` - Replicate will not delete any local object whether they were created by replication or not.
|
53
|
+
attr_accessor :policy
|
54
|
+
|
55
|
+
class EnumAttributeValidator
|
56
|
+
attr_reader :datatype
|
57
|
+
attr_reader :allowable_values
|
58
|
+
|
59
|
+
def initialize(datatype, allowable_values)
|
60
|
+
@allowable_values = allowable_values.map do |value|
|
61
|
+
case datatype.to_s
|
62
|
+
when /Integer/i
|
63
|
+
value.to_i
|
64
|
+
when /Float/i
|
65
|
+
value.to_f
|
66
|
+
else
|
67
|
+
value
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
def valid?(value)
|
73
|
+
!value || allowable_values.include?(value)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
52
77
|
# Attribute mapping from ruby-style variable name to JSON key.
|
53
78
|
def self.attribute_map
|
54
79
|
{
|
@@ -62,7 +87,8 @@ module PulpcoreClient
|
|
62
87
|
:'tls_validation' => :'tls_validation',
|
63
88
|
:'username' => :'username',
|
64
89
|
:'password' => :'password',
|
65
|
-
:'q_select' => :'q_select'
|
90
|
+
:'q_select' => :'q_select',
|
91
|
+
:'policy' => :'policy'
|
66
92
|
}
|
67
93
|
end
|
68
94
|
|
@@ -84,7 +110,8 @@ module PulpcoreClient
|
|
84
110
|
:'tls_validation' => :'Boolean',
|
85
111
|
:'username' => :'String',
|
86
112
|
:'password' => :'String',
|
87
|
-
:'q_select' => :'String'
|
113
|
+
:'q_select' => :'String',
|
114
|
+
:'policy' => :'Policy357Enum'
|
88
115
|
}
|
89
116
|
end
|
90
117
|
|
@@ -97,7 +124,7 @@ module PulpcoreClient
|
|
97
124
|
:'client_key',
|
98
125
|
:'username',
|
99
126
|
:'password',
|
100
|
-
:'q_select'
|
127
|
+
:'q_select',
|
101
128
|
])
|
102
129
|
end
|
103
130
|
|
@@ -165,6 +192,10 @@ module PulpcoreClient
|
|
165
192
|
if attributes.key?(:'q_select')
|
166
193
|
self.q_select = attributes[:'q_select']
|
167
194
|
end
|
195
|
+
|
196
|
+
if attributes.key?(:'policy')
|
197
|
+
self.policy = attributes[:'policy']
|
198
|
+
end
|
168
199
|
end
|
169
200
|
|
170
201
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -359,7 +390,8 @@ module PulpcoreClient
|
|
359
390
|
tls_validation == o.tls_validation &&
|
360
391
|
username == o.username &&
|
361
392
|
password == o.password &&
|
362
|
-
q_select == o.q_select
|
393
|
+
q_select == o.q_select &&
|
394
|
+
policy == o.policy
|
363
395
|
end
|
364
396
|
|
365
397
|
# @see the `==` method
|
@@ -371,7 +403,7 @@ module PulpcoreClient
|
|
371
403
|
# Calculates hash code according to all attributes.
|
372
404
|
# @return [Integer] Hash code
|
373
405
|
def hash
|
374
|
-
[name, base_url, api_root, domain, ca_cert, client_cert, client_key, tls_validation, username, password, q_select].hash
|
406
|
+
[name, base_url, api_root, domain, ca_cert, client_cert, client_key, tls_validation, username, password, q_select, policy].hash
|
375
407
|
end
|
376
408
|
|
377
409
|
# Builds the object from hash
|
@@ -57,6 +57,31 @@ module PulpcoreClient
|
|
57
57
|
# Timestamp of the last replication that occurred. Equals to 'null' if no replication task has been executed.
|
58
58
|
attr_accessor :last_replication
|
59
59
|
|
60
|
+
# Policy for how replicate will manage the local objects within the domain. * `all` - Replicate manages ALL local objects within the domain. * `labeled` - Replicate will only manage the objects created from a previous replication, unlabled local objects will be untouched. * `nodelete` - Replicate will not delete any local object whether they were created by replication or not.
|
61
|
+
attr_accessor :policy
|
62
|
+
|
63
|
+
class EnumAttributeValidator
|
64
|
+
attr_reader :datatype
|
65
|
+
attr_reader :allowable_values
|
66
|
+
|
67
|
+
def initialize(datatype, allowable_values)
|
68
|
+
@allowable_values = allowable_values.map do |value|
|
69
|
+
case datatype.to_s
|
70
|
+
when /Integer/i
|
71
|
+
value.to_i
|
72
|
+
when /Float/i
|
73
|
+
value.to_f
|
74
|
+
else
|
75
|
+
value
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
80
|
+
def valid?(value)
|
81
|
+
!value || allowable_values.include?(value)
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
60
85
|
# Attribute mapping from ruby-style variable name to JSON key.
|
61
86
|
def self.attribute_map
|
62
87
|
{
|
@@ -73,7 +98,8 @@ module PulpcoreClient
|
|
73
98
|
:'tls_validation' => :'tls_validation',
|
74
99
|
:'hidden_fields' => :'hidden_fields',
|
75
100
|
:'q_select' => :'q_select',
|
76
|
-
:'last_replication' => :'last_replication'
|
101
|
+
:'last_replication' => :'last_replication',
|
102
|
+
:'policy' => :'policy'
|
77
103
|
}
|
78
104
|
end
|
79
105
|
|
@@ -98,7 +124,8 @@ module PulpcoreClient
|
|
98
124
|
:'tls_validation' => :'Boolean',
|
99
125
|
:'hidden_fields' => :'Array<GenericRemoteResponseHiddenFieldsInner>',
|
100
126
|
:'q_select' => :'String',
|
101
|
-
:'last_replication' => :'Time'
|
127
|
+
:'last_replication' => :'Time',
|
128
|
+
:'policy' => :'Policy357Enum'
|
102
129
|
}
|
103
130
|
end
|
104
131
|
|
@@ -190,6 +217,10 @@ module PulpcoreClient
|
|
190
217
|
if attributes.key?(:'last_replication')
|
191
218
|
self.last_replication = attributes[:'last_replication']
|
192
219
|
end
|
220
|
+
|
221
|
+
if attributes.key?(:'policy')
|
222
|
+
self.policy = attributes[:'policy']
|
223
|
+
end
|
193
224
|
end
|
194
225
|
|
195
226
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -240,7 +271,8 @@ module PulpcoreClient
|
|
240
271
|
tls_validation == o.tls_validation &&
|
241
272
|
hidden_fields == o.hidden_fields &&
|
242
273
|
q_select == o.q_select &&
|
243
|
-
last_replication == o.last_replication
|
274
|
+
last_replication == o.last_replication &&
|
275
|
+
policy == o.policy
|
244
276
|
end
|
245
277
|
|
246
278
|
# @see the `==` method
|
@@ -252,7 +284,7 @@ module PulpcoreClient
|
|
252
284
|
# Calculates hash code according to all attributes.
|
253
285
|
# @return [Integer] Hash code
|
254
286
|
def hash
|
255
|
-
[pulp_href, prn, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, hidden_fields, q_select, last_replication].hash
|
287
|
+
[pulp_href, prn, pulp_created, pulp_last_updated, name, base_url, api_root, domain, ca_cert, client_cert, tls_validation, hidden_fields, q_select, last_replication, policy].hash
|
256
288
|
end
|
257
289
|
|
258
290
|
# Builds the object from hash
|
data/lib/pulpcore_client.rb
CHANGED
@@ -43,6 +43,7 @@ require 'pulpcore_client/models/filesystem_exporter'
|
|
43
43
|
require 'pulpcore_client/models/filesystem_exporter_response'
|
44
44
|
require 'pulpcore_client/models/generic_remote_response'
|
45
45
|
require 'pulpcore_client/models/generic_remote_response_hidden_fields_inner'
|
46
|
+
require 'pulpcore_client/models/generic_remote_response_policy_enum'
|
46
47
|
require 'pulpcore_client/models/group'
|
47
48
|
require 'pulpcore_client/models/group_progress_report_response'
|
48
49
|
require 'pulpcore_client/models/group_response'
|
@@ -136,7 +137,7 @@ require 'pulpcore_client/models/patched_role'
|
|
136
137
|
require 'pulpcore_client/models/patched_task_cancel'
|
137
138
|
require 'pulpcore_client/models/patched_upstream_pulp'
|
138
139
|
require 'pulpcore_client/models/patched_user'
|
139
|
-
require 'pulpcore_client/models/
|
140
|
+
require 'pulpcore_client/models/policy357_enum'
|
140
141
|
require 'pulpcore_client/models/profile_artifact_response'
|
141
142
|
require 'pulpcore_client/models/progress_report_response'
|
142
143
|
require 'pulpcore_client/models/publication_response'
|
@@ -43,6 +43,7 @@ describe 'ContentApi' do
|
|
43
43
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
44
44
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
45
45
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
46
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
46
47
|
# @option opts [String] :pulp_type Pulp type * `core.publishedmetadata` - core.publishedmetadata * `core.openpgp_publickey` - core.openpgp_publickey * `core.openpgp_publicsubkey` - core.openpgp_publicsubkey * `core.openpgp_userid` - core.openpgp_userid * `core.openpgp_userattribute` - core.openpgp_userattribute * `core.openpgp_signature` - core.openpgp_signature * `file.file` - file.file
|
47
48
|
# @option opts [Array<String>] :pulp_type__in Multiple values may be separated by commas. * `core.publishedmetadata` - core.publishedmetadata * `core.openpgp_publickey` - core.openpgp_publickey * `core.openpgp_publicsubkey` - core.openpgp_publicsubkey * `core.openpgp_userid` - core.openpgp_userid * `core.openpgp_userattribute` - core.openpgp_userattribute * `core.openpgp_signature` - core.openpgp_signature * `file.file` - file.file
|
48
49
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
@@ -37,6 +37,7 @@ describe 'ContentOpenpgpPublickeyApi' do
|
|
37
37
|
# Trigger an asynchronous task to create content,optionally create new repository version.
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [String] :repository A URI of a repository the new content unit should be associated with.
|
40
|
+
# @option opts [Hash<String, String>] :pulp_labels A dictionary of arbitrary key/value pairs used to describe a specific Content instance.
|
40
41
|
# @option opts [File] :file An uploaded file that may be turned into the content unit.
|
41
42
|
# @option opts [String] :upload An uncommitted upload that may be turned into the content unit.
|
42
43
|
# @option opts [String] :file_url A url that Pulp can download and turn into the content unit.
|
@@ -54,11 +55,12 @@ describe 'ContentOpenpgpPublickeyApi' do
|
|
54
55
|
# @option opts [String] :fingerprint Filter results where fingerprint matches value
|
55
56
|
# @option opts [Integer] :limit Number of results to return per page.
|
56
57
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
57
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `fingerprint` - Fingerprint * `-fingerprint` - Fingerprint (descending) * `created` - Created * `-created` - Created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
58
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `fingerprint` - Fingerprint * `-fingerprint` - Fingerprint (descending) * `created` - Created * `-created` - Created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
58
59
|
# @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
59
60
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
60
61
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
61
62
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
63
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
62
64
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
63
65
|
# @option opts [String] :repository_version Repository Version referenced by HREF/PRN
|
64
66
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
|
@@ -86,4 +88,30 @@ describe 'ContentOpenpgpPublickeyApi' do
|
|
86
88
|
end
|
87
89
|
end
|
88
90
|
|
91
|
+
# unit tests for set_label
|
92
|
+
# Set a label
|
93
|
+
# Set a single pulp_label on the object to a specific value or null.
|
94
|
+
# @param open_p_g_p_public_key_href
|
95
|
+
# @param set_label
|
96
|
+
# @param [Hash] opts the optional parameters
|
97
|
+
# @return [SetLabelResponse]
|
98
|
+
describe 'set_label test' do
|
99
|
+
it 'should work' do
|
100
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
# unit tests for unset_label
|
105
|
+
# Unset a label
|
106
|
+
# Unset a single pulp_label on the object.
|
107
|
+
# @param open_p_g_p_public_key_href
|
108
|
+
# @param unset_label
|
109
|
+
# @param [Hash] opts the optional parameters
|
110
|
+
# @return [UnsetLabelResponse]
|
111
|
+
describe 'unset_label test' do
|
112
|
+
it 'should work' do
|
113
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
114
|
+
end
|
115
|
+
end
|
116
|
+
|
89
117
|
end
|
@@ -39,11 +39,12 @@ describe 'ContentOpenpgpPublicsubkeyApi' do
|
|
39
39
|
# @option opts [String] :fingerprint Filter results where fingerprint matches value
|
40
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
41
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
42
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `fingerprint` - Fingerprint * `-fingerprint` - Fingerprint (descending) * `created` - Created * `-created` - Created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
42
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `fingerprint` - Fingerprint * `-fingerprint` - Fingerprint (descending) * `created` - Created * `-created` - Created (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
43
43
|
# @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
44
44
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
45
45
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
46
46
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
47
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
47
48
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
48
49
|
# @option opts [String] :repository_version Repository Version referenced by HREF/PRN
|
49
50
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
|
@@ -39,11 +39,12 @@ describe 'ContentOpenpgpSignatureApi' do
|
|
39
39
|
# @option opts [String] :issuer Filter results where issuer matches value
|
40
40
|
# @option opts [Integer] :limit Number of results to return per page.
|
41
41
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
42
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `signature_type` - Signature type * `-signature_type` - Signature type (descending) * `created` - Created * `-created` - Created (descending) * `expiration_time` - Expiration time * `-expiration_time` - Expiration time (descending) * `key_expiration_time` - Key expiration time * `-key_expiration_time` - Key expiration time (descending) * `issuer` - Issuer * `-issuer` - Issuer (descending) * `signers_user_id` - Signers user id * `-signers_user_id` - Signers user id (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
42
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `signature_type` - Signature type * `-signature_type` - Signature type (descending) * `created` - Created * `-created` - Created (descending) * `expiration_time` - Expiration time * `-expiration_time` - Expiration time (descending) * `key_expiration_time` - Key expiration time * `-key_expiration_time` - Key expiration time (descending) * `issuer` - Issuer * `-issuer` - Issuer (descending) * `signers_user_id` - Signers user id * `-signers_user_id` - Signers user id (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
43
43
|
# @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
44
44
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
45
45
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
46
46
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
47
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
47
48
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
48
49
|
# @option opts [String] :repository_version Repository Version referenced by HREF/PRN
|
49
50
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
|
@@ -38,11 +38,12 @@ describe 'ContentOpenpgpUserattributeApi' do
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
40
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
41
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `sha256` - Sha256 * `-sha256` - Sha256 (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
42
42
|
# @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
43
43
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
44
44
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
45
45
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
46
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
46
47
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
47
48
|
# @option opts [String] :repository_version Repository Version referenced by HREF/PRN
|
48
49
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
|
@@ -38,11 +38,12 @@ describe 'ContentOpenpgpUseridApi' do
|
|
38
38
|
# @param [Hash] opts the optional parameters
|
39
39
|
# @option opts [Integer] :limit Number of results to return per page.
|
40
40
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
41
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `user_id` - User id * `-user_id` - User id (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
41
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `pulp_type` - Pulp type * `-pulp_type` - Pulp type (descending) * `upstream_id` - Upstream id * `-upstream_id` - Upstream id (descending) * `pulp_labels` - Pulp labels * `-pulp_labels` - Pulp labels (descending) * `timestamp_of_interest` - Timestamp of interest * `-timestamp_of_interest` - Timestamp of interest (descending) * `raw_data` - Raw data * `-raw_data` - Raw data (descending) * `user_id` - User id * `-user_id` - User id (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
42
42
|
# @option opts [Float] :orphaned_for Minutes Content has been orphaned for. -1 uses ORPHAN_PROTECTION_TIME.
|
43
43
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
44
44
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
45
45
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
46
|
+
# @option opts [String] :pulp_label_select Filter labels by search string
|
46
47
|
# @option opts [String] :q Filter results by using NOT, AND and OR operations on other filters
|
47
48
|
# @option opts [String] :repository_version Repository Version referenced by HREF/PRN
|
48
49
|
# @option opts [String] :repository_version_added Repository Version referenced by HREF/PRN
|
@@ -100,7 +100,7 @@ describe 'UpstreamPulpsApi' do
|
|
100
100
|
# @option opts [String] :name__regex Filter results where name matches regex value
|
101
101
|
# @option opts [String] :name__startswith Filter results where name starts with value
|
102
102
|
# @option opts [Integer] :offset The initial index from which to return the results.
|
103
|
-
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `base_url` - Base url * `-base_url` - Base url (descending) * `api_root` - Api root * `-api_root` - Api root (descending) * `domain` - Domain * `-domain` - Domain (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `q_select` - Q select * `-q_select` - Q select (descending) * `last_replication` - Last replication * `-last_replication` - Last replication (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
103
|
+
# @option opts [Array<String>] :ordering Ordering * `pulp_id` - Pulp id * `-pulp_id` - Pulp id (descending) * `pulp_created` - Pulp created * `-pulp_created` - Pulp created (descending) * `pulp_last_updated` - Pulp last updated * `-pulp_last_updated` - Pulp last updated (descending) * `name` - Name * `-name` - Name (descending) * `base_url` - Base url * `-base_url` - Base url (descending) * `api_root` - Api root * `-api_root` - Api root (descending) * `domain` - Domain * `-domain` - Domain (descending) * `ca_cert` - Ca cert * `-ca_cert` - Ca cert (descending) * `client_cert` - Client cert * `-client_cert` - Client cert (descending) * `client_key` - Client key * `-client_key` - Client key (descending) * `tls_validation` - Tls validation * `-tls_validation` - Tls validation (descending) * `username` - Username * `-username` - Username (descending) * `password` - Password * `-password` - Password (descending) * `q_select` - Q select * `-q_select` - Q select (descending) * `policy` - Policy * `-policy` - Policy (descending) * `last_replication` - Last replication * `-last_replication` - Last replication (descending) * `pk` - Pk * `-pk` - Pk (descending)
|
104
104
|
# @option opts [Array<String>] :prn__in Multiple values may be separated by commas.
|
105
105
|
# @option opts [Array<String>] :pulp_href__in Multiple values may be separated by commas.
|
106
106
|
# @option opts [Array<String>] :pulp_id__in Multiple values may be separated by commas.
|
@@ -27,43 +27,43 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
27
27
|
end
|
28
28
|
end
|
29
29
|
|
30
|
-
describe 'test attribute "
|
30
|
+
describe 'test attribute "hidden"' 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 "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 "pulp_href"' 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_url"' 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 "prn"' 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 "content_guard"' 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
|
@@ -75,19 +75,19 @@ describe PulpcoreClient::ArtifactDistributionResponse do
|
|
75
75
|
end
|
76
76
|
end
|
77
77
|
|
78
|
-
describe 'test attribute "
|
78
|
+
describe 'test attribute "pulp_labels"' 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 "pulp_created"' 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 "pulp_last_updated"' 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
|
@@ -0,0 +1,30 @@
|
|
1
|
+
=begin
|
2
|
+
#Pulp 3 API
|
3
|
+
|
4
|
+
#Fetch, Upload, Organize, and Distribute Software Packages
|
5
|
+
|
6
|
+
The version of the OpenAPI document: v3
|
7
|
+
Contact: pulp-list@redhat.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
Generator version: 7.10.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for PulpcoreClient::GenericRemoteResponsePolicyEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe PulpcoreClient::GenericRemoteResponsePolicyEnum do
|
21
|
+
let(:instance) { PulpcoreClient::GenericRemoteResponsePolicyEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of GenericRemoteResponsePolicyEnum' do
|
24
|
+
it 'should create an instance of GenericRemoteResponsePolicyEnum' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(PulpcoreClient::GenericRemoteResponsePolicyEnum)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -51,6 +51,12 @@ describe PulpcoreClient::MultipleArtifactContentResponse do
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
+
describe 'test attribute "pulp_labels"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
54
60
|
describe 'test attribute "artifacts"' do
|
55
61
|
it 'should work' do
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -51,6 +51,12 @@ describe PulpcoreClient::OpenPGPPublicKeyResponse do
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
+
describe 'test attribute "pulp_labels"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
54
60
|
describe 'test attribute "fingerprint"' do
|
55
61
|
it 'should work' do
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -51,6 +51,12 @@ describe PulpcoreClient::OpenPGPPublicSubkeyResponse do
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
+
describe 'test attribute "pulp_labels"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
54
60
|
describe 'test attribute "fingerprint"' do
|
55
61
|
it 'should work' do
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -51,6 +51,12 @@ describe PulpcoreClient::OpenPGPSignatureResponse do
|
|
51
51
|
end
|
52
52
|
end
|
53
53
|
|
54
|
+
describe 'test attribute "pulp_labels"' do
|
55
|
+
it 'should work' do
|
56
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
54
60
|
describe 'test attribute "issuer"' do
|
55
61
|
it 'should work' do
|
56
62
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|