Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 2.58 KB

File metadata and controls

56 lines (50 loc) · 2.58 KB

Akeyless::UpdateAzureTarget

Properties

Name Type Description Notes
azure_cloud String Azure cloud environment to use. Values: AzureCloud (default), AzureUSGovernment, AzureChinaCloud. [optional][default to 'AzureCloud']
client_id String Azure client/application id [optional]
client_secret String Azure client secret [optional]
comment String Deprecated - use description [optional]
connection_type String Type of connection [credentials/cloud-identity] [optional][default to 'credentials']
description String Description of the object [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 that used to encrypt the target secret value (if empty, the account default protectionKey key will be used) [optional]
max_versions String Set the maximum number of versions, limited by the account settings defaults. [optional]
name String Target name
new_name String New target name [optional]
resource_group_name String The Resource Group name in your Azure subscription [optional]
resource_name String The name of the relevant Resource [optional]
subscription_id String Azure Subscription Id [optional]
tenant_id String Azure tenant id [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
update_version Boolean Deprecated [optional]
use_gw_cloud_identity Boolean Use the GW's Cloud IAM [Deprecated: Use connection-type=cloud-identity] [optional]

Example

require 'akeyless'

instance = Akeyless::UpdateAzureTarget.new(
  azure_cloud: null,
  client_id: null,
  client_secret: null,
  comment: null,
  connection_type: null,
  description: null,
  json: null,
  keep_prev_version: null,
  key: null,
  max_versions: null,
  name: null,
  new_name: null,
  resource_group_name: null,
  resource_name: null,
  subscription_id: null,
  tenant_id: null,
  token: null,
  uid_token: null,
  update_version: null,
  use_gw_cloud_identity: null
)