mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 14:47:01 +02:00
39 lines
1.4 KiB
TypeScript
39 lines
1.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.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 MongoDbAtlasConfigureRequest
|
|
*/
|
|
export interface MongoDbAtlasConfigureRequest {
|
|
/**
|
|
* MongoDB Atlas Programmatic Private Key
|
|
* @type {string}
|
|
* @memberof MongoDbAtlasConfigureRequest
|
|
*/
|
|
privateKey: string;
|
|
/**
|
|
* MongoDB Atlas Programmatic Public Key
|
|
* @type {string}
|
|
* @memberof MongoDbAtlasConfigureRequest
|
|
*/
|
|
publicKey: string;
|
|
}
|
|
/**
|
|
* Check if a given object implements the MongoDbAtlasConfigureRequest interface.
|
|
*/
|
|
export declare function instanceOfMongoDbAtlasConfigureRequest(value: object): value is MongoDbAtlasConfigureRequest;
|
|
export declare function MongoDbAtlasConfigureRequestFromJSON(json: any): MongoDbAtlasConfigureRequest;
|
|
export declare function MongoDbAtlasConfigureRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MongoDbAtlasConfigureRequest;
|
|
export declare function MongoDbAtlasConfigureRequestToJSON(json: any): MongoDbAtlasConfigureRequest;
|
|
export declare function MongoDbAtlasConfigureRequestToJSONTyped(value?: MongoDbAtlasConfigureRequest | null, ignoreDiscriminator?: boolean): any;
|