Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.48 KB

DynamicSecretCreateGcp.md

File metadata and controls

46 lines (37 loc) · 2.48 KB

DynamicSecretCreateGcp

dynamicSecretCreateGcp is a command that creates a GCP dynamic secret

Properties

Name Type Description Notes
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
description str Description of the object [optional]
gcp_cred_type str [optional]
gcp_key str Base64-encoded service account private key text [optional]
gcp_key_algo str Service account key algorithm, e.g. KEY_ALG_RSA_1024 [optional]
gcp_sa_email str The email of the fixed service acocunt to generate keys or tokens for. (revelant for service-account-type=fixed) [optional]
gcp_token_scopes str Access token scopes list, e.g. scope1,scope2 [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
producer_encryption_key_name str Dynamic producer encryption key [optional]
role_binding str Role binding definitions in json format [optional]
service_account_type str The type of the gcp dynamic secret. Options[fixed, dynamic] [default to 'fixed']
tags List[str] Add tags attached to this object [optional]
target_name str Target name [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
user_ttl str User TTL [optional] [default to '60m']

Example

from akeyless.models.dynamic_secret_create_gcp import DynamicSecretCreateGcp

# TODO update the JSON string below
json = "{}"
# create an instance of DynamicSecretCreateGcp from a JSON string
dynamic_secret_create_gcp_instance = DynamicSecretCreateGcp.from_json(json)
# print the JSON string representation of the object
print(DynamicSecretCreateGcp.to_json())

# convert the object into a dict
dynamic_secret_create_gcp_dict = dynamic_secret_create_gcp_instance.to_dict()
# create an instance of DynamicSecretCreateGcp from a dict
dynamic_secret_create_gcp_from_dict = DynamicSecretCreateGcp.from_dict(dynamic_secret_create_gcp_dict)

[Back to Model list] [Back to API list] [Back to README]