akeyless 5.0.8 → 5.0.9
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 +9 -1
- data/docs/DSProducerDetails.md +10 -0
- data/docs/DynamicSecretCreateOpenAI.md +40 -0
- data/docs/DynamicSecretUpdateOpenAI.md +42 -0
- data/docs/EsmGetSecretOutput.md +2 -0
- data/docs/EventForwarderCreateTeams.md +44 -0
- data/docs/EventForwarderUpdateTeams.md +46 -0
- data/docs/NotiForwarder.md +2 -0
- data/docs/OpenAITargetDetails.md +3 -3
- data/docs/SecretInfo.md +2 -0
- data/docs/UscCreate.md +2 -0
- data/docs/UscGetSecretOutput.md +2 -0
- data/docs/UscUpdate.md +2 -0
- data/docs/V2Api.md +252 -0
- data/lib/akeyless/api/v2_api.rb +256 -0
- data/lib/akeyless/models/ds_producer_details.rb +46 -1
- data/lib/akeyless/models/dynamic_secret_create_open_ai.rb +339 -0
- data/lib/akeyless/models/dynamic_secret_update_open_ai.rb +349 -0
- data/lib/akeyless/models/esm_get_secret_output.rb +10 -1
- data/lib/akeyless/models/event_forwarder_create_teams.rb +385 -0
- data/lib/akeyless/models/event_forwarder_update_teams.rb +391 -0
- data/lib/akeyless/models/noti_forwarder.rb +10 -1
- data/lib/akeyless/models/open_ai_target_details.rb +13 -13
- data/lib/akeyless/models/secret_info.rb +10 -1
- data/lib/akeyless/models/usc_create.rb +11 -1
- data/lib/akeyless/models/usc_get_secret_output.rb +10 -1
- data/lib/akeyless/models/usc_update.rb +11 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +4 -0
- data/spec/models/dynamic_secret_create_open_ai_spec.rb +102 -0
- data/spec/models/dynamic_secret_update_open_ai_spec.rb +108 -0
- data/spec/models/event_forwarder_create_teams_spec.rb +114 -0
- data/spec/models/event_forwarder_update_teams_spec.rb +120 -0
- metadata +17 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 258019c17a037f4390deebe69637b27931bbc10e4da0b7c812ae2ff012fb048b
|
|
4
|
+
data.tar.gz: 85abc07e889750d84290f7a75be4eabd5bf7954c4d544195d5f520df172ca8ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1baefcb014271eec3926409d3c526cfdcc35c72e85b2c0a4da1f5f711549b814e3a3025e41f7d2e822952f14c5b3395c5d473d6f2d64413ca42028616b1ecdaa
|
|
7
|
+
data.tar.gz: 93732203e015f2de4826cdd824f47045c370f5a727adc9e52379b94148c92a93d3f1516064e00fa36bead13750ac86c493e741b0641cdee1cc51a124bd6bee8a
|
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.9
|
|
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)
|
|
@@ -201,6 +201,7 @@ Class | Method | HTTP request | Description
|
|
|
201
201
|
*Akeyless::V2Api* | [**dynamic_secret_create_mongo_db**](docs/V2Api.md#dynamic_secret_create_mongo_db) | **POST** /dynamic-secret-create-mongodb |
|
|
202
202
|
*Akeyless::V2Api* | [**dynamic_secret_create_ms_sql**](docs/V2Api.md#dynamic_secret_create_ms_sql) | **POST** /dynamic-secret-create-mssql |
|
|
203
203
|
*Akeyless::V2Api* | [**dynamic_secret_create_my_sql**](docs/V2Api.md#dynamic_secret_create_my_sql) | **POST** /dynamic-secret-create-mysql |
|
|
204
|
+
*Akeyless::V2Api* | [**dynamic_secret_create_open_ai**](docs/V2Api.md#dynamic_secret_create_open_ai) | **POST** /dynamic-secret-create-openai |
|
|
204
205
|
*Akeyless::V2Api* | [**dynamic_secret_create_oracle_db**](docs/V2Api.md#dynamic_secret_create_oracle_db) | **POST** /dynamic-secret-create-oracle |
|
|
205
206
|
*Akeyless::V2Api* | [**dynamic_secret_create_ping**](docs/V2Api.md#dynamic_secret_create_ping) | **POST** /dynamic-secret-create-ping |
|
|
206
207
|
*Akeyless::V2Api* | [**dynamic_secret_create_postgre_sql**](docs/V2Api.md#dynamic_secret_create_postgre_sql) | **POST** /dynamic-secret-create-postgresql |
|
|
@@ -235,6 +236,7 @@ Class | Method | HTTP request | Description
|
|
|
235
236
|
*Akeyless::V2Api* | [**dynamic_secret_update_mongo_db**](docs/V2Api.md#dynamic_secret_update_mongo_db) | **POST** /dynamic-secret-update-mongo |
|
|
236
237
|
*Akeyless::V2Api* | [**dynamic_secret_update_ms_sql**](docs/V2Api.md#dynamic_secret_update_ms_sql) | **POST** /dynamic-secret-update-mssql |
|
|
237
238
|
*Akeyless::V2Api* | [**dynamic_secret_update_my_sql**](docs/V2Api.md#dynamic_secret_update_my_sql) | **POST** /dynamic-secret-update-mysql |
|
|
239
|
+
*Akeyless::V2Api* | [**dynamic_secret_update_open_ai**](docs/V2Api.md#dynamic_secret_update_open_ai) | **POST** /dynamic-secret-update-openai |
|
|
238
240
|
*Akeyless::V2Api* | [**dynamic_secret_update_oracle_db**](docs/V2Api.md#dynamic_secret_update_oracle_db) | **POST** /dynamic-secret-update-oracle |
|
|
239
241
|
*Akeyless::V2Api* | [**dynamic_secret_update_ping**](docs/V2Api.md#dynamic_secret_update_ping) | **POST** /dynamic-secret-update-ping |
|
|
240
242
|
*Akeyless::V2Api* | [**dynamic_secret_update_postgre_sql**](docs/V2Api.md#dynamic_secret_update_postgre_sql) | **POST** /dynamic-secret-update-postgresql |
|
|
@@ -257,12 +259,14 @@ Class | Method | HTTP request | Description
|
|
|
257
259
|
*Akeyless::V2Api* | [**event_forwarder_create_email**](docs/V2Api.md#event_forwarder_create_email) | **POST** /event-forwarder-create-email |
|
|
258
260
|
*Akeyless::V2Api* | [**event_forwarder_create_service_now**](docs/V2Api.md#event_forwarder_create_service_now) | **POST** /event-forwarder-create-servicenow |
|
|
259
261
|
*Akeyless::V2Api* | [**event_forwarder_create_slack**](docs/V2Api.md#event_forwarder_create_slack) | **POST** /event-forwarder-create-slack |
|
|
262
|
+
*Akeyless::V2Api* | [**event_forwarder_create_teams**](docs/V2Api.md#event_forwarder_create_teams) | **POST** /event-forwarder-create-teams |
|
|
260
263
|
*Akeyless::V2Api* | [**event_forwarder_create_webhook**](docs/V2Api.md#event_forwarder_create_webhook) | **POST** /event-forwarder-create-webhook |
|
|
261
264
|
*Akeyless::V2Api* | [**event_forwarder_delete**](docs/V2Api.md#event_forwarder_delete) | **POST** /event-forwarder-delete |
|
|
262
265
|
*Akeyless::V2Api* | [**event_forwarder_get**](docs/V2Api.md#event_forwarder_get) | **POST** /event-forwarder-get |
|
|
263
266
|
*Akeyless::V2Api* | [**event_forwarder_update_email**](docs/V2Api.md#event_forwarder_update_email) | **POST** /event-forwarder-update-email |
|
|
264
267
|
*Akeyless::V2Api* | [**event_forwarder_update_service_now**](docs/V2Api.md#event_forwarder_update_service_now) | **POST** /event-forwarder-update-servicenow |
|
|
265
268
|
*Akeyless::V2Api* | [**event_forwarder_update_slack**](docs/V2Api.md#event_forwarder_update_slack) | **POST** /event-forwarder-update-slack |
|
|
269
|
+
*Akeyless::V2Api* | [**event_forwarder_update_teams**](docs/V2Api.md#event_forwarder_update_teams) | **POST** /event-forwarder-update-teams |
|
|
266
270
|
*Akeyless::V2Api* | [**event_forwarder_update_webhook**](docs/V2Api.md#event_forwarder_update_webhook) | **POST** /event-forwarder-update-webhook |
|
|
267
271
|
*Akeyless::V2Api* | [**export_classic_key**](docs/V2Api.md#export_classic_key) | **POST** /export-classic-key |
|
|
268
272
|
*Akeyless::V2Api* | [**gateway_create_allowed_access**](docs/V2Api.md#gateway_create_allowed_access) | **POST** /gateway-create-allowed-access |
|
|
@@ -936,6 +940,7 @@ Class | Method | HTTP request | Description
|
|
|
936
940
|
- [Akeyless::DynamicSecretCreateMongoDb](docs/DynamicSecretCreateMongoDb.md)
|
|
937
941
|
- [Akeyless::DynamicSecretCreateMsSql](docs/DynamicSecretCreateMsSql.md)
|
|
938
942
|
- [Akeyless::DynamicSecretCreateMySql](docs/DynamicSecretCreateMySql.md)
|
|
943
|
+
- [Akeyless::DynamicSecretCreateOpenAI](docs/DynamicSecretCreateOpenAI.md)
|
|
939
944
|
- [Akeyless::DynamicSecretCreateOracleDb](docs/DynamicSecretCreateOracleDb.md)
|
|
940
945
|
- [Akeyless::DynamicSecretCreateOutput](docs/DynamicSecretCreateOutput.md)
|
|
941
946
|
- [Akeyless::DynamicSecretCreatePing](docs/DynamicSecretCreatePing.md)
|
|
@@ -975,6 +980,7 @@ Class | Method | HTTP request | Description
|
|
|
975
980
|
- [Akeyless::DynamicSecretUpdateMongoDb](docs/DynamicSecretUpdateMongoDb.md)
|
|
976
981
|
- [Akeyless::DynamicSecretUpdateMsSql](docs/DynamicSecretUpdateMsSql.md)
|
|
977
982
|
- [Akeyless::DynamicSecretUpdateMySql](docs/DynamicSecretUpdateMySql.md)
|
|
983
|
+
- [Akeyless::DynamicSecretUpdateOpenAI](docs/DynamicSecretUpdateOpenAI.md)
|
|
978
984
|
- [Akeyless::DynamicSecretUpdateOracleDb](docs/DynamicSecretUpdateOracleDb.md)
|
|
979
985
|
- [Akeyless::DynamicSecretUpdateOutput](docs/DynamicSecretUpdateOutput.md)
|
|
980
986
|
- [Akeyless::DynamicSecretUpdatePing](docs/DynamicSecretUpdatePing.md)
|
|
@@ -1013,6 +1019,7 @@ Class | Method | HTTP request | Description
|
|
|
1013
1019
|
- [Akeyless::EventForwarderCreateEmail](docs/EventForwarderCreateEmail.md)
|
|
1014
1020
|
- [Akeyless::EventForwarderCreateServiceNow](docs/EventForwarderCreateServiceNow.md)
|
|
1015
1021
|
- [Akeyless::EventForwarderCreateSlack](docs/EventForwarderCreateSlack.md)
|
|
1022
|
+
- [Akeyless::EventForwarderCreateTeams](docs/EventForwarderCreateTeams.md)
|
|
1016
1023
|
- [Akeyless::EventForwarderCreateUpdateOutput](docs/EventForwarderCreateUpdateOutput.md)
|
|
1017
1024
|
- [Akeyless::EventForwarderCreateWebhook](docs/EventForwarderCreateWebhook.md)
|
|
1018
1025
|
- [Akeyless::EventForwarderDelete](docs/EventForwarderDelete.md)
|
|
@@ -1022,6 +1029,7 @@ Class | Method | HTTP request | Description
|
|
|
1022
1029
|
- [Akeyless::EventForwarderUpdateEmail](docs/EventForwarderUpdateEmail.md)
|
|
1023
1030
|
- [Akeyless::EventForwarderUpdateServiceNow](docs/EventForwarderUpdateServiceNow.md)
|
|
1024
1031
|
- [Akeyless::EventForwarderUpdateSlack](docs/EventForwarderUpdateSlack.md)
|
|
1032
|
+
- [Akeyless::EventForwarderUpdateTeams](docs/EventForwarderUpdateTeams.md)
|
|
1025
1033
|
- [Akeyless::EventForwarderUpdateWebhook](docs/EventForwarderUpdateWebhook.md)
|
|
1026
1034
|
- [Akeyless::ExportClassicKey](docs/ExportClassicKey.md)
|
|
1027
1035
|
- [Akeyless::ExportClassicKeyOutput](docs/ExportClassicKeyOutput.md)
|
data/docs/DSProducerDetails.md
CHANGED
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
| **admin_pwd** | **String** | | [optional] |
|
|
12
12
|
| **admin_rotation_interval_days** | **Integer** | | [optional] |
|
|
13
13
|
| **administrative_port** | **String** | | [optional] |
|
|
14
|
+
| **api_key** | **String** | | [optional] |
|
|
15
|
+
| **api_key_id** | **String** | | [optional] |
|
|
14
16
|
| **artifactory_admin_apikey** | **String** | | [optional] |
|
|
15
17
|
| **artifactory_admin_username** | **String** | | [optional] |
|
|
16
18
|
| **artifactory_base_url** | **String** | | [optional] |
|
|
@@ -190,9 +192,11 @@
|
|
|
190
192
|
| **mssql_revocation_statements** | **String** | | [optional] |
|
|
191
193
|
| **mysql_creation_statements** | **String** | | [optional] |
|
|
192
194
|
| **mysql_revocation_statements** | **String** | | [optional] |
|
|
195
|
+
| **openai_url** | **String** | | [optional] |
|
|
193
196
|
| **oracle_creation_statements** | **String** | | [optional] |
|
|
194
197
|
| **oracle_revocation_statements** | **String** | | [optional] |
|
|
195
198
|
| **oracle_wallet_details** | [**WalletDetails**](WalletDetails.md) | | [optional] |
|
|
199
|
+
| **organization_id** | **String** | | [optional] |
|
|
196
200
|
| **password** | **String** | | [optional] |
|
|
197
201
|
| **password_length** | **Integer** | | [optional] |
|
|
198
202
|
| **password_policy** | **String** | | [optional] |
|
|
@@ -201,6 +205,7 @@
|
|
|
201
205
|
| **postgres_creation_statements** | **String** | | [optional] |
|
|
202
206
|
| **postgres_revocation_statements** | **String** | | [optional] |
|
|
203
207
|
| **privileged_user** | **String** | | [optional] |
|
|
208
|
+
| **project_id** | **String** | | [optional] |
|
|
204
209
|
| **rabbitmq_server_password** | **String** | | [optional] |
|
|
205
210
|
| **rabbitmq_server_uri** | **String** | | [optional] |
|
|
206
211
|
| **rabbitmq_server_user** | **String** | | [optional] |
|
|
@@ -270,6 +275,8 @@ instance = Akeyless::DSProducerDetails.new(
|
|
|
270
275
|
admin_pwd: null,
|
|
271
276
|
admin_rotation_interval_days: null,
|
|
272
277
|
administrative_port: null,
|
|
278
|
+
api_key: null,
|
|
279
|
+
api_key_id: null,
|
|
273
280
|
artifactory_admin_apikey: null,
|
|
274
281
|
artifactory_admin_username: null,
|
|
275
282
|
artifactory_base_url: null,
|
|
@@ -449,9 +456,11 @@ instance = Akeyless::DSProducerDetails.new(
|
|
|
449
456
|
mssql_revocation_statements: null,
|
|
450
457
|
mysql_creation_statements: null,
|
|
451
458
|
mysql_revocation_statements: null,
|
|
459
|
+
openai_url: null,
|
|
452
460
|
oracle_creation_statements: null,
|
|
453
461
|
oracle_revocation_statements: null,
|
|
454
462
|
oracle_wallet_details: null,
|
|
463
|
+
organization_id: null,
|
|
455
464
|
password: null,
|
|
456
465
|
password_length: null,
|
|
457
466
|
password_policy: null,
|
|
@@ -460,6 +469,7 @@ instance = Akeyless::DSProducerDetails.new(
|
|
|
460
469
|
postgres_creation_statements: null,
|
|
461
470
|
postgres_revocation_statements: null,
|
|
462
471
|
privileged_user: null,
|
|
472
|
+
project_id: null,
|
|
463
473
|
rabbitmq_server_password: null,
|
|
464
474
|
rabbitmq_server_uri: null,
|
|
465
475
|
rabbitmq_server_user: null,
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Akeyless::DynamicSecretCreateOpenAI
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **custom_username_template** | **String** | Customize how temporary usernames are generated using go template | [optional] |
|
|
8
|
+
| **delete_protection** | **String** | Protection from accidental deletion of this object [true/false] | [optional] |
|
|
9
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
|
11
|
+
| **name** | **String** | Dynamic secret name | |
|
|
12
|
+
| **producer_encryption_key_name** | **String** | Dynamic producer encryption key | [optional] |
|
|
13
|
+
| **project_id** | **String** | Project ID | [optional] |
|
|
14
|
+
| **tags** | **Array<String>** | Add tags attached to this object | [optional] |
|
|
15
|
+
| **target_name** | **String** | Name of existing target to use in producer creation | [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
|
+
| **user_ttl** | **String** | User TTL | [optional][default to '60m'] |
|
|
19
|
+
|
|
20
|
+
## Example
|
|
21
|
+
|
|
22
|
+
```ruby
|
|
23
|
+
require 'akeyless'
|
|
24
|
+
|
|
25
|
+
instance = Akeyless::DynamicSecretCreateOpenAI.new(
|
|
26
|
+
custom_username_template: null,
|
|
27
|
+
delete_protection: null,
|
|
28
|
+
description: null,
|
|
29
|
+
json: null,
|
|
30
|
+
name: null,
|
|
31
|
+
producer_encryption_key_name: null,
|
|
32
|
+
project_id: null,
|
|
33
|
+
tags: null,
|
|
34
|
+
target_name: null,
|
|
35
|
+
token: null,
|
|
36
|
+
uid_token: null,
|
|
37
|
+
user_ttl: null
|
|
38
|
+
)
|
|
39
|
+
```
|
|
40
|
+
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Akeyless::DynamicSecretUpdateOpenAI
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **custom_username_template** | **String** | Customize how temporary usernames are generated using go template | [optional] |
|
|
8
|
+
| **delete_protection** | **String** | Protection from accidental deletion of this object [true/false] | [optional] |
|
|
9
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
10
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
|
11
|
+
| **name** | **String** | Dynamic secret name | |
|
|
12
|
+
| **new_name** | **String** | Dynamic secret name | [optional] |
|
|
13
|
+
| **producer_encryption_key_name** | **String** | Dynamic producer encryption key | [optional] |
|
|
14
|
+
| **project_id** | **String** | Project ID | [optional] |
|
|
15
|
+
| **tags** | **Array<String>** | Add tags attached to this object | [optional] |
|
|
16
|
+
| **target_name** | **String** | Name of existing target to use in producer creation | [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
|
+
| **user_ttl** | **String** | User TTL | [optional][default to '60m'] |
|
|
20
|
+
|
|
21
|
+
## Example
|
|
22
|
+
|
|
23
|
+
```ruby
|
|
24
|
+
require 'akeyless'
|
|
25
|
+
|
|
26
|
+
instance = Akeyless::DynamicSecretUpdateOpenAI.new(
|
|
27
|
+
custom_username_template: null,
|
|
28
|
+
delete_protection: null,
|
|
29
|
+
description: null,
|
|
30
|
+
json: null,
|
|
31
|
+
name: null,
|
|
32
|
+
new_name: null,
|
|
33
|
+
producer_encryption_key_name: null,
|
|
34
|
+
project_id: null,
|
|
35
|
+
tags: null,
|
|
36
|
+
target_name: null,
|
|
37
|
+
token: null,
|
|
38
|
+
uid_token: null,
|
|
39
|
+
user_ttl: null
|
|
40
|
+
)
|
|
41
|
+
```
|
|
42
|
+
|
data/docs/EsmGetSecretOutput.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **binary_value** | **Boolean** | | [optional] |
|
|
8
|
+
| **encryption_key** | **String** | | [optional] |
|
|
8
9
|
| **id** | **String** | | [optional] |
|
|
9
10
|
| **metadata** | **Object** | | [optional] |
|
|
10
11
|
| **name** | **String** | | [optional] |
|
|
@@ -17,6 +18,7 @@ require 'akeyless'
|
|
|
17
18
|
|
|
18
19
|
instance = Akeyless::EsmGetSecretOutput.new(
|
|
19
20
|
binary_value: null,
|
|
21
|
+
encryption_key: null,
|
|
20
22
|
id: null,
|
|
21
23
|
metadata: null,
|
|
22
24
|
name: null,
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# Akeyless::EventForwarderCreateTeams
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **auth_methods_event_source_locations** | **Array<String>** | Auth Method Event sources | [optional] |
|
|
8
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
9
|
+
| **event_types** | **Array<String>** | List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync] | [optional] |
|
|
10
|
+
| **every** | **String** | Rate of periodic runner repetition in hours | [optional] |
|
|
11
|
+
| **gateways_event_source_locations** | **Array<String>** | Event sources | |
|
|
12
|
+
| **items_event_source_locations** | **Array<String>** | Items Event sources | [optional] |
|
|
13
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
|
14
|
+
| **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] |
|
|
15
|
+
| **name** | **String** | EventForwarder name | |
|
|
16
|
+
| **runner_type** | **String** | | |
|
|
17
|
+
| **targets_event_source_locations** | **Array<String>** | Targets Event sources | [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
|
+
| **url** | **String** | Teams Webhook URL | |
|
|
21
|
+
|
|
22
|
+
## Example
|
|
23
|
+
|
|
24
|
+
```ruby
|
|
25
|
+
require 'akeyless'
|
|
26
|
+
|
|
27
|
+
instance = Akeyless::EventForwarderCreateTeams.new(
|
|
28
|
+
auth_methods_event_source_locations: null,
|
|
29
|
+
description: null,
|
|
30
|
+
event_types: null,
|
|
31
|
+
every: null,
|
|
32
|
+
gateways_event_source_locations: null,
|
|
33
|
+
items_event_source_locations: null,
|
|
34
|
+
json: null,
|
|
35
|
+
key: null,
|
|
36
|
+
name: null,
|
|
37
|
+
runner_type: null,
|
|
38
|
+
targets_event_source_locations: null,
|
|
39
|
+
token: null,
|
|
40
|
+
uid_token: null,
|
|
41
|
+
url: null
|
|
42
|
+
)
|
|
43
|
+
```
|
|
44
|
+
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Akeyless::EventForwarderUpdateTeams
|
|
2
|
+
|
|
3
|
+
## Properties
|
|
4
|
+
|
|
5
|
+
| Name | Type | Description | Notes |
|
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
|
7
|
+
| **auth_methods_event_source_locations** | **Array<String>** | Auth Method Event sources | [optional] |
|
|
8
|
+
| **description** | **String** | Description of the object | [optional] |
|
|
9
|
+
| **enable** | **String** | Enable/Disable Event Forwarder [true/false] | [optional][default to 'true'] |
|
|
10
|
+
| **event_types** | **Array<String>** | List of event types to notify about [request-access, certificate-pending-expiration, certificate-expired, certificate-provisioning-success, certificate-provisioning-failure, auth-method-pending-expiration, auth-method-expired, next-automatic-rotation, rotated-secret-success, rotated-secret-failure, dynamic-secret-failure, multi-auth-failure, uid-rotation-failure, apply-justification, email-auth-method-approved, usage, rotation-usage, gateway-inactive, static-secret-updated, rate-limiting, usage-report, secret-sync] | [optional] |
|
|
11
|
+
| **gateways_event_source_locations** | **Array<String>** | Event sources | |
|
|
12
|
+
| **items_event_source_locations** | **Array<String>** | Items Event sources | [optional] |
|
|
13
|
+
| **json** | **Boolean** | Set output format to JSON | [optional][default to false] |
|
|
14
|
+
| **keep_prev_version** | **String** | Whether to keep previous version [true/false]. If not set, use default according to account settings | [optional] |
|
|
15
|
+
| **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] |
|
|
16
|
+
| **name** | **String** | EventForwarder name | |
|
|
17
|
+
| **new_name** | **String** | New EventForwarder name | [optional] |
|
|
18
|
+
| **targets_event_source_locations** | **Array<String>** | Targets Event sources | [optional] |
|
|
19
|
+
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
20
|
+
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
|
|
21
|
+
| **url** | **String** | Teams Webhook URL | |
|
|
22
|
+
|
|
23
|
+
## Example
|
|
24
|
+
|
|
25
|
+
```ruby
|
|
26
|
+
require 'akeyless'
|
|
27
|
+
|
|
28
|
+
instance = Akeyless::EventForwarderUpdateTeams.new(
|
|
29
|
+
auth_methods_event_source_locations: null,
|
|
30
|
+
description: null,
|
|
31
|
+
enable: null,
|
|
32
|
+
event_types: null,
|
|
33
|
+
gateways_event_source_locations: null,
|
|
34
|
+
items_event_source_locations: null,
|
|
35
|
+
json: null,
|
|
36
|
+
keep_prev_version: null,
|
|
37
|
+
key: null,
|
|
38
|
+
name: null,
|
|
39
|
+
new_name: null,
|
|
40
|
+
targets_event_source_locations: null,
|
|
41
|
+
token: null,
|
|
42
|
+
uid_token: null,
|
|
43
|
+
url: null
|
|
44
|
+
)
|
|
45
|
+
```
|
|
46
|
+
|
data/docs/NotiForwarder.md
CHANGED
|
@@ -25,6 +25,7 @@
|
|
|
25
25
|
| **protection_key** | **String** | | [optional] |
|
|
26
26
|
| **runner_type** | **String** | | [optional] |
|
|
27
27
|
| **slack_noti_forwarder_public_details** | **Object** | | [optional] |
|
|
28
|
+
| **teams_noti_forwarder_public_details** | **Object** | | [optional] |
|
|
28
29
|
| **timespan_in_seconds** | **Integer** | | [optional] |
|
|
29
30
|
| **to_emails** | [**Array<EmailEntry>**](EmailEntry.md) | | [optional] |
|
|
30
31
|
| **user_email** | **String** | | [optional] |
|
|
@@ -59,6 +60,7 @@ instance = Akeyless::NotiForwarder.new(
|
|
|
59
60
|
protection_key: null,
|
|
60
61
|
runner_type: null,
|
|
61
62
|
slack_noti_forwarder_public_details: null,
|
|
63
|
+
teams_noti_forwarder_public_details: null,
|
|
62
64
|
timespan_in_seconds: null,
|
|
63
65
|
to_emails: null,
|
|
64
66
|
user_email: null,
|
data/docs/OpenAITargetDetails.md
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **api_key** | **String** | | [optional] |
|
|
8
8
|
| **api_key_id** | **String** | | [optional] |
|
|
9
|
-
| **model** | **String** | | [optional] |
|
|
10
9
|
| **openai_url** | **String** | | [optional] |
|
|
11
10
|
| **organization_id** | **String** | | [optional] |
|
|
11
|
+
| **project_id** | **String** | | [optional] |
|
|
12
12
|
|
|
13
13
|
## Example
|
|
14
14
|
|
|
@@ -18,9 +18,9 @@ require 'akeyless'
|
|
|
18
18
|
instance = Akeyless::OpenAITargetDetails.new(
|
|
19
19
|
api_key: null,
|
|
20
20
|
api_key_id: null,
|
|
21
|
-
model: null,
|
|
22
21
|
openai_url: null,
|
|
23
|
-
organization_id: null
|
|
22
|
+
organization_id: null,
|
|
23
|
+
project_id: null
|
|
24
24
|
)
|
|
25
25
|
```
|
|
26
26
|
|
data/docs/SecretInfo.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
| **created** | **Time** | | [optional] |
|
|
8
8
|
| **description** | **String** | | [optional] |
|
|
9
9
|
| **expiration** | **Time** | | [optional] |
|
|
10
|
+
| **key_id** | **String** | | [optional] |
|
|
10
11
|
| **last_retrieved** | **Time** | | [optional] |
|
|
11
12
|
| **location** | **Object** | | [optional] |
|
|
12
13
|
| **name** | **String** | | [optional] |
|
|
@@ -26,6 +27,7 @@ instance = Akeyless::SecretInfo.new(
|
|
|
26
27
|
created: null,
|
|
27
28
|
description: null,
|
|
28
29
|
expiration: null,
|
|
30
|
+
key_id: null,
|
|
29
31
|
last_retrieved: null,
|
|
30
32
|
location: null,
|
|
31
33
|
name: null,
|
data/docs/UscCreate.md
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
| **tags** | **Hash<String, String>** | Tags for the universal secrets | [optional] |
|
|
15
15
|
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
16
16
|
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
|
|
17
|
+
| **usc_encryption_key** | **String** | Optional, The name of the remote key that used to encrypt the secret value (if empty, the default key will be used) | [optional] |
|
|
17
18
|
| **usc_name** | **String** | Name of the Universal Secrets Connector item | |
|
|
18
19
|
| **value** | **String** | Value of the universal secrets item, either text or base64 encoded binary | |
|
|
19
20
|
|
|
@@ -33,6 +34,7 @@ instance = Akeyless::UscCreate.new(
|
|
|
33
34
|
tags: null,
|
|
34
35
|
token: null,
|
|
35
36
|
uid_token: null,
|
|
37
|
+
usc_encryption_key: null,
|
|
36
38
|
usc_name: null,
|
|
37
39
|
value: null
|
|
38
40
|
)
|
data/docs/UscGetSecretOutput.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
| Name | Type | Description | Notes |
|
|
6
6
|
| ---- | ---- | ----------- | ----- |
|
|
7
7
|
| **binary_value** | **Boolean** | | [optional] |
|
|
8
|
+
| **encryption_key** | **String** | | [optional] |
|
|
8
9
|
| **id** | **String** | | [optional] |
|
|
9
10
|
| **metadata** | **Object** | | [optional] |
|
|
10
11
|
| **name** | **String** | | [optional] |
|
|
@@ -17,6 +18,7 @@ require 'akeyless'
|
|
|
17
18
|
|
|
18
19
|
instance = Akeyless::UscGetSecretOutput.new(
|
|
19
20
|
binary_value: null,
|
|
21
|
+
encryption_key: null,
|
|
20
22
|
id: null,
|
|
21
23
|
metadata: null,
|
|
22
24
|
name: null,
|
data/docs/UscUpdate.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
| **tags** | **Hash<String, String>** | Tags for the universal secrets | [optional] |
|
|
14
14
|
| **token** | **String** | Authentication token (see `/auth` and `/configure`) | [optional] |
|
|
15
15
|
| **uid_token** | **String** | The universal identity token, Required only for universal_identity authentication | [optional] |
|
|
16
|
+
| **usc_encryption_key** | **String** | Optional, The name of the remote key that used to encrypt the secret value (if empty, the default key will be used) | [optional] |
|
|
16
17
|
| **usc_name** | **String** | Name of the Universal Secrets Connector item | |
|
|
17
18
|
| **value** | **String** | Value of the universal secrets item, either text or base64 encoded binary | |
|
|
18
19
|
|
|
@@ -31,6 +32,7 @@ instance = Akeyless::UscUpdate.new(
|
|
|
31
32
|
tags: null,
|
|
32
33
|
token: null,
|
|
33
34
|
uid_token: null,
|
|
35
|
+
usc_encryption_key: null,
|
|
34
36
|
usc_name: null,
|
|
35
37
|
value: null
|
|
36
38
|
)
|