mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-25 00:21:07 +02:00
* removes dist from api-client gitignore * ignores api-client/dist directory for eslint and prettier * builds api client
39 lines
1.7 KiB
TypeScript
39 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.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 GoogleCloudKmsConfigureRequest
|
|
*/
|
|
export interface GoogleCloudKmsConfigureRequest {
|
|
/**
|
|
* The credentials to use for authenticating to Google Cloud. Leave this blank to use the Default Application Credentials or instance metadata authentication.
|
|
* @type {string}
|
|
* @memberof GoogleCloudKmsConfigureRequest
|
|
*/
|
|
credentials?: string;
|
|
/**
|
|
* The list of full-URL scopes to request when authenticating. By default, this requests https://www.googleapis.com/auth/cloudkms.
|
|
* @type {Array<string>}
|
|
* @memberof GoogleCloudKmsConfigureRequest
|
|
*/
|
|
scopes?: Array<string>;
|
|
}
|
|
/**
|
|
* Check if a given object implements the GoogleCloudKmsConfigureRequest interface.
|
|
*/
|
|
export declare function instanceOfGoogleCloudKmsConfigureRequest(value: object): value is GoogleCloudKmsConfigureRequest;
|
|
export declare function GoogleCloudKmsConfigureRequestFromJSON(json: any): GoogleCloudKmsConfigureRequest;
|
|
export declare function GoogleCloudKmsConfigureRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleCloudKmsConfigureRequest;
|
|
export declare function GoogleCloudKmsConfigureRequestToJSON(json: any): GoogleCloudKmsConfigureRequest;
|
|
export declare function GoogleCloudKmsConfigureRequestToJSONTyped(value?: GoogleCloudKmsConfigureRequest | null, ignoreDiscriminator?: boolean): any;
|