import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * ## Example Usage */ export declare class Vrackservices extends pulumi.CustomResource { /** * Get an existing Vrackservices 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?: VrackservicesState, opts?: pulumi.CustomResourceOptions): Vrackservices; /** * Returns true if the given object is an instance of Vrackservices. 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 Vrackservices; /** * Computed hash used to control concurrent modification requests. Here, it represents the target specification value the request is based on */ readonly checksum: pulumi.Output; /** * Date of the vRack Services delivery */ readonly createdAt: pulumi.Output; /** * Current configuration applied to the vRack Services */ readonly currentState: pulumi.Output; /** * Asynchronous operations ongoing on the vRack Services */ readonly currentTasks: pulumi.Output; /** * IAM resource metadata */ readonly iam: pulumi.Output; /** * Details about an Order */ readonly order: pulumi.Output; /** * OVH subsidiaries */ readonly ovhSubsidiary: pulumi.Output; readonly planOptions: pulumi.Output; readonly plans: pulumi.Output; /** * Reflects the readiness of the vRack Services. A new target specification request will be accepted only in `READY` status */ readonly resourceStatus: pulumi.Output; /** * Target specification of the vRack Services */ readonly targetSpec: pulumi.Output; /** * Date of the Last vRack Services update */ readonly updatedAt: pulumi.Output; /** * Create a Vrackservices 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: VrackservicesArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Vrackservices resources. */ export interface VrackservicesState { /** * Computed hash used to control concurrent modification requests. Here, it represents the target specification value the request is based on */ checksum?: pulumi.Input; /** * Date of the vRack Services delivery */ createdAt?: pulumi.Input; /** * Current configuration applied to the vRack Services */ currentState?: pulumi.Input; /** * Asynchronous operations ongoing on the vRack Services */ currentTasks?: pulumi.Input[]>; /** * IAM resource metadata */ iam?: pulumi.Input; /** * Details about an Order */ order?: pulumi.Input; /** * OVH subsidiaries */ ovhSubsidiary?: pulumi.Input; planOptions?: pulumi.Input[]>; plans?: pulumi.Input[]>; /** * Reflects the readiness of the vRack Services. A new target specification request will be accepted only in `READY` status */ resourceStatus?: pulumi.Input; /** * Target specification of the vRack Services */ targetSpec?: pulumi.Input; /** * Date of the Last vRack Services update */ updatedAt?: pulumi.Input; } /** * The set of arguments for constructing a Vrackservices resource. */ export interface VrackservicesArgs { /** * OVH subsidiaries */ ovhSubsidiary?: pulumi.Input; planOptions?: pulumi.Input[]>; plans?: pulumi.Input[]>; /** * Target specification of the vRack Services */ targetSpec: pulumi.Input; }