Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 1.37 KB

GetCertificateValue.md

File metadata and controls

34 lines (28 loc) · 1.37 KB

Akeyless::GetCertificateValue

Properties

Name Type Description Notes
cert_issuer_name String The parent PKI Certificate Issuer's name of the certificate, required when used with display-id and token [optional]
display_id String Certificate display ID [optional]
ignore_cache String Retrieve the Secret value without checking the Gateway's cache [true/false]. This flag is only relevant when using the RestAPI [optional][default to 'false']
issuance_token String Token for getting the issued certificate [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Certificate name [default to 'dummy_certificate_name']
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
version Integer Certificate version [optional]

Example

require 'akeyless'

instance = Akeyless::GetCertificateValue.new(
  cert_issuer_name: null,
  display_id: null,
  ignore_cache: null,
  issuance_token: null,
  json: null,
  name: null,
  token: null,
  uid_token: null,
  version: null
)