/** * Whether or not the client should try to authenticate through the HTTP negotiate mechanism. Defaults to `false`. */ export declare const clientAuthNegotiate: boolean | undefined; /** * The username to authenticate against Foreman. This can also be set through the environment variable * `FOREMAN_CLIENT_PASSWORD`. Defaults to `""`. */ export declare const clientPassword: string | undefined; /** * Whether or not to verify the server's certificate. Defaults to `false`. */ export declare const clientTlsInsecure: boolean | undefined; /** * The username to authenticate against Foreman. This can also be set through the environment variable * `FOREMAN_CLIENT_USERNAME`. Defaults to `""`. */ export declare const clientUsername: string | undefined; /** * The location for all resources requested and created by the providerDefaults to "0". Set organizationId and locationId * to a value < 0 if you need to disable Locations and Organizations on Foreman older than 1.21 */ export declare const locationId: number | undefined; /** * The organization for all resource requested and created by the Provider Defaults to "0". Set organizationId and * locationId to a value < 0 if you need to disable Locations and Organizations on Foreman older than 1.21 */ export declare const organizationId: number | undefined; export declare const providerLogfile: string | undefined; /** * The level of verbosity for the provider's log file. This setting determines which types of log messages are written and * which are ignored. Possible values (from most verbose to least verbose) include 'DEBUG', 'TRACE', 'INFO', 'WARNING', * 'ERROR', and 'NONE'. The provider's logs will be written to the location specified by `providerLogfile`. This can also * be set through the environment variable `FOREMAN_PROVIDER_LOGLEVEL`. Defaults to `'INFO'`. */ export declare const providerLoglevel: string | undefined; /** * The hostname / IP address of the Foreman REST API server */ export declare const serverHostname: string | undefined; /** * The protocol the Foreman REST API server is using for communication. Defaults to `"https"`. */ export declare const serverProtocol: string | undefined;