/** * 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} * @memberof GoogleCloudKmsConfigureRequest */ scopes?: Array; } /** * 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;