/** * Allow insecure HTTPS client. This can also be set as the ACI_INSECURE environment variable. Defaults to true. */ export declare const insecure: boolean | undefined; /** * Enable debug logging. This can also be set as the ACI_LOGGING environment variable. Defaults to false. */ export declare const logging: boolean | undefined; /** * Password for the APIC Account. This can also be set as the ACI_PASSWORD environment variable. */ export declare const password: string; /** * Number of retries for REST API calls. This can also be set as the ACI_RETRIES environment variable. Defaults to 3. */ export declare const retries: number | undefined; /** * URL of the Cisco APIC web interface. This can also be set as the ACI_URL environment variable. */ export declare const url: string; /** * Username for the APIC Account. This can also be set as the ACI_USERNAME environment variable. */ export declare const username: string;