Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.45 KB

GatewayUpdateProducerSnowflake.md

File metadata and controls

47 lines (38 loc) · 2.45 KB

GatewayUpdateProducerSnowflake

GatewayUpdateProducerSnowflakeCmd is a command that updates a Snowflake producer [Deprecated: Use dynamic-secret-update-snowflake command]

Properties

Name Type Description Notes
account str Account name [optional]
account_password str Database Password [optional]
account_username str Database Username [optional]
db_name str Database name [optional]
delete_protection str Protection from accidental deletion of this object [true/false] [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]
password_length str The length of the password to be generated [optional]
private_key str RSA Private key (base64 encoded) [optional]
private_key_passphrase str The Private key passphrase [optional]
role str User 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]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
user_ttl str User TTL [optional] [default to '24h']
warehouse str Warehouse name [optional]

Example

from akeyless.models.gateway_update_producer_snowflake import GatewayUpdateProducerSnowflake

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

# convert the object into a dict
gateway_update_producer_snowflake_dict = gateway_update_producer_snowflake_instance.to_dict()
# create an instance of GatewayUpdateProducerSnowflake from a dict
gateway_update_producer_snowflake_from_dict = GatewayUpdateProducerSnowflake.from_dict(gateway_update_producer_snowflake_dict)

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