UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

21 lines (20 loc) 860 B
/** * 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; /** * 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;