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
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 673b135cdba764067c05908a6e24515b5d0b77bd1001ec6281730d8afad9ed3d
|
|
4
|
+
data.tar.gz: 4062f7829c0f866f64ff80e5e6d55de3f6c44d59553f80975305583cb007e7b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dc23c4d61a8c735801f659c4dcf5ab86b849ab530b9ff70a32ece6b6cd0e1b4151a7529e01ceb74f6779d5e68ef8824cd36cc636a11abf4b189dc60e6ea404ef
|
|
7
|
+
data.tar.gz: 966dc3a0194e456b1d1415508868045d278eca25c78473932281b15fb64a8e1f62e079940b60b83ae07c086249fbdf08677b31f0e48f6451655992d883632a08
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ The purpose of this application is to provide access to Akeyless API.
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0
|
|
10
|
-
- Package version: 3.
|
|
10
|
+
- Package version: 3.2.0
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://akeyless.io](http://akeyless.io)
|
|
13
13
|
|
|
@@ -92,6 +92,7 @@ Class | Method | HTTP request | Description
|
|
|
92
92
|
*Akeyless::V2Api* | [**create_gke_target**](docs/V2Api.md#create_gke_target) | **POST** /create-gke-target |
|
|
93
93
|
*Akeyless::V2Api* | [**create_key**](docs/V2Api.md#create_key) | **POST** /create-key |
|
|
94
94
|
*Akeyless::V2Api* | [**create_native_k8_s_target**](docs/V2Api.md#create_native_k8_s_target) | **POST** /create-k8s-target |
|
|
95
|
+
*Akeyless::V2Api* | [**create_ping_target**](docs/V2Api.md#create_ping_target) | **POST** /create-ping-target |
|
|
95
96
|
*Akeyless::V2Api* | [**create_pki_cert_issuer**](docs/V2Api.md#create_pki_cert_issuer) | **POST** /create-pki-cert-issuer |
|
|
96
97
|
*Akeyless::V2Api* | [**create_rabbit_mq_target**](docs/V2Api.md#create_rabbit_mq_target) | **POST** /create-rabbitmq-target |
|
|
97
98
|
*Akeyless::V2Api* | [**create_role**](docs/V2Api.md#create_role) | **POST** /create-role |
|
|
@@ -104,6 +105,7 @@ Class | Method | HTTP request | Description
|
|
|
104
105
|
*Akeyless::V2Api* | [**create_web_target**](docs/V2Api.md#create_web_target) | **POST** /create-web-target |
|
|
105
106
|
*Akeyless::V2Api* | [**createldap_target**](docs/V2Api.md#createldap_target) | **POST** /create-ldap-target |
|
|
106
107
|
*Akeyless::V2Api* | [**decrypt**](docs/V2Api.md#decrypt) | **POST** /decrypt |
|
|
108
|
+
*Akeyless::V2Api* | [**decrypt_gpg**](docs/V2Api.md#decrypt_gpg) | **POST** /decrypt-gpg |
|
|
107
109
|
*Akeyless::V2Api* | [**decrypt_pkcs1**](docs/V2Api.md#decrypt_pkcs1) | **POST** /decrypt-pkcs1 |
|
|
108
110
|
*Akeyless::V2Api* | [**decrypt_with_classic_key**](docs/V2Api.md#decrypt_with_classic_key) | **POST** /decrypt-with-classic-key |
|
|
109
111
|
*Akeyless::V2Api* | [**delete_auth_method**](docs/V2Api.md#delete_auth_method) | **POST** /delete-auth-method |
|
|
@@ -123,6 +125,7 @@ Class | Method | HTTP request | Description
|
|
|
123
125
|
*Akeyless::V2Api* | [**describe_sub_claims**](docs/V2Api.md#describe_sub_claims) | **POST** /describe-sub-claims |
|
|
124
126
|
*Akeyless::V2Api* | [**detokenize**](docs/V2Api.md#detokenize) | **POST** /detokenize |
|
|
125
127
|
*Akeyless::V2Api* | [**encrypt**](docs/V2Api.md#encrypt) | **POST** /encrypt |
|
|
128
|
+
*Akeyless::V2Api* | [**encrypt_gpg**](docs/V2Api.md#encrypt_gpg) | **POST** /encrypt-gpg |
|
|
126
129
|
*Akeyless::V2Api* | [**encrypt_with_classic_key**](docs/V2Api.md#encrypt_with_classic_key) | **POST** /encrypt-with-classic-key |
|
|
127
130
|
*Akeyless::V2Api* | [**export_classic_key**](docs/V2Api.md#export_classic_key) | **POST** /export-classic-key |
|
|
128
131
|
*Akeyless::V2Api* | [**gateway_create_k8_s_auth_config**](docs/V2Api.md#gateway_create_k8_s_auth_config) | **POST** /gateway-create-k8s-auth-config |
|
|
@@ -145,6 +148,7 @@ Class | Method | HTTP request | Description
|
|
|
145
148
|
*Akeyless::V2Api* | [**gateway_create_producer_my_sql**](docs/V2Api.md#gateway_create_producer_my_sql) | **POST** /gateway-create-producer-mysql |
|
|
146
149
|
*Akeyless::V2Api* | [**gateway_create_producer_native_k8_s**](docs/V2Api.md#gateway_create_producer_native_k8_s) | **POST** /gateway-create-producer-k8s |
|
|
147
150
|
*Akeyless::V2Api* | [**gateway_create_producer_oracle_db**](docs/V2Api.md#gateway_create_producer_oracle_db) | **POST** /gateway-create-producer-oracle |
|
|
151
|
+
*Akeyless::V2Api* | [**gateway_create_producer_ping**](docs/V2Api.md#gateway_create_producer_ping) | **POST** /gateway-create-producer-ping |
|
|
148
152
|
*Akeyless::V2Api* | [**gateway_create_producer_postgre_sql**](docs/V2Api.md#gateway_create_producer_postgre_sql) | **POST** /gateway-create-producer-postgresql |
|
|
149
153
|
*Akeyless::V2Api* | [**gateway_create_producer_rabbit_mq**](docs/V2Api.md#gateway_create_producer_rabbit_mq) | **POST** /gateway-create-producer-rabbitmq |
|
|
150
154
|
*Akeyless::V2Api* | [**gateway_create_producer_rdp**](docs/V2Api.md#gateway_create_producer_rdp) | **POST** /gateway-create-producer-rdp |
|
|
@@ -191,6 +195,7 @@ Class | Method | HTTP request | Description
|
|
|
191
195
|
*Akeyless::V2Api* | [**gateway_update_producer_my_sql**](docs/V2Api.md#gateway_update_producer_my_sql) | **POST** /gateway-update-producer-mysql |
|
|
192
196
|
*Akeyless::V2Api* | [**gateway_update_producer_native_k8_s**](docs/V2Api.md#gateway_update_producer_native_k8_s) | **POST** /gateway-update-producer-k8s |
|
|
193
197
|
*Akeyless::V2Api* | [**gateway_update_producer_oracle_db**](docs/V2Api.md#gateway_update_producer_oracle_db) | **POST** /gateway-update-producer-oracle |
|
|
198
|
+
*Akeyless::V2Api* | [**gateway_update_producer_ping**](docs/V2Api.md#gateway_update_producer_ping) | **POST** /gateway-update-producer-ping |
|
|
194
199
|
*Akeyless::V2Api* | [**gateway_update_producer_postgre_sql**](docs/V2Api.md#gateway_update_producer_postgre_sql) | **POST** /gateway-update-producer-postgresql |
|
|
195
200
|
*Akeyless::V2Api* | [**gateway_update_producer_rabbit_mq**](docs/V2Api.md#gateway_update_producer_rabbit_mq) | **POST** /gateway-update-producer-rabbitmq |
|
|
196
201
|
*Akeyless::V2Api* | [**gateway_update_producer_rdp**](docs/V2Api.md#gateway_update_producer_rdp) | **POST** /gateway-update-producer-rdp |
|
|
@@ -246,6 +251,7 @@ Class | Method | HTTP request | Description
|
|
|
246
251
|
*Akeyless::V2Api* | [**set_item_state**](docs/V2Api.md#set_item_state) | **POST** /set-item-state |
|
|
247
252
|
*Akeyless::V2Api* | [**set_role_rule**](docs/V2Api.md#set_role_rule) | **POST** /set-role-rule |
|
|
248
253
|
*Akeyless::V2Api* | [**share_item**](docs/V2Api.md#share_item) | **POST** /share-item |
|
|
254
|
+
*Akeyless::V2Api* | [**sign_gpg**](docs/V2Api.md#sign_gpg) | **POST** /sign-gpg |
|
|
249
255
|
*Akeyless::V2Api* | [**sign_jwt_with_classic_key**](docs/V2Api.md#sign_jwt_with_classic_key) | **POST** /sign-jwt-with-classic-key |
|
|
250
256
|
*Akeyless::V2Api* | [**sign_pkcs1**](docs/V2Api.md#sign_pkcs1) | **POST** /sign-pkcs1 |
|
|
251
257
|
*Akeyless::V2Api* | [**sign_pki_cert_with_classic_key**](docs/V2Api.md#sign_pki_cert_with_classic_key) | **POST** /sign-pki-cert-with-classic-key |
|
|
@@ -286,6 +292,7 @@ Class | Method | HTTP request | Description
|
|
|
286
292
|
*Akeyless::V2Api* | [**update_ldap_target**](docs/V2Api.md#update_ldap_target) | **POST** /update-ldap-target |
|
|
287
293
|
*Akeyless::V2Api* | [**update_ldap_target_details**](docs/V2Api.md#update_ldap_target_details) | **POST** /update-ldap-target-details |
|
|
288
294
|
*Akeyless::V2Api* | [**update_native_k8_s_target**](docs/V2Api.md#update_native_k8_s_target) | **POST** /update-k8s-target |
|
|
295
|
+
*Akeyless::V2Api* | [**update_ping_target**](docs/V2Api.md#update_ping_target) | **POST** /update-ping-target |
|
|
289
296
|
*Akeyless::V2Api* | [**update_pki_cert_issuer**](docs/V2Api.md#update_pki_cert_issuer) | **POST** /update-pki-cert-issuer |
|
|
290
297
|
*Akeyless::V2Api* | [**update_rabbit_mq_target**](docs/V2Api.md#update_rabbit_mq_target) | **POST** /update-rabbitmq-target |
|
|
291
298
|
*Akeyless::V2Api* | [**update_rabbit_mq_target_details**](docs/V2Api.md#update_rabbit_mq_target_details) | **POST** /update-rabbitmq-target-details |
|
|
@@ -304,6 +311,7 @@ Class | Method | HTTP request | Description
|
|
|
304
311
|
*Akeyless::V2Api* | [**update_web_target_details**](docs/V2Api.md#update_web_target_details) | **POST** /update-web-target-details |
|
|
305
312
|
*Akeyless::V2Api* | [**upload_rsa**](docs/V2Api.md#upload_rsa) | **POST** /upload-rsa |
|
|
306
313
|
*Akeyless::V2Api* | [**validate_token**](docs/V2Api.md#validate_token) | **POST** /validate-token |
|
|
314
|
+
*Akeyless::V2Api* | [**verify_gpg**](docs/V2Api.md#verify_gpg) | **POST** /verify-gpg |
|
|
307
315
|
*Akeyless::V2Api* | [**verify_jwt_with_classic_key**](docs/V2Api.md#verify_jwt_with_classic_key) | **POST** /verify-jwt-with-classic-key |
|
|
308
316
|
*Akeyless::V2Api* | [**verify_pkcs1**](docs/V2Api.md#verify_pkcs1) | **POST** /verify-pkcs1 |
|
|
309
317
|
*Akeyless::V2Api* | [**verify_pki_cert_with_classic_key**](docs/V2Api.md#verify_pki_cert_with_classic_key) | **POST** /verify-pki-cert-with-classic-key |
|
|
@@ -412,6 +420,8 @@ Class | Method | HTTP request | Description
|
|
|
412
420
|
- [Akeyless::CreateNativeK8STargetOutput](docs/CreateNativeK8STargetOutput.md)
|
|
413
421
|
- [Akeyless::CreatePKICertIssuer](docs/CreatePKICertIssuer.md)
|
|
414
422
|
- [Akeyless::CreatePKICertIssuerOutput](docs/CreatePKICertIssuerOutput.md)
|
|
423
|
+
- [Akeyless::CreatePingTarget](docs/CreatePingTarget.md)
|
|
424
|
+
- [Akeyless::CreatePingTargetOutput](docs/CreatePingTargetOutput.md)
|
|
415
425
|
- [Akeyless::CreateRabbitMQTarget](docs/CreateRabbitMQTarget.md)
|
|
416
426
|
- [Akeyless::CreateRabbitMQTargetOutput](docs/CreateRabbitMQTargetOutput.md)
|
|
417
427
|
- [Akeyless::CreateRole](docs/CreateRole.md)
|
|
@@ -440,6 +450,8 @@ Class | Method | HTTP request | Description
|
|
|
440
450
|
- [Akeyless::Decrypt](docs/Decrypt.md)
|
|
441
451
|
- [Akeyless::DecryptFile](docs/DecryptFile.md)
|
|
442
452
|
- [Akeyless::DecryptFileOutput](docs/DecryptFileOutput.md)
|
|
453
|
+
- [Akeyless::DecryptGPG](docs/DecryptGPG.md)
|
|
454
|
+
- [Akeyless::DecryptGPGOutput](docs/DecryptGPGOutput.md)
|
|
443
455
|
- [Akeyless::DecryptOutput](docs/DecryptOutput.md)
|
|
444
456
|
- [Akeyless::DecryptPKCS1](docs/DecryptPKCS1.md)
|
|
445
457
|
- [Akeyless::DecryptPKCS1Output](docs/DecryptPKCS1Output.md)
|
|
@@ -478,6 +490,8 @@ Class | Method | HTTP request | Description
|
|
|
478
490
|
- [Akeyless::Encrypt](docs/Encrypt.md)
|
|
479
491
|
- [Akeyless::EncryptFile](docs/EncryptFile.md)
|
|
480
492
|
- [Akeyless::EncryptFileOutput](docs/EncryptFileOutput.md)
|
|
493
|
+
- [Akeyless::EncryptGPG](docs/EncryptGPG.md)
|
|
494
|
+
- [Akeyless::EncryptGPGOutput](docs/EncryptGPGOutput.md)
|
|
481
495
|
- [Akeyless::EncryptOutput](docs/EncryptOutput.md)
|
|
482
496
|
- [Akeyless::EncryptWithClassicKey](docs/EncryptWithClassicKey.md)
|
|
483
497
|
- [Akeyless::EncryptWithClassicKeyOutput](docs/EncryptWithClassicKeyOutput.md)
|
|
@@ -529,6 +543,8 @@ Class | Method | HTTP request | Description
|
|
|
529
543
|
- [Akeyless::GatewayCreateProducerNativeK8SOutput](docs/GatewayCreateProducerNativeK8SOutput.md)
|
|
530
544
|
- [Akeyless::GatewayCreateProducerOracleDb](docs/GatewayCreateProducerOracleDb.md)
|
|
531
545
|
- [Akeyless::GatewayCreateProducerOracleDbOutput](docs/GatewayCreateProducerOracleDbOutput.md)
|
|
546
|
+
- [Akeyless::GatewayCreateProducerPing](docs/GatewayCreateProducerPing.md)
|
|
547
|
+
- [Akeyless::GatewayCreateProducerPingOutput](docs/GatewayCreateProducerPingOutput.md)
|
|
532
548
|
- [Akeyless::GatewayCreateProducerPostgreSQL](docs/GatewayCreateProducerPostgreSQL.md)
|
|
533
549
|
- [Akeyless::GatewayCreateProducerPostgreSQLOutput](docs/GatewayCreateProducerPostgreSQLOutput.md)
|
|
534
550
|
- [Akeyless::GatewayCreateProducerRabbitMQ](docs/GatewayCreateProducerRabbitMQ.md)
|
|
@@ -617,6 +633,8 @@ Class | Method | HTTP request | Description
|
|
|
617
633
|
- [Akeyless::GatewayUpdateProducerNativeK8SOutput](docs/GatewayUpdateProducerNativeK8SOutput.md)
|
|
618
634
|
- [Akeyless::GatewayUpdateProducerOracleDb](docs/GatewayUpdateProducerOracleDb.md)
|
|
619
635
|
- [Akeyless::GatewayUpdateProducerOracleDbOutput](docs/GatewayUpdateProducerOracleDbOutput.md)
|
|
636
|
+
- [Akeyless::GatewayUpdateProducerPing](docs/GatewayUpdateProducerPing.md)
|
|
637
|
+
- [Akeyless::GatewayUpdateProducerPingOutput](docs/GatewayUpdateProducerPingOutput.md)
|
|
620
638
|
- [Akeyless::GatewayUpdateProducerPostgreSQL](docs/GatewayUpdateProducerPostgreSQL.md)
|
|
621
639
|
- [Akeyless::GatewayUpdateProducerPostgreSQLOutput](docs/GatewayUpdateProducerPostgreSQLOutput.md)
|
|
622
640
|
- [Akeyless::GatewayUpdateProducerRabbitMQ](docs/GatewayUpdateProducerRabbitMQ.md)
|
|
@@ -772,6 +790,8 @@ Class | Method | HTTP request | Description
|
|
|
772
790
|
- [Akeyless::SetItemState](docs/SetItemState.md)
|
|
773
791
|
- [Akeyless::SetRoleRule](docs/SetRoleRule.md)
|
|
774
792
|
- [Akeyless::ShareItem](docs/ShareItem.md)
|
|
793
|
+
- [Akeyless::SignGPG](docs/SignGPG.md)
|
|
794
|
+
- [Akeyless::SignGPGOutput](docs/SignGPGOutput.md)
|
|
775
795
|
- [Akeyless::SignJWTOutput](docs/SignJWTOutput.md)
|
|
776
796
|
- [Akeyless::SignJWTWithClassicKey](docs/SignJWTWithClassicKey.md)
|
|
777
797
|
- [Akeyless::SignPKCS1](docs/SignPKCS1.md)
|
|
@@ -858,6 +878,7 @@ Class | Method | HTTP request | Description
|
|
|
858
878
|
- [Akeyless::UpdateOutput](docs/UpdateOutput.md)
|
|
859
879
|
- [Akeyless::UpdatePKICertIssuer](docs/UpdatePKICertIssuer.md)
|
|
860
880
|
- [Akeyless::UpdatePKICertIssuerOutput](docs/UpdatePKICertIssuerOutput.md)
|
|
881
|
+
- [Akeyless::UpdatePingTarget](docs/UpdatePingTarget.md)
|
|
861
882
|
- [Akeyless::UpdateRDPTargetDetails](docs/UpdateRDPTargetDetails.md)
|
|
862
883
|
- [Akeyless::UpdateRabbitMQTarget](docs/UpdateRabbitMQTarget.md)
|
|
863
884
|
- [Akeyless::UpdateRabbitMQTargetDetails](docs/UpdateRabbitMQTargetDetails.md)
|
|
@@ -888,6 +909,7 @@ Class | Method | HTTP request | Description
|
|
|
888
909
|
- [Akeyless::ValidateToken](docs/ValidateToken.md)
|
|
889
910
|
- [Akeyless::ValidateTokenOutput](docs/ValidateTokenOutput.md)
|
|
890
911
|
- [Akeyless::VaultlessTokenizerInfo](docs/VaultlessTokenizerInfo.md)
|
|
912
|
+
- [Akeyless::VerifyGPG](docs/VerifyGPG.md)
|
|
891
913
|
- [Akeyless::VerifyJWTOutput](docs/VerifyJWTOutput.md)
|
|
892
914
|
- [Akeyless::VerifyJWTWithClassicKey](docs/VerifyJWTWithClassicKey.md)
|
|
893
915
|
- [Akeyless::VerifyPKCS1](docs/VerifyPKCS1.md)
|
data/docs/AssocTargetItem.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **disable_previous_key_version** | **Boolean** | Automatically disable previous key version (required for azure targets) | [optional] |
|
|
7
8
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
8
9
|
| **key_operations** | **Array<String>** | A list of allowed operations for the key (required for azure targets) | [optional] |
|
|
9
10
|
| **keyring_name** | **String** | Keyring name of the GCP KMS (required for gcp targets) | [optional] |
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
require 'akeyless'
|
|
27
28
|
|
|
28
29
|
instance = Akeyless::AssocTargetItem.new(
|
|
30
|
+
disable_previous_key_version: null,
|
|
29
31
|
json: null,
|
|
30
32
|
key_operations: null,
|
|
31
33
|
keyring_name: null,
|
data/docs/CreateCertificate.md
CHANGED
|
@@ -6,11 +6,12 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **certificate_data** | **String** | Content of the certificate PEM in a Base64 format. | [optional] |
|
|
8
8
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
9
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
9
10
|
| **expiration_event_in** | **Array<String>** | How many days before the expiration of the certificate would you like to be notified. | [optional] |
|
|
10
11
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
11
12
|
| **key** | **String** | The name of a key to use to encrypt the certificate's key (if empty, the account default protectionKey key will be used) | [optional] |
|
|
12
13
|
| **key_data** | **String** | Content of the certificate's private key PEM in a Base64 format. | [optional] |
|
|
13
|
-
| **metadata** | **String** |
|
|
14
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
14
15
|
| **name** | **String** | Certificate name | |
|
|
15
16
|
| **tags** | **Array<String>** | List of the tags attached to this certificate | [optional] |
|
|
16
17
|
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
@@ -24,6 +25,7 @@ require 'akeyless'
|
|
|
24
25
|
instance = Akeyless::CreateCertificate.new(
|
|
25
26
|
certificate_data: null,
|
|
26
27
|
delete_protection: null,
|
|
28
|
+
description: null,
|
|
27
29
|
expiration_event_in: null,
|
|
28
30
|
json: null,
|
|
29
31
|
key: null,
|
data/docs/CreateClassicKey.md
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
|
-
| **alg** | **String** | Classic Key type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, RSA1024, RSA2048, RSA3072, RSA4096, EC256, EC384] | |
|
|
7
|
+
| **alg** | **String** | Classic Key type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, RSA1024, RSA2048, RSA3072, RSA4096, EC256, EC384, GPG] | |
|
|
8
8
|
| **cert_file_data** | **String** | Certificate in a PEM format. | [optional] |
|
|
9
9
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
10
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
11
|
+
| **gpg_alg** | **String** | gpg alg: Relevant only if GPG key type selected; options: [RSA1024, RSA2048, RSA3072, RSA4096, Ed25519] | [optional] |
|
|
10
12
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
11
13
|
| **key_data** | **String** | Base64-encoded classic key value | [optional] |
|
|
12
|
-
| **metadata** | **String** |
|
|
14
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
13
15
|
| **name** | **String** | ClassicKey name | |
|
|
14
16
|
| **protection_key_name** | **String** | The name of a key that used to encrypt the secret value (if empty, the account default protectionKey key will be used) | [optional] |
|
|
15
17
|
| **tags** | **Array<String>** | List of the tags attached to this classic key | [optional] |
|
|
@@ -25,6 +27,8 @@ instance = Akeyless::CreateClassicKey.new(
|
|
|
25
27
|
alg: null,
|
|
26
28
|
cert_file_data: null,
|
|
27
29
|
delete_protection: null,
|
|
30
|
+
description: null,
|
|
31
|
+
gpg_alg: null,
|
|
28
32
|
json: null,
|
|
29
33
|
key_data: null,
|
|
30
34
|
metadata: null,
|
data/docs/CreateDBTarget.md
CHANGED
|
@@ -23,6 +23,8 @@
|
|
|
23
23
|
| **port** | **String** | | [optional] |
|
|
24
24
|
| **pwd** | **String** | | [optional] |
|
|
25
25
|
| **snowflake_account** | **String** | | [optional] |
|
|
26
|
+
| **snowflake_api_private_key** | **String** | RSA Private key (base64 encoded) | [optional] |
|
|
27
|
+
| **snowflake_api_private_key_password** | **String** | The Private key passphrase | [optional] |
|
|
26
28
|
| **ssl** | **Boolean** | SSL connection mode | [optional] |
|
|
27
29
|
| **ssl_certificate** | **String** | SSL connection certificate | [optional] |
|
|
28
30
|
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
@@ -54,6 +56,8 @@ instance = Akeyless::CreateDBTarget.new(
|
|
|
54
56
|
port: null,
|
|
55
57
|
pwd: null,
|
|
56
58
|
snowflake_account: null,
|
|
59
|
+
snowflake_api_private_key: null,
|
|
60
|
+
snowflake_api_private_key_password: null,
|
|
57
61
|
ssl: null,
|
|
58
62
|
ssl_certificate: null,
|
|
59
63
|
token: null,
|
data/docs/CreateDFCKey.md
CHANGED
|
@@ -7,8 +7,9 @@
|
|
|
7
7
|
| **alg** | **String** | DFCKey type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096] | |
|
|
8
8
|
| **customer_frg_id** | **String** | The customer fragment ID that will be used to create the DFC key (if empty, the key will be created independently of a customer fragment) | [optional] |
|
|
9
9
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
10
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
10
11
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
11
|
-
| **metadata** | **String** |
|
|
12
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
12
13
|
| **name** | **String** | DFCKey name | |
|
|
13
14
|
| **split_level** | **Integer** | The number of fragments that the item will be split into (not includes customer fragment) | [optional][default to 3] |
|
|
14
15
|
| **tag** | **Array<String>** | List of the tags attached to this DFC key | [optional] |
|
|
@@ -24,6 +25,7 @@ instance = Akeyless::CreateDFCKey.new(
|
|
|
24
25
|
alg: null,
|
|
25
26
|
customer_frg_id: null,
|
|
26
27
|
delete_protection: null,
|
|
28
|
+
description: null,
|
|
27
29
|
json: null,
|
|
28
30
|
metadata: null,
|
|
29
31
|
name: null,
|
data/docs/CreateDynamicSecret.md
CHANGED
|
@@ -5,9 +5,10 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
8
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
8
9
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
9
10
|
| **key** | **String** | The name of a key that used to encrypt the dynamic secret values (if empty, the account default protectionKey key will be used) | [optional] |
|
|
10
|
-
| **metadata** | **String** |
|
|
11
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
11
12
|
| **name** | **String** | Dynamic secret name | |
|
|
12
13
|
| **tags** | **Array<String>** | List of the tags attached to this secret | [optional] |
|
|
13
14
|
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
@@ -20,6 +21,7 @@ require 'akeyless'
|
|
|
20
21
|
|
|
21
22
|
instance = Akeyless::CreateDynamicSecret.new(
|
|
22
23
|
delete_protection: null,
|
|
24
|
+
description: null,
|
|
23
25
|
json: null,
|
|
24
26
|
key: null,
|
|
25
27
|
metadata: null,
|
data/docs/CreateKey.md
CHANGED
|
@@ -7,8 +7,9 @@
|
|
|
7
7
|
| **alg** | **String** | Key type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096] | |
|
|
8
8
|
| **customer_frg_id** | **String** | The customer fragment ID that will be used to create the key (if empty, the key will be created independently of a customer fragment) | [optional] |
|
|
9
9
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
10
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
10
11
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
11
|
-
| **metadata** | **String** |
|
|
12
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
12
13
|
| **name** | **String** | Key name | |
|
|
13
14
|
| **split_level** | **Integer** | The number of fragments that the item will be split into (not includes customer fragment) | [optional][default to 2] |
|
|
14
15
|
| **tag** | **Array<String>** | List of the tags attached to this key | [optional] |
|
|
@@ -24,6 +25,7 @@ instance = Akeyless::CreateKey.new(
|
|
|
24
25
|
alg: null,
|
|
25
26
|
customer_frg_id: null,
|
|
26
27
|
delete_protection: null,
|
|
28
|
+
description: null,
|
|
27
29
|
json: null,
|
|
28
30
|
metadata: null,
|
|
29
31
|
name: null,
|
data/docs/CreatePKICertIssuer.md
CHANGED
|
@@ -12,10 +12,11 @@
|
|
|
12
12
|
| **code_signing_flag** | **Boolean** | If set, certificates will be flagged for code signing use | [optional] |
|
|
13
13
|
| **country** | **String** | A comma-separated list of countries that will be set in the issued certificate | [optional] |
|
|
14
14
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
15
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
15
16
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
16
17
|
| **key_usage** | **String** | key-usage | [optional][default to 'DigitalSignature,KeyAgreement,KeyEncipherment'] |
|
|
17
18
|
| **locality** | **String** | A comma-separated list of localities that will be set in the issued certificate | [optional] |
|
|
18
|
-
| **metadata** | **String** |
|
|
19
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
19
20
|
| **name** | **String** | PKI certificate issuer name | |
|
|
20
21
|
| **not_enforce_hostnames** | **Boolean** | If set, any names are allowed for CN and SANs in the certificate and not only a valid host name | [optional] |
|
|
21
22
|
| **not_require_cn** | **Boolean** | If set, clients can request certificates without a CN | [optional] |
|
|
@@ -45,6 +46,7 @@ instance = Akeyless::CreatePKICertIssuer.new(
|
|
|
45
46
|
code_signing_flag: null,
|
|
46
47
|
country: null,
|
|
47
48
|
delete_protection: null,
|
|
49
|
+
description: null,
|
|
48
50
|
json: null,
|
|
49
51
|
key_usage: null,
|
|
50
52
|
locality: null,
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Akeyless::CreatePingTarget
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **administrative_port** | **String** | Ping Federate administrative port | [optional][default to '9999'] |
|
|
8
|
+
| **authorization_port** | **String** | Ping Federate authorization port | [optional][default to '9031'] |
|
|
9
|
+
| **comment** | **String** | Comment about the target | [optional] |
|
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
11
|
+
| **key** | **String** | The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) | [optional] |
|
|
12
|
+
| **name** | **String** | Target name | |
|
|
13
|
+
| **password** | **String** | Ping Federate privileged user password | [optional] |
|
|
14
|
+
| **ping_url** | **String** | Ping URL | [optional] |
|
|
15
|
+
| **privileged_user** | **String** | Ping Federate privileged user | [optional] |
|
|
16
|
+
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
17
|
+
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
|
|
18
|
+
|
|
19
|
+
## Example
|
|
20
|
+
|
|
21
|
+
```ruby
|
|
22
|
+
require 'akeyless'
|
|
23
|
+
|
|
24
|
+
instance = Akeyless::CreatePingTarget.new(
|
|
25
|
+
administrative_port: null,
|
|
26
|
+
authorization_port: null,
|
|
27
|
+
comment: null,
|
|
28
|
+
json: null,
|
|
29
|
+
key: null,
|
|
30
|
+
name: null,
|
|
31
|
+
password: null,
|
|
32
|
+
ping_url: null,
|
|
33
|
+
privileged_user: null,
|
|
34
|
+
token: null,
|
|
35
|
+
uid_token: null
|
|
36
|
+
)
|
|
37
|
+
```
|
|
38
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Akeyless::CreatePingTargetOutput
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **target_id** | **Integer** | | [optional] |
|
|
8
|
+
|
|
9
|
+
## Example
|
|
10
|
+
|
|
11
|
+
```ruby
|
|
12
|
+
require 'akeyless'
|
|
13
|
+
|
|
14
|
+
instance = Akeyless::CreatePingTargetOutput.new(
|
|
15
|
+
target_id: null
|
|
16
|
+
)
|
|
17
|
+
```
|
|
18
|
+
|
data/docs/CreateRotatedSecret.md
CHANGED
|
@@ -12,11 +12,13 @@
|
|
|
12
12
|
| **aws_region** | **String** | Region (used in aws) | [optional][default to 'us-east-2'] |
|
|
13
13
|
| **custom_payload** | **String** | | [optional] |
|
|
14
14
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
15
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
15
16
|
| **gcp_key** | **String** | Base64-encoded service account private key text | [optional] |
|
|
16
17
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
17
18
|
| **key** | **String** | The name of a key that used to encrypt the secret value (if empty, the account default protectionKey key will be used) | [optional] |
|
|
18
|
-
| **metadata** | **String** |
|
|
19
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
19
20
|
| **name** | **String** | Secret name | |
|
|
21
|
+
| **rotate_after_disconnect** | **String** | Rotate the value of the secret after SRA session ends | [optional][default to 'false'] |
|
|
20
22
|
| **rotated_password** | **String** | | [optional] |
|
|
21
23
|
| **rotated_username** | **String** | | [optional] |
|
|
22
24
|
| **rotation_hour** | **Integer** | | [optional] |
|
|
@@ -61,11 +63,13 @@ instance = Akeyless::CreateRotatedSecret.new(
|
|
|
61
63
|
aws_region: null,
|
|
62
64
|
custom_payload: null,
|
|
63
65
|
delete_protection: null,
|
|
66
|
+
description: null,
|
|
64
67
|
gcp_key: null,
|
|
65
68
|
json: null,
|
|
66
69
|
key: null,
|
|
67
70
|
metadata: null,
|
|
68
71
|
name: null,
|
|
72
|
+
rotate_after_disconnect: null,
|
|
69
73
|
rotated_password: null,
|
|
70
74
|
rotated_username: null,
|
|
71
75
|
rotation_hour: null,
|
data/docs/CreateSSHCertIssuer.md
CHANGED
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **allowed_users** | **String** | Users allowed to fetch the certificate, e.g root,ubuntu | |
|
|
8
8
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
9
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
9
10
|
| **extensions** | **Hash<String, String>** | Signed certificates with extensions, e.g permit-port-forwarding=\\\"\\\" | [optional] |
|
|
10
11
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
11
|
-
| **metadata** | **String** |
|
|
12
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
12
13
|
| **name** | **String** | SSH certificate issuer name | |
|
|
13
14
|
| **principals** | **String** | Signed certificates with principal, e.g example_role1,example_role2 | [optional] |
|
|
14
15
|
| **secure_access_bastion_api** | **String** | | [optional] |
|
|
@@ -31,6 +32,7 @@ require 'akeyless'
|
|
|
31
32
|
instance = Akeyless::CreateSSHCertIssuer.new(
|
|
32
33
|
allowed_users: null,
|
|
33
34
|
delete_protection: null,
|
|
35
|
+
description: null,
|
|
34
36
|
extensions: null,
|
|
35
37
|
json: null,
|
|
36
38
|
metadata: null,
|
data/docs/CreateSecret.md
CHANGED
|
@@ -6,8 +6,9 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **accessibility** | **String** | for personal password manager | [optional][default to 'regular'] |
|
|
8
8
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
9
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
9
10
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
10
|
-
| **metadata** | **String** |
|
|
11
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
11
12
|
| **multiline_value** | **Boolean** | The provided value is a multiline value (separated by '\\n') | [optional] |
|
|
12
13
|
| **name** | **String** | Secret name | |
|
|
13
14
|
| **password_manager_custom_field** | **Hash<String, String>** | For Password Management use, additional fields | [optional] |
|
|
@@ -37,6 +38,7 @@ require 'akeyless'
|
|
|
37
38
|
instance = Akeyless::CreateSecret.new(
|
|
38
39
|
accessibility: null,
|
|
39
40
|
delete_protection: null,
|
|
41
|
+
description: null,
|
|
40
42
|
json: null,
|
|
41
43
|
metadata: null,
|
|
42
44
|
multiline_value: null,
|
data/docs/CreateTokenizer.md
CHANGED
|
@@ -7,10 +7,11 @@
|
|
|
7
7
|
| **alphabet** | **String** | Alphabet to use in regexp vaultless tokenization | [optional] |
|
|
8
8
|
| **decoding_template** | **String** | The Decoding output template to use in regexp vaultless tokenization | [optional] |
|
|
9
9
|
| **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
|
|
10
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
10
11
|
| **encoding_template** | **String** | The Encoding output template to use in regexp vaultless tokenization | [optional] |
|
|
11
12
|
| **encryption_key_name** | **String** | AES key name to use in vaultless tokenization | [optional] |
|
|
12
13
|
| **json** | **Boolean** | Set output format to JSON | [optional] |
|
|
13
|
-
| **metadata** | **String** |
|
|
14
|
+
| **metadata** | **String** | Deprecated - use description | [optional] |
|
|
14
15
|
| **name** | **String** | Tokenizer name | |
|
|
15
16
|
| **pattern** | **String** | Pattern to use in regexp vaultless tokenization | [optional] |
|
|
16
17
|
| **tag** | **Array<String>** | List of the tags attached to this key | [optional] |
|
|
@@ -29,6 +30,7 @@ instance = Akeyless::CreateTokenizer.new(
|
|
|
29
30
|
alphabet: null,
|
|
30
31
|
decoding_template: null,
|
|
31
32
|
delete_protection: null,
|
|
33
|
+
description: null,
|
|
32
34
|
encoding_template: null,
|
|
33
35
|
encryption_key_name: null,
|
|
34
36
|
json: null,
|