/** * 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 GoogleCloudWriteStaticAccountRequest */ export interface GoogleCloudWriteStaticAccountRequest { /** * Bindings configuration string. * @type {string} * @memberof GoogleCloudWriteStaticAccountRequest */ bindings?: string; /** * Type of secret generated for this account. Cannot be updated. Defaults to "access_token" * @type {string} * @memberof GoogleCloudWriteStaticAccountRequest */ secretType?: string; /** * Required. Email of the GCP service account to manage. Cannot be updated. * @type {string} * @memberof GoogleCloudWriteStaticAccountRequest */ serviceAccountEmail?: string; /** * List of OAuth scopes to assign to access tokens generated under this account. Ignored if "secret_type" is not ""access_token"" * @type {Array} * @memberof GoogleCloudWriteStaticAccountRequest */ tokenScopes?: Array; } /** * Check if a given object implements the GoogleCloudWriteStaticAccountRequest interface. */ export declare function instanceOfGoogleCloudWriteStaticAccountRequest(value: object): value is GoogleCloudWriteStaticAccountRequest; export declare function GoogleCloudWriteStaticAccountRequestFromJSON(json: any): GoogleCloudWriteStaticAccountRequest; export declare function GoogleCloudWriteStaticAccountRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GoogleCloudWriteStaticAccountRequest; export declare function GoogleCloudWriteStaticAccountRequestToJSON(json: any): GoogleCloudWriteStaticAccountRequest; export declare function GoogleCloudWriteStaticAccountRequestToJSONTyped(value?: GoogleCloudWriteStaticAccountRequest | null, ignoreDiscriminator?: boolean): any;