mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* removes dist from api-client gitignore * ignores api-client/dist directory for eslint and prettier * builds api client
87 lines
2.5 KiB
TypeScript
87 lines
2.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.20.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 RootTokenGenerationInitialize2Response
|
|
*/
|
|
export interface RootTokenGenerationInitialize2Response {
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
complete?: boolean;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
encodedRootToken?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
encodedToken?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
nonce?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
otp?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
otpLength?: number;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
pgpFingerprint?: string;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
progress?: number;
|
|
/**
|
|
*
|
|
* @type {number}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
required?: number;
|
|
/**
|
|
*
|
|
* @type {boolean}
|
|
* @memberof RootTokenGenerationInitialize2Response
|
|
*/
|
|
started?: boolean;
|
|
}
|
|
/**
|
|
* Check if a given object implements the RootTokenGenerationInitialize2Response interface.
|
|
*/
|
|
export declare function instanceOfRootTokenGenerationInitialize2Response(value: object): value is RootTokenGenerationInitialize2Response;
|
|
export declare function RootTokenGenerationInitialize2ResponseFromJSON(json: any): RootTokenGenerationInitialize2Response;
|
|
export declare function RootTokenGenerationInitialize2ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): RootTokenGenerationInitialize2Response;
|
|
export declare function RootTokenGenerationInitialize2ResponseToJSON(json: any): RootTokenGenerationInitialize2Response;
|
|
export declare function RootTokenGenerationInitialize2ResponseToJSONTyped(value?: RootTokenGenerationInitialize2Response | null, ignoreDiscriminator?: boolean): any;
|