Name |
Type |
Description |
Notes |
authentication_credentials |
str |
The credentials to connect with use-user-creds/use-target-creds |
[optional] [default to 'use-user-creds'] |
auto_rotate |
str |
Whether to automatically rotate every --rotation-interval days, or disable existing automatic rotation [true/false] |
[optional] |
delete_protection |
str |
Protection from accidental deletion of this object [true/false] |
[optional] |
description |
str |
Description of the object |
[optional] |
gcp_key |
str |
Base64-encoded service account private key text |
[optional] |
gcp_service_account_email |
str |
The email of the gcp service account to rotate |
[optional] |
gcp_service_account_key_id |
str |
The key id of the gcp service account to rotate |
[optional] |
var_json |
bool |
Set output format to JSON |
[optional] [default to False] |
key |
str |
The name of a key that used to encrypt the secret value (if empty, the account default protectionKey key will be used) |
[optional] |
max_versions |
str |
Set the maximum number of versions, limited by the account settings defaults. |
[optional] |
name |
str |
Rotated secret name |
|
password_length |
str |
The length of the password to be generated |
[optional] |
rotation_event_in |
List[str] |
How many days before the rotation of the item would you like to be notified |
[optional] |
rotation_hour |
int |
The Hour of the rotation in UTC |
[optional] |
rotation_interval |
str |
The number of days to wait between every automatic key rotation (1-365) |
[optional] |
rotator_type |
str |
The rotator type. options: [target/service-account-rotator] |
|
tags |
List[str] |
Add tags attached to this object |
[optional] |
target_name |
str |
Target name |
|
token |
str |
Authentication token (see `/auth` and `/configure`) |
[optional] |
uid_token |
str |
The universal identity token, Required only for universal_identity authentication |
[optional] |
from akeyless.models.rotated_secret_create_gcp import RotatedSecretCreateGcp
# TODO update the JSON string below
json = "{}"
# create an instance of RotatedSecretCreateGcp from a JSON string
rotated_secret_create_gcp_instance = RotatedSecretCreateGcp.from_json(json)
# print the JSON string representation of the object
print(RotatedSecretCreateGcp.to_json())
# convert the object into a dict
rotated_secret_create_gcp_dict = rotated_secret_create_gcp_instance.to_dict()
# create an instance of RotatedSecretCreateGcp from a dict
rotated_secret_create_gcp_from_dict = RotatedSecretCreateGcp.from_dict(rotated_secret_create_gcp_dict)
[Back to Model list] [Back to API list] [Back to README]