akeyless 3.1.1 → 3.2.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 +23 -1
- data/docs/AssocTargetItem.md +2 -0
- data/docs/CreateCertificate.md +3 -1
- data/docs/CreateClassicKey.md +6 -2
- data/docs/CreateDBTarget.md +4 -0
- data/docs/CreateDFCKey.md +3 -1
- data/docs/CreateDynamicSecret.md +3 -1
- data/docs/CreateKey.md +3 -1
- data/docs/CreatePKICertIssuer.md +3 -1
- data/docs/CreatePingTarget.md +38 -0
- data/docs/CreatePingTargetOutput.md +18 -0
- data/docs/CreateRotatedSecret.md +5 -1
- data/docs/CreateSSHCertIssuer.md +3 -1
- data/docs/CreateSecret.md +3 -1
- data/docs/CreateTokenizer.md +3 -1
- data/docs/DSProducerDetails.md +48 -0
- data/docs/DecryptGPG.md +34 -0
- data/docs/DecryptGPGOutput.md +18 -0
- data/docs/EncryptGPG.md +32 -0
- data/docs/EncryptGPGOutput.md +18 -0
- data/docs/GatewayCreateProducerPing.md +66 -0
- data/docs/GatewayCreateProducerPingOutput.md +18 -0
- data/docs/GatewayCreateProducerSnowflake.md +4 -0
- data/docs/GatewayUpdateItem.md +3 -1
- data/docs/GatewayUpdateProducerPing.md +68 -0
- data/docs/GatewayUpdateProducerPingOutput.md +18 -0
- data/docs/GatewayUpdateProducerSnowflake.md +4 -0
- data/docs/GenCustomerFragment.md +4 -2
- data/docs/GetKubeExecCreds.md +5 -3
- data/docs/GetPKICertificate.md +5 -3
- data/docs/SecureRemoteAccess.md +2 -0
- data/docs/SignGPG.md +32 -0
- data/docs/SignGPGOutput.md +18 -0
- data/docs/TargetTypeDetailsInput.md +14 -0
- data/docs/UpdateDBTarget.md +4 -0
- data/docs/UpdateItem.md +3 -1
- data/docs/UpdatePKICertIssuer.md +3 -1
- data/docs/UpdatePingTarget.md +44 -0
- data/docs/UpdateRotatedSecret.md +5 -1
- data/docs/UpdateSSHCertIssuer.md +3 -1
- data/docs/UploadPKCS12.md +3 -1
- data/docs/UploadRSA.md +3 -1
- data/docs/V2Api.md +504 -0
- data/docs/VerifyGPG.md +32 -0
- data/lib/akeyless/api/v2_api.rb +512 -0
- data/lib/akeyless/models/assoc_target_item.rb +11 -1
- data/lib/akeyless/models/create_certificate.rb +12 -2
- data/lib/akeyless/models/create_classic_key.rb +23 -3
- data/lib/akeyless/models/create_db_target.rb +21 -1
- data/lib/akeyless/models/create_dfc_key.rb +12 -2
- data/lib/akeyless/models/create_dynamic_secret.rb +12 -4
- data/lib/akeyless/models/create_key.rb +12 -2
- data/lib/akeyless/models/create_ping_target.rb +329 -0
- data/lib/akeyless/models/create_ping_target_output.rb +219 -0
- data/lib/akeyless/models/create_pki_cert_issuer.rb +12 -2
- data/lib/akeyless/models/create_rotated_secret.rb +24 -2
- data/lib/akeyless/models/create_secret.rb +12 -2
- data/lib/akeyless/models/create_ssh_cert_issuer.rb +12 -2
- data/lib/akeyless/models/create_tokenizer.rb +12 -2
- data/lib/akeyless/models/decrypt_gpg.rb +310 -0
- data/lib/akeyless/models/decrypt_gpg_output.rb +219 -0
- data/lib/akeyless/models/ds_producer_details.rb +235 -1
- data/lib/akeyless/models/encrypt_gpg.rb +300 -0
- data/lib/akeyless/models/encrypt_gpg_output.rb +219 -0
- data/lib/akeyless/models/gateway_create_producer_ping.rb +482 -0
- data/lib/akeyless/models/gateway_create_producer_ping_output.rb +219 -0
- data/lib/akeyless/models/gateway_create_producer_snowflake.rb +22 -2
- data/lib/akeyless/models/gateway_update_item.rb +14 -2
- data/lib/akeyless/models/gateway_update_producer_ping.rb +492 -0
- data/lib/akeyless/models/gateway_update_producer_ping_output.rb +219 -0
- data/lib/akeyless/models/gateway_update_producer_snowflake.rb +22 -2
- data/lib/akeyless/models/gen_customer_fragment.rb +15 -5
- data/lib/akeyless/models/get_kube_exec_creds.rb +14 -4
- data/lib/akeyless/models/get_pki_certificate.rb +14 -4
- data/lib/akeyless/models/secure_remote_access.rb +10 -1
- data/lib/akeyless/models/sign_gpg.rb +300 -0
- data/lib/akeyless/models/sign_gpg_output.rb +219 -0
- data/lib/akeyless/models/target_type_details_input.rb +65 -1
- data/lib/akeyless/models/update_db_target.rb +21 -1
- data/lib/akeyless/models/update_item.rb +14 -2
- data/lib/akeyless/models/update_ping_target.rb +358 -0
- data/lib/akeyless/models/update_pki_cert_issuer.rb +12 -2
- data/lib/akeyless/models/update_rotated_secret.rb +26 -2
- data/lib/akeyless/models/update_ssh_cert_issuer.rb +12 -2
- data/lib/akeyless/models/upload_pkcs12.rb +12 -2
- data/lib/akeyless/models/upload_rsa.rb +12 -2
- data/lib/akeyless/models/verify_gpg.rb +300 -0
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +14 -0
- data/spec/models/create_ping_target_output_spec.rb +34 -0
- data/spec/models/create_ping_target_spec.rb +94 -0
- data/spec/models/decrypt_gpg_output_spec.rb +34 -0
- data/spec/models/decrypt_gpg_spec.rb +82 -0
- data/spec/models/encrypt_gpg_output_spec.rb +34 -0
- data/spec/models/encrypt_gpg_spec.rb +76 -0
- data/spec/models/gateway_create_producer_ping_output_spec.rb +34 -0
- data/spec/models/gateway_create_producer_ping_spec.rb +178 -0
- data/spec/models/gateway_update_producer_ping_output_spec.rb +34 -0
- data/spec/models/gateway_update_producer_ping_spec.rb +184 -0
- data/spec/models/sign_gpg_output_spec.rb +34 -0
- data/spec/models/sign_gpg_spec.rb +76 -0
- data/spec/models/update_ping_target_spec.rb +112 -0
- data/spec/models/verify_gpg_spec.rb +76 -0
- metadata +609 -553
|
@@ -27,10 +27,13 @@ module Akeyless
|
|
|
27
27
|
# Protection from accidental deletion of this item
|
|
28
28
|
attr_accessor :delete_protection
|
|
29
29
|
|
|
30
|
+
# Description of the object
|
|
31
|
+
attr_accessor :description
|
|
32
|
+
|
|
30
33
|
# Set output format to JSON
|
|
31
34
|
attr_accessor :json
|
|
32
35
|
|
|
33
|
-
#
|
|
36
|
+
# Deprecated - use description
|
|
34
37
|
attr_accessor :metadata
|
|
35
38
|
|
|
36
39
|
# Name of key to be created
|
|
@@ -61,6 +64,7 @@ module Akeyless
|
|
|
61
64
|
:'cert_file_data' => :'cert-file-data',
|
|
62
65
|
:'customer_frg_id' => :'customer-frg-id',
|
|
63
66
|
:'delete_protection' => :'delete_protection',
|
|
67
|
+
:'description' => :'description',
|
|
64
68
|
:'json' => :'json',
|
|
65
69
|
:'metadata' => :'metadata',
|
|
66
70
|
:'name' => :'name',
|
|
@@ -85,6 +89,7 @@ module Akeyless
|
|
|
85
89
|
:'cert_file_data' => :'String',
|
|
86
90
|
:'customer_frg_id' => :'String',
|
|
87
91
|
:'delete_protection' => :'String',
|
|
92
|
+
:'description' => :'String',
|
|
88
93
|
:'json' => :'Boolean',
|
|
89
94
|
:'metadata' => :'String',
|
|
90
95
|
:'name' => :'String',
|
|
@@ -134,6 +139,10 @@ module Akeyless
|
|
|
134
139
|
self.delete_protection = attributes[:'delete_protection']
|
|
135
140
|
end
|
|
136
141
|
|
|
142
|
+
if attributes.key?(:'description')
|
|
143
|
+
self.description = attributes[:'description']
|
|
144
|
+
end
|
|
145
|
+
|
|
137
146
|
if attributes.key?(:'json')
|
|
138
147
|
self.json = attributes[:'json']
|
|
139
148
|
end
|
|
@@ -207,6 +216,7 @@ module Akeyless
|
|
|
207
216
|
cert_file_data == o.cert_file_data &&
|
|
208
217
|
customer_frg_id == o.customer_frg_id &&
|
|
209
218
|
delete_protection == o.delete_protection &&
|
|
219
|
+
description == o.description &&
|
|
210
220
|
json == o.json &&
|
|
211
221
|
metadata == o.metadata &&
|
|
212
222
|
name == o.name &&
|
|
@@ -227,7 +237,7 @@ module Akeyless
|
|
|
227
237
|
# Calculates hash code according to all attributes.
|
|
228
238
|
# @return [Integer] Hash code
|
|
229
239
|
def hash
|
|
230
|
-
[alg, cert_file_data, customer_frg_id, delete_protection, json, metadata, name, overwrite, rsa_file_data, split_level, tag, token, uid_token].hash
|
|
240
|
+
[alg, cert_file_data, customer_frg_id, delete_protection, description, json, metadata, name, overwrite, rsa_file_data, split_level, tag, token, uid_token].hash
|
|
231
241
|
end
|
|
232
242
|
|
|
233
243
|
# Builds the object from hash
|
|
@@ -0,0 +1,300 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Akeyless API
|
|
3
|
+
|
|
4
|
+
#The purpose of this application is to provide access to Akeyless API.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0
|
|
7
|
+
Contact: support@akeyless.io
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.3.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
require 'time'
|
|
15
|
+
|
|
16
|
+
module Akeyless
|
|
17
|
+
class VerifyGPG
|
|
18
|
+
# The display id of the key to use in the encryption process
|
|
19
|
+
attr_accessor :display_id
|
|
20
|
+
|
|
21
|
+
# The item id of the key to use in the encryption process
|
|
22
|
+
attr_accessor :item_id
|
|
23
|
+
|
|
24
|
+
# Set output format to JSON
|
|
25
|
+
attr_accessor :json
|
|
26
|
+
|
|
27
|
+
# The name of the key to use in the encryption process
|
|
28
|
+
attr_accessor :key_name
|
|
29
|
+
|
|
30
|
+
# Passphrase that was used to generate the key
|
|
31
|
+
attr_accessor :passphrase
|
|
32
|
+
|
|
33
|
+
# The signature to be verified in base64 format
|
|
34
|
+
attr_accessor :signature
|
|
35
|
+
|
|
36
|
+
# Authentication token (see `/auth` and `/configure`)
|
|
37
|
+
attr_accessor :token
|
|
38
|
+
|
|
39
|
+
# The universal identity token, Required only for universal_identity authentication
|
|
40
|
+
attr_accessor :uid_token
|
|
41
|
+
|
|
42
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
43
|
+
def self.attribute_map
|
|
44
|
+
{
|
|
45
|
+
:'display_id' => :'display-id',
|
|
46
|
+
:'item_id' => :'item-id',
|
|
47
|
+
:'json' => :'json',
|
|
48
|
+
:'key_name' => :'key-name',
|
|
49
|
+
:'passphrase' => :'passphrase',
|
|
50
|
+
:'signature' => :'signature',
|
|
51
|
+
:'token' => :'token',
|
|
52
|
+
:'uid_token' => :'uid-token'
|
|
53
|
+
}
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Returns all the JSON keys this model knows about
|
|
57
|
+
def self.acceptable_attributes
|
|
58
|
+
attribute_map.values
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Attribute type mapping.
|
|
62
|
+
def self.openapi_types
|
|
63
|
+
{
|
|
64
|
+
:'display_id' => :'String',
|
|
65
|
+
:'item_id' => :'Integer',
|
|
66
|
+
:'json' => :'Boolean',
|
|
67
|
+
:'key_name' => :'String',
|
|
68
|
+
:'passphrase' => :'String',
|
|
69
|
+
:'signature' => :'String',
|
|
70
|
+
:'token' => :'String',
|
|
71
|
+
:'uid_token' => :'String'
|
|
72
|
+
}
|
|
73
|
+
end
|
|
74
|
+
|
|
75
|
+
# List of attributes with nullable: true
|
|
76
|
+
def self.openapi_nullable
|
|
77
|
+
Set.new([
|
|
78
|
+
])
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
# Initializes the object
|
|
82
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
83
|
+
def initialize(attributes = {})
|
|
84
|
+
if (!attributes.is_a?(Hash))
|
|
85
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `Akeyless::VerifyGPG` initialize method"
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
89
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
90
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
91
|
+
fail ArgumentError, "`#{k}` is not a valid attribute in `Akeyless::VerifyGPG`. Please check the name to make sure it's valid. List of attributes: " + self.class.attribute_map.keys.inspect
|
|
92
|
+
end
|
|
93
|
+
h[k.to_sym] = v
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
if attributes.key?(:'display_id')
|
|
97
|
+
self.display_id = attributes[:'display_id']
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
if attributes.key?(:'item_id')
|
|
101
|
+
self.item_id = attributes[:'item_id']
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
if attributes.key?(:'json')
|
|
105
|
+
self.json = attributes[:'json']
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
if attributes.key?(:'key_name')
|
|
109
|
+
self.key_name = attributes[:'key_name']
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
if attributes.key?(:'passphrase')
|
|
113
|
+
self.passphrase = attributes[:'passphrase']
|
|
114
|
+
end
|
|
115
|
+
|
|
116
|
+
if attributes.key?(:'signature')
|
|
117
|
+
self.signature = attributes[:'signature']
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
if attributes.key?(:'token')
|
|
121
|
+
self.token = attributes[:'token']
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
if attributes.key?(:'uid_token')
|
|
125
|
+
self.uid_token = attributes[:'uid_token']
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
130
|
+
# @return Array for valid properties with the reasons
|
|
131
|
+
def list_invalid_properties
|
|
132
|
+
invalid_properties = Array.new
|
|
133
|
+
if @key_name.nil?
|
|
134
|
+
invalid_properties.push('invalid value for "key_name", key_name cannot be nil.')
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
if @signature.nil?
|
|
138
|
+
invalid_properties.push('invalid value for "signature", signature cannot be nil.')
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
invalid_properties
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
# Check to see if the all the properties in the model are valid
|
|
145
|
+
# @return true if the model is valid
|
|
146
|
+
def valid?
|
|
147
|
+
return false if @key_name.nil?
|
|
148
|
+
return false if @signature.nil?
|
|
149
|
+
true
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
# Checks equality by comparing each attribute.
|
|
153
|
+
# @param [Object] Object to be compared
|
|
154
|
+
def ==(o)
|
|
155
|
+
return true if self.equal?(o)
|
|
156
|
+
self.class == o.class &&
|
|
157
|
+
display_id == o.display_id &&
|
|
158
|
+
item_id == o.item_id &&
|
|
159
|
+
json == o.json &&
|
|
160
|
+
key_name == o.key_name &&
|
|
161
|
+
passphrase == o.passphrase &&
|
|
162
|
+
signature == o.signature &&
|
|
163
|
+
token == o.token &&
|
|
164
|
+
uid_token == o.uid_token
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
# @see the `==` method
|
|
168
|
+
# @param [Object] Object to be compared
|
|
169
|
+
def eql?(o)
|
|
170
|
+
self == o
|
|
171
|
+
end
|
|
172
|
+
|
|
173
|
+
# Calculates hash code according to all attributes.
|
|
174
|
+
# @return [Integer] Hash code
|
|
175
|
+
def hash
|
|
176
|
+
[display_id, item_id, json, key_name, passphrase, signature, token, uid_token].hash
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
# Builds the object from hash
|
|
180
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
181
|
+
# @return [Object] Returns the model itself
|
|
182
|
+
def self.build_from_hash(attributes)
|
|
183
|
+
new.build_from_hash(attributes)
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
# Builds the object from hash
|
|
187
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
188
|
+
# @return [Object] Returns the model itself
|
|
189
|
+
def build_from_hash(attributes)
|
|
190
|
+
return nil unless attributes.is_a?(Hash)
|
|
191
|
+
attributes = attributes.transform_keys(&:to_sym)
|
|
192
|
+
self.class.openapi_types.each_pair do |key, type|
|
|
193
|
+
if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
|
|
194
|
+
self.send("#{key}=", nil)
|
|
195
|
+
elsif type =~ /\AArray<(.*)>/i
|
|
196
|
+
# check to ensure the input is an array given that the attribute
|
|
197
|
+
# is documented as an array but the input is not
|
|
198
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
199
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
200
|
+
end
|
|
201
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
202
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
self
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
# Deserializes the data based on type
|
|
210
|
+
# @param string type Data type
|
|
211
|
+
# @param string value Value to be deserialized
|
|
212
|
+
# @return [Object] Deserialized data
|
|
213
|
+
def _deserialize(type, value)
|
|
214
|
+
case type.to_sym
|
|
215
|
+
when :Time
|
|
216
|
+
Time.parse(value)
|
|
217
|
+
when :Date
|
|
218
|
+
Date.parse(value)
|
|
219
|
+
when :String
|
|
220
|
+
value.to_s
|
|
221
|
+
when :Integer
|
|
222
|
+
value.to_i
|
|
223
|
+
when :Float
|
|
224
|
+
value.to_f
|
|
225
|
+
when :Boolean
|
|
226
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
227
|
+
true
|
|
228
|
+
else
|
|
229
|
+
false
|
|
230
|
+
end
|
|
231
|
+
when :Object
|
|
232
|
+
# generic object (usually a Hash), return directly
|
|
233
|
+
value
|
|
234
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
235
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
236
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
237
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
238
|
+
k_type = Regexp.last_match[:k_type]
|
|
239
|
+
v_type = Regexp.last_match[:v_type]
|
|
240
|
+
{}.tap do |hash|
|
|
241
|
+
value.each do |k, v|
|
|
242
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
243
|
+
end
|
|
244
|
+
end
|
|
245
|
+
else # model
|
|
246
|
+
# models (e.g. Pet) or oneOf
|
|
247
|
+
klass = Akeyless.const_get(type)
|
|
248
|
+
klass.respond_to?(:openapi_one_of) ? klass.build(value) : klass.build_from_hash(value)
|
|
249
|
+
end
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
# Returns the string representation of the object
|
|
253
|
+
# @return [String] String presentation of the object
|
|
254
|
+
def to_s
|
|
255
|
+
to_hash.to_s
|
|
256
|
+
end
|
|
257
|
+
|
|
258
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
259
|
+
# @return [Hash] Returns the object in the form of hash
|
|
260
|
+
def to_body
|
|
261
|
+
to_hash
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
# Returns the object in the form of hash
|
|
265
|
+
# @return [Hash] Returns the object in the form of hash
|
|
266
|
+
def to_hash
|
|
267
|
+
hash = {}
|
|
268
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
269
|
+
value = self.send(attr)
|
|
270
|
+
if value.nil?
|
|
271
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
272
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
273
|
+
end
|
|
274
|
+
|
|
275
|
+
hash[param] = _to_hash(value)
|
|
276
|
+
end
|
|
277
|
+
hash
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
# Outputs non-array value in the form of hash
|
|
281
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
282
|
+
# @param [Object] value Any valid value
|
|
283
|
+
# @return [Hash] Returns the value in the form of hash
|
|
284
|
+
def _to_hash(value)
|
|
285
|
+
if value.is_a?(Array)
|
|
286
|
+
value.compact.map { |v| _to_hash(v) }
|
|
287
|
+
elsif value.is_a?(Hash)
|
|
288
|
+
{}.tap do |hash|
|
|
289
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
290
|
+
end
|
|
291
|
+
elsif value.respond_to? :to_hash
|
|
292
|
+
value.to_hash
|
|
293
|
+
else
|
|
294
|
+
value
|
|
295
|
+
end
|
|
296
|
+
end
|
|
297
|
+
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
end
|
data/lib/akeyless/version.rb
CHANGED
data/lib/akeyless.rb
CHANGED
|
@@ -118,6 +118,8 @@ require 'akeyless/models/create_native_k8_s_target'
|
|
|
118
118
|
require 'akeyless/models/create_native_k8_s_target_output'
|
|
119
119
|
require 'akeyless/models/create_pki_cert_issuer'
|
|
120
120
|
require 'akeyless/models/create_pki_cert_issuer_output'
|
|
121
|
+
require 'akeyless/models/create_ping_target'
|
|
122
|
+
require 'akeyless/models/create_ping_target_output'
|
|
121
123
|
require 'akeyless/models/create_rabbit_mq_target'
|
|
122
124
|
require 'akeyless/models/create_rabbit_mq_target_output'
|
|
123
125
|
require 'akeyless/models/create_role'
|
|
@@ -146,6 +148,8 @@ require 'akeyless/models/datadog_forwarding_config'
|
|
|
146
148
|
require 'akeyless/models/decrypt'
|
|
147
149
|
require 'akeyless/models/decrypt_file'
|
|
148
150
|
require 'akeyless/models/decrypt_file_output'
|
|
151
|
+
require 'akeyless/models/decrypt_gpg'
|
|
152
|
+
require 'akeyless/models/decrypt_gpg_output'
|
|
149
153
|
require 'akeyless/models/decrypt_output'
|
|
150
154
|
require 'akeyless/models/decrypt_pkcs1'
|
|
151
155
|
require 'akeyless/models/decrypt_pkcs1_output'
|
|
@@ -184,6 +188,8 @@ require 'akeyless/models/email_tokenizer_info'
|
|
|
184
188
|
require 'akeyless/models/encrypt'
|
|
185
189
|
require 'akeyless/models/encrypt_file'
|
|
186
190
|
require 'akeyless/models/encrypt_file_output'
|
|
191
|
+
require 'akeyless/models/encrypt_gpg'
|
|
192
|
+
require 'akeyless/models/encrypt_gpg_output'
|
|
187
193
|
require 'akeyless/models/encrypt_output'
|
|
188
194
|
require 'akeyless/models/encrypt_with_classic_key'
|
|
189
195
|
require 'akeyless/models/encrypt_with_classic_key_output'
|
|
@@ -235,6 +241,8 @@ require 'akeyless/models/gateway_create_producer_native_k8_s'
|
|
|
235
241
|
require 'akeyless/models/gateway_create_producer_native_k8_s_output'
|
|
236
242
|
require 'akeyless/models/gateway_create_producer_oracle_db'
|
|
237
243
|
require 'akeyless/models/gateway_create_producer_oracle_db_output'
|
|
244
|
+
require 'akeyless/models/gateway_create_producer_ping'
|
|
245
|
+
require 'akeyless/models/gateway_create_producer_ping_output'
|
|
238
246
|
require 'akeyless/models/gateway_create_producer_postgre_sql'
|
|
239
247
|
require 'akeyless/models/gateway_create_producer_postgre_sql_output'
|
|
240
248
|
require 'akeyless/models/gateway_create_producer_rabbit_mq'
|
|
@@ -323,6 +331,8 @@ require 'akeyless/models/gateway_update_producer_native_k8_s'
|
|
|
323
331
|
require 'akeyless/models/gateway_update_producer_native_k8_s_output'
|
|
324
332
|
require 'akeyless/models/gateway_update_producer_oracle_db'
|
|
325
333
|
require 'akeyless/models/gateway_update_producer_oracle_db_output'
|
|
334
|
+
require 'akeyless/models/gateway_update_producer_ping'
|
|
335
|
+
require 'akeyless/models/gateway_update_producer_ping_output'
|
|
326
336
|
require 'akeyless/models/gateway_update_producer_postgre_sql'
|
|
327
337
|
require 'akeyless/models/gateway_update_producer_postgre_sql_output'
|
|
328
338
|
require 'akeyless/models/gateway_update_producer_rabbit_mq'
|
|
@@ -478,6 +488,8 @@ require 'akeyless/models/secure_remote_access'
|
|
|
478
488
|
require 'akeyless/models/set_item_state'
|
|
479
489
|
require 'akeyless/models/set_role_rule'
|
|
480
490
|
require 'akeyless/models/share_item'
|
|
491
|
+
require 'akeyless/models/sign_gpg'
|
|
492
|
+
require 'akeyless/models/sign_gpg_output'
|
|
481
493
|
require 'akeyless/models/sign_jwt_output'
|
|
482
494
|
require 'akeyless/models/sign_jwt_with_classic_key'
|
|
483
495
|
require 'akeyless/models/sign_pkcs1'
|
|
@@ -564,6 +576,7 @@ require 'akeyless/models/update_native_k8_s_target_output'
|
|
|
564
576
|
require 'akeyless/models/update_output'
|
|
565
577
|
require 'akeyless/models/update_pki_cert_issuer'
|
|
566
578
|
require 'akeyless/models/update_pki_cert_issuer_output'
|
|
579
|
+
require 'akeyless/models/update_ping_target'
|
|
567
580
|
require 'akeyless/models/update_rdp_target_details'
|
|
568
581
|
require 'akeyless/models/update_rabbit_mq_target'
|
|
569
582
|
require 'akeyless/models/update_rabbit_mq_target_details'
|
|
@@ -594,6 +607,7 @@ require 'akeyless/models/upload_rsa'
|
|
|
594
607
|
require 'akeyless/models/validate_token'
|
|
595
608
|
require 'akeyless/models/validate_token_output'
|
|
596
609
|
require 'akeyless/models/vaultless_tokenizer_info'
|
|
610
|
+
require 'akeyless/models/verify_gpg'
|
|
597
611
|
require 'akeyless/models/verify_jwt_output'
|
|
598
612
|
require 'akeyless/models/verify_jwt_with_classic_key'
|
|
599
613
|
require 'akeyless/models/verify_pkcs1'
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Akeyless API
|
|
3
|
+
|
|
4
|
+
#The purpose of this application is to provide access to Akeyless API.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0
|
|
7
|
+
Contact: support@akeyless.io
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.3.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Akeyless::CreatePingTargetOutput
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::CreatePingTargetOutput do
|
|
21
|
+
let(:instance) { Akeyless::CreatePingTargetOutput.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of CreatePingTargetOutput' do
|
|
24
|
+
it 'should create an instance of CreatePingTargetOutput' do
|
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CreatePingTargetOutput)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "target_id"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Akeyless API
|
|
3
|
+
|
|
4
|
+
#The purpose of this application is to provide access to Akeyless API.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0
|
|
7
|
+
Contact: support@akeyless.io
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.3.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Akeyless::CreatePingTarget
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::CreatePingTarget do
|
|
21
|
+
let(:instance) { Akeyless::CreatePingTarget.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of CreatePingTarget' do
|
|
24
|
+
it 'should create an instance of CreatePingTarget' do
|
|
25
|
+
expect(instance).to be_instance_of(Akeyless::CreatePingTarget)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "administrative_port"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "authorization_port"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "comment"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "json"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "key"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "name"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "password"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "ping_url"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "privileged_user"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "token"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "uid_token"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Akeyless API
|
|
3
|
+
|
|
4
|
+
#The purpose of this application is to provide access to Akeyless API.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0
|
|
7
|
+
Contact: support@akeyless.io
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.3.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Akeyless::DecryptGPGOutput
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::DecryptGPGOutput do
|
|
21
|
+
let(:instance) { Akeyless::DecryptGPGOutput.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of DecryptGPGOutput' do
|
|
24
|
+
it 'should create an instance of DecryptGPGOutput' do
|
|
25
|
+
expect(instance).to be_instance_of(Akeyless::DecryptGPGOutput)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "result"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
end
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#Akeyless API
|
|
3
|
+
|
|
4
|
+
#The purpose of this application is to provide access to Akeyless API.
|
|
5
|
+
|
|
6
|
+
The version of the OpenAPI document: 2.0
|
|
7
|
+
Contact: support@akeyless.io
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.3.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Akeyless::DecryptGPG
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::DecryptGPG do
|
|
21
|
+
let(:instance) { Akeyless::DecryptGPG.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of DecryptGPG' do
|
|
24
|
+
it 'should create an instance of DecryptGPG' do
|
|
25
|
+
expect(instance).to be_instance_of(Akeyless::DecryptGPG)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "ciphertext"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "display_id"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "item_id"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "json"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "key_name"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "output_format"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "passphrase"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "token"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "uid_token"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
end
|