Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.15 KB

SalesforceTargetDetails.md

File metadata and controls

36 lines (30 loc) · 1.15 KB

Akeyless::SalesforceTargetDetails

Properties

Name Type Description Notes
app_private_key Array<Integer> params needed for jwt auth AppPrivateKey is the rsa private key in PEM format [optional]
auth_flow String [optional]
ca_cert_data Array<Integer> CACertData is the rsa 4096 certificate data in PEM format [optional]
ca_cert_name String CACertName is the name of the certificate in SalesForce tenant [optional]
client_id String [optional]
client_secret String params needed for password auth [optional]
password String [optional]
security_token String [optional]
tenant_url String [optional]
user_name String [optional]

Example

require 'akeyless'

instance = Akeyless::SalesforceTargetDetails.new(
  app_private_key: null,
  auth_flow: null,
  ca_cert_data: null,
  ca_cert_name: null,
  client_id: null,
  client_secret: null,
  password: null,
  security_token: null,
  tenant_url: null,
  user_name: null
)