Skip to content

Latest commit

 

History

History
62 lines (53 loc) · 4.12 KB

GatewayUpdateProducerAws.md

File metadata and controls

62 lines (53 loc) · 4.12 KB

GatewayUpdateProducerAws

gatewayUpdateProducerAws is a command that Updates aws producer [Deprecated: Use dynamic-secret-update-aws command]

Properties

Name Type Description Notes
access_mode str [optional]
admin_rotation_interval_days int Admin credentials rotation interval (days) [optional] [default to 0]
aws_access_key_id str Access Key ID [optional]
aws_access_secret_key str Secret Access Key [optional]
aws_role_arns str AWS Role ARNs to be used in the Assume Role operation (relevant only for assume_role mode) [optional]
aws_user_console_access bool AWS User console access [optional] [default to False]
aws_user_groups str AWS User groups [optional]
aws_user_policies str AWS User policies [optional]
aws_user_programmatic_access bool Enable AWS User programmatic access [optional] [default to True]
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
enable_admin_rotation bool Automatic admin credentials rotation [optional] [default to False]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
new_name str Dynamic secret name [optional]
password_length str The length of the password to be generated [optional]
producer_encryption_key_name str Dynamic producer encryption key [optional]
region str Region [optional] [default to 'us-east-2']
secure_access_aws_account_id str The AWS account id [optional]
secure_access_aws_native_cli bool The AWS native cli [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_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 True]
secure_access_web_browsing bool Secure browser via Akeyless's Secure Remote Access (SRA) [optional] [default to False]
secure_access_web_proxy bool Web-Proxy via Akeyless's Secure Remote Access (SRA) [optional] [default to False]
session_tags str String of Key value session tags comma separated, relevant only for Assumed Role [optional]
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]
transitive_tag_keys str String of transitive tag keys space separated, relevant only for Assumed Role [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_aws import GatewayUpdateProducerAws

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

# convert the object into a dict
gateway_update_producer_aws_dict = gateway_update_producer_aws_instance.to_dict()
# create an instance of GatewayUpdateProducerAws from a dict
gateway_update_producer_aws_from_dict = GatewayUpdateProducerAws.from_dict(gateway_update_producer_aws_dict)

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