vault/ui/api-client/dist/models/UiConfigUpdateCustomMessageResponse.d.ts
Jordan Reimer 3cc24fbecb
[UI] API Client Update (#30380)
* regenerates api client

* updates systemReadUtilizationReport api method to generateUtilizationReport

* updates VoidResponse interface to camelCase keys

* fixes issue in api-client VoidApiResponse

* updates tools components and tests to camel api response keys

* test fixes

* fixes more tests
2025-04-25 10:36:23 -06:00

87 lines
2.4 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 UiConfigUpdateCustomMessageResponse
*/
export interface UiConfigUpdateCustomMessageResponse {
/**
*
* @type {boolean}
* @memberof UiConfigUpdateCustomMessageResponse
*/
active?: boolean;
/**
*
* @type {boolean}
* @memberof UiConfigUpdateCustomMessageResponse
*/
authenticated?: boolean;
/**
*
* @type {Date}
* @memberof UiConfigUpdateCustomMessageResponse
*/
endTime?: Date;
/**
*
* @type {string}
* @memberof UiConfigUpdateCustomMessageResponse
*/
id?: string;
/**
*
* @type {object}
* @memberof UiConfigUpdateCustomMessageResponse
*/
link?: object;
/**
*
* @type {string}
* @memberof UiConfigUpdateCustomMessageResponse
*/
message?: string;
/**
*
* @type {object}
* @memberof UiConfigUpdateCustomMessageResponse
*/
options?: object;
/**
*
* @type {Date}
* @memberof UiConfigUpdateCustomMessageResponse
*/
startTime?: Date;
/**
*
* @type {string}
* @memberof UiConfigUpdateCustomMessageResponse
*/
title?: string;
/**
*
* @type {boolean}
* @memberof UiConfigUpdateCustomMessageResponse
*/
type?: boolean;
}
/**
* Check if a given object implements the UiConfigUpdateCustomMessageResponse interface.
*/
export declare function instanceOfUiConfigUpdateCustomMessageResponse(value: object): value is UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseFromJSON(json: any): UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseToJSON(json: any): UiConfigUpdateCustomMessageResponse;
export declare function UiConfigUpdateCustomMessageResponseToJSONTyped(value?: UiConfigUpdateCustomMessageResponse | null, ignoreDiscriminator?: boolean): any;