Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.66 KB

GatewayCreateAllowedAccess.md

File metadata and controls

36 lines (30 loc) · 1.66 KB

Akeyless::GatewayCreateAllowedAccess

Properties

Name Type Description Notes
sub_claims_case_insensitive Boolean [optional]
access_id String Access ID The access id to be attached to this allowed access. Auth method with this access id should already exist.
case_sensitive String Treat sub claims as case-sensitive [true/false] [optional][default to 'true']
description String Allowed access description [optional]
json Boolean Set output format to JSON [optional][default to false]
name String Allowed access name
permissions String Permissions Comma-seperated list of permissions for this allowed access. Available permissions: [defaults,targets,classic_keys,automatic_migration,ldap_auth,dynamic_secret,k8s_auth,log_forwarding,zero_knowledge_encryption,rotated_secret,caching,event_forwarding,admin,kmip,general] [optional]
sub_claims Hash<String, String> Sub claims key/val of sub claims, e.g group=admins,developers [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::GatewayCreateAllowedAccess.new(
  sub_claims_case_insensitive: null,
  access_id: null,
  case_sensitive: null,
  description: null,
  json: null,
  name: null,
  permissions: null,
  sub_claims: null,
  token: null,
  uid_token: null
)