Skip to content

Latest commit

 

History

History
56 lines (50 loc) · 2.99 KB

File metadata and controls

56 lines (50 loc) · 2.99 KB

Akeyless::UpdateMcpSecretOAuthAuthCode

Properties

Name Type Description Notes
accessibility String for personal password manager [optional][default to 'regular']
ara_enabled Boolean Enable or disable Agentic Runtime Authority rule enforcement for this item. When false, user-defined input/output rules are stored but not enforced; the base security validation still runs. AraEnabled is tri-state (nil/true/false), not a plain bool: it self-encodes its wire value (see akl.OptionalBool) so an explicit false survives the curl-proxy relay instead of being dropped like a default-false bool flag. [optional]
enable_agentic_runtime_authority Boolean EnableAra is the documented spelling of AraEnabled. Both set the same field; --ara-enabled shipped first and stays as an undocumented alias so existing scripts and the Terraform provider keep working. [optional]
enable_ai_quorum Boolean Turns on AI Quorum checks for this item. [optional]
input_rule Array<String> Agentic input rule in name=...,rule=... format (e.g. name=rule1,rule=Sanitize input) [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 [optional]
last_version Integer [optional]
name String Secret name
oauth_client_id String OAuth client ID [optional]
oauth_client_secret String OAuth client secret [optional]
oauth_redirect_uri String OAuth redirect URI [optional]
oauth_refresh_token String OAuth refresh token [optional]
oauth_scopes Array<String> OAuth scopes [optional]
oauth_token_url String OAuth token URL [optional]
output_rule Array<String> Agentic output rule in name=...,rule=... format (e.g. name=rule1,rule=Mask secrets) [optional]
token String Authentication token (see `/auth` and `/configure`) [optional]
uid_token String The universal identity token, Required only for universal_identity authentication [optional]
url String URL of the service [optional]

Example

require 'akeyless'

instance = Akeyless::UpdateMcpSecretOAuthAuthCode.new(
  accessibility: null,
  ara_enabled: null,
  enable_agentic_runtime_authority: null,
  enable_ai_quorum: null,
  input_rule: null,
  json: null,
  keep_prev_version: null,
  key: null,
  last_version: null,
  name: null,
  oauth_client_id: null,
  oauth_client_secret: null,
  oauth_redirect_uri: null,
  oauth_refresh_token: null,
  oauth_scopes: null,
  oauth_token_url: null,
  output_rule: null,
  token: null,
  uid_token: null,
  url: null
)