mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
51 lines
1.6 KiB
TypeScript
51 lines
1.6 KiB
TypeScript
/**
|
|
* HashiCorp Vault API
|
|
* HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.
|
|
*
|
|
* The version of the OpenAPI document: 1.21.0
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
/**
|
|
*
|
|
* @export
|
|
* @interface JwtOidcCallbackFormPostRequest
|
|
*/
|
|
export interface JwtOidcCallbackFormPostRequest {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof JwtOidcCallbackFormPostRequest
|
|
*/
|
|
clientNonce?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof JwtOidcCallbackFormPostRequest
|
|
*/
|
|
code?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof JwtOidcCallbackFormPostRequest
|
|
*/
|
|
idToken?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof JwtOidcCallbackFormPostRequest
|
|
*/
|
|
state?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the JwtOidcCallbackFormPostRequest interface.
|
|
*/
|
|
export declare function instanceOfJwtOidcCallbackFormPostRequest(value: object): value is JwtOidcCallbackFormPostRequest;
|
|
export declare function JwtOidcCallbackFormPostRequestFromJSON(json: any): JwtOidcCallbackFormPostRequest;
|
|
export declare function JwtOidcCallbackFormPostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): JwtOidcCallbackFormPostRequest;
|
|
export declare function JwtOidcCallbackFormPostRequestToJSON(json: any): JwtOidcCallbackFormPostRequest;
|
|
export declare function JwtOidcCallbackFormPostRequestToJSONTyped(value?: JwtOidcCallbackFormPostRequest | null, ignoreDiscriminator?: boolean): any;
|