HashiCorp Vault · JSON Structure

Vault Sys Enable Auth Method Request Structure

EnableAuthMethodRequest schema from HashiCorp Vault API

Type: object Properties: 2 Required: 1
DevOpsEncryptionOpen SourcePKISecrets ManagementSecurity

EnableAuthMethodRequest is a JSON Structure definition published by HashiCorp Vault, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type description

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vault/refs/heads/main/json-structure/vault-sys-enable-auth-method-request-structure.json",
  "name": "EnableAuthMethodRequest",
  "description": "EnableAuthMethodRequest schema from HashiCorp Vault API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "Type of auth method to enable. Supported types include approle, aws, azure, github, jwt, kubernetes, ldap, oidc, token, userpass.",
      "example": "approle"
    },
    "description": {
      "type": "string",
      "description": "Human-friendly description of the auth method.",
      "example": "AppRole auth for microservices"
    }
  },
  "required": [
    "type"
  ]
}