Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,6 @@ src/models/RekeyVerificationCancelResponse.ts
src/models/RekeyVerificationReadProgressResponse.ts
src/models/RekeyVerificationUpdateRequest.ts
src/models/RekeyVerificationUpdateResponse.ts
src/models/ReleaseInfoReadReleaseInfoResponse.ts
src/models/ReloadPluginsRequest.ts
src/models/ReloadPluginsResponse.ts
src/models/RemountRequest.ts
Expand All @@ -703,7 +702,9 @@ src/models/SamlWriteTokenRequest.ts
src/models/ScanReportRequest.ts
src/models/ScepLoginRequest.ts
src/models/ScepWriteRoleRoleRequest.ts
src/models/ScimUpdateClientLinkGroupRequest.ts
src/models/ScimUpdateClientRequest.ts
src/models/ScimUpdateClientUnlinkGroupRequest.ts
src/models/SealStatusResponse.ts
src/models/SpiffeConfigureRequest.ts
src/models/SpiffeConfigureResponse.ts
Expand Down Expand Up @@ -936,7 +937,6 @@ src/models/UserpassLoginRequest.ts
src/models/UserpassResetPasswordRequest.ts
src/models/UserpassUpdatePoliciesRequest.ts
src/models/UserpassWriteUserRequest.ts
src/models/VaultVersionsReadReadResponse.ts
src/models/VersionHistoryResponse.ts
src/models/WellKnownListLabels2Response.ts
src/models/WellKnownListLabelsResponse.ts
Expand Down
185 changes: 104 additions & 81 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -11516,6 +11516,74 @@
}
}
},
"/identity/scim/client/{client_name}/link-group": {
"parameters": [
{
"name": "client_name",
"description": "Name of the SCIM client.",
"in": "path",
"schema": {
"type": "string"
},
"required": true
}
],
"post": {
"operationId": "scim-update-client-link-group",
"tags": [
"identity"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ScimUpdateClientLinkGroupRequest"
}
}
}
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/identity/scim/client/{client_name}/unlink-group": {
"parameters": [
{
"name": "client_name",
"description": "Name of the SCIM client.",
"in": "path",
"schema": {
"type": "string"
},
"required": true
}
],
"post": {
"operationId": "scim-update-client-unlink-group",
"tags": [
"identity"
],
"requestBody": {
"required": true,
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ScimUpdateClientUnlinkGroupRequest"
}
}
}
},
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/identity/scim/v2/Groups": {
"x-vault-createSupported": true,
"get": {
Expand Down Expand Up @@ -19011,29 +19079,6 @@
}
}
},
"/sys/release-info": {
"description": "Fetch release information",
"get": {
"summary": "Fetch release information from GitHub",
"description": "Returns parsed release information including breaking changes, new behavior, and known issues for each version.",
"operationId": "release-info-read-release-info",
"tags": [
"system"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ReleaseInfoReadReleaseInfoResponse"
}
}
}
}
}
}
},
"/sys/remount": {
"description": "Move the mount point of an already-mounted backend, within or across namespaces",
"x-vault-sudo": true,
Expand Down Expand Up @@ -22175,40 +22220,6 @@
}
}
},
"/sys/vault-versions": {
"description": "Fetch available Vault versions",
"get": {
"summary": "Fetch available Vault versions from releases.hashicorp.com",
"description": "Returns deduplicated MAJOR.MINOR.PATCH version strings filtered by edition.",
"operationId": "vault-versions-read-read",
"tags": [
"system"
],
"parameters": [
{
"name": "edition",
"description": "Edition to filter by. \"enterprise\" returns only \"+ent\" versions; \"community\" (default) returns only versions with no build metadata.",
"in": "query",
"schema": {
"type": "string",
"default": "community"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/VaultVersionsReadReadResponse"
}
}
}
}
}
}
},
"/sys/version-history/": {
"description": "List historical version changes sorted by installation time in ascending order.",
"get": {
Expand Down Expand Up @@ -59514,6 +59525,10 @@
"OauthResourceServerReadProfileResponse": {
"type": "object",
"properties": {
"actor_claim": {
"type": "string",
"description": "Optional claim to use as the actor identifier."
},
"audiences": {
"type": "array",
"description": "List of allowed audiences (aud claim).",
Expand Down Expand Up @@ -59572,6 +59587,10 @@
"type": "string"
}
},
"unique_id_claim": {
"type": "string",
"description": "Optional claim to use as the unique identifier for the JWT claim."
},
"use_jwks": {
"type": "boolean",
"description": "If true, use JWKS URI for key validation profile names."
Expand All @@ -59585,6 +59604,11 @@
"OauthResourceServerUpdateProfileRequest": {
"type": "object",
"properties": {
"actor_claim": {
"type": "string",
"description": "Optional claim to use as the actor identifier.",
"default": "act"
},
"audiences": {
"type": "array",
"description": "List of allowed audiences (aud claim).",
Expand Down Expand Up @@ -59641,6 +59665,11 @@
"type": "string"
}
},
"unique_id_claim": {
"type": "string",
"description": "Optional unique identifier for the JWT claim.",
"default": "jti"
},
"use_jwks": {
"type": "boolean",
"description": "If true, use JWKS URI for key validation; if false, use static public keys.",
Expand Down Expand Up @@ -75621,18 +75650,6 @@
}
}
},
"ReleaseInfoReadReleaseInfoResponse": {
"type": "object",
"properties": {
"versions": {
"type": "array",
"description": "Array of version information objects containing breaking changes, new behavior, known issues, and rollback steps",
"items": {
"type": "object"
}
}
}
},
"ReloadPluginsRequest": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -76321,6 +76338,15 @@
}
}
},
"ScimUpdateClientLinkGroupRequest": {
"type": "object",
"properties": {
"group_id": {
"type": "string",
"description": "Vault group ID to link to the SCIM client."
}
}
},
"ScimUpdateClientRequest": {
"type": "object",
"properties": {
Expand All @@ -76338,6 +76364,15 @@
}
}
},
"ScimUpdateClientUnlinkGroupRequest": {
"type": "object",
"properties": {
"group_id": {
"type": "string",
"description": "Vault group ID to unlink from the SCIM client."
}
}
},
"SealStatusResponse": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -83334,18 +83369,6 @@
}
}
},
"VaultVersionsReadReadResponse": {
"type": "object",
"properties": {
"versions": {
"type": "array",
"description": "Sorted array of Vault version strings matching the requested edition",
"items": {
"type": "object"
}
}
}
},
"VersionHistoryResponse": {
"type": "object",
"properties": {
Expand Down
Loading
Loading