vault/ui/api-client/dist/models/GoogleCloudKmsConfigureRequest.d.ts
Jordan Reimer 5905f43e1f
[UI] Check-in Built API Client (#29955)
* removes dist from api-client gitignore

* ignores api-client/dist directory for eslint and prettier

* builds api client
2025-03-19 11:50:15 -06:00

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;