Skip to content

Latest commit

 

History

History
51 lines (42 loc) · 3.02 KB

GatewayUpdateProducerGke.md

File metadata and controls

51 lines (42 loc) · 3.02 KB

GatewayUpdateProducerGke

gatewayUpdateProducerGke is a command that updates gke producer [Deprecated: Use dynamic-secret-update-gke command]

Properties

Name Type Description Notes
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
gke_account_key str GKE Service Account key file path [optional]
gke_cluster_cert str GKE cluster CA certificate [optional]
gke_cluster_endpoint str GKE cluster URL endpoint [optional]
gke_cluster_name str GKE cluster name [optional]
gke_service_account_email str GKE service account email [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]
secure_access_allow_port_forwading bool Enable Port forwarding while using CLI access [optional]
secure_access_bastion_issuer str Deprecated. use secure-access-certificate-issuer [optional]
secure_access_certificate_issuer str Path to the SSH Certificate Issuer for your Akeyless Secure Access [optional]
secure_access_cluster_endpoint str The K8s cluster endpoint URL [optional]
secure_access_delay int The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds [optional]
secure_access_enable str Enable/Disable secure remote access [true/false] [optional]
secure_access_web bool Enable Web Secure Remote Access [optional] [default to False]
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_gke import GatewayUpdateProducerGke

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

# convert the object into a dict
gateway_update_producer_gke_dict = gateway_update_producer_gke_instance.to_dict()
# create an instance of GatewayUpdateProducerGke from a dict
gateway_update_producer_gke_from_dict = GatewayUpdateProducerGke.from_dict(gateway_update_producer_gke_dict)

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