Skip to content

Latest commit

 

History

History
74 lines (68 loc) · 3.95 KB

File metadata and controls

74 lines (68 loc) · 3.95 KB

Akeyless::DynamicSecretCreateMsSql

Properties

Name Type Description Notes
custom_username_template String Customize how temporary usernames are generated using go template [optional]
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
description String Description of the object [optional]
item_custom_fields Hash<String, String> Additional custom fields to associate with the item [optional]
json Boolean Set output format to JSON [optional][default to false]
mssql_allowed_db_names String CSV of allowed DB names for runtime selection when getting the secret value. Empty => use target DB only; &quot;*&quot; => any DB allowed; One or more names => user must choose from this list [optional]
mssql_create_statements String MSSQL Creation statements [optional]
mssql_dbname String MSSQL Name [optional]
mssql_host String MSSQL Host [optional][default to '127.0.0.1']
mssql_password String MSSQL Password [optional]
mssql_port String MSSQL Port [optional][default to '1433']
mssql_revocation_statements String MSSQL Revocation statements [optional]
mssql_username String MSSQL Username [optional]
name String Dynamic secret name
password_length String The length of the password to be generated [optional]
producer_encryption_key_name String Dynamic producer encryption key [optional]
secure_access_bastion_issuer String Deprecated. use secure-access-certificate-issuer [optional]
secure_access_certificate_issuer String Path to the SSH Certificate Issuer for your Akeyless Secure Access [optional]
secure_access_db_name String The DB name (relevant only for DB Dynamic-Secret) [optional]
secure_access_db_schema String The DB schema [optional]
secure_access_delay Integer The delay duration, in seconds, to wait after generating just-in-time credentials. Accepted range: 0-120 seconds [optional]
secure_access_enable String Enable/Disable secure remote access [true/false] [optional]
secure_access_host Array<String> Target DB servers for connections (In case of Linked Target association, host(s) will inherit Linked Target hosts) [optional]
secure_access_web Boolean Enable Web Secure Remote Access [optional][default to false]
tags Array<String> Add tags attached to this object [optional]
target_name String Target name [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
user_ttl String User TTL [optional][default to '60m']

Example

require 'akeyless'

instance = Akeyless::DynamicSecretCreateMsSql.new(
  custom_username_template: null,
  delete_protection: null,
  description: null,
  item_custom_fields: null,
  json: null,
  mssql_allowed_db_names: null,
  mssql_create_statements: null,
  mssql_dbname: null,
  mssql_host: null,
  mssql_password: null,
  mssql_port: null,
  mssql_revocation_statements: null,
  mssql_username: null,
  name: null,
  password_length: null,
  producer_encryption_key_name: null,
  secure_access_bastion_issuer: null,
  secure_access_certificate_issuer: null,
  secure_access_db_name: null,
  secure_access_db_schema: null,
  secure_access_delay: null,
  secure_access_enable: null,
  secure_access_host: null,
  secure_access_web: null,
  tags: null,
  target_name: null,
  token: null,
  uid_token: null,
  user_ttl: null
)