akeyless 5.0.6 → 5.0.7
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 +11 -1
- data/docs/AzureLogAnalyticsForwardingConfig.md +2 -0
- data/docs/CertificateTemplateInfo.md +2 -0
- data/docs/CreateClassicKey.md +3 -1
- data/docs/CreateDFCKey.md +3 -1
- data/docs/CreateKey.md +3 -1
- data/docs/GatewayUpdateLogForwardingAzureAnalytics.md +2 -0
- data/docs/GatewayUpdateLogForwardingSplunk.md +2 -0
- data/docs/GeminiTargetDetails.md +22 -0
- data/docs/GenerateCsr.md +2 -0
- data/docs/GwUpdateRemoteAccessSessionLogsAzureAnalytics.md +2 -0
- data/docs/GwUpdateRemoteAccessSessionLogsSplunk.md +2 -0
- data/docs/OpenAITargetDetails.md +26 -0
- data/docs/SplunkLogForwardingConfig.md +2 -0
- data/docs/StaticSecretSync.md +2 -0
- data/docs/TargetCreateGemini.md +36 -0
- data/docs/TargetCreateOpenAI.md +40 -0
- data/docs/TargetTypeDetailsInput.md +4 -0
- data/docs/TargetUpdateGemini.md +42 -0
- data/docs/TargetUpdateOpenAI.md +46 -0
- data/docs/V2Api.md +252 -0
- data/lib/akeyless/api/v2_api.rb +256 -0
- data/lib/akeyless/models/azure_log_analytics_forwarding_config.rb +10 -1
- data/lib/akeyless/models/certificate_template_info.rb +10 -1
- data/lib/akeyless/models/create_classic_key.rb +14 -2
- data/lib/akeyless/models/create_dfc_key.rb +14 -2
- data/lib/akeyless/models/create_key.rb +14 -2
- data/lib/akeyless/models/gateway_update_log_forwarding_azure_analytics.rb +13 -1
- data/lib/akeyless/models/gateway_update_log_forwarding_splunk.rb +13 -1
- data/lib/akeyless/models/gemini_target_details.rb +233 -0
- data/lib/akeyless/models/generate_csr.rb +13 -1
- data/lib/akeyless/models/gw_update_remote_access_session_logs_azure_analytics.rb +13 -1
- data/lib/akeyless/models/gw_update_remote_access_session_logs_splunk.rb +13 -1
- data/lib/akeyless/models/open_ai_target_details.rb +251 -0
- data/lib/akeyless/models/splunk_log_forwarding_config.rb +10 -1
- data/lib/akeyless/models/static_secret_sync.rb +11 -1
- data/lib/akeyless/models/target_create_gemini.rb +317 -0
- data/lib/akeyless/models/target_create_open_ai.rb +337 -0
- data/lib/akeyless/models/target_type_details_input.rb +19 -1
- data/lib/akeyless/models/target_update_gemini.rb +351 -0
- data/lib/akeyless/models/target_update_open_ai.rb +371 -0
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +6 -0
- data/spec/models/gemini_target_details_spec.rb +48 -0
- data/spec/models/open_ai_target_details_spec.rb +60 -0
- data/spec/models/target_create_gemini_spec.rb +90 -0
- data/spec/models/target_create_open_ai_spec.rb +102 -0
- data/spec/models/target_update_gemini_spec.rb +108 -0
- data/spec/models/target_update_open_ai_spec.rb +120 -0
- metadata +25 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc21c32dd323694cbad9217b9b2dfe65e256c2fa2034bc8b993dd8d5a4134f1a
|
4
|
+
data.tar.gz: b562622e17f812aec51c4599ab36c1eb5517138db83a3e5a190021445e5bfc5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 585ba827eb16abf3ec672e0bb5980594dbce6ff93da9327ad08856ce4aab1429bb512087602d79da937e97ced775df07df29b7ed5e55ef89bc3a4e6dc46f17e0
|
7
|
+
data.tar.gz: bb4b33e7495fd6b177a6dfc498967dcc9331c98452d044dd1a0cb2515ebffb0ef5d9ef4bbe23e605aa60855ff6533c6c58c7cbb165e2cbc6e931dddd34aa0fc7
|
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: 3.0
|
10
|
-
- Package version: 5.0.
|
10
|
+
- Package version: 5.0.7
|
11
11
|
- Generator version: 7.10.0
|
12
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
13
13
|
For more information, please visit [http://akeyless.io](http://akeyless.io)
|
@@ -503,6 +503,7 @@ Class | Method | HTTP request | Description
|
|
503
503
|
*Akeyless::V2Api* | [**target_create_dockerhub**](docs/V2Api.md#target_create_dockerhub) | **POST** /target-create-dockerhub |
|
504
504
|
*Akeyless::V2Api* | [**target_create_eks**](docs/V2Api.md#target_create_eks) | **POST** /target-create-eks |
|
505
505
|
*Akeyless::V2Api* | [**target_create_gcp**](docs/V2Api.md#target_create_gcp) | **POST** /target-create-gcp |
|
506
|
+
*Akeyless::V2Api* | [**target_create_gemini**](docs/V2Api.md#target_create_gemini) | **POST** /target-create-gemini |
|
506
507
|
*Akeyless::V2Api* | [**target_create_github**](docs/V2Api.md#target_create_github) | **POST** /target-create-github |
|
507
508
|
*Akeyless::V2Api* | [**target_create_gitlab**](docs/V2Api.md#target_create_gitlab) | **POST** /target-create-gitlab |
|
508
509
|
*Akeyless::V2Api* | [**target_create_gke**](docs/V2Api.md#target_create_gke) | **POST** /target-create-gke |
|
@@ -513,6 +514,7 @@ Class | Method | HTTP request | Description
|
|
513
514
|
*Akeyless::V2Api* | [**target_create_k8s**](docs/V2Api.md#target_create_k8s) | **POST** /target-create-k8s |
|
514
515
|
*Akeyless::V2Api* | [**target_create_ldap**](docs/V2Api.md#target_create_ldap) | **POST** /target-create-ldap |
|
515
516
|
*Akeyless::V2Api* | [**target_create_linked**](docs/V2Api.md#target_create_linked) | **POST** /target-create-linked |
|
517
|
+
*Akeyless::V2Api* | [**target_create_open_ai**](docs/V2Api.md#target_create_open_ai) | **POST** /target-create-openai |
|
516
518
|
*Akeyless::V2Api* | [**target_create_ping**](docs/V2Api.md#target_create_ping) | **POST** /target-create-ping |
|
517
519
|
*Akeyless::V2Api* | [**target_create_rabbit_mq**](docs/V2Api.md#target_create_rabbit_mq) | **POST** /target-create-rabbitmq |
|
518
520
|
*Akeyless::V2Api* | [**target_create_salesforce**](docs/V2Api.md#target_create_salesforce) | **POST** /target-create-salesforce |
|
@@ -532,6 +534,7 @@ Class | Method | HTTP request | Description
|
|
532
534
|
*Akeyless::V2Api* | [**target_update_dockerhub**](docs/V2Api.md#target_update_dockerhub) | **POST** /target-update-dockerhub |
|
533
535
|
*Akeyless::V2Api* | [**target_update_eks**](docs/V2Api.md#target_update_eks) | **POST** /target-update-eks |
|
534
536
|
*Akeyless::V2Api* | [**target_update_gcp**](docs/V2Api.md#target_update_gcp) | **POST** /target-update-gcp |
|
537
|
+
*Akeyless::V2Api* | [**target_update_gemini**](docs/V2Api.md#target_update_gemini) | **POST** /target-update-gemini |
|
535
538
|
*Akeyless::V2Api* | [**target_update_github**](docs/V2Api.md#target_update_github) | **POST** /target-update-github |
|
536
539
|
*Akeyless::V2Api* | [**target_update_gitlab**](docs/V2Api.md#target_update_gitlab) | **POST** /target-update-gitlab |
|
537
540
|
*Akeyless::V2Api* | [**target_update_gke**](docs/V2Api.md#target_update_gke) | **POST** /target-update-gke |
|
@@ -542,6 +545,7 @@ Class | Method | HTTP request | Description
|
|
542
545
|
*Akeyless::V2Api* | [**target_update_k8s**](docs/V2Api.md#target_update_k8s) | **POST** /target-update-k8s |
|
543
546
|
*Akeyless::V2Api* | [**target_update_ldap**](docs/V2Api.md#target_update_ldap) | **POST** /target-update-ldap |
|
544
547
|
*Akeyless::V2Api* | [**target_update_linked**](docs/V2Api.md#target_update_linked) | **POST** /target-update-linked |
|
548
|
+
*Akeyless::V2Api* | [**target_update_open_ai**](docs/V2Api.md#target_update_open_ai) | **POST** /target-update-openai |
|
545
549
|
*Akeyless::V2Api* | [**target_update_ping**](docs/V2Api.md#target_update_ping) | **POST** /target-update-ping |
|
546
550
|
*Akeyless::V2Api* | [**target_update_rabbit_mq**](docs/V2Api.md#target_update_rabbit_mq) | **POST** /target-update-rabbitmq |
|
547
551
|
*Akeyless::V2Api* | [**target_update_salesforce**](docs/V2Api.md#target_update_salesforce) | **POST** /target-update-salesforce |
|
@@ -1213,6 +1217,7 @@ Class | Method | HTTP request | Description
|
|
1213
1217
|
- [Akeyless::GatewayUpdateTmpUsers](docs/GatewayUpdateTmpUsers.md)
|
1214
1218
|
- [Akeyless::GatewaysListResponse](docs/GatewaysListResponse.md)
|
1215
1219
|
- [Akeyless::GcpTargetDetails](docs/GcpTargetDetails.md)
|
1220
|
+
- [Akeyless::GeminiTargetDetails](docs/GeminiTargetDetails.md)
|
1216
1221
|
- [Akeyless::GenCustomerFragment](docs/GenCustomerFragment.md)
|
1217
1222
|
- [Akeyless::GeneralConfigPart](docs/GeneralConfigPart.md)
|
1218
1223
|
- [Akeyless::GenerateAcmeEab](docs/GenerateAcmeEab.md)
|
@@ -1382,6 +1387,7 @@ Class | Method | HTTP request | Description
|
|
1382
1387
|
- [Akeyless::OidcClientInfo](docs/OidcClientInfo.md)
|
1383
1388
|
- [Akeyless::OnePasswordMigration](docs/OnePasswordMigration.md)
|
1384
1389
|
- [Akeyless::OnePasswordPayload](docs/OnePasswordPayload.md)
|
1390
|
+
- [Akeyless::OpenAITargetDetails](docs/OpenAITargetDetails.md)
|
1385
1391
|
- [Akeyless::PKICertificateIssueDetails](docs/PKICertificateIssueDetails.md)
|
1386
1392
|
- [Akeyless::PasswordBreachInfo](docs/PasswordBreachInfo.md)
|
1387
1393
|
- [Akeyless::PasswordExpirationInfo](docs/PasswordExpirationInfo.md)
|
@@ -1530,6 +1536,7 @@ Class | Method | HTTP request | Description
|
|
1530
1536
|
- [Akeyless::TargetCreateDockerhub](docs/TargetCreateDockerhub.md)
|
1531
1537
|
- [Akeyless::TargetCreateEks](docs/TargetCreateEks.md)
|
1532
1538
|
- [Akeyless::TargetCreateGcp](docs/TargetCreateGcp.md)
|
1539
|
+
- [Akeyless::TargetCreateGemini](docs/TargetCreateGemini.md)
|
1533
1540
|
- [Akeyless::TargetCreateGithub](docs/TargetCreateGithub.md)
|
1534
1541
|
- [Akeyless::TargetCreateGitlab](docs/TargetCreateGitlab.md)
|
1535
1542
|
- [Akeyless::TargetCreateGke](docs/TargetCreateGke.md)
|
@@ -1540,6 +1547,7 @@ Class | Method | HTTP request | Description
|
|
1540
1547
|
- [Akeyless::TargetCreateK8s](docs/TargetCreateK8s.md)
|
1541
1548
|
- [Akeyless::TargetCreateLdap](docs/TargetCreateLdap.md)
|
1542
1549
|
- [Akeyless::TargetCreateLinked](docs/TargetCreateLinked.md)
|
1550
|
+
- [Akeyless::TargetCreateOpenAI](docs/TargetCreateOpenAI.md)
|
1543
1551
|
- [Akeyless::TargetCreateOutput](docs/TargetCreateOutput.md)
|
1544
1552
|
- [Akeyless::TargetCreatePing](docs/TargetCreatePing.md)
|
1545
1553
|
- [Akeyless::TargetCreateRabbitMq](docs/TargetCreateRabbitMq.md)
|
@@ -1564,6 +1572,7 @@ Class | Method | HTTP request | Description
|
|
1564
1572
|
- [Akeyless::TargetUpdateDockerhub](docs/TargetUpdateDockerhub.md)
|
1565
1573
|
- [Akeyless::TargetUpdateEks](docs/TargetUpdateEks.md)
|
1566
1574
|
- [Akeyless::TargetUpdateGcp](docs/TargetUpdateGcp.md)
|
1575
|
+
- [Akeyless::TargetUpdateGemini](docs/TargetUpdateGemini.md)
|
1567
1576
|
- [Akeyless::TargetUpdateGithub](docs/TargetUpdateGithub.md)
|
1568
1577
|
- [Akeyless::TargetUpdateGitlab](docs/TargetUpdateGitlab.md)
|
1569
1578
|
- [Akeyless::TargetUpdateGke](docs/TargetUpdateGke.md)
|
@@ -1574,6 +1583,7 @@ Class | Method | HTTP request | Description
|
|
1574
1583
|
- [Akeyless::TargetUpdateK8s](docs/TargetUpdateK8s.md)
|
1575
1584
|
- [Akeyless::TargetUpdateLdap](docs/TargetUpdateLdap.md)
|
1576
1585
|
- [Akeyless::TargetUpdateLinked](docs/TargetUpdateLinked.md)
|
1586
|
+
- [Akeyless::TargetUpdateOpenAI](docs/TargetUpdateOpenAI.md)
|
1577
1587
|
- [Akeyless::TargetUpdateOutput](docs/TargetUpdateOutput.md)
|
1578
1588
|
- [Akeyless::TargetUpdatePing](docs/TargetUpdatePing.md)
|
1579
1589
|
- [Akeyless::TargetUpdateRabbitMq](docs/TargetUpdateRabbitMq.md)
|
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **azure_enable_batch** | **String** | | [optional] |
|
7
8
|
| **azure_workspace_id** | **String** | | [optional] |
|
8
9
|
| **azure_workspace_key** | **String** | | [optional] |
|
9
10
|
|
@@ -13,6 +14,7 @@
|
|
13
14
|
require 'akeyless'
|
14
15
|
|
15
16
|
instance = Akeyless::AzureLogAnalyticsForwardingConfig.new(
|
17
|
+
azure_enable_batch: null,
|
16
18
|
azure_workspace_id: null,
|
17
19
|
azure_workspace_key: null
|
18
20
|
)
|
@@ -8,6 +8,7 @@
|
|
8
8
|
| **country** | **String** | | [optional] |
|
9
9
|
| **csr_cnf_base_64** | **String** | | [optional] |
|
10
10
|
| **digest_algo** | **String** | | [optional] |
|
11
|
+
| **hash_algorithm** | **String** | | [optional] |
|
11
12
|
| **locality** | **String** | | [optional] |
|
12
13
|
| **organization** | **String** | | [optional] |
|
13
14
|
| **province** | **String** | | [optional] |
|
@@ -24,6 +25,7 @@ instance = Akeyless::CertificateTemplateInfo.new(
|
|
24
25
|
country: null,
|
25
26
|
csr_cnf_base_64: null,
|
26
27
|
digest_algo: null,
|
28
|
+
hash_algorithm: null,
|
27
29
|
locality: null,
|
28
30
|
organization: null,
|
29
31
|
province: null,
|
data/docs/CreateClassicKey.md
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
| **cert_file_data** | **String** | Certificate in a PEM format. | [optional] |
|
10
10
|
| **certificate_common_name** | **String** | Common name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
11
11
|
| **certificate_country** | **String** | Country name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
12
|
-
| **certificate_digest_algo** | **String** | Digest algorithm to be used for the certificate key signing.
|
12
|
+
| **certificate_digest_algo** | **String** | Digest algorithm to be used for the certificate key signing. | [optional] |
|
13
13
|
| **certificate_format** | **String** | | [optional] |
|
14
14
|
| **certificate_locality** | **String** | Locality for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
15
15
|
| **certificate_organization** | **String** | Organization name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
@@ -21,6 +21,7 @@
|
|
21
21
|
| **expiration_event_in** | **Array<String>** | How many days before the expiration of the certificate would you like to be notified. | [optional] |
|
22
22
|
| **generate_self_signed_certificate** | **Boolean** | Whether to generate a self signed certificate with the key. If set, --certificate-ttl must be provided. | [optional] |
|
23
23
|
| **gpg_alg** | **String** | gpg alg: Relevant only if GPG key type selected; options: [RSA1024, RSA2048, RSA3072, RSA4096, Ed25519] | [optional] |
|
24
|
+
| **hash_algorithm** | **String** | Specifies the hash algorithm used for the encryption key's operations, available options: [SHA256, SHA384, SHA512] | [optional][default to 'SHA256'] |
|
24
25
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
25
26
|
| **key_data** | **String** | Base64-encoded classic key value | [optional] |
|
26
27
|
| **metadata** | **String** | Deprecated - use description | [optional] |
|
@@ -55,6 +56,7 @@ instance = Akeyless::CreateClassicKey.new(
|
|
55
56
|
expiration_event_in: null,
|
56
57
|
generate_self_signed_certificate: null,
|
57
58
|
gpg_alg: null,
|
59
|
+
hash_algorithm: null,
|
58
60
|
json: null,
|
59
61
|
key_data: null,
|
60
62
|
metadata: null,
|
data/docs/CreateDFCKey.md
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
| **auto_rotate** | **String** | Whether to automatically rotate every rotation_interval days, or disable existing automatic rotation [true/false] | [optional] |
|
9
9
|
| **certificate_common_name** | **String** | Common name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
10
10
|
| **certificate_country** | **String** | Country name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
11
|
-
| **certificate_digest_algo** | **String** | Digest algorithm to be used for the certificate key signing.
|
11
|
+
| **certificate_digest_algo** | **String** | Digest algorithm to be used for the certificate key signing. | [optional] |
|
12
12
|
| **certificate_format** | **String** | | [optional] |
|
13
13
|
| **certificate_locality** | **String** | Locality for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
14
14
|
| **certificate_organization** | **String** | Organization name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
@@ -20,6 +20,7 @@
|
|
20
20
|
| **description** | **String** | Description of the object | [optional] |
|
21
21
|
| **expiration_event_in** | **Array<String>** | How many days before the expiration of the certificate would you like to be notified. | [optional] |
|
22
22
|
| **generate_self_signed_certificate** | **Boolean** | Whether to generate a self signed certificate with the key. If set, --certificate-ttl must be provided. | [optional] |
|
23
|
+
| **hash_algorithm** | **String** | Specifies the hash algorithm used for the encryption key's operations, available options: [SHA256, SHA384, SHA512] | [optional][default to 'SHA256'] |
|
23
24
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
24
25
|
| **metadata** | **String** | Deprecated - use description | [optional] |
|
25
26
|
| **name** | **String** | DFCKey name | |
|
@@ -52,6 +53,7 @@ instance = Akeyless::CreateDFCKey.new(
|
|
52
53
|
description: null,
|
53
54
|
expiration_event_in: null,
|
54
55
|
generate_self_signed_certificate: null,
|
56
|
+
hash_algorithm: null,
|
55
57
|
json: null,
|
56
58
|
metadata: null,
|
57
59
|
name: null,
|
data/docs/CreateKey.md
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
| **alg** | **String** | Key type; options: [AES128GCM, AES256GCM, AES128SIV, AES256SIV, AES128CBC, AES256CBC, RSA1024, RSA2048, RSA3072, RSA4096] | |
|
8
8
|
| **certificate_common_name** | **String** | Common name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
9
9
|
| **certificate_country** | **String** | Country name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
10
|
-
| **certificate_digest_algo** | **String** | Digest algorithm to be used for the certificate key signing.
|
10
|
+
| **certificate_digest_algo** | **String** | Digest algorithm to be used for the certificate key signing. | [optional] |
|
11
11
|
| **certificate_locality** | **String** | Locality for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
12
12
|
| **certificate_organization** | **String** | Organization name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
13
13
|
| **certificate_province** | **String** | Province name for the generated certificate. Relevant only for generate-self-signed-certificate. | [optional] |
|
@@ -17,6 +17,7 @@
|
|
17
17
|
| **delete_protection** | **String** | Protection from accidental deletion of this object [true/false] | [optional] |
|
18
18
|
| **description** | **String** | Description of the object | [optional] |
|
19
19
|
| **generate_self_signed_certificate** | **Boolean** | Whether to generate a self signed certificate with the key. If set, --certificate-ttl must be provided. | [optional] |
|
20
|
+
| **hash_algorithm** | **String** | Specifies the hash algorithm used for the encryption key's operations, available options: [SHA256, SHA384, SHA512] | [optional][default to 'SHA256'] |
|
20
21
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
21
22
|
| **metadata** | **String** | Deprecated - use description | [optional] |
|
22
23
|
| **name** | **String** | Key name | |
|
@@ -44,6 +45,7 @@ instance = Akeyless::CreateKey.new(
|
|
44
45
|
delete_protection: null,
|
45
46
|
description: null,
|
46
47
|
generate_self_signed_certificate: null,
|
48
|
+
hash_algorithm: null,
|
47
49
|
json: null,
|
48
50
|
metadata: null,
|
49
51
|
name: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **enable** | **String** | Enable Log Forwarding [true/false] | [optional][default to 'true'] |
|
8
|
+
| **enable_batch** | **String** | Enable batch forwarding [true/false] | [optional][default to 'true'] |
|
8
9
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
9
10
|
| **output_format** | **String** | Logs format [text/json] | [optional][default to 'text'] |
|
10
11
|
| **pull_interval** | **String** | Pull interval in seconds | [optional][default to '10'] |
|
@@ -20,6 +21,7 @@ require 'akeyless'
|
|
20
21
|
|
21
22
|
instance = Akeyless::GatewayUpdateLogForwardingAzureAnalytics.new(
|
22
23
|
enable: null,
|
24
|
+
enable_batch: null,
|
23
25
|
json: null,
|
24
26
|
output_format: null,
|
25
27
|
pull_interval: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **enable** | **String** | Enable Log Forwarding [true/false] | [optional][default to 'true'] |
|
8
|
+
| **enable_batch** | **String** | Enable batch forwarding [true/false] | [optional][default to 'true'] |
|
8
9
|
| **enable_tls** | **Boolean** | Enable tls | [optional] |
|
9
10
|
| **index** | **String** | Splunk index | [optional] |
|
10
11
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
@@ -25,6 +26,7 @@ require 'akeyless'
|
|
25
26
|
|
26
27
|
instance = Akeyless::GatewayUpdateLogForwardingSplunk.new(
|
27
28
|
enable: null,
|
29
|
+
enable_batch: null,
|
28
30
|
enable_tls: null,
|
29
31
|
index: null,
|
30
32
|
json: null,
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# Akeyless::GeminiTargetDetails
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **api_key** | **String** | | [optional] |
|
8
|
+
| **base_url** | **String** | | [optional] |
|
9
|
+
| **model** | **String** | | [optional] |
|
10
|
+
|
11
|
+
## Example
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
require 'akeyless'
|
15
|
+
|
16
|
+
instance = Akeyless::GeminiTargetDetails.new(
|
17
|
+
api_key: null,
|
18
|
+
base_url: null,
|
19
|
+
model: null
|
20
|
+
)
|
21
|
+
```
|
22
|
+
|
data/docs/GenerateCsr.md
CHANGED
@@ -15,6 +15,7 @@
|
|
15
15
|
| **email_addresses** | **String** | A comma-separated list of email addresses alternative names | [optional] |
|
16
16
|
| **export_private_key** | **Boolean** | The flag to indicate if the private key should be exported | [optional][default to false] |
|
17
17
|
| **generate_key** | **Boolean** | Generate a new classic key for the csr | [optional] |
|
18
|
+
| **hash_algorithm** | **String** | Specifies the hash algorithm used for the encryption key's operations, available options: SHA256, SHA384, SHA512 | [optional][default to 'SHA256'] |
|
18
19
|
| **ip_addresses** | **String** | A comma-separated list of ip addresses alternative names | [optional] |
|
19
20
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
20
21
|
| **key_type** | **String** | The type of the key to generate (classic-key/dfc) | [default to 'classic-key'] |
|
@@ -43,6 +44,7 @@ instance = Akeyless::GenerateCsr.new(
|
|
43
44
|
email_addresses: null,
|
44
45
|
export_private_key: null,
|
45
46
|
generate_key: null,
|
47
|
+
hash_algorithm: null,
|
46
48
|
ip_addresses: null,
|
47
49
|
json: null,
|
48
50
|
key_type: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **enable** | **String** | Enable Log Forwarding [true/false] | [optional][default to 'true'] |
|
8
|
+
| **enable_batch** | **String** | Enable batch forwarding [true/false] | [optional][default to 'true'] |
|
8
9
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
9
10
|
| **output_format** | **String** | Logs format [text/json] | [optional][default to 'text'] |
|
10
11
|
| **pull_interval** | **String** | Pull interval in seconds | [optional][default to '10'] |
|
@@ -20,6 +21,7 @@ require 'akeyless'
|
|
20
21
|
|
21
22
|
instance = Akeyless::GwUpdateRemoteAccessSessionLogsAzureAnalytics.new(
|
22
23
|
enable: null,
|
24
|
+
enable_batch: null,
|
23
25
|
json: null,
|
24
26
|
output_format: null,
|
25
27
|
pull_interval: null,
|
@@ -5,6 +5,7 @@
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
7
|
| **enable** | **String** | Enable Log Forwarding [true/false] | [optional][default to 'true'] |
|
8
|
+
| **enable_batch** | **String** | Enable batch forwarding [true/false] | [optional][default to 'true'] |
|
8
9
|
| **enable_tls** | **Boolean** | Enable tls | [optional] |
|
9
10
|
| **index** | **String** | Splunk index | [optional] |
|
10
11
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
@@ -25,6 +26,7 @@ require 'akeyless'
|
|
25
26
|
|
26
27
|
instance = Akeyless::GwUpdateRemoteAccessSessionLogsSplunk.new(
|
27
28
|
enable: null,
|
29
|
+
enable_batch: null,
|
28
30
|
enable_tls: null,
|
29
31
|
index: null,
|
30
32
|
json: null,
|
@@ -0,0 +1,26 @@
|
|
1
|
+
# Akeyless::OpenAITargetDetails
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **api_key** | **String** | | [optional] |
|
8
|
+
| **api_key_id** | **String** | | [optional] |
|
9
|
+
| **base_url** | **String** | | [optional] |
|
10
|
+
| **model** | **String** | | [optional] |
|
11
|
+
| **organization_id** | **String** | | [optional] |
|
12
|
+
|
13
|
+
## Example
|
14
|
+
|
15
|
+
```ruby
|
16
|
+
require 'akeyless'
|
17
|
+
|
18
|
+
instance = Akeyless::OpenAITargetDetails.new(
|
19
|
+
api_key: null,
|
20
|
+
api_key_id: null,
|
21
|
+
base_url: null,
|
22
|
+
model: null,
|
23
|
+
organization_id: null
|
24
|
+
)
|
25
|
+
```
|
26
|
+
|
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **splunk_enable_batch** | **String** | | [optional] |
|
7
8
|
| **splunk_enable_tls** | **Boolean** | | [optional] |
|
8
9
|
| **splunk_index** | **String** | | [optional] |
|
9
10
|
| **splunk_source** | **String** | | [optional] |
|
@@ -18,6 +19,7 @@
|
|
18
19
|
require 'akeyless'
|
19
20
|
|
20
21
|
instance = Akeyless::SplunkLogForwardingConfig.new(
|
22
|
+
splunk_enable_batch: null,
|
21
23
|
splunk_enable_tls: null,
|
22
24
|
splunk_index: null,
|
23
25
|
splunk_source: null,
|
data/docs/StaticSecretSync.md
CHANGED
@@ -4,6 +4,7 @@
|
|
4
4
|
|
5
5
|
| Name | Type | Description | Notes |
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **filter_secret_value** | **String** | JQ expression to filter or transform the secret value | [optional] |
|
7
8
|
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
8
9
|
| **name** | **String** | Static secret name | |
|
9
10
|
| **namespace** | **String** | Vault namespace, releavnt only for Hashicorp Vault Target | [optional] |
|
@@ -18,6 +19,7 @@
|
|
18
19
|
require 'akeyless'
|
19
20
|
|
20
21
|
instance = Akeyless::StaticSecretSync.new(
|
22
|
+
filter_secret_value: null,
|
21
23
|
json: null,
|
22
24
|
name: null,
|
23
25
|
namespace: null,
|
@@ -0,0 +1,36 @@
|
|
1
|
+
# Akeyless::TargetCreateGemini
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **api_key** | **String** | API key for Gemini | [optional] |
|
8
|
+
| **description** | **String** | Description of the object | [optional] |
|
9
|
+
| **gemini_url** | **String** | Base URL of the Gemini API | [optional][default to 'https://generativelanguage.googleapis.com'] |
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
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
|
+
| **max_versions** | **String** | Set the maximum number of versions, limited by the account settings defaults. | [optional] |
|
13
|
+
| **model** | **String** | Default model to use with Gemini | [optional] |
|
14
|
+
| **name** | **String** | Target name | |
|
15
|
+
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
16
|
+
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
|
17
|
+
|
18
|
+
## Example
|
19
|
+
|
20
|
+
```ruby
|
21
|
+
require 'akeyless'
|
22
|
+
|
23
|
+
instance = Akeyless::TargetCreateGemini.new(
|
24
|
+
api_key: null,
|
25
|
+
description: null,
|
26
|
+
gemini_url: null,
|
27
|
+
json: null,
|
28
|
+
key: null,
|
29
|
+
max_versions: null,
|
30
|
+
model: null,
|
31
|
+
name: null,
|
32
|
+
token: null,
|
33
|
+
uid_token: null
|
34
|
+
)
|
35
|
+
```
|
36
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
# Akeyless::TargetCreateOpenAI
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **api_key** | **String** | API key for OpenAI | [optional] |
|
8
|
+
| **api_key_id** | **String** | API key ID | [optional] |
|
9
|
+
| **description** | **String** | Description of the object | [optional] |
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
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
|
+
| **max_versions** | **String** | Set the maximum number of versions, limited by the account settings defaults. | [optional] |
|
13
|
+
| **model** | **String** | Default model to use with OpenAI | [optional] |
|
14
|
+
| **name** | **String** | Target name | |
|
15
|
+
| **openai_url** | **String** | Base URL of the OpenAI API | [optional][default to 'https://api.openai.com/v1'] |
|
16
|
+
| **organization_id** | **String** | Organization ID | [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::TargetCreateOpenAI.new(
|
26
|
+
api_key: null,
|
27
|
+
api_key_id: null,
|
28
|
+
description: null,
|
29
|
+
json: null,
|
30
|
+
key: null,
|
31
|
+
max_versions: null,
|
32
|
+
model: null,
|
33
|
+
name: null,
|
34
|
+
openai_url: null,
|
35
|
+
organization_id: null,
|
36
|
+
token: null,
|
37
|
+
uid_token: null
|
38
|
+
)
|
39
|
+
```
|
40
|
+
|
@@ -13,6 +13,7 @@
|
|
13
13
|
| **dockerhub_target_details** | [**DockerhubTargetDetails**](DockerhubTargetDetails.md) | | [optional] |
|
14
14
|
| **eks_target_details** | [**EKSTargetDetails**](EKSTargetDetails.md) | | [optional] |
|
15
15
|
| **gcp_target_details** | [**GcpTargetDetails**](GcpTargetDetails.md) | | [optional] |
|
16
|
+
| **gemini_target_details** | [**GeminiTargetDetails**](GeminiTargetDetails.md) | | [optional] |
|
16
17
|
| **github_target_details** | [**GithubTargetDetails**](GithubTargetDetails.md) | | [optional] |
|
17
18
|
| **gitlab_target_details** | [**GitlabTargetDetails**](GitlabTargetDetails.md) | | [optional] |
|
18
19
|
| **gke_target_details** | [**GKETargetDetails**](GKETargetDetails.md) | | [optional] |
|
@@ -24,6 +25,7 @@
|
|
24
25
|
| **linked_target_details** | [**LinkedTargetDetails**](LinkedTargetDetails.md) | | [optional] |
|
25
26
|
| **mongo_db_target_details** | [**MongoDBTargetDetails**](MongoDBTargetDetails.md) | | [optional] |
|
26
27
|
| **native_k8s_target_details** | [**NativeK8sTargetDetails**](NativeK8sTargetDetails.md) | | [optional] |
|
28
|
+
| **openai_target_details** | [**OpenAITargetDetails**](OpenAITargetDetails.md) | | [optional] |
|
27
29
|
| **ping_target_details** | [**PingTargetDetails**](PingTargetDetails.md) | | [optional] |
|
28
30
|
| **rabbit_mq_target_details** | [**RabbitMQTargetDetails**](RabbitMQTargetDetails.md) | | [optional] |
|
29
31
|
| **salesforce_target_details** | [**SalesforceTargetDetails**](SalesforceTargetDetails.md) | | [optional] |
|
@@ -49,6 +51,7 @@ instance = Akeyless::TargetTypeDetailsInput.new(
|
|
49
51
|
dockerhub_target_details: null,
|
50
52
|
eks_target_details: null,
|
51
53
|
gcp_target_details: null,
|
54
|
+
gemini_target_details: null,
|
52
55
|
github_target_details: null,
|
53
56
|
gitlab_target_details: null,
|
54
57
|
gke_target_details: null,
|
@@ -60,6 +63,7 @@ instance = Akeyless::TargetTypeDetailsInput.new(
|
|
60
63
|
linked_target_details: null,
|
61
64
|
mongo_db_target_details: null,
|
62
65
|
native_k8s_target_details: null,
|
66
|
+
openai_target_details: null,
|
63
67
|
ping_target_details: null,
|
64
68
|
rabbit_mq_target_details: null,
|
65
69
|
salesforce_target_details: null,
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# Akeyless::TargetUpdateGemini
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **api_key** | **String** | API key for Gemini | [optional] |
|
8
|
+
| **description** | **String** | Description of the object | [optional][default to 'default_comment'] |
|
9
|
+
| **gemini_url** | **String** | Base URL of the Gemini API | [optional][default to 'https://generativelanguage.googleapis.com'] |
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
11
|
+
| **keep_prev_version** | **String** | Whether to keep previous version [true/false]. If not set, use default according to account settings | [optional] |
|
12
|
+
| **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] |
|
13
|
+
| **max_versions** | **String** | Set the maximum number of versions, limited by the account settings defaults. | [optional] |
|
14
|
+
| **model** | **String** | Default model to use with Gemini | [optional] |
|
15
|
+
| **name** | **String** | Target name | |
|
16
|
+
| **new_comment** | **String** | Deprecated - use description | [optional][default to 'default_comment'] |
|
17
|
+
| **new_name** | **String** | New target name | [optional] |
|
18
|
+
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [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::TargetUpdateGemini.new(
|
27
|
+
api_key: null,
|
28
|
+
description: null,
|
29
|
+
gemini_url: null,
|
30
|
+
json: null,
|
31
|
+
keep_prev_version: null,
|
32
|
+
key: null,
|
33
|
+
max_versions: null,
|
34
|
+
model: null,
|
35
|
+
name: null,
|
36
|
+
new_comment: null,
|
37
|
+
new_name: null,
|
38
|
+
token: null,
|
39
|
+
uid_token: null
|
40
|
+
)
|
41
|
+
```
|
42
|
+
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# Akeyless::TargetUpdateOpenAI
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **api_key** | **String** | API key for OpenAI | [optional] |
|
8
|
+
| **api_key_id** | **String** | API key ID | [optional] |
|
9
|
+
| **description** | **String** | Description of the object | [optional][default to 'default_comment'] |
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
11
|
+
| **keep_prev_version** | **String** | Whether to keep previous version [true/false]. If not set, use default according to account settings | [optional] |
|
12
|
+
| **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] |
|
13
|
+
| **max_versions** | **String** | Set the maximum number of versions, limited by the account settings defaults. | [optional] |
|
14
|
+
| **model** | **String** | Default model to use with OpenAI | [optional] |
|
15
|
+
| **name** | **String** | Target name | |
|
16
|
+
| **new_comment** | **String** | Deprecated - use description | [optional][default to 'default_comment'] |
|
17
|
+
| **new_name** | **String** | New target name | [optional] |
|
18
|
+
| **openai_url** | **String** | Base URL of the OpenAI API | [optional][default to 'https://api.openai.com/v1'] |
|
19
|
+
| **organization_id** | **String** | Organization ID | [optional] |
|
20
|
+
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [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::TargetUpdateOpenAI.new(
|
29
|
+
api_key: null,
|
30
|
+
api_key_id: null,
|
31
|
+
description: null,
|
32
|
+
json: null,
|
33
|
+
keep_prev_version: null,
|
34
|
+
key: null,
|
35
|
+
max_versions: null,
|
36
|
+
model: null,
|
37
|
+
name: null,
|
38
|
+
new_comment: null,
|
39
|
+
new_name: null,
|
40
|
+
openai_url: null,
|
41
|
+
organization_id: null,
|
42
|
+
token: null,
|
43
|
+
uid_token: null
|
44
|
+
)
|
45
|
+
```
|
46
|
+
|