akeyless 3.0.1 → 3.1.1

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.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +36 -3
  3. data/docs/AttributeTypeAndValue.md +20 -0
  4. data/docs/CertificateChainInfo.md +22 -0
  5. data/docs/CertificateExpirationEvent.md +18 -0
  6. data/docs/CertificateInfo.md +62 -0
  7. data/docs/Connect.md +2 -0
  8. data/docs/CreateCertificate.md +38 -0
  9. data/docs/CreateCertificateOutput.md +18 -0
  10. data/docs/CreateEventForwarder.md +48 -0
  11. data/docs/CreateEventForwarderOutput.md +18 -0
  12. data/docs/CreateRotatedSecret.md +2 -0
  13. data/docs/DeleteEventForwarder.md +24 -0
  14. data/docs/EmailEntry.md +20 -0
  15. data/docs/Extension.md +22 -0
  16. data/docs/GatewayUpdateItem.md +2 -0
  17. data/docs/GatewayUpdateTlsCert.md +26 -0
  18. data/docs/GatewayUpdateTlsCertOutput.md +18 -0
  19. data/docs/GetCertificateValue.md +26 -0
  20. data/docs/GetCertificateValueOutput.md +20 -0
  21. data/docs/GetEventForwarder.md +24 -0
  22. data/docs/GetEventForwarderOutput.md +18 -0
  23. data/docs/Item.md +4 -0
  24. data/docs/ItemGeneralInfo.md +2 -0
  25. data/docs/ListSRABastions.md +2 -0
  26. data/docs/ListSharedItems.md +24 -0
  27. data/docs/Name.md +28 -0
  28. data/docs/NotiForwarder.md +56 -0
  29. data/docs/RequestAccess.md +28 -0
  30. data/docs/RequestAccessOutput.md +18 -0
  31. data/docs/RotateKey.md +2 -0
  32. data/docs/Target.md +4 -0
  33. data/docs/UpdateCertificateOutput.md +18 -0
  34. data/docs/UpdateCertificateValue.md +32 -0
  35. data/docs/UpdateEventForwarder.md +40 -0
  36. data/docs/UpdateRotatedSecret.md +2 -0
  37. data/docs/V2Api.md +631 -65
  38. data/lib/akeyless/api/v2_api.rb +664 -88
  39. data/lib/akeyless/api_error.rb +1 -0
  40. data/lib/akeyless/configuration.rb +11 -0
  41. data/lib/akeyless/models/attribute_type_and_value.rb +231 -0
  42. data/lib/akeyless/models/certificate_chain_info.rb +241 -0
  43. data/lib/akeyless/models/certificate_expiration_event.rb +219 -0
  44. data/lib/akeyless/models/certificate_info.rb +434 -0
  45. data/lib/akeyless/models/connect.rb +11 -1
  46. data/lib/akeyless/models/create_certificate.rb +329 -0
  47. data/lib/akeyless/models/create_certificate_output.rb +219 -0
  48. data/lib/akeyless/models/create_event_forwarder.rb +394 -0
  49. data/lib/akeyless/models/create_event_forwarder_output.rb +219 -0
  50. data/lib/akeyless/models/create_rotated_secret.rb +11 -1
  51. data/lib/akeyless/models/delete_event_forwarder.rb +255 -0
  52. data/lib/akeyless/models/email_entry.rb +228 -0
  53. data/lib/akeyless/models/extension.rb +237 -0
  54. data/lib/akeyless/models/gateway_update_item.rb +11 -1
  55. data/lib/akeyless/models/gateway_update_tls_cert.rb +261 -0
  56. data/lib/akeyless/models/gateway_update_tls_cert_output.rb +219 -0
  57. data/lib/akeyless/models/get_certificate_value.rb +265 -0
  58. data/lib/akeyless/models/get_certificate_value_output.rb +228 -0
  59. data/lib/akeyless/models/get_event_forwarder.rb +255 -0
  60. data/lib/akeyless/models/get_event_forwarder_output.rb +219 -0
  61. data/lib/akeyless/models/item.rb +19 -1
  62. data/lib/akeyless/models/item_general_info.rb +10 -1
  63. data/lib/akeyless/models/list_shared_items.rb +253 -0
  64. data/lib/akeyless/models/list_sra_bastions.rb +10 -1
  65. data/lib/akeyless/models/name.rb +277 -0
  66. data/lib/akeyless/models/noti_forwarder.rb +400 -0
  67. data/lib/akeyless/models/request_access.rb +282 -0
  68. data/lib/akeyless/models/request_access_output.rb +219 -0
  69. data/lib/akeyless/models/rotate_key.rb +11 -1
  70. data/lib/akeyless/models/target.rb +19 -1
  71. data/lib/akeyless/models/update_certificate_output.rb +219 -0
  72. data/lib/akeyless/models/update_certificate_value.rb +297 -0
  73. data/lib/akeyless/models/update_event_forwarder.rb +341 -0
  74. data/lib/akeyless/models/update_rotated_secret.rb +11 -1
  75. data/lib/akeyless/version.rb +1 -1
  76. data/lib/akeyless.rb +25 -1
  77. data/spec/models/attribute_type_and_value_spec.rb +40 -0
  78. data/spec/models/certificate_chain_info_spec.rb +46 -0
  79. data/spec/models/certificate_expiration_event_spec.rb +34 -0
  80. data/spec/models/certificate_info_spec.rb +166 -0
  81. data/spec/models/create_certificate_output_spec.rb +34 -0
  82. data/spec/models/create_certificate_spec.rb +94 -0
  83. data/spec/models/create_event_forwarder_output_spec.rb +34 -0
  84. data/spec/models/create_event_forwarder_spec.rb +124 -0
  85. data/spec/models/delete_event_forwarder_spec.rb +52 -0
  86. data/spec/models/email_entry_spec.rb +40 -0
  87. data/spec/models/extension_spec.rb +46 -0
  88. data/spec/models/gateway_update_tls_cert_output_spec.rb +34 -0
  89. data/spec/models/gateway_update_tls_cert_spec.rb +58 -0
  90. data/spec/models/get_certificate_value_output_spec.rb +40 -0
  91. data/spec/models/get_certificate_value_spec.rb +58 -0
  92. data/spec/models/get_event_forwarder_output_spec.rb +34 -0
  93. data/spec/models/get_event_forwarder_spec.rb +52 -0
  94. data/spec/models/list_shared_items_spec.rb +52 -0
  95. data/spec/models/name_spec.rb +64 -0
  96. data/spec/models/noti_forwarder_spec.rb +148 -0
  97. data/spec/models/request_access_output_spec.rb +34 -0
  98. data/spec/models/request_access_spec.rb +64 -0
  99. data/spec/models/update_certificate_output_spec.rb +34 -0
  100. data/spec/models/update_certificate_value_spec.rb +76 -0
  101. data/spec/models/update_event_forwarder_spec.rb +100 -0
  102. metadata +630 -530
@@ -0,0 +1,26 @@
1
+ # Akeyless::GetCertificateValue
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
8
+ | **name** | **String** | Certificate name | |
9
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
10
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
11
+ | **version** | **Integer** | Certificate version | [optional] |
12
+
13
+ ## Example
14
+
15
+ ```ruby
16
+ require 'akeyless'
17
+
18
+ instance = Akeyless::GetCertificateValue.new(
19
+ json: null,
20
+ name: null,
21
+ token: null,
22
+ uid_token: null,
23
+ version: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,20 @@
1
+ # Akeyless::GetCertificateValueOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **certificate_pem** | **String** | | [optional] |
8
+ | **private_key_pem** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'akeyless'
14
+
15
+ instance = Akeyless::GetCertificateValueOutput.new(
16
+ certificate_pem: null,
17
+ private_key_pem: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,24 @@
1
+ # Akeyless::GetEventForwarder
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
8
+ | **name** | **String** | EventForwarder name | |
9
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
10
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'akeyless'
16
+
17
+ instance = Akeyless::GetEventForwarder.new(
18
+ json: null,
19
+ name: null,
20
+ token: null,
21
+ uid_token: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::GetEventForwarderOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **event_forwarder** | [**NotiForwarder**](NotiForwarder.md) | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::GetEventForwarderOutput.new(
15
+ event_forwarder: null
16
+ )
17
+ ```
18
+
data/docs/Item.md CHANGED
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **access_date** | **Time** | | [optional] |
8
+ | **access_request_status** | **String** | | [optional] |
8
9
  | **auto_rotate** | **Boolean** | | [optional] |
9
10
  | **cert_issuer_signer_key_name** | **String** | | [optional] |
10
11
  | **certificate_issue_details** | [**CertificateIssueInfo**](CertificateIssueInfo.md) | | [optional] |
@@ -15,6 +16,7 @@
15
16
  | **delete_protection** | **Boolean** | | [optional] |
16
17
  | **deletion_date** | **Time** | | [optional] |
17
18
  | **display_id** | **String** | | [optional] |
19
+ | **is_access_request_enabled** | **Boolean** | | [optional] |
18
20
  | **is_enabled** | **Boolean** | | [optional] |
19
21
  | **item_accessibility** | **Integer** | | [optional] |
20
22
  | **item_general_info** | [**ItemGeneralInfo**](ItemGeneralInfo.md) | | [optional] |
@@ -46,6 +48,7 @@ require 'akeyless'
46
48
 
47
49
  instance = Akeyless::Item.new(
48
50
  access_date: null,
51
+ access_request_status: null,
49
52
  auto_rotate: null,
50
53
  cert_issuer_signer_key_name: null,
51
54
  certificate_issue_details: null,
@@ -56,6 +59,7 @@ instance = Akeyless::Item.new(
56
59
  delete_protection: null,
57
60
  deletion_date: null,
58
61
  display_id: null,
62
+ is_access_request_enabled: null,
59
63
  is_enabled: null,
60
64
  item_accessibility: null,
61
65
  item_general_info: null,
@@ -5,6 +5,7 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **cert_issue_details** | [**CertificateIssueInfo**](CertificateIssueInfo.md) | | [optional] |
8
+ | **certificate_chain_info** | [**CertificateChainInfo**](CertificateChainInfo.md) | | [optional] |
8
9
  | **classic_key_details** | [**ClassicKeyDetailsInfo**](ClassicKeyDetailsInfo.md) | | [optional] |
9
10
  | **cluster_gw_url** | **String** | | [optional] |
10
11
  | **display_metadata** | **String** | | [optional] |
@@ -22,6 +23,7 @@ require 'akeyless'
22
23
 
23
24
  instance = Akeyless::ItemGeneralInfo.new(
24
25
  cert_issue_details: null,
26
+ certificate_chain_info: null,
25
27
  classic_key_details: null,
26
28
  cluster_gw_url: null,
27
29
  display_metadata: null,
@@ -4,6 +4,7 @@
4
4
 
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
+ | **allowed_urls_only** | **Boolean** | | [optional] |
7
8
  | **json** | **Boolean** | Set output format to JSON | [optional] |
8
9
  | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
9
10
  | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
@@ -14,6 +15,7 @@
14
15
  require 'akeyless'
15
16
 
16
17
  instance = Akeyless::ListSRABastions.new(
18
+ allowed_urls_only: null,
17
19
  json: null,
18
20
  token: null,
19
21
  uid_token: null
@@ -0,0 +1,24 @@
1
+ # Akeyless::ListSharedItems
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **accessibility** | **String** | for personal password manager | [optional][default to 'regular'] |
8
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
9
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
10
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'akeyless'
16
+
17
+ instance = Akeyless::ListSharedItems.new(
18
+ accessibility: null,
19
+ json: null,
20
+ token: null,
21
+ uid_token: null
22
+ )
23
+ ```
24
+
data/docs/Name.md ADDED
@@ -0,0 +1,28 @@
1
+ # Akeyless::Name
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **country** | **Array<String>** | | [optional] |
8
+ | **extra_names** | [**Array<AttributeTypeAndValue>**](AttributeTypeAndValue.md) | ExtraNames contains attributes to be copied, raw, into any marshaled distinguished names. Values override any attributes with the same OID. The ExtraNames field is not populated when parsing, see Names. | [optional] |
9
+ | **locality** | **Array<String>** | | [optional] |
10
+ | **names** | [**Array<AttributeTypeAndValue>**](AttributeTypeAndValue.md) | Names contains all parsed attributes. When parsing distinguished names, this can be used to extract non-standard attributes that are not parsed by this package. When marshaling to RDNSequences, the Names field is ignored, see ExtraNames. | [optional] |
11
+ | **serial_number** | **String** | | [optional] |
12
+ | **street_address** | **Array<String>** | | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'akeyless'
18
+
19
+ instance = Akeyless::Name.new(
20
+ country: null,
21
+ extra_names: null,
22
+ locality: null,
23
+ names: null,
24
+ serial_number: null,
25
+ street_address: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,56 @@
1
+ # Akeyless::NotiForwarder
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **client_permissions** | **Array<String>** | | [optional] |
8
+ | **comment** | **String** | | [optional] |
9
+ | **creation_date** | **Time** | | [optional] |
10
+ | **endpoint** | **String** | | [optional] |
11
+ | **event_types** | **Array<String>** | | [optional] |
12
+ | **gateway_cluster_id** | **Integer** | | [optional] |
13
+ | **is_enabled** | **Boolean** | | [optional] |
14
+ | **last_version** | **Integer** | | [optional] |
15
+ | **modification_date** | **Time** | | [optional] |
16
+ | **noti_forwarder_id** | **Integer** | | [optional] |
17
+ | **noti_forwarder_name** | **String** | | [optional] |
18
+ | **noti_forwarder_type** | **String** | | [optional] |
19
+ | **noti_forwarder_versions** | [**Array<ItemVersion>**](ItemVersion.md) | | [optional] |
20
+ | **paths** | **Array<String>** | | [optional] |
21
+ | **protection_key** | **String** | | [optional] |
22
+ | **runner_type** | **String** | | [optional] |
23
+ | **timespan_in_seconds** | **Integer** | | [optional] |
24
+ | **to_emails** | [**Array<EmailEntry>**](EmailEntry.md) | | [optional] |
25
+ | **username** | **String** | | [optional] |
26
+ | **with_customer_fragment** | **Boolean** | | [optional] |
27
+
28
+ ## Example
29
+
30
+ ```ruby
31
+ require 'akeyless'
32
+
33
+ instance = Akeyless::NotiForwarder.new(
34
+ client_permissions: null,
35
+ comment: null,
36
+ creation_date: null,
37
+ endpoint: null,
38
+ event_types: null,
39
+ gateway_cluster_id: null,
40
+ is_enabled: null,
41
+ last_version: null,
42
+ modification_date: null,
43
+ noti_forwarder_id: null,
44
+ noti_forwarder_name: null,
45
+ noti_forwarder_type: null,
46
+ noti_forwarder_versions: null,
47
+ paths: null,
48
+ protection_key: null,
49
+ runner_type: null,
50
+ timespan_in_seconds: null,
51
+ to_emails: null,
52
+ username: null,
53
+ with_customer_fragment: null
54
+ )
55
+ ```
56
+
@@ -0,0 +1,28 @@
1
+ # Akeyless::RequestAccess
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **capability** | **Array<String>** | List of the required capabilities options: [read, update, delete] | |
8
+ | **comment** | **String** | Comment about this request | [optional] |
9
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
10
+ | **name** | **String** | Item type | |
11
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
12
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'akeyless'
18
+
19
+ instance = Akeyless::RequestAccess.new(
20
+ capability: null,
21
+ comment: null,
22
+ json: null,
23
+ name: null,
24
+ token: null,
25
+ uid_token: null
26
+ )
27
+ ```
28
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::RequestAccessOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **response** | **String** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::RequestAccessOutput.new(
15
+ response: null
16
+ )
17
+ ```
18
+
data/docs/RotateKey.md CHANGED
@@ -6,6 +6,7 @@
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **json** | **Boolean** | Set output format to JSON | [optional] |
8
8
  | **name** | **String** | Key name | |
9
+ | **new_cert_pem_data** | **String** | The new pem encoded certificate for the classic key. relevant only for keys provided by user ('bring-your-own-key') | [optional] |
9
10
  | **new_key_data** | **String** | The new base64 encoded value for the classic key. relevant only for keys provided by user ('bring-your-own-key') | [optional] |
10
11
  | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
11
12
  | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
@@ -18,6 +19,7 @@ require 'akeyless'
18
19
  instance = Akeyless::RotateKey.new(
19
20
  json: null,
20
21
  name: null,
22
+ new_cert_pem_data: null,
21
23
  new_key_data: null,
22
24
  token: null,
23
25
  uid_token: null
data/docs/Target.md CHANGED
@@ -5,11 +5,13 @@
5
5
  | Name | Type | Description | Notes |
6
6
  | ---- | ---- | ----------- | ----- |
7
7
  | **access_date** | **Time** | | [optional] |
8
+ | **access_request_status** | **String** | | [optional] |
8
9
  | **attributes** | **Hash<String, Object>** | this is not \"omitempty\" since an empty value causes no update while an empty map will clear the attributes | [optional] |
9
10
  | **client_permissions** | **Array<String>** | | [optional] |
10
11
  | **comment** | **String** | | [optional] |
11
12
  | **creation_date** | **Time** | | [optional] |
12
13
  | **credentials_less** | **Boolean** | | [optional] |
14
+ | **is_access_request_enabled** | **Boolean** | | [optional] |
13
15
  | **last_version** | **Integer** | | [optional] |
14
16
  | **modification_date** | **Time** | | [optional] |
15
17
  | **protection_key_name** | **String** | | [optional] |
@@ -27,11 +29,13 @@ require 'akeyless'
27
29
 
28
30
  instance = Akeyless::Target.new(
29
31
  access_date: null,
32
+ access_request_status: null,
30
33
  attributes: null,
31
34
  client_permissions: null,
32
35
  comment: null,
33
36
  creation_date: null,
34
37
  credentials_less: null,
38
+ is_access_request_enabled: null,
35
39
  last_version: null,
36
40
  modification_date: null,
37
41
  protection_key_name: null,
@@ -0,0 +1,18 @@
1
+ # Akeyless::UpdateCertificateOutput
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::UpdateCertificateOutput.new(
15
+ name: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,32 @@
1
+ # Akeyless::UpdateCertificateValue
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **certificate_data** | **String** | Content of the certificate PEM in a Base64 format. | [optional] |
8
+ | **expiration_event_in** | **Array<String>** | How many days before the expiration of the certificate would you like to be notified. | [optional] |
9
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
10
+ | **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] |
11
+ | **key_data** | **String** | Content of the certificate's private key PEM in a Base64 format. | [optional] |
12
+ | **name** | **String** | Certificate name | |
13
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
14
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'akeyless'
20
+
21
+ instance = Akeyless::UpdateCertificateValue.new(
22
+ certificate_data: null,
23
+ expiration_event_in: null,
24
+ json: null,
25
+ key: null,
26
+ key_data: null,
27
+ name: null,
28
+ token: null,
29
+ uid_token: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,40 @@
1
+ # Akeyless::UpdateEventForwarder
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **admin_name** | **String** | Workstation Admin Name | [optional] |
8
+ | **email_to** | **String** | A comma seperated list of email addresses to send event to (relevant only for \\\"email\\\" Event Forwarder) | [optional] |
9
+ | **enable** | **String** | Enable | [optional] |
10
+ | **event_source_locations** | **Array<String>** | Event sources | [optional] |
11
+ | **event_types** | **Array<String>** | Event types | [optional] |
12
+ | **host** | **String** | Workstation Host | [optional] |
13
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
14
+ | **name** | **String** | EventForwarder name | |
15
+ | **new_comment** | **String** | New comment about the Event Forwarder | [optional][default to 'default_comment'] |
16
+ | **new_name** | **String** | New EventForwarder name | [optional] |
17
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
18
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
19
+
20
+ ## Example
21
+
22
+ ```ruby
23
+ require 'akeyless'
24
+
25
+ instance = Akeyless::UpdateEventForwarder.new(
26
+ admin_name: null,
27
+ email_to: null,
28
+ enable: null,
29
+ event_source_locations: null,
30
+ event_types: null,
31
+ host: null,
32
+ json: null,
33
+ name: null,
34
+ new_comment: null,
35
+ new_name: null,
36
+ token: null,
37
+ uid_token: null
38
+ )
39
+ ```
40
+
@@ -10,6 +10,7 @@
10
10
  | **auto_rotate** | **String** | Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation | [optional] |
11
11
  | **aws_region** | **String** | Region (used in aws) | [optional][default to 'us-east-2'] |
12
12
  | **custom_payload** | **String** | | [optional] |
13
+ | **gcp_key** | **String** | Base64-encoded service account private key text | [optional] |
13
14
  | **json** | **Boolean** | Set output format to JSON | [optional] |
14
15
  | **keep_prev_version** | **String** | | [optional] |
15
16
  | **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] |
@@ -55,6 +56,7 @@ instance = Akeyless::UpdateRotatedSecret.new(
55
56
  auto_rotate: null,
56
57
  aws_region: null,
57
58
  custom_payload: null,
59
+ gcp_key: null,
58
60
  json: null,
59
61
  keep_prev_version: null,
60
62
  key: null,