Skip to content

Latest commit

 

History

History
70 lines (61 loc) · 4.26 KB

UpdateDBTarget.md

File metadata and controls

70 lines (61 loc) · 4.26 KB

UpdateDBTarget

updateDBTarget is a command that updates an existing target. [Deprecated: Use target-update-db command]

Properties

Name Type Description Notes
db_defined_connection_type str [optional]
azure_client_id str (Optional) Client id (relevant for "cloud-service-provider" only) [optional]
azure_client_secret str (Optional) Client secret (relevant for "cloud-service-provider" only) [optional]
azure_tenant_id str (Optional) Tenant id (relevant for "cloud-service-provider" only) [optional]
cloud_service_provider str (Optional) Cloud service provider (currently only supports Azure) [optional]
cluster_mode bool Cluster Mode [optional]
comment str Deprecated - use description [optional]
connection_type str Type of connection to mssql/oracle database [credentials/cloud-identity/wallet] [default to 'credentials']
db_name str [optional]
db_server_certificates str (Optional) DB server certificates [optional]
db_server_name str (Optional) Server name for certificate verification [optional]
db_type str
description str Description of the object [optional]
host str [optional]
var_json bool Set output format to JSON [optional] [default to False]
keep_prev_version str Whether to keep previous version [true/false]. If not set, use default according to account settings [optional]
key str The name of a key that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) [optional]
max_versions str Set the maximum number of versions, limited by the account settings defaults. [optional]
mongodb_atlas bool [optional]
mongodb_atlas_api_private_key str MongoDB Atlas private key [optional]
mongodb_atlas_api_public_key str MongoDB Atlas public key [optional]
mongodb_atlas_project_id str MongoDB Atlas project ID [optional]
mongodb_default_auth_db str MongoDB server default authentication database [optional]
mongodb_uri_options str MongoDB server URI options [optional]
name str Target name
new_name str New target name [optional]
oracle_service_name str Oracle db service name [optional]
oracle_wallet_login_type str Oracle Wallet login type (password/mtls) [optional]
oracle_wallet_p12_file_data str Oracle wallet p12 file data in base64 [optional]
oracle_wallet_sso_file_data str Oracle wallet sso file data in base64 [optional]
port str [optional]
pwd str [optional]
snowflake_account str [optional]
snowflake_api_private_key str RSA Private key (base64 encoded) [optional]
snowflake_api_private_key_password str The Private key passphrase [optional]
ssl bool Enable/Disable SSL [true/false] [optional] [default to False]
ssl_certificate str SSL connection certificate [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
update_version bool Deprecated [optional]
user_name str [optional]

Example

from akeyless.models.update_db_target import UpdateDBTarget

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

# convert the object into a dict
update_db_target_dict = update_db_target_instance.to_dict()
# create an instance of UpdateDBTarget from a dict
update_db_target_from_dict = UpdateDBTarget.from_dict(update_db_target_dict)

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