Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.54 KB

GatewayUpdateProducerGcp.md

File metadata and controls

46 lines (37 loc) · 2.54 KB

GatewayUpdateProducerGcp

gatewayUpdateProducerGcp is a command that updates a GCP producer [Deprecated: Use dynamic-secret-update-gcp command]

Properties

Name Type Description Notes
delete_protection str Protection from accidental deletion of this object [true/false] [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
new_name str Dynamic secret name [optional]
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.gateway_update_producer_gcp import GatewayUpdateProducerGcp

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

# convert the object into a dict
gateway_update_producer_gcp_dict = gateway_update_producer_gcp_instance.to_dict()
# create an instance of GatewayUpdateProducerGcp from a dict
gateway_update_producer_gcp_from_dict = GatewayUpdateProducerGcp.from_dict(gateway_update_producer_gcp_dict)

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