Skip to content

Latest commit

 

History

History
52 lines (46 loc) · 2.32 KB

GatewayUpdateProducerRedis.md

File metadata and controls

52 lines (46 loc) · 2.32 KB

Akeyless::GatewayUpdateProducerRedis

Properties

Name Type Description Notes
acl_rules String A JSON array list of redis ACL rules to attach to the created user. For available rules see the ACL CAT command https://redis.io/commands/acl-cat By default the user will have permissions to read all keys '["~*", "+@read"]' [optional]
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
host String Redis Host [optional][default to '127.0.0.1']
json Boolean Set output format to JSON [optional][default to false]
name String Dynamic secret name
new_name String Dynamic secret name [optional]
password String Redis Password [optional]
password_length String The length of the password to be generated [optional]
port String Redis Port [optional][default to '6379']
producer_encryption_key_name String Dynamic producer encryption key [optional]
ssl Boolean Enable/Disable SSL [true/false] [optional][default to false]
ssl_certificate String SSL CA certificate in base64 encoding generated from a trusted Certificate Authority (CA) [optional]
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']
username String Redis Username [optional]

Example

require 'akeyless'

instance = Akeyless::GatewayUpdateProducerRedis.new(
  acl_rules: null,
  delete_protection: null,
  host: null,
  json: null,
  name: null,
  new_name: null,
  password: null,
  password_length: null,
  port: null,
  producer_encryption_key_name: null,
  ssl: null,
  ssl_certificate: null,
  tags: null,
  target_name: null,
  token: null,
  uid_token: null,
  user_ttl: null,
  username: null
)