vault/ui/api-client/dist/esm/models/SamlWriteTokenRequest.d.ts

39 lines
1.5 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 SamlWriteTokenRequest
*/
export interface SamlWriteTokenRequest {
/**
* The value which produced the 'client_challenge' provided to the SSO Service URL API at the start of the authentication flow. Its base64-encoded, sha256 digest must match the 'client_challenge' value.
* @type {string}
* @memberof SamlWriteTokenRequest
*/
clientVerifier: string;
/**
* The 'token_poll_id' value returned from the SSO Service URL API at the start of the authentication flow.
* @type {string}
* @memberof SamlWriteTokenRequest
*/
tokenPollId: string;
}
/**
* Check if a given object implements the SamlWriteTokenRequest interface.
*/
export declare function instanceOfSamlWriteTokenRequest(value: object): value is SamlWriteTokenRequest;
export declare function SamlWriteTokenRequestFromJSON(json: any): SamlWriteTokenRequest;
export declare function SamlWriteTokenRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SamlWriteTokenRequest;
export declare function SamlWriteTokenRequestToJSON(json: any): SamlWriteTokenRequest;
export declare function SamlWriteTokenRequestToJSONTyped(value?: SamlWriteTokenRequest | null, ignoreDiscriminator?: boolean): any;