vault/ui/api-client/dist/models/GoogleCloudWriteStaticAccountRequest.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

51 lines
2.0 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 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<string>}
* @memberof GoogleCloudWriteStaticAccountRequest
*/
tokenScopes?: Array<string>;
}
/**
* 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;