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

45 lines
1.7 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 SystemListSyncDestinationsResponse
*/
export interface SystemListSyncDestinationsResponse {
/**
* Map of destinations listing all existing destination names regrouped per type.
* @type {object}
* @memberof SystemListSyncDestinationsResponse
*/
keyInfo?: object;
/**
* List of destination types with at least one destination.
* @type {Array<string>}
* @memberof SystemListSyncDestinationsResponse
*/
keys?: Array<string>;
/**
* Total number of destinations across all types.
* @type {number}
* @memberof SystemListSyncDestinationsResponse
*/
totalDestinations?: number;
}
/**
* Check if a given object implements the SystemListSyncDestinationsResponse interface.
*/
export declare function instanceOfSystemListSyncDestinationsResponse(value: object): value is SystemListSyncDestinationsResponse;
export declare function SystemListSyncDestinationsResponseFromJSON(json: any): SystemListSyncDestinationsResponse;
export declare function SystemListSyncDestinationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemListSyncDestinationsResponse;
export declare function SystemListSyncDestinationsResponseToJSON(json: any): SystemListSyncDestinationsResponse;
export declare function SystemListSyncDestinationsResponseToJSONTyped(value?: SystemListSyncDestinationsResponse | null, ignoreDiscriminator?: boolean): any;