import * as pulumi from "@pulumi/pulumi"; export declare class Computeresource extends pulumi.CustomResource { /** * Get an existing Computeresource 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?: ComputeresourceState, opts?: pulumi.CustomResourceOptions): Computeresource; /** * Returns true if the given object is an instance of Computeresource. 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 Computeresource; /** * @SUMMARY Foreman representation of computeresource. ComputeResources serve as an identification string that defines * autonomy, authority, or control for a portion of a network. */ readonly __meta_: pulumi.Output; /** * For VMware only */ readonly cachingenabled: pulumi.Output; /** * For oVirt, VMware Datacenter */ readonly datacenter: pulumi.Output; /** * Description of the compute resource */ readonly description: pulumi.Output; /** * For Libvirt: "VNC" or "SPICE". For VMWare: "VNC" or "VMRC" */ readonly displaytype: pulumi.Output; /** * The HyperVisor/Cloud Provider for this Compute Resource:supported providers include "Libvirt", "Ovirt", "EC2","Vmware", * "Openstack", "Rackspace", "GCE" */ readonly hypervisor: pulumi.Output; /** * Name of the compute resource */ readonly name: pulumi.Output; /** * Password for oVirt, EC2, VMware, OpenStack. Secret key for EC2 */ readonly password: pulumi.Output; /** * For VMware */ readonly server: pulumi.Output; /** * For Libvirt and VMware only */ readonly setconsolepassword: pulumi.Output; /** * URL for Libvirt, oVirt, OpenStack and Rackspace */ readonly url: pulumi.Output; /** * Username for oVirt, EC2, VMware, OpenStack. Access Key for EC2. */ readonly user: pulumi.Output; /** * Create a Computeresource 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: ComputeresourceArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Computeresource resources. */ export interface ComputeresourceState { /** * @SUMMARY Foreman representation of computeresource. ComputeResources serve as an identification string that defines * autonomy, authority, or control for a portion of a network. */ __meta_?: pulumi.Input; /** * For VMware only */ cachingenabled?: pulumi.Input; /** * For oVirt, VMware Datacenter */ datacenter?: pulumi.Input; /** * Description of the compute resource */ description?: pulumi.Input; /** * For Libvirt: "VNC" or "SPICE". For VMWare: "VNC" or "VMRC" */ displaytype?: pulumi.Input; /** * The HyperVisor/Cloud Provider for this Compute Resource:supported providers include "Libvirt", "Ovirt", "EC2","Vmware", * "Openstack", "Rackspace", "GCE" */ hypervisor?: pulumi.Input; /** * Name of the compute resource */ name?: pulumi.Input; /** * Password for oVirt, EC2, VMware, OpenStack. Secret key for EC2 */ password?: pulumi.Input; /** * For VMware */ server?: pulumi.Input; /** * For Libvirt and VMware only */ setconsolepassword?: pulumi.Input; /** * URL for Libvirt, oVirt, OpenStack and Rackspace */ url?: pulumi.Input; /** * Username for oVirt, EC2, VMware, OpenStack. Access Key for EC2. */ user?: pulumi.Input; } /** * The set of arguments for constructing a Computeresource resource. */ export interface ComputeresourceArgs { /** * For VMware only */ cachingenabled?: pulumi.Input; /** * For oVirt, VMware Datacenter */ datacenter?: pulumi.Input; /** * Description of the compute resource */ description?: pulumi.Input; /** * For Libvirt: "VNC" or "SPICE". For VMWare: "VNC" or "VMRC" */ displaytype?: pulumi.Input; /** * The HyperVisor/Cloud Provider for this Compute Resource:supported providers include "Libvirt", "Ovirt", "EC2","Vmware", * "Openstack", "Rackspace", "GCE" */ hypervisor: pulumi.Input; /** * Name of the compute resource */ name?: pulumi.Input; /** * Password for oVirt, EC2, VMware, OpenStack. Secret key for EC2 */ password?: pulumi.Input; /** * For VMware */ server?: pulumi.Input; /** * For Libvirt and VMware only */ setconsolepassword?: pulumi.Input; /** * URL for Libvirt, oVirt, OpenStack and Rackspace */ url: pulumi.Input; /** * Username for oVirt, EC2, VMware, OpenStack. Access Key for EC2. */ user?: pulumi.Input; }