mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
45 lines
1.8 KiB
TypeScript
45 lines
1.8 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 TransformApplyStoreSchemaRequest
|
|
*/
|
|
export interface TransformApplyStoreSchemaRequest {
|
|
/**
|
|
* For the `sql` store type, the password to use in populating the connection string for this operation.
|
|
* @type {string}
|
|
* @memberof TransformApplyStoreSchemaRequest
|
|
*/
|
|
password?: string;
|
|
/**
|
|
* The transformation type to configure the store to handle.
|
|
* @type {string}
|
|
* @memberof TransformApplyStoreSchemaRequest
|
|
*/
|
|
transformationType?: string;
|
|
/**
|
|
* For the `sql` store type, the username to use in populating the connection string for this operation.
|
|
* @type {string}
|
|
* @memberof TransformApplyStoreSchemaRequest
|
|
*/
|
|
username?: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the TransformApplyStoreSchemaRequest interface.
|
|
*/
|
|
export declare function instanceOfTransformApplyStoreSchemaRequest(value: object): value is TransformApplyStoreSchemaRequest;
|
|
export declare function TransformApplyStoreSchemaRequestFromJSON(json: any): TransformApplyStoreSchemaRequest;
|
|
export declare function TransformApplyStoreSchemaRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransformApplyStoreSchemaRequest;
|
|
export declare function TransformApplyStoreSchemaRequestToJSON(json: any): TransformApplyStoreSchemaRequest;
|
|
export declare function TransformApplyStoreSchemaRequestToJSONTyped(value?: TransformApplyStoreSchemaRequest | null, ignoreDiscriminator?: boolean): any;
|