mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 06:37:02 +02:00
33 lines
1.6 KiB
TypeScript
33 lines
1.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 SystemReadSyncAssociationsMountSecretNameResponse
|
|
*/
|
|
export interface SystemReadSyncAssociationsMountSecretNameResponse {
|
|
/**
|
|
* Map of external destinations associated with a given Vault secret.
|
|
* @type {object}
|
|
* @memberof SystemReadSyncAssociationsMountSecretNameResponse
|
|
*/
|
|
associatedDestinations?: object;
|
|
}
|
|
/**
|
|
* Check if a given object implements the SystemReadSyncAssociationsMountSecretNameResponse interface.
|
|
*/
|
|
export declare function instanceOfSystemReadSyncAssociationsMountSecretNameResponse(value: object): value is SystemReadSyncAssociationsMountSecretNameResponse;
|
|
export declare function SystemReadSyncAssociationsMountSecretNameResponseFromJSON(json: any): SystemReadSyncAssociationsMountSecretNameResponse;
|
|
export declare function SystemReadSyncAssociationsMountSecretNameResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemReadSyncAssociationsMountSecretNameResponse;
|
|
export declare function SystemReadSyncAssociationsMountSecretNameResponseToJSON(json: any): SystemReadSyncAssociationsMountSecretNameResponse;
|
|
export declare function SystemReadSyncAssociationsMountSecretNameResponseToJSONTyped(value?: SystemReadSyncAssociationsMountSecretNameResponse | null, ignoreDiscriminator?: boolean): any;
|