@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
25 lines (24 loc) • 1.06 kB
TypeScript
/**
* Allow insecure HTTPS client. This can also be set as the `SDWAN_INSECURE` environment variable. Defaults to `true`.
*/
export declare const insecure: boolean | undefined;
/**
* Password for the SD-WAN Manager account. This can also be set as the `SDWAN_PASSWORD` environment variable.
*/
export declare const password: string | undefined;
/**
* Number of retries for REST API calls. This can also be set as the `SDWAN_RETRIES` environment variable. Defaults to `3`.
*/
export declare const retries: number | undefined;
/**
* Timeout in seconds for asynchronous tasks. This can also be set as the `SDWAN_TASK_TIMEOUT` environment variable. Defaults to `1500`.
*/
export declare const taskTimeout: number | undefined;
/**
* URL of the Cisco SD-WAN Manager device. This can also be set as the `SDWAN_URL` environment variable.
*/
export declare const url: string | undefined;
/**
* Username for the SD-WAN Manager account. This can also be set as the `SDWAN_USERNAME` environment variable.
*/
export declare const username: string | undefined;