import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Host resource. * For more information refer to [Host](https://wiki.servarr.com/lidarr/settings#general) documentation. * * ## Import * * import does not need parameters * * ```sh * $ pulumi import lidarr:System/host:Host example "" * ``` */ export declare class Host extends pulumi.CustomResource { /** * Get an existing Host resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: HostState, opts?: pulumi.CustomResourceOptions): Host; /** * Returns true if the given object is an instance of Host. 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 Host; /** * Application URL. */ readonly applicationUrl: pulumi.Output; /** * Authentication configuration. */ readonly authentication: pulumi.Output; /** * Backup configuration. */ readonly backup: pulumi.Output; /** * Bind address. */ readonly bindAddress: pulumi.Output; /** * Instance name. */ readonly instanceName: pulumi.Output; /** * Launch browser flag. */ readonly launchBrowser: pulumi.Output; /** * Logging configuration. */ readonly logging: pulumi.Output; /** * Proxy port. */ readonly port: pulumi.Output; /** * Proxy configuration. */ readonly proxy: pulumi.Output; /** * Backup configuration. */ readonly ssl: pulumi.Output; /** * Update configuration. */ readonly update: pulumi.Output; /** * URL base. */ readonly urlBase: pulumi.Output; /** * Create a Host 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: HostArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Host resources. */ export interface HostState { /** * Application URL. */ applicationUrl?: pulumi.Input; /** * Authentication configuration. */ authentication?: pulumi.Input; /** * Backup configuration. */ backup?: pulumi.Input; /** * Bind address. */ bindAddress?: pulumi.Input; /** * Instance name. */ instanceName?: pulumi.Input; /** * Launch browser flag. */ launchBrowser?: pulumi.Input; /** * Logging configuration. */ logging?: pulumi.Input; /** * Proxy port. */ port?: pulumi.Input; /** * Proxy configuration. */ proxy?: pulumi.Input; /** * Backup configuration. */ ssl?: pulumi.Input; /** * Update configuration. */ update?: pulumi.Input; /** * URL base. */ urlBase?: pulumi.Input; } /** * The set of arguments for constructing a Host resource. */ export interface HostArgs { /** * Application URL. */ applicationUrl: pulumi.Input; /** * Authentication configuration. */ authentication: pulumi.Input; /** * Backup configuration. */ backup: pulumi.Input; /** * Bind address. */ bindAddress: pulumi.Input; /** * Instance name. */ instanceName: pulumi.Input; /** * Launch browser flag. */ launchBrowser?: pulumi.Input; /** * Logging configuration. */ logging: pulumi.Input; /** * Proxy port. */ port: pulumi.Input; /** * Proxy configuration. */ proxy: pulumi.Input; /** * Backup configuration. */ ssl: pulumi.Input; /** * Update configuration. */ update: pulumi.Input; /** * URL base. */ urlBase: pulumi.Input; }