akeyless 2.16.5 → 2.16.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +20 -1
  3. data/docs/CreateTokenizer.md +42 -0
  4. data/docs/CreateTokenizerOutput.md +18 -0
  5. data/docs/Detokenize.md +26 -0
  6. data/docs/DetokenizeOutput.md +18 -0
  7. data/docs/DynamicSecretProducerInfo.md +2 -0
  8. data/docs/EmailTokenizerInfo.md +22 -0
  9. data/docs/ItemGeneralInfo.md +5 -1
  10. data/docs/ListTargets.md +2 -0
  11. data/docs/LogForwardingConfigPart.md +0 -2
  12. data/docs/Producer.md +2 -0
  13. data/docs/RegexpTokenizerInfo.md +24 -0
  14. data/docs/RotateSecret.md +22 -0
  15. data/docs/RotatedSecretOutput.md +18 -0
  16. data/docs/SystemAccessCredentialsReplyObj.md +2 -0
  17. data/docs/Tokenize.md +26 -0
  18. data/docs/TokenizeOutput.md +20 -0
  19. data/docs/TokenizerInfo.md +18 -0
  20. data/docs/UpdateTokenizer.md +46 -0
  21. data/docs/UpdateTokenizerOutput.md +18 -0
  22. data/docs/V2Api.md +315 -0
  23. data/docs/VaultlessTokenizerInfo.md +28 -0
  24. data/lib/akeyless/api/v2_api.rb +320 -0
  25. data/lib/akeyless/models/create_tokenizer.rb +358 -0
  26. data/lib/akeyless/models/create_tokenizer_output.rb +219 -0
  27. data/lib/akeyless/models/detokenize.rb +271 -0
  28. data/lib/akeyless/models/detokenize_output.rb +219 -0
  29. data/lib/akeyless/models/dynamic_secret_producer_info.rb +10 -1
  30. data/lib/akeyless/models/email_tokenizer_info.rb +241 -0
  31. data/lib/akeyless/models/item_general_info.rb +22 -4
  32. data/lib/akeyless/models/list_targets.rb +13 -1
  33. data/lib/akeyless/models/log_forwarding_config_part.rb +1 -10
  34. data/lib/akeyless/models/producer.rb +10 -1
  35. data/lib/akeyless/models/regexp_tokenizer_info.rb +251 -0
  36. data/lib/akeyless/models/rotate_secret.rb +245 -0
  37. data/lib/akeyless/models/rotated_secret_output.rb +219 -0
  38. data/lib/akeyless/models/system_access_credentials_reply_obj.rb +11 -1
  39. data/lib/akeyless/models/tokenize.rb +271 -0
  40. data/lib/akeyless/models/tokenize_output.rb +228 -0
  41. data/lib/akeyless/models/tokenizer_info.rb +219 -0
  42. data/lib/akeyless/models/update_tokenizer.rb +382 -0
  43. data/lib/akeyless/models/update_tokenizer_output.rb +219 -0
  44. data/lib/akeyless/models/vaultless_tokenizer_info.rb +267 -0
  45. data/lib/akeyless/version.rb +1 -1
  46. data/lib/akeyless.rb +14 -0
  47. data/spec/models/create_tokenizer_output_spec.rb +34 -0
  48. data/spec/models/create_tokenizer_spec.rb +106 -0
  49. data/spec/models/detokenize_output_spec.rb +34 -0
  50. data/spec/models/detokenize_spec.rb +58 -0
  51. data/spec/models/email_tokenizer_info_spec.rb +46 -0
  52. data/spec/models/regexp_tokenizer_info_spec.rb +52 -0
  53. data/spec/models/rotate_secret_spec.rb +46 -0
  54. data/spec/models/rotated_secret_output_spec.rb +34 -0
  55. data/spec/models/tokenize_output_spec.rb +40 -0
  56. data/spec/models/tokenize_spec.rb +58 -0
  57. data/spec/models/tokenizer_info_spec.rb +34 -0
  58. data/spec/models/update_tokenizer_output_spec.rb +34 -0
  59. data/spec/models/update_tokenizer_spec.rb +118 -0
  60. data/spec/models/vaultless_tokenizer_info_spec.rb +64 -0
  61. metadata +533 -477
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbe7785ea84f2ed86c2a566747c5388860dd5eaa503584798d58d2d844b51d64
4
- data.tar.gz: 5431c0245216d20ef087b3a9db6f1f1cd81168b3a5e8ee6094090af2846acc70
3
+ metadata.gz: b8c4469dcad208afa58b4bda438f3c052a4a4a090c8ece0b3b0811b5352f9cd1
4
+ data.tar.gz: d6c4e51715be4e870e079d44475df16e886f6cefe4056b6cc850dc578d2007ac
5
5
  SHA512:
6
- metadata.gz: 12b26a960096b86244a00d7c5e33878d21dc66edbd64704f8abfcaeb5f078b01f22a0a5af523ce583956dc91f3d0a48107939c9760ce5a89d0171467536788c8
7
- data.tar.gz: fc3ee5fa66f9970539fa4da023ac8c34bb135afdafce80e8c83a67033fc1dcb9bd1e14de736e9d1378faefdedf8e6ecd994e6212e54f9b3a5913018347f6a003
6
+ metadata.gz: 6f33bc074a16fa6cccbfe877be61f7ca5784b586d9a58cb188ae64be9e10307050279b8aeb61cb3cb16be5ae2c7b05e75136aa67bf6ea68cafb91b6dd25f8897
7
+ data.tar.gz: 9931e3fd16a27e7cd3dd4a63e623950df6d7aae3814c8ce6760f1c84405a785e61a78d5c0ddb386e0a2995f2f272094bd7a8150c8bad97e709618fc83a829b11
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: 2.16.5
10
+ - Package version: 2.16.6
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://akeyless.io](http://akeyless.io)
13
13
 
@@ -98,6 +98,7 @@ Class | Method | HTTP request | Description
98
98
  *Akeyless::V2Api* | [**create_secret**](docs/V2Api.md#create_secret) | **POST** /create-secret |
99
99
  *Akeyless::V2Api* | [**create_ssh_cert_issuer**](docs/V2Api.md#create_ssh_cert_issuer) | **POST** /create-ssh-cert-issuer |
100
100
  *Akeyless::V2Api* | [**create_ssh_target**](docs/V2Api.md#create_ssh_target) | **POST** /create-ssh-target |
101
+ *Akeyless::V2Api* | [**create_tokenizer**](docs/V2Api.md#create_tokenizer) | **POST** /create-tokenizer |
101
102
  *Akeyless::V2Api* | [**create_web_target**](docs/V2Api.md#create_web_target) | **POST** /create-web-target |
102
103
  *Akeyless::V2Api* | [**createldap_target**](docs/V2Api.md#createldap_target) | **POST** /create-ldap-target |
103
104
  *Akeyless::V2Api* | [**decrypt**](docs/V2Api.md#decrypt) | **POST** /decrypt |
@@ -116,6 +117,7 @@ Class | Method | HTTP request | Description
116
117
  *Akeyless::V2Api* | [**delete_targets**](docs/V2Api.md#delete_targets) | **POST** /delete-targets |
117
118
  *Akeyless::V2Api* | [**describe_item**](docs/V2Api.md#describe_item) | **POST** /describe-item |
118
119
  *Akeyless::V2Api* | [**describe_permissions**](docs/V2Api.md#describe_permissions) | **POST** /describe-permissions |
120
+ *Akeyless::V2Api* | [**detokenize**](docs/V2Api.md#detokenize) | **POST** /detokenize |
119
121
  *Akeyless::V2Api* | [**encrypt**](docs/V2Api.md#encrypt) | **POST** /encrypt |
120
122
  *Akeyless::V2Api* | [**encrypt_pkcs1**](docs/V2Api.md#encrypt_pkcs1) | **POST** /encrypt-pkcs1 |
121
123
  *Akeyless::V2Api* | [**encrypt_with_classic_key**](docs/V2Api.md#encrypt_with_classic_key) | **POST** /encrypt-with-classic-key |
@@ -225,12 +227,14 @@ Class | Method | HTTP request | Description
225
227
  *Akeyless::V2Api* | [**revoke_creds**](docs/V2Api.md#revoke_creds) | **POST** /revoke-creds |
226
228
  *Akeyless::V2Api* | [**rollback_secret**](docs/V2Api.md#rollback_secret) | **POST** /rollback-secret |
227
229
  *Akeyless::V2Api* | [**rotate_key**](docs/V2Api.md#rotate_key) | **POST** /rotate-key |
230
+ *Akeyless::V2Api* | [**rotate_secret**](docs/V2Api.md#rotate_secret) | **POST** /gateway-rotate-secret |
228
231
  *Akeyless::V2Api* | [**set_item_state**](docs/V2Api.md#set_item_state) | **POST** /set-item-state |
229
232
  *Akeyless::V2Api* | [**set_role_rule**](docs/V2Api.md#set_role_rule) | **POST** /set-role-rule |
230
233
  *Akeyless::V2Api* | [**sign_jwt_with_classic_key**](docs/V2Api.md#sign_jwt_with_classic_key) | **POST** /sign-jwt-with-classic-key |
231
234
  *Akeyless::V2Api* | [**sign_pkcs1**](docs/V2Api.md#sign_pkcs1) | **POST** /sign-pkcs1 |
232
235
  *Akeyless::V2Api* | [**sign_pki_cert_with_classic_key**](docs/V2Api.md#sign_pki_cert_with_classic_key) | **POST** /sign-pki-cert-with-classic-key |
233
236
  *Akeyless::V2Api* | [**static_creds_auth**](docs/V2Api.md#static_creds_auth) | **POST** /static-creds-auth |
237
+ *Akeyless::V2Api* | [**tokenize**](docs/V2Api.md#tokenize) | **POST** /tokenize |
234
238
  *Akeyless::V2Api* | [**uid_create_child_token**](docs/V2Api.md#uid_create_child_token) | **POST** /uid-create-child-token |
235
239
  *Akeyless::V2Api* | [**uid_generate_token**](docs/V2Api.md#uid_generate_token) | **POST** /uid-generate-token |
236
240
  *Akeyless::V2Api* | [**uid_list_children**](docs/V2Api.md#uid_list_children) | **POST** /uid-list-children |
@@ -276,6 +280,7 @@ Class | Method | HTTP request | Description
276
280
  *Akeyless::V2Api* | [**update_ssh_target_details**](docs/V2Api.md#update_ssh_target_details) | **POST** /update-ssh-target-details |
277
281
  *Akeyless::V2Api* | [**update_target**](docs/V2Api.md#update_target) | **POST** /update-target |
278
282
  *Akeyless::V2Api* | [**update_target_details**](docs/V2Api.md#update_target_details) | **POST** /update-target-details |
283
+ *Akeyless::V2Api* | [**update_tokenizer**](docs/V2Api.md#update_tokenizer) | **POST** /update-tokenizer |
279
284
  *Akeyless::V2Api* | [**update_web_target**](docs/V2Api.md#update_web_target) | **POST** /update-web-target |
280
285
  *Akeyless::V2Api* | [**update_web_target_details**](docs/V2Api.md#update_web_target_details) | **POST** /update-web-target-details |
281
286
  *Akeyless::V2Api* | [**upload_rsa**](docs/V2Api.md#upload_rsa) | **POST** /upload-rsa |
@@ -390,6 +395,8 @@ Class | Method | HTTP request | Description
390
395
  - [Akeyless::CreateSecret](docs/CreateSecret.md)
391
396
  - [Akeyless::CreateSecretOutput](docs/CreateSecretOutput.md)
392
397
  - [Akeyless::CreateTargetItemAssocOutput](docs/CreateTargetItemAssocOutput.md)
398
+ - [Akeyless::CreateTokenizer](docs/CreateTokenizer.md)
399
+ - [Akeyless::CreateTokenizerOutput](docs/CreateTokenizerOutput.md)
393
400
  - [Akeyless::CreateWebTarget](docs/CreateWebTarget.md)
394
401
  - [Akeyless::CreateWebTargetOutput](docs/CreateWebTargetOutput.md)
395
402
  - [Akeyless::CustomerFragment](docs/CustomerFragment.md)
@@ -425,9 +432,12 @@ Class | Method | HTTP request | Description
425
432
  - [Akeyless::DescribeItem](docs/DescribeItem.md)
426
433
  - [Akeyless::DescribePermissions](docs/DescribePermissions.md)
427
434
  - [Akeyless::DescribePermissionsOutput](docs/DescribePermissionsOutput.md)
435
+ - [Akeyless::Detokenize](docs/Detokenize.md)
436
+ - [Akeyless::DetokenizeOutput](docs/DetokenizeOutput.md)
428
437
  - [Akeyless::DynamicSecretProducerInfo](docs/DynamicSecretProducerInfo.md)
429
438
  - [Akeyless::ElasticsearchLogForwardingConfig](docs/ElasticsearchLogForwardingConfig.md)
430
439
  - [Akeyless::EmailPassAccessRules](docs/EmailPassAccessRules.md)
440
+ - [Akeyless::EmailTokenizerInfo](docs/EmailTokenizerInfo.md)
431
441
  - [Akeyless::Encrypt](docs/Encrypt.md)
432
442
  - [Akeyless::EncryptFile](docs/EncryptFile.md)
433
443
  - [Akeyless::EncryptFileOutput](docs/EncryptFileOutput.md)
@@ -671,6 +681,7 @@ Class | Method | HTTP request | Description
671
681
  - [Akeyless::RawCreds](docs/RawCreds.md)
672
682
  - [Akeyless::RefreshKey](docs/RefreshKey.md)
673
683
  - [Akeyless::RefreshKeyOutput](docs/RefreshKeyOutput.md)
684
+ - [Akeyless::RegexpTokenizerInfo](docs/RegexpTokenizerInfo.md)
674
685
  - [Akeyless::RequiredActivity](docs/RequiredActivity.md)
675
686
  - [Akeyless::ReverseRBAC](docs/ReverseRBAC.md)
676
687
  - [Akeyless::ReverseRBACClient](docs/ReverseRBACClient.md)
@@ -682,7 +693,9 @@ Class | Method | HTTP request | Description
682
693
  - [Akeyless::RollbackSecretOutput](docs/RollbackSecretOutput.md)
683
694
  - [Akeyless::RotateKey](docs/RotateKey.md)
684
695
  - [Akeyless::RotateKeyOutput](docs/RotateKeyOutput.md)
696
+ - [Akeyless::RotateSecret](docs/RotateSecret.md)
685
697
  - [Akeyless::RotatedSecretDetailsInfo](docs/RotatedSecretDetailsInfo.md)
698
+ - [Akeyless::RotatedSecretOutput](docs/RotatedSecretOutput.md)
686
699
  - [Akeyless::Rotator](docs/Rotator.md)
687
700
  - [Akeyless::RotatorsConfigPart](docs/RotatorsConfigPart.md)
688
701
  - [Akeyless::Rules](docs/Rules.md)
@@ -712,6 +725,9 @@ Class | Method | HTTP request | Description
712
725
  - [Akeyless::TargetItemVersion](docs/TargetItemVersion.md)
713
726
  - [Akeyless::TargetTypeDetailsInput](docs/TargetTypeDetailsInput.md)
714
727
  - [Akeyless::TmpUserData](docs/TmpUserData.md)
728
+ - [Akeyless::Tokenize](docs/Tokenize.md)
729
+ - [Akeyless::TokenizeOutput](docs/TokenizeOutput.md)
730
+ - [Akeyless::TokenizerInfo](docs/TokenizerInfo.md)
715
731
  - [Akeyless::UIDTokenDetails](docs/UIDTokenDetails.md)
716
732
  - [Akeyless::UidCreateChildToken](docs/UidCreateChildToken.md)
717
733
  - [Akeyless::UidCreateChildTokenOutput](docs/UidCreateChildTokenOutput.md)
@@ -789,6 +805,8 @@ Class | Method | HTTP request | Description
789
805
  - [Akeyless::UpdateTarget](docs/UpdateTarget.md)
790
806
  - [Akeyless::UpdateTargetDetailsOutput](docs/UpdateTargetDetailsOutput.md)
791
807
  - [Akeyless::UpdateTargetOutput](docs/UpdateTargetOutput.md)
808
+ - [Akeyless::UpdateTokenizer](docs/UpdateTokenizer.md)
809
+ - [Akeyless::UpdateTokenizerOutput](docs/UpdateTokenizerOutput.md)
792
810
  - [Akeyless::UpdateWebTarget](docs/UpdateWebTarget.md)
793
811
  - [Akeyless::UpdateWebTargetDetails](docs/UpdateWebTargetDetails.md)
794
812
  - [Akeyless::UpdateWebTargetOutput](docs/UpdateWebTargetOutput.md)
@@ -796,6 +814,7 @@ Class | Method | HTTP request | Description
796
814
  - [Akeyless::UploadRSA](docs/UploadRSA.md)
797
815
  - [Akeyless::ValidateToken](docs/ValidateToken.md)
798
816
  - [Akeyless::ValidateTokenOutput](docs/ValidateTokenOutput.md)
817
+ - [Akeyless::VaultlessTokenizerInfo](docs/VaultlessTokenizerInfo.md)
799
818
  - [Akeyless::VerifyJWTOutput](docs/VerifyJWTOutput.md)
800
819
  - [Akeyless::VerifyJWTWithClassicKey](docs/VerifyJWTWithClassicKey.md)
801
820
  - [Akeyless::VerifyPKCS1](docs/VerifyPKCS1.md)
@@ -0,0 +1,42 @@
1
+ # Akeyless::CreateTokenizer
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **alphabet** | **String** | Alphabet to use in regexp vaultless tokenization | [optional] |
8
+ | **decryption_template** | **String** | The Decryption output template to use in regexp vaultless tokenization | [optional] |
9
+ | **encryption_key_name** | **String** | AES key name to use in vaultless tokenization | [optional] |
10
+ | **encryption_template** | **String** | The Encryption output template to use in regexp vaultless tokenization | [optional] |
11
+ | **metadata** | **String** | A metadata about the tokenizer | [optional] |
12
+ | **name** | **String** | Tokenizer name | |
13
+ | **pattern** | **String** | Pattern to use in regexp vaultless tokenization | [optional] |
14
+ | **tag** | **Array<String>** | List of the tags attached to this key | [optional] |
15
+ | **template_type** | **String** | Which template type this tokenizer is used for [SSN,CreditCard,USPhoneNumber,Email,Regexp] | |
16
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
17
+ | **tokenizer_type** | **String** | Tokenizer type | |
18
+ | **tweak_type** | **String** | The tweak type to use in vaultless tokenization [Supplied, Generated, Internal, Masking] | [optional] |
19
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
20
+
21
+ ## Example
22
+
23
+ ```ruby
24
+ require 'akeyless'
25
+
26
+ instance = Akeyless::CreateTokenizer.new(
27
+ alphabet: null,
28
+ decryption_template: null,
29
+ encryption_key_name: null,
30
+ encryption_template: null,
31
+ metadata: null,
32
+ name: null,
33
+ pattern: null,
34
+ tag: null,
35
+ template_type: null,
36
+ token: null,
37
+ tokenizer_type: null,
38
+ tweak_type: null,
39
+ uid_token: null
40
+ )
41
+ ```
42
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::CreateTokenizerOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::CreateTokenizerOutput.new(
15
+ name: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,26 @@
1
+ # Akeyless::Detokenize
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **ciphertext** | **String** | Data to be decrypted | |
8
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
9
+ | **tokenizer_name** | **String** | The name of the tokenizer to use in the decryption process | |
10
+ | **tweak** | **String** | Base64 encoded tweak for vaultless encryption | [optional] |
11
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'akeyless'
17
+
18
+ instance = Akeyless::Detokenize.new(
19
+ ciphertext: null,
20
+ token: null,
21
+ tokenizer_name: null,
22
+ tweak: null,
23
+ uid_token: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::DetokenizeOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **result** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::DetokenizeOutput.new(
15
+ result: null
16
+ )
17
+ ```
18
+
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **failure_message** | **String** | | [optional] |
7
8
  | **gw_cluster_id** | **Integer** | | [optional] |
8
9
  | **producer_last_keep_alive** | **String** | | [optional] |
9
10
  | **producer_metadata** | **String** | | [optional] |
@@ -16,6 +17,7 @@
16
17
  require 'akeyless'
17
18
 
18
19
  instance = Akeyless::DynamicSecretProducerInfo.new(
20
+ failure_message: null,
19
21
  gw_cluster_id: null,
20
22
  producer_last_keep_alive: null,
21
23
  producer_metadata: null,
@@ -0,0 +1,22 @@
1
+ # Akeyless::EmailTokenizerInfo
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **domain_suffix_length** | **Integer** | What length of a random domain suffix to generate used only if FixedDomainSuffix is empty | [optional] |
8
+ | **fixed_domain_suffix** | **String** | if FixedDomainSuffix isn't empty, it will be appended to the output | [optional] |
9
+ | **keep_prefix_length** | **Integer** | How many letters of the plaintext to keep in the output | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'akeyless'
15
+
16
+ instance = Akeyless::EmailTokenizerInfo.new(
17
+ domain_suffix_length: null,
18
+ fixed_domain_suffix: null,
19
+ keep_prefix_length: null
20
+ )
21
+ ```
22
+
@@ -6,11 +6,13 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **cert_issue_details** | [**CertificateIssueInfo**](CertificateIssueInfo.md) | | [optional] |
8
8
  | **classic_key_details** | [**ClassicKeyDetailsInfo**](ClassicKeyDetailsInfo.md) | | [optional] |
9
+ | **display_metadata** | **String** | | [optional] |
9
10
  | **dynamic_secret_producer_details** | [**DynamicSecretProducerInfo**](DynamicSecretProducerInfo.md) | | [optional] |
10
11
  | **password_policy** | [**PasswordPolicyInfo**](PasswordPolicyInfo.md) | | [optional] |
11
12
  | **rotated_secret_details** | [**RotatedSecretDetailsInfo**](RotatedSecretDetailsInfo.md) | | [optional] |
12
13
  | **secure_remote_access_details** | [**SecureRemoteAccess**](SecureRemoteAccess.md) | | [optional] |
13
14
  | **static_secret_info** | [**StaticSecretDetailsInfo**](StaticSecretDetailsInfo.md) | | [optional] |
15
+ | **tokenizer_info** | [**TokenizerInfo**](TokenizerInfo.md) | | [optional] |
14
16
 
15
17
  ## Example
16
18
 
@@ -20,11 +22,13 @@ require 'akeyless'
20
22
  instance = Akeyless::ItemGeneralInfo.new(
21
23
  cert_issue_details: null,
22
24
  classic_key_details: null,
25
+ display_metadata: null,
23
26
  dynamic_secret_producer_details: null,
24
27
  password_policy: null,
25
28
  rotated_secret_details: null,
26
29
  secure_remote_access_details: null,
27
- static_secret_info: null
30
+ static_secret_info: null,
31
+ tokenizer_info: null
28
32
  )
29
33
  ```
30
34
 
data/docs/ListTargets.md CHANGED
@@ -7,6 +7,7 @@
7
7
  | **filter** | **String** | Filter by auth method name or part of it | [optional] |
8
8
  | **pagination_token** | **String** | Next page reference | [optional] |
9
9
  | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
10
+ | **type** | **Array<String>** | The target types list . In case it is empty, all types of targets will be returned. options: [hanadb cassandra aws ssh gke eks mysql mongodb snowflake mssql redshift artifactory azure rabbitmq k8s venafi gcp oracle dockerhub ldap github chef web salesforce postgres] | [optional] |
10
11
  | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
11
12
 
12
13
  ## Example
@@ -18,6 +19,7 @@ instance = Akeyless::ListTargets.new(
18
19
  filter: null,
19
20
  pagination_token: null,
20
21
  token: null,
22
+ type: null,
21
23
  uid_token: null
22
24
  )
23
25
  ```
@@ -14,7 +14,6 @@
14
14
  | **logz_io_config** | [**LogzIoLogForwardingConfig**](LogzIoLogForwardingConfig.md) | | [optional] |
15
15
  | **pull_interval_sec** | **String** | | [optional] |
16
16
  | **splunk_config** | [**SplunkLogForwardingConfig**](SplunkLogForwardingConfig.md) | | [optional] |
17
- | **std_out** | **Boolean** | | [optional] |
18
17
  | **syslog_config** | [**SyslogLogForwardingConfig**](SyslogLogForwardingConfig.md) | | [optional] |
19
18
  | **target_log_type** | **String** | | [optional] |
20
19
 
@@ -34,7 +33,6 @@ instance = Akeyless::LogForwardingConfigPart.new(
34
33
  logz_io_config: null,
35
34
  pull_interval_sec: null,
36
35
  splunk_config: null,
37
- std_out: null,
38
36
  syslog_config: null,
39
37
  target_log_type: null
40
38
  )
data/docs/Producer.md CHANGED
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **active** | **Boolean** | | [optional] |
8
+ | **failure_message** | **String** | | [optional] |
8
9
  | **id** | **Integer** | | [optional] |
9
10
  | **init** | **Boolean** | | [optional] |
10
11
  | **name** | **String** | | [optional] |
@@ -17,6 +18,7 @@ require 'akeyless'
17
18
 
18
19
  instance = Akeyless::Producer.new(
19
20
  active: null,
21
+ failure_message: null,
20
22
  id: null,
21
23
  init: null,
22
24
  name: null,
@@ -0,0 +1,24 @@
1
+ # Akeyless::RegexpTokenizerInfo
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **alphabet** | **String** | The Alphabet used for the tokenization | [optional] |
8
+ | **decryption_template** | **String** | Transformation to perform on the decrypted data | [optional] |
9
+ | **encryption_template** | **String** | Transformation to perform on the encrypted data, if the required output template doesn't match the input string The output Should still be valid for the Pattern, otherwise the secret would be able to be decrypted. | [optional] |
10
+ | **pattern** | **String** | Regexp pattern to extract and deposit the text/encdata | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'akeyless'
16
+
17
+ instance = Akeyless::RegexpTokenizerInfo.new(
18
+ alphabet: null,
19
+ decryption_template: null,
20
+ encryption_template: null,
21
+ pattern: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,22 @@
1
+ # Akeyless::RotateSecret
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | Rotated Secret name | |
8
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
9
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'akeyless'
15
+
16
+ instance = Akeyless::RotateSecret.new(
17
+ name: null,
18
+ token: null,
19
+ uid_token: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::RotatedSecretOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::RotatedSecretOutput.new(
15
+ name: null
16
+ )
17
+ ```
18
+
@@ -7,6 +7,7 @@
7
7
  | **auth_creds** | **String** | Temporary credentials for accessing Auth | [optional] |
8
8
  | **expiry** | **Integer** | Credentials expiration date | [optional] |
9
9
  | **kfm_creds** | **String** | Temporary credentials for accessing the KFMs instances | [optional] |
10
+ | **token** | **String** | Credentials tmp token | [optional] |
10
11
  | **uam_creds** | **String** | Temporary credentials for accessing the UAM service | [optional] |
11
12
 
12
13
  ## Example
@@ -18,6 +19,7 @@ instance = Akeyless::SystemAccessCredentialsReplyObj.new(
18
19
  auth_creds: null,
19
20
  expiry: null,
20
21
  kfm_creds: null,
22
+ token: null,
21
23
  uam_creds: null
22
24
  )
23
25
  ```
data/docs/Tokenize.md ADDED
@@ -0,0 +1,26 @@
1
+ # Akeyless::Tokenize
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **plaintext** | **String** | Data to be encrypted | |
8
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
9
+ | **tokenizer_name** | **String** | The name of the tokenizer to use in the encryption process | |
10
+ | **tweak** | **String** | Base64 encoded tweak for vaultless encryption | [optional] |
11
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'akeyless'
17
+
18
+ instance = Akeyless::Tokenize.new(
19
+ plaintext: null,
20
+ token: null,
21
+ tokenizer_name: null,
22
+ tweak: null,
23
+ uid_token: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,20 @@
1
+ # Akeyless::TokenizeOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **result** | **String** | | [optional] |
8
+ | **tweak** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'akeyless'
14
+
15
+ instance = Akeyless::TokenizeOutput.new(
16
+ result: null,
17
+ tweak: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::TokenizerInfo
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **vaultless_tokenizer_info** | [**VaultlessTokenizerInfo**](VaultlessTokenizerInfo.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::TokenizerInfo.new(
15
+ vaultless_tokenizer_info: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,46 @@
1
+ # Akeyless::UpdateTokenizer
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **add_tag** | **Array<String>** | List of the new tags that will be attached to this item | [optional] |
8
+ | **alphabet** | **String** | Alphabet to use in regexp vaultless tokenization | [optional] |
9
+ | **decryption_template** | **String** | The Decryption output template to use in regexp vaultless tokenization | [optional] |
10
+ | **encryption_key_name** | **String** | AES key name to use in vaultless tokenization | [optional] |
11
+ | **encryption_template** | **String** | The Encryption output template to use in regexp vaultless tokenization | [optional] |
12
+ | **name** | **String** | Current item name | |
13
+ | **new_metadata** | **String** | New item metadata | [optional][default to 'default_metadata'] |
14
+ | **new_name** | **String** | New item name | [optional] |
15
+ | **pattern** | **String** | Pattern to use in regexp vaultless tokenization | [optional] |
16
+ | **rm_tag** | **Array<String>** | List of the existent tags that will be removed from this item | [optional] |
17
+ | **template_type** | **String** | Which template type this tokenizer is used for [SSN,CreditCard,USPhoneNumber,Email,Regexp] | |
18
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
19
+ | **tokenizer_type** | **String** | Tokenizer type | |
20
+ | **tweak_type** | **String** | The tweak type to use in vaultless tokenization [Supplied, Generated, Internal, Masking] | [optional] |
21
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
22
+
23
+ ## Example
24
+
25
+ ```ruby
26
+ require 'akeyless'
27
+
28
+ instance = Akeyless::UpdateTokenizer.new(
29
+ add_tag: null,
30
+ alphabet: null,
31
+ decryption_template: null,
32
+ encryption_key_name: null,
33
+ encryption_template: null,
34
+ name: null,
35
+ new_metadata: null,
36
+ new_name: null,
37
+ pattern: null,
38
+ rm_tag: null,
39
+ template_type: null,
40
+ token: null,
41
+ tokenizer_type: null,
42
+ tweak_type: null,
43
+ uid_token: null
44
+ )
45
+ ```
46
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::UpdateTokenizerOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **name** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::UpdateTokenizerOutput.new(
15
+ name: null
16
+ )
17
+ ```
18
+