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

105 lines
2.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 AuthReadConfigurationResponse
*/
export interface AuthReadConfigurationResponse {
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
accessor?: string;
/**
*
* @type {object}
* @memberof AuthReadConfigurationResponse
*/
config?: object;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
deprecationStatus?: string;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
description?: string;
/**
*
* @type {boolean}
* @memberof AuthReadConfigurationResponse
*/
externalEntropyAccess?: boolean;
/**
*
* @type {boolean}
* @memberof AuthReadConfigurationResponse
*/
local?: boolean;
/**
*
* @type {object}
* @memberof AuthReadConfigurationResponse
*/
options?: object;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
pluginVersion?: string;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
runningPluginVersion?: string;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
runningSha256?: string;
/**
*
* @type {boolean}
* @memberof AuthReadConfigurationResponse
*/
sealWrap?: boolean;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
type?: string;
/**
*
* @type {string}
* @memberof AuthReadConfigurationResponse
*/
uuid?: string;
}
/**
* Check if a given object implements the AuthReadConfigurationResponse interface.
*/
export declare function instanceOfAuthReadConfigurationResponse(value: object): value is AuthReadConfigurationResponse;
export declare function AuthReadConfigurationResponseFromJSON(json: any): AuthReadConfigurationResponse;
export declare function AuthReadConfigurationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AuthReadConfigurationResponse;
export declare function AuthReadConfigurationResponseToJSON(json: any): AuthReadConfigurationResponse;
export declare function AuthReadConfigurationResponseToJSONTyped(value?: AuthReadConfigurationResponse | null, ignoreDiscriminator?: boolean): any;