Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.37 KB

UscUpdate.md

File metadata and controls

36 lines (30 loc) · 1.37 KB

Akeyless::UscUpdate

Properties

Name Type Description Notes
binary_value Boolean Use this option if the universal secrets value is a base64 encoded binary [optional]
description String Description of the universal secrets [optional]
json Boolean Set output format to JSON [optional][default to false]
namespace String The namespace (relevant for Hashi vault target) [optional]
secret_id String The universal secrets id (or name, for AWS, Azure, K8s or Hashi vault targets) to update
tags Hash<String, String> Tags for the universal secrets [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
usc_name String Name of the Universal Secrets Connector item
value String Value of the universal secrets item, either text or base64 encoded binary

Example

require 'akeyless'

instance = Akeyless::UscUpdate.new(
  binary_value: null,
  description: null,
  json: null,
  namespace: null,
  secret_id: null,
  tags: null,
  token: null,
  uid_token: null,
  usc_name: null,
  value: null
)