Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 1.16 KB

EncryptFile.md

File metadata and controls

32 lines (26 loc) · 1.16 KB

Akeyless::EncryptFile

Properties

Name Type Description Notes
display_id String The display id of the key to use in the encryption process [optional]
_in String Path to the file to be encrypted. If not provided, the content will be taken from stdin
item_id Integer The item id of the key to use in the encryption process [optional]
json Boolean Set output format to JSON [optional][default to false]
key_name String The name of the key to use in the encryption process
out String Path to the output file. If not provided, the output will be sent to stdout [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]

Example

require 'akeyless'

instance = Akeyless::EncryptFile.new(
  display_id: null,
  _in: null,
  item_id: null,
  json: null,
  key_name: null,
  out: null,
  token: null,
  uid_token: null
)