/** * 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.21.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 SystemWriteSyncDestinationsVercelProjectNameRequest */ export interface SystemWriteSyncDestinationsVercelProjectNameRequest { /** * Vercel API access token with the permissions to manage environment variables. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ accessToken?: string; /** * Sets which IPv4 addresses Vault is allowed to connect to for syncing secrets. * @type {Array} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ allowedIpv4Addresses?: Array; /** * Sets which IPv6 addresses Vault is allowed to connect to for syncing secrets. * @type {Array} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ allowedIpv6Addresses?: Array; /** * Sets which port numbers Vault is allowed to connect through for syncing secrets. * @type {Array} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ allowedPorts?: Array; /** * Deployment environments where the environment variables are available. Accepts 'development', 'preview' & 'production'. * @type {Array} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ deploymentEnvironments?: Array; /** * Allows all IP addresses and ports to be connected to for syncing secrets. * @type {boolean} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ disableStrictNetworking?: boolean; /** * Determines what level of information is synced as a distinct resource at the destination. Supports `secret-path` and `secret-key`. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ granularity?: string; /** * Project ID where to manage environment variables. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ projectId?: string; /** * Asynchronously unsyncs all associated secrets with the destination then deletes the destination config. * @type {boolean} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ purge?: boolean; /** * Template describing how to generate external secret names. Supports a subset of the Go Template syntax. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ secretNameTemplate?: string; /** * Team ID the project belongs to. Optional. * @type {string} * @memberof SystemWriteSyncDestinationsVercelProjectNameRequest */ teamId?: string; } /** * Check if a given object implements the SystemWriteSyncDestinationsVercelProjectNameRequest interface. */ export declare function instanceOfSystemWriteSyncDestinationsVercelProjectNameRequest(value: object): value is SystemWriteSyncDestinationsVercelProjectNameRequest; export declare function SystemWriteSyncDestinationsVercelProjectNameRequestFromJSON(json: any): SystemWriteSyncDestinationsVercelProjectNameRequest; export declare function SystemWriteSyncDestinationsVercelProjectNameRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SystemWriteSyncDestinationsVercelProjectNameRequest; export declare function SystemWriteSyncDestinationsVercelProjectNameRequestToJSON(json: any): SystemWriteSyncDestinationsVercelProjectNameRequest; export declare function SystemWriteSyncDestinationsVercelProjectNameRequestToJSONTyped(value?: SystemWriteSyncDestinationsVercelProjectNameRequest | null, ignoreDiscriminator?: boolean): any;