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
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ccaf74109f93389e5c101ebecc818cda9eca645b49a824f2e81eacd7978edba
4
- data.tar.gz: da4dcbad88924331fa1efd9a7cb76d9850a6768225136d5d494c360648ed0ef1
3
+ metadata.gz: 7bb026c43b4fe7409349296ea14459b635bdd70cfaead128b42d65aa22a386a2
4
+ data.tar.gz: 6adc07dfdc42a690418ee5c6a8ac071f05d2423aa20df47202db5fdcc44a6d94
5
5
  SHA512:
6
- metadata.gz: 9eefc1b8c518c92314d79dce24e06b70896a2925ffa503927617b07e0d89ba2c05bc3bb241f5acd040d208f36b79e6600ecbdc1389ec9a0234d96efc7a89dd43
7
- data.tar.gz: be4e43305aa65e2ea8f2b83a96acb24785c95af007d9ba621ff84ac2aef2d3612cf41f1320bb37cd0e69dc723f62a704361621f73f606cffc57b9f2927a6146d
6
+ metadata.gz: 9335f1da449540c359ff1d2445ce47c63d17e8d685938a4ff93403053b19f35e4a9bdc393500486d558c03671e8d496c9dbc5dbfa8e4a09f8abd09f90482e683
7
+ data.tar.gz: 95d9ed80f075c63e42ada4e0de9c300eff23788c53f847e1de503356fd160a1f67c7b35f3c12efb242c408f206ad11ee79b4404b0b72f3a62f9e78be380b262f
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.0.1
10
+ - Package version: 3.1.1
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
  For more information, please visit [http://akeyless.io](http://akeyless.io)
13
13
 
@@ -79,12 +79,14 @@ Class | Method | HTTP request | Description
79
79
  *Akeyless::V2Api* | [**create_auth_method_universal_identity**](docs/V2Api.md#create_auth_method_universal_identity) | **POST** /create-auth-method-universal-identity |
80
80
  *Akeyless::V2Api* | [**create_aws_target**](docs/V2Api.md#create_aws_target) | **POST** /create-aws-target |
81
81
  *Akeyless::V2Api* | [**create_azure_target**](docs/V2Api.md#create_azure_target) | **POST** /create-azure-target |
82
+ *Akeyless::V2Api* | [**create_certificate**](docs/V2Api.md#create_certificate) | **POST** /create-certificate |
82
83
  *Akeyless::V2Api* | [**create_classic_key**](docs/V2Api.md#create_classic_key) | **POST** /create-classic-key |
83
84
  *Akeyless::V2Api* | [**create_db_target**](docs/V2Api.md#create_db_target) | **POST** /create-db-target |
84
85
  *Akeyless::V2Api* | [**create_dfc_key**](docs/V2Api.md#create_dfc_key) | **POST** /create-dfc-key |
85
86
  *Akeyless::V2Api* | [**create_dockerhub_target**](docs/V2Api.md#create_dockerhub_target) | **POST** /create-dockerhub-target |
86
87
  *Akeyless::V2Api* | [**create_dynamic_secret**](docs/V2Api.md#create_dynamic_secret) | **POST** /create-dynamic-secret |
87
88
  *Akeyless::V2Api* | [**create_eks_target**](docs/V2Api.md#create_eks_target) | **POST** /create-eks-target |
89
+ *Akeyless::V2Api* | [**create_event_forwarder**](docs/V2Api.md#create_event_forwarder) | **POST** /create-event-forwarder |
88
90
  *Akeyless::V2Api* | [**create_gcp_target**](docs/V2Api.md#create_gcp_target) | **POST** /create-gcp-target |
89
91
  *Akeyless::V2Api* | [**create_github_target**](docs/V2Api.md#create_github_target) | **POST** /create-github-target |
90
92
  *Akeyless::V2Api* | [**create_gke_target**](docs/V2Api.md#create_gke_target) | **POST** /create-gke-target |
@@ -106,6 +108,7 @@ Class | Method | HTTP request | Description
106
108
  *Akeyless::V2Api* | [**decrypt_with_classic_key**](docs/V2Api.md#decrypt_with_classic_key) | **POST** /decrypt-with-classic-key |
107
109
  *Akeyless::V2Api* | [**delete_auth_method**](docs/V2Api.md#delete_auth_method) | **POST** /delete-auth-method |
108
110
  *Akeyless::V2Api* | [**delete_auth_methods**](docs/V2Api.md#delete_auth_methods) | **POST** /delete-auth-methods |
111
+ *Akeyless::V2Api* | [**delete_event_forwarder**](docs/V2Api.md#delete_event_forwarder) | **POST** /delete-event-forwarder |
109
112
  *Akeyless::V2Api* | [**delete_item**](docs/V2Api.md#delete_item) | **POST** /delete-item |
110
113
  *Akeyless::V2Api* | [**delete_items**](docs/V2Api.md#delete_items) | **POST** /delete-items |
111
114
  *Akeyless::V2Api* | [**delete_role**](docs/V2Api.md#delete_role) | **POST** /delete-role |
@@ -122,7 +125,6 @@ Class | Method | HTTP request | Description
122
125
  *Akeyless::V2Api* | [**encrypt**](docs/V2Api.md#encrypt) | **POST** /encrypt |
123
126
  *Akeyless::V2Api* | [**encrypt_with_classic_key**](docs/V2Api.md#encrypt_with_classic_key) | **POST** /encrypt-with-classic-key |
124
127
  *Akeyless::V2Api* | [**export_classic_key**](docs/V2Api.md#export_classic_key) | **POST** /export-classic-key |
125
- *Akeyless::V2Api* | [**gateway_add_allowed_management_access**](docs/V2Api.md#gateway_add_allowed_management_access) | **POST** /gateway-add-allow-management-access |
126
128
  *Akeyless::V2Api* | [**gateway_create_k8_s_auth_config**](docs/V2Api.md#gateway_create_k8_s_auth_config) | **POST** /gateway-create-k8s-auth-config |
127
129
  *Akeyless::V2Api* | [**gateway_create_migration**](docs/V2Api.md#gateway_create_migration) | **POST** /gateway-create-migration |
128
130
  *Akeyless::V2Api* | [**gateway_create_producer_artifactory**](docs/V2Api.md#gateway_create_producer_artifactory) | **POST** /gateway-create-producer-artifactory |
@@ -194,11 +196,14 @@ Class | Method | HTTP request | Description
194
196
  *Akeyless::V2Api* | [**gateway_update_producer_rdp**](docs/V2Api.md#gateway_update_producer_rdp) | **POST** /gateway-update-producer-rdp |
195
197
  *Akeyless::V2Api* | [**gateway_update_producer_redshift**](docs/V2Api.md#gateway_update_producer_redshift) | **POST** /gateway-update-producer-redshift |
196
198
  *Akeyless::V2Api* | [**gateway_update_producer_snowflake**](docs/V2Api.md#gateway_update_producer_snowflake) | **POST** /gateway-update-producer-snowflake |
199
+ *Akeyless::V2Api* | [**gateway_update_tls_cert**](docs/V2Api.md#gateway_update_tls_cert) | **POST** /gateway-update-tls-cert |
197
200
  *Akeyless::V2Api* | [**gateway_update_tmp_users**](docs/V2Api.md#gateway_update_tmp_users) | **POST** /gateway-update-producer-tmp-creds |
198
201
  *Akeyless::V2Api* | [**get_account_logo**](docs/V2Api.md#get_account_logo) | **POST** /get-account-logo |
199
202
  *Akeyless::V2Api* | [**get_account_settings**](docs/V2Api.md#get_account_settings) | **POST** /get-account-settings |
200
203
  *Akeyless::V2Api* | [**get_auth_method**](docs/V2Api.md#get_auth_method) | **POST** /get-auth-method |
204
+ *Akeyless::V2Api* | [**get_certificate_value**](docs/V2Api.md#get_certificate_value) | **POST** /get-certificate-value |
201
205
  *Akeyless::V2Api* | [**get_dynamic_secret_value**](docs/V2Api.md#get_dynamic_secret_value) | **POST** /get-dynamic-secret-value |
206
+ *Akeyless::V2Api* | [**get_event_forwarder**](docs/V2Api.md#get_event_forwarder) | **POST** /get-event-forwarder |
202
207
  *Akeyless::V2Api* | [**get_kube_exec_creds**](docs/V2Api.md#get_kube_exec_creds) | **POST** /get-kube-exec-creds |
203
208
  *Akeyless::V2Api* | [**get_pki_certificate**](docs/V2Api.md#get_pki_certificate) | **POST** /get-pki-certificate |
204
209
  *Akeyless::V2Api* | [**get_role**](docs/V2Api.md#get_role) | **POST** /get-role |
@@ -226,11 +231,13 @@ Class | Method | HTTP request | Description
226
231
  *Akeyless::V2Api* | [**list_gateways**](docs/V2Api.md#list_gateways) | **POST** /list-gateways |
227
232
  *Akeyless::V2Api* | [**list_items**](docs/V2Api.md#list_items) | **POST** /list-items |
228
233
  *Akeyless::V2Api* | [**list_roles**](docs/V2Api.md#list_roles) | **POST** /list-roles |
234
+ *Akeyless::V2Api* | [**list_shared_items**](docs/V2Api.md#list_shared_items) | **POST** /list-shared-items |
229
235
  *Akeyless::V2Api* | [**list_sra_bastions**](docs/V2Api.md#list_sra_bastions) | **POST** /list-sra-bastions |
230
236
  *Akeyless::V2Api* | [**list_targets**](docs/V2Api.md#list_targets) | **POST** /list-targets |
231
237
  *Akeyless::V2Api* | [**move_objects**](docs/V2Api.md#move_objects) | **POST** /move-objects |
232
238
  *Akeyless::V2Api* | [**raw_creds**](docs/V2Api.md#raw_creds) | **POST** /raw-creds |
233
239
  *Akeyless::V2Api* | [**refresh_key**](docs/V2Api.md#refresh_key) | **POST** /refresh-key |
240
+ *Akeyless::V2Api* | [**request_access**](docs/V2Api.md#request_access) | **POST** /request-access |
234
241
  *Akeyless::V2Api* | [**reverse_rbac**](docs/V2Api.md#reverse_rbac) | **POST** /reverse-rbac |
235
242
  *Akeyless::V2Api* | [**revoke_creds**](docs/V2Api.md#revoke_creds) | **POST** /revoke-creds |
236
243
  *Akeyless::V2Api* | [**rollback_secret**](docs/V2Api.md#rollback_secret) | **POST** /rollback-secret |
@@ -266,10 +273,12 @@ Class | Method | HTTP request | Description
266
273
  *Akeyless::V2Api* | [**update_aws_target**](docs/V2Api.md#update_aws_target) | **POST** /update-aws-target |
267
274
  *Akeyless::V2Api* | [**update_aws_target_details**](docs/V2Api.md#update_aws_target_details) | **POST** /update-aws-target-details |
268
275
  *Akeyless::V2Api* | [**update_azure_target**](docs/V2Api.md#update_azure_target) | **POST** /update-azure-target |
276
+ *Akeyless::V2Api* | [**update_certificate_value**](docs/V2Api.md#update_certificate_value) | **POST** /update-certificate-value |
269
277
  *Akeyless::V2Api* | [**update_db_target**](docs/V2Api.md#update_db_target) | **POST** /update-db-target |
270
278
  *Akeyless::V2Api* | [**update_db_target_details**](docs/V2Api.md#update_db_target_details) | **POST** /update-db-target-details |
271
279
  *Akeyless::V2Api* | [**update_dockerhub_target**](docs/V2Api.md#update_dockerhub_target) | **POST** /update-dockerhub-target |
272
280
  *Akeyless::V2Api* | [**update_eks_target**](docs/V2Api.md#update_eks_target) | **POST** /update-eks-target |
281
+ *Akeyless::V2Api* | [**update_event_forwarder**](docs/V2Api.md#update_event_forwarder) | **POST** /update-event-forwarder |
273
282
  *Akeyless::V2Api* | [**update_gcp_target**](docs/V2Api.md#update_gcp_target) | **POST** /update-gcp-target |
274
283
  *Akeyless::V2Api* | [**update_github_target**](docs/V2Api.md#update_github_target) | **POST** /update-github-target |
275
284
  *Akeyless::V2Api* | [**update_gke_target**](docs/V2Api.md#update_gke_target) | **POST** /update-gke-target |
@@ -315,6 +324,7 @@ Class | Method | HTTP request | Description
315
324
  - [Akeyless::AllowedAccess](docs/AllowedAccess.md)
316
325
  - [Akeyless::AssocRoleAuthMethod](docs/AssocRoleAuthMethod.md)
317
326
  - [Akeyless::AssocTargetItem](docs/AssocTargetItem.md)
327
+ - [Akeyless::AttributeTypeAndValue](docs/AttributeTypeAndValue.md)
318
328
  - [Akeyless::Auth](docs/Auth.md)
319
329
  - [Akeyless::AuthMethod](docs/AuthMethod.md)
320
330
  - [Akeyless::AuthMethodAccessInfo](docs/AuthMethodAccessInfo.md)
@@ -330,6 +340,9 @@ Class | Method | HTTP request | Description
330
340
  - [Akeyless::CFConfigPart](docs/CFConfigPart.md)
331
341
  - [Akeyless::CacheConfigPart](docs/CacheConfigPart.md)
332
342
  - [Akeyless::CertAccessRules](docs/CertAccessRules.md)
343
+ - [Akeyless::CertificateChainInfo](docs/CertificateChainInfo.md)
344
+ - [Akeyless::CertificateExpirationEvent](docs/CertificateExpirationEvent.md)
345
+ - [Akeyless::CertificateInfo](docs/CertificateInfo.md)
333
346
  - [Akeyless::CertificateIssueInfo](docs/CertificateIssueInfo.md)
334
347
  - [Akeyless::ClassicKeyDetailsInfo](docs/ClassicKeyDetailsInfo.md)
335
348
  - [Akeyless::ClassicKeyStatusInfo](docs/ClassicKeyStatusInfo.md)
@@ -370,6 +383,8 @@ Class | Method | HTTP request | Description
370
383
  - [Akeyless::CreateAuthMethodUniversalIdentityOutput](docs/CreateAuthMethodUniversalIdentityOutput.md)
371
384
  - [Akeyless::CreateAzureTarget](docs/CreateAzureTarget.md)
372
385
  - [Akeyless::CreateAzureTargetOutput](docs/CreateAzureTargetOutput.md)
386
+ - [Akeyless::CreateCertificate](docs/CreateCertificate.md)
387
+ - [Akeyless::CreateCertificateOutput](docs/CreateCertificateOutput.md)
373
388
  - [Akeyless::CreateClassicKey](docs/CreateClassicKey.md)
374
389
  - [Akeyless::CreateClassicKeyOutput](docs/CreateClassicKeyOutput.md)
375
390
  - [Akeyless::CreateDBTarget](docs/CreateDBTarget.md)
@@ -381,6 +396,8 @@ Class | Method | HTTP request | Description
381
396
  - [Akeyless::CreateDynamicSecret](docs/CreateDynamicSecret.md)
382
397
  - [Akeyless::CreateEKSTarget](docs/CreateEKSTarget.md)
383
398
  - [Akeyless::CreateEKSTargetOutput](docs/CreateEKSTargetOutput.md)
399
+ - [Akeyless::CreateEventForwarder](docs/CreateEventForwarder.md)
400
+ - [Akeyless::CreateEventForwarderOutput](docs/CreateEventForwarderOutput.md)
384
401
  - [Akeyless::CreateGKETarget](docs/CreateGKETarget.md)
385
402
  - [Akeyless::CreateGKETargetOutput](docs/CreateGKETargetOutput.md)
386
403
  - [Akeyless::CreateGcpTarget](docs/CreateGcpTarget.md)
@@ -433,6 +450,7 @@ Class | Method | HTTP request | Description
433
450
  - [Akeyless::DeleteAuthMethodOutput](docs/DeleteAuthMethodOutput.md)
434
451
  - [Akeyless::DeleteAuthMethods](docs/DeleteAuthMethods.md)
435
452
  - [Akeyless::DeleteAuthMethodsOutput](docs/DeleteAuthMethodsOutput.md)
453
+ - [Akeyless::DeleteEventForwarder](docs/DeleteEventForwarder.md)
436
454
  - [Akeyless::DeleteItem](docs/DeleteItem.md)
437
455
  - [Akeyless::DeleteItemOutput](docs/DeleteItemOutput.md)
438
456
  - [Akeyless::DeleteItems](docs/DeleteItems.md)
@@ -454,6 +472,7 @@ Class | Method | HTTP request | Description
454
472
  - [Akeyless::DetokenizeOutput](docs/DetokenizeOutput.md)
455
473
  - [Akeyless::DynamicSecretProducerInfo](docs/DynamicSecretProducerInfo.md)
456
474
  - [Akeyless::ElasticsearchLogForwardingConfig](docs/ElasticsearchLogForwardingConfig.md)
475
+ - [Akeyless::EmailEntry](docs/EmailEntry.md)
457
476
  - [Akeyless::EmailPassAccessRules](docs/EmailPassAccessRules.md)
458
477
  - [Akeyless::EmailTokenizerInfo](docs/EmailTokenizerInfo.md)
459
478
  - [Akeyless::Encrypt](docs/Encrypt.md)
@@ -464,11 +483,11 @@ Class | Method | HTTP request | Description
464
483
  - [Akeyless::EncryptWithClassicKeyOutput](docs/EncryptWithClassicKeyOutput.md)
465
484
  - [Akeyless::ExportClassicKey](docs/ExportClassicKey.md)
466
485
  - [Akeyless::ExportClassicKeyOutput](docs/ExportClassicKeyOutput.md)
486
+ - [Akeyless::Extension](docs/Extension.md)
467
487
  - [Akeyless::ExternalKMSKeyId](docs/ExternalKMSKeyId.md)
468
488
  - [Akeyless::GCPAccessRules](docs/GCPAccessRules.md)
469
489
  - [Akeyless::GCPPayload](docs/GCPPayload.md)
470
490
  - [Akeyless::GCPSecretsMigration](docs/GCPSecretsMigration.md)
471
- - [Akeyless::GatewayAddAllowedManagementAccess](docs/GatewayAddAllowedManagementAccess.md)
472
491
  - [Akeyless::GatewayCreateK8SAuthConfig](docs/GatewayCreateK8SAuthConfig.md)
473
492
  - [Akeyless::GatewayCreateK8SAuthConfigOutput](docs/GatewayCreateK8SAuthConfigOutput.md)
474
493
  - [Akeyless::GatewayCreateMigration](docs/GatewayCreateMigration.md)
@@ -608,6 +627,8 @@ Class | Method | HTTP request | Description
608
627
  - [Akeyless::GatewayUpdateProducerRedshiftOutput](docs/GatewayUpdateProducerRedshiftOutput.md)
609
628
  - [Akeyless::GatewayUpdateProducerSnowflake](docs/GatewayUpdateProducerSnowflake.md)
610
629
  - [Akeyless::GatewayUpdateProducerSnowflakeOutput](docs/GatewayUpdateProducerSnowflakeOutput.md)
630
+ - [Akeyless::GatewayUpdateTlsCert](docs/GatewayUpdateTlsCert.md)
631
+ - [Akeyless::GatewayUpdateTlsCertOutput](docs/GatewayUpdateTlsCertOutput.md)
611
632
  - [Akeyless::GatewayUpdateTmpUsers](docs/GatewayUpdateTmpUsers.md)
612
633
  - [Akeyless::GatewaysListResponse](docs/GatewaysListResponse.md)
613
634
  - [Akeyless::GenCustomerFragment](docs/GenCustomerFragment.md)
@@ -615,7 +636,11 @@ Class | Method | HTTP request | Description
615
636
  - [Akeyless::GetAccountSettings](docs/GetAccountSettings.md)
616
637
  - [Akeyless::GetAccountSettingsCommandOutput](docs/GetAccountSettingsCommandOutput.md)
617
638
  - [Akeyless::GetAuthMethod](docs/GetAuthMethod.md)
639
+ - [Akeyless::GetCertificateValue](docs/GetCertificateValue.md)
640
+ - [Akeyless::GetCertificateValueOutput](docs/GetCertificateValueOutput.md)
618
641
  - [Akeyless::GetDynamicSecretValue](docs/GetDynamicSecretValue.md)
642
+ - [Akeyless::GetEventForwarder](docs/GetEventForwarder.md)
643
+ - [Akeyless::GetEventForwarderOutput](docs/GetEventForwarderOutput.md)
619
644
  - [Akeyless::GetKubeExecCreds](docs/GetKubeExecCreds.md)
620
645
  - [Akeyless::GetKubeExecCredsOutput](docs/GetKubeExecCredsOutput.md)
621
646
  - [Akeyless::GetPKICertificate](docs/GetPKICertificate.md)
@@ -687,6 +712,7 @@ Class | Method | HTTP request | Description
687
712
  - [Akeyless::ListRoles](docs/ListRoles.md)
688
713
  - [Akeyless::ListRolesOutput](docs/ListRolesOutput.md)
689
714
  - [Akeyless::ListSRABastions](docs/ListSRABastions.md)
715
+ - [Akeyless::ListSharedItems](docs/ListSharedItems.md)
690
716
  - [Akeyless::ListTargets](docs/ListTargets.md)
691
717
  - [Akeyless::ListTargetsOutput](docs/ListTargetsOutput.md)
692
718
  - [Akeyless::LogForwardingConfigPart](docs/LogForwardingConfigPart.md)
@@ -701,6 +727,8 @@ Class | Method | HTTP request | Description
701
727
  - [Akeyless::MockMigration](docs/MockMigration.md)
702
728
  - [Akeyless::MockPayload](docs/MockPayload.md)
703
729
  - [Akeyless::MoveObjects](docs/MoveObjects.md)
730
+ - [Akeyless::Name](docs/Name.md)
731
+ - [Akeyless::NotiForwarder](docs/NotiForwarder.md)
704
732
  - [Akeyless::OAuth2AccessRules](docs/OAuth2AccessRules.md)
705
733
  - [Akeyless::OAuth2CustomClaim](docs/OAuth2CustomClaim.md)
706
734
  - [Akeyless::OIDCAccessRules](docs/OIDCAccessRules.md)
@@ -717,6 +745,8 @@ Class | Method | HTTP request | Description
717
745
  - [Akeyless::RefreshKey](docs/RefreshKey.md)
718
746
  - [Akeyless::RefreshKeyOutput](docs/RefreshKeyOutput.md)
719
747
  - [Akeyless::RegexpTokenizerInfo](docs/RegexpTokenizerInfo.md)
748
+ - [Akeyless::RequestAccess](docs/RequestAccess.md)
749
+ - [Akeyless::RequestAccessOutput](docs/RequestAccessOutput.md)
720
750
  - [Akeyless::RequiredActivity](docs/RequiredActivity.md)
721
751
  - [Akeyless::ReverseRBAC](docs/ReverseRBAC.md)
722
752
  - [Akeyless::ReverseRBACClient](docs/ReverseRBACClient.md)
@@ -802,6 +832,8 @@ Class | Method | HTTP request | Description
802
832
  - [Akeyless::UpdateAuthMethodUniversalIdentity](docs/UpdateAuthMethodUniversalIdentity.md)
803
833
  - [Akeyless::UpdateAzureTarget](docs/UpdateAzureTarget.md)
804
834
  - [Akeyless::UpdateAzureTargetOutput](docs/UpdateAzureTargetOutput.md)
835
+ - [Akeyless::UpdateCertificateOutput](docs/UpdateCertificateOutput.md)
836
+ - [Akeyless::UpdateCertificateValue](docs/UpdateCertificateValue.md)
805
837
  - [Akeyless::UpdateDBTarget](docs/UpdateDBTarget.md)
806
838
  - [Akeyless::UpdateDBTargetDetails](docs/UpdateDBTargetDetails.md)
807
839
  - [Akeyless::UpdateDBTargetOutput](docs/UpdateDBTargetOutput.md)
@@ -809,6 +841,7 @@ Class | Method | HTTP request | Description
809
841
  - [Akeyless::UpdateDockerhubTargetOutput](docs/UpdateDockerhubTargetOutput.md)
810
842
  - [Akeyless::UpdateEKSTarget](docs/UpdateEKSTarget.md)
811
843
  - [Akeyless::UpdateEKSTargetOutput](docs/UpdateEKSTargetOutput.md)
844
+ - [Akeyless::UpdateEventForwarder](docs/UpdateEventForwarder.md)
812
845
  - [Akeyless::UpdateGKETarget](docs/UpdateGKETarget.md)
813
846
  - [Akeyless::UpdateGKETargetOutput](docs/UpdateGKETargetOutput.md)
814
847
  - [Akeyless::UpdateGcpTarget](docs/UpdateGcpTarget.md)
@@ -0,0 +1,20 @@
1
+ # Akeyless::AttributeTypeAndValue
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **type** | **Array<Integer>** | | [optional] |
8
+ | **value** | **Object** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'akeyless'
14
+
15
+ instance = Akeyless::AttributeTypeAndValue.new(
16
+ type: null,
17
+ value: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,22 @@
1
+ # Akeyless::CertificateChainInfo
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **certificate_chain** | [**Array<CertificateInfo>**](CertificateInfo.md) | | [optional] |
8
+ | **certificate_pem** | **String** | | [optional] |
9
+ | **expiration_events** | [**Array<CertificateExpirationEvent>**](CertificateExpirationEvent.md) | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'akeyless'
15
+
16
+ instance = Akeyless::CertificateChainInfo.new(
17
+ certificate_chain: null,
18
+ certificate_pem: null,
19
+ expiration_events: null
20
+ )
21
+ ```
22
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::CertificateExpirationEvent
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **seconds_before** | **Integer** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::CertificateExpirationEvent.new(
15
+ seconds_before: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,62 @@
1
+ # Akeyless::CertificateInfo
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **ext_key_usage** | **Array<Integer>** | | [optional] |
8
+ | **key_usage** | **Integer** | KeyUsage represents the set of actions that are valid for a given key. It's a bitmap of the KeyUsage* constants. | [optional] |
9
+ | **dns_names** | **Array<String>** | | [optional] |
10
+ | **email_addresses** | **Array<String>** | | [optional] |
11
+ | **extensions** | [**Array<Extension>**](Extension.md) | | [optional] |
12
+ | **ip_addresses** | **Array<String>** | | [optional] |
13
+ | **is_ca** | **Boolean** | | [optional] |
14
+ | **issuer** | [**Name**](Name.md) | | [optional] |
15
+ | **issuing_certificate_url** | **Array<String>** | | [optional] |
16
+ | **key_size** | **Integer** | | [optional] |
17
+ | **not_after** | **Time** | | [optional] |
18
+ | **not_before** | **Time** | | [optional] |
19
+ | **ocsp_server** | **Array<String>** | | [optional] |
20
+ | **public_key_algorithm_name** | **String** | | [optional] |
21
+ | **serial_number** | **String** | | [optional] |
22
+ | **sha_1_fingerprint** | **String** | | [optional] |
23
+ | **sha_256_fingerprint** | **String** | | [optional] |
24
+ | **signature** | **String** | | [optional] |
25
+ | **signature_algorithm_name** | **String** | | [optional] |
26
+ | **subject** | [**Name**](Name.md) | | [optional] |
27
+ | **subject_public_key** | **String** | | [optional] |
28
+ | **uris** | **Array<String>** | | [optional] |
29
+ | **version** | **Integer** | | [optional] |
30
+
31
+ ## Example
32
+
33
+ ```ruby
34
+ require 'akeyless'
35
+
36
+ instance = Akeyless::CertificateInfo.new(
37
+ ext_key_usage: null,
38
+ key_usage: null,
39
+ dns_names: null,
40
+ email_addresses: null,
41
+ extensions: null,
42
+ ip_addresses: null,
43
+ is_ca: null,
44
+ issuer: null,
45
+ issuing_certificate_url: null,
46
+ key_size: null,
47
+ not_after: null,
48
+ not_before: null,
49
+ ocsp_server: null,
50
+ public_key_algorithm_name: null,
51
+ serial_number: null,
52
+ sha_1_fingerprint: null,
53
+ sha_256_fingerprint: null,
54
+ signature: null,
55
+ signature_algorithm_name: null,
56
+ subject: null,
57
+ subject_public_key: null,
58
+ uris: null,
59
+ version: null
60
+ )
61
+ ```
62
+
data/docs/Connect.md CHANGED
@@ -14,6 +14,7 @@
14
14
  | **identity_file** | **String** | The file from which the identity (private key) for public key authentication is read | [optional] |
15
15
  | **json** | **Boolean** | Set output format to JSON | [optional] |
16
16
  | **name** | **String** | The Secret name (for database and AWS producers - producer name) | [optional] |
17
+ | **ssh_command** | **String** | Path to SSH executable. e.g. /usr/bin/ssh | [optional] |
17
18
  | **ssh_extra_args** | **String** | The Use to add offical SSH arguments (except -i) | [optional] |
18
19
  | **ssh_legacy_signing_alg** | **Boolean** | Set this option to output legacy ('ssh-rsa-cert-v01@openssh.com') signing algorithm name in the ssh certificate. | [optional] |
19
20
  | **target** | **String** | The target | [optional] |
@@ -37,6 +38,7 @@ instance = Akeyless::Connect.new(
37
38
  identity_file: null,
38
39
  json: null,
39
40
  name: null,
41
+ ssh_command: null,
40
42
  ssh_extra_args: null,
41
43
  ssh_legacy_signing_alg: null,
42
44
  target: null,
@@ -0,0 +1,38 @@
1
+ # Akeyless::CreateCertificate
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
+ | **delete_protection** | **String** | Protection from accidental deletion of this item | [optional] |
9
+ | **expiration_event_in** | **Array<String>** | How many days before the expiration of the certificate would you like to be notified. | [optional] |
10
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
11
+ | **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
+ | **key_data** | **String** | Content of the certificate's private key PEM in a Base64 format. | [optional] |
13
+ | **metadata** | **String** | Metadata about the certificate | [optional] |
14
+ | **name** | **String** | Certificate name | |
15
+ | **tags** | **Array<String>** | List of the tags attached to this certificate | [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::CreateCertificate.new(
25
+ certificate_data: null,
26
+ delete_protection: null,
27
+ expiration_event_in: null,
28
+ json: null,
29
+ key: null,
30
+ key_data: null,
31
+ metadata: null,
32
+ name: null,
33
+ tags: null,
34
+ token: null,
35
+ uid_token: null
36
+ )
37
+ ```
38
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::CreateCertificateOutput
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::CreateCertificateOutput.new(
15
+ name: null
16
+ )
17
+ ```
18
+
@@ -0,0 +1,48 @@
1
+ # Akeyless::CreateEventForwarder
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **admin_name** | **String** | Workstation Admin Name | [optional] |
8
+ | **admin_pwd** | **String** | Workstation Admin password | [optional] |
9
+ | **comment** | **String** | Comment about the EventForwarder | [optional] |
10
+ | **email_to** | **String** | A comma seperated list of email addresses to send event to (relevant only for \\\"email\\\" Event Forwarder) | [optional] |
11
+ | **event_source_locations** | **Array<String>** | Event sources | |
12
+ | **event_source_type** | **String** | Event Source type [item, target] | [optional][default to 'item'] |
13
+ | **event_types** | **Array<String>** | Event types | [optional] |
14
+ | **every** | **String** | Rate of periodic runner repetition in hours | [optional] |
15
+ | **forwarder_type** | **String** | | |
16
+ | **host** | **String** | Workstation Host | [optional] |
17
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
18
+ | **key** | **String** | The name of a key that used to encrypt the EventForwarder secret value (if empty, the account default protectionKey key will be used) | [optional] |
19
+ | **name** | **String** | EventForwarder name | |
20
+ | **runner_type** | **String** | | |
21
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
22
+ | **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
23
+
24
+ ## Example
25
+
26
+ ```ruby
27
+ require 'akeyless'
28
+
29
+ instance = Akeyless::CreateEventForwarder.new(
30
+ admin_name: null,
31
+ admin_pwd: null,
32
+ comment: null,
33
+ email_to: null,
34
+ event_source_locations: null,
35
+ event_source_type: null,
36
+ event_types: null,
37
+ every: null,
38
+ forwarder_type: null,
39
+ host: null,
40
+ json: null,
41
+ key: null,
42
+ name: null,
43
+ runner_type: null,
44
+ token: null,
45
+ uid_token: null
46
+ )
47
+ ```
48
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::CreateEventForwarderOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **event_forwarder_id** | **Integer** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::CreateEventForwarderOutput.new(
15
+ event_forwarder_id: null
16
+ )
17
+ ```
18
+
@@ -12,6 +12,7 @@
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
+ | **gcp_key** | **String** | Base64-encoded service account private key text | [optional] |
15
16
  | **json** | **Boolean** | Set output format to JSON | [optional] |
16
17
  | **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] |
17
18
  | **metadata** | **String** | Metadata about the secret | [optional] |
@@ -60,6 +61,7 @@ instance = Akeyless::CreateRotatedSecret.new(
60
61
  aws_region: null,
61
62
  custom_payload: null,
62
63
  delete_protection: null,
64
+ gcp_key: null,
63
65
  json: null,
64
66
  key: null,
65
67
  metadata: null,
@@ -0,0 +1,24 @@
1
+ # Akeyless::DeleteEventForwarder
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::DeleteEventForwarder.new(
18
+ json: null,
19
+ name: null,
20
+ token: null,
21
+ uid_token: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,20 @@
1
+ # Akeyless::EmailEntry
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **to_email** | **String** | | [optional] |
8
+ | **to_name** | **String** | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'akeyless'
14
+
15
+ instance = Akeyless::EmailEntry.new(
16
+ to_email: null,
17
+ to_name: null
18
+ )
19
+ ```
20
+
data/docs/Extension.md ADDED
@@ -0,0 +1,22 @@
1
+ # Akeyless::Extension
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **critical** | **Boolean** | | [optional] |
8
+ | **name** | **String** | | [optional] |
9
+ | **value** | **String** | | [optional] |
10
+
11
+ ## Example
12
+
13
+ ```ruby
14
+ require 'akeyless'
15
+
16
+ instance = Akeyless::Extension.new(
17
+ critical: null,
18
+ name: null,
19
+ value: null
20
+ )
21
+ ```
22
+
@@ -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
  | **custom_payload** | **String** | | [optional] |
12
12
  | **delete_protection** | **String** | Protection from accidental deletion of this item | [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] |
@@ -39,6 +40,7 @@ instance = Akeyless::GatewayUpdateItem.new(
39
40
  auto_rotate: null,
40
41
  custom_payload: null,
41
42
  delete_protection: null,
43
+ gcp_key: null,
42
44
  json: null,
43
45
  keep_prev_version: null,
44
46
  key: null,
@@ -0,0 +1,26 @@
1
+ # Akeyless::GatewayUpdateTlsCert
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **cert_data** | **String** | TLS Certificate (base64 encoded) | [optional] |
8
+ | **json** | **Boolean** | Set output format to JSON | [optional] |
9
+ | **key_data** | **String** | TLS Private Key (base64 encoded) | [optional] |
10
+ | **token** | **String** | Authentication token (see `/auth` and `/configure`) | [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::GatewayUpdateTlsCert.new(
19
+ cert_data: null,
20
+ json: null,
21
+ key_data: null,
22
+ token: null,
23
+ uid_token: null
24
+ )
25
+ ```
26
+
@@ -0,0 +1,18 @@
1
+ # Akeyless::GatewayUpdateTlsCertOutput
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **updated** | **Boolean** | | [optional] |
8
+
9
+ ## Example
10
+
11
+ ```ruby
12
+ require 'akeyless'
13
+
14
+ instance = Akeyless::GatewayUpdateTlsCertOutput.new(
15
+ updated: null
16
+ )
17
+ ```
18
+