import * as pulumi from "@pulumi/pulumi"; /** * The provider type for the foreman package. By default, resources use package-wide configuration * settings, however an explicit `Provider` instance may be created and passed during resource * construction to achieve fine-grained programmatic control over provider settings. See the * [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information. */ export declare class Provider extends pulumi.ProviderResource { /** * Returns true if the given object is an instance of Provider. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Provider; /** * The username to authenticate against Foreman. This can also be set through the environment variable * `FOREMAN_CLIENT_PASSWORD`. Defaults to `""`. */ readonly clientPassword: pulumi.Output; /** * The username to authenticate against Foreman. This can also be set through the environment variable * `FOREMAN_CLIENT_USERNAME`. Defaults to `""`. */ readonly clientUsername: pulumi.Output; readonly providerLogfile: pulumi.Output; /** * 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'`. */ readonly providerLoglevel: pulumi.Output; /** * The hostname / IP address of the Foreman REST API server */ readonly serverHostname: pulumi.Output; /** * The protocol the Foreman REST API server is using for communication. Defaults to `"https"`. */ readonly serverProtocol: pulumi.Output; /** * Create a Provider resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ProviderArgs, opts?: pulumi.ResourceOptions); } /** * The set of arguments for constructing a Provider resource. */ export interface ProviderArgs { /** * Whether or not the client should try to authenticate through the HTTP negotiate mechanism. Defaults to `false`. */ clientAuthNegotiate?: pulumi.Input; /** * The username to authenticate against Foreman. This can also be set through the environment variable * `FOREMAN_CLIENT_PASSWORD`. Defaults to `""`. */ clientPassword?: pulumi.Input; /** * Whether or not to verify the server's certificate. Defaults to `false`. */ clientTlsInsecure?: pulumi.Input; /** * The username to authenticate against Foreman. This can also be set through the environment variable * `FOREMAN_CLIENT_USERNAME`. Defaults to `""`. */ clientUsername?: pulumi.Input; /** * 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 */ locationId?: pulumi.Input; /** * 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 */ organizationId?: pulumi.Input; providerLogfile?: pulumi.Input; /** * 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'`. */ providerLoglevel?: pulumi.Input; /** * The hostname / IP address of the Foreman REST API server */ serverHostname?: pulumi.Input; /** * The protocol the Foreman REST API server is using for communication. Defaults to `"https"`. */ serverProtocol?: pulumi.Input; }