Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 2.29 KB

File metadata and controls

46 lines (40 loc) · 2.29 KB

Akeyless::UpdateCertificateValue

Properties

Name Type Description Notes
add_tag Array<String> List of the new tags that will be attached to this item [optional]
certificate_data String Content of the certificate in a Base64 format. [optional]
delete_protection String Protection from accidental deletion of this object [true/false] [optional]
description String Description of the object [optional]
expiration_event_in Array<String> How many days before the expiration of the certificate would you like to be notified. [optional]
format String CertificateFormat of the certificate and private key, possible values: cer,crt,pem,pfx,p12. Required when passing inline certificate content with --certificate-data or --key-data, otherwise format is derived from the file extension. [optional]
json Boolean Set output format to JSON [optional][default to false]
keep_prev_version String Whether to keep previous version [true/false]. If not set, use default according to account settings [optional]
key String The name of a key to use to encrypt the certificate's key (if empty, the account default protectionKey key will be used) [optional]
key_data String Content of the certificate's private key in a Base64 format. [optional]
metadata String Deprecated - use description [optional]
name String Certificate name
rm_tag Array<String> List of the existent tags that will be removed from this item [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::UpdateCertificateValue.new(
  add_tag: null,
  certificate_data: null,
  delete_protection: null,
  description: null,
  expiration_event_in: null,
  format: null,
  json: null,
  keep_prev_version: null,
  key: null,
  key_data: null,
  metadata: null,
  name: null,
  rm_tag: null,
  token: null,
  uid_token: null
)