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

33 lines
1.2 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 WellKnownListLabelsResponse
*/
export interface WellKnownListLabelsResponse {
/**
*
* @type {Array<string>}
* @memberof WellKnownListLabelsResponse
*/
keys?: Array<string>;
}
/**
* Check if a given object implements the WellKnownListLabelsResponse interface.
*/
export declare function instanceOfWellKnownListLabelsResponse(value: object): value is WellKnownListLabelsResponse;
export declare function WellKnownListLabelsResponseFromJSON(json: any): WellKnownListLabelsResponse;
export declare function WellKnownListLabelsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WellKnownListLabelsResponse;
export declare function WellKnownListLabelsResponseToJSON(json: any): WellKnownListLabelsResponse;
export declare function WellKnownListLabelsResponseToJSONTyped(value?: WellKnownListLabelsResponse | null, ignoreDiscriminator?: boolean): any;