import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare class Name extends pulumi.CustomResource { /** * Get an existing Name 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?: NameState, opts?: pulumi.CustomResourceOptions): Name; /** * Returns true if the given object is an instance of Name. 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 Name; /** * Computed hash used to control concurrent modification requests. Here, it represents the current target specification value */ readonly checksum: pulumi.Output; /** * Current state of the domain name */ readonly currentState: pulumi.Output; /** * Ongoing asynchronous tasks related to the domain name resource */ readonly currentTasks: pulumi.Output; /** * Domain name */ readonly domainName: 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 domain name resource. A new target specification request will be accepted only in `READY`, `UPDATING` or `ERROR` status */ readonly resourceStatus: pulumi.Output; /** * Latest target specification of the domain name resource. */ readonly targetSpec: pulumi.Output; /** * Create a Name 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: NameArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Name resources. */ export interface NameState { /** * Computed hash used to control concurrent modification requests. Here, it represents the current target specification value */ checksum?: pulumi.Input; /** * Current state of the domain name */ currentState?: pulumi.Input; /** * Ongoing asynchronous tasks related to the domain name resource */ currentTasks?: pulumi.Input[]>; /** * Domain name */ domainName?: 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 domain name resource. A new target specification request will be accepted only in `READY`, `UPDATING` or `ERROR` status */ resourceStatus?: pulumi.Input; /** * Latest target specification of the domain name resource. */ targetSpec?: pulumi.Input; } /** * The set of arguments for constructing a Name resource. */ export interface NameArgs { /** * Computed hash used to control concurrent modification requests. Here, it represents the current target specification value */ checksum?: pulumi.Input; /** * Domain name */ domainName: pulumi.Input; /** * OVH subsidiaries */ ovhSubsidiary?: pulumi.Input; planOptions?: pulumi.Input[]>; plans?: pulumi.Input[]>; /** * Latest target specification of the domain name resource. */ targetSpec?: pulumi.Input; }