import * as pulumi from "@pulumi/pulumi";
export declare class Do extends pulumi.CustomResource {
    /**
     * Get an existing Do 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<pulumi.ID>, state?: DoState, opts?: pulumi.CustomResourceOptions): Do;
    /**
     * Returns true if the given object is an instance of Do.  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 Do;
    /**
     * IP Address of BIGIP Host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    readonly bigipAddress: pulumi.Output<string | undefined>;
    /**
     * Password of BIGIP host to be used for this resource
     */
    readonly bigipPassword: pulumi.Output<string | undefined>;
    /**
     * Port number of BIGIP host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    readonly bigipPort: pulumi.Output<string | undefined>;
    /**
     * Enable to use an external authentication source (LDAP, TACACS, etc)
     */
    readonly bigipTokenAuth: pulumi.Output<boolean | undefined>;
    /**
     * UserName of BIGIP host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    readonly bigipUser: pulumi.Output<string | undefined>;
    /**
     * Name of the of the Declarative DO JSON file
     */
    readonly doJson: pulumi.Output<string>;
    /**
     * unique identifier for DO resource
     *
     * @deprecated this attribute is no longer in use
     */
    readonly tenantName: pulumi.Output<string | undefined>;
    /**
     * DO json
     */
    readonly timeout: pulumi.Output<number | undefined>;
    /**
     * Create a Do 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: DoArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering Do resources.
 */
export interface DoState {
    /**
     * IP Address of BIGIP Host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    bigipAddress?: pulumi.Input<string>;
    /**
     * Password of BIGIP host to be used for this resource
     */
    bigipPassword?: pulumi.Input<string>;
    /**
     * Port number of BIGIP host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    bigipPort?: pulumi.Input<string>;
    /**
     * Enable to use an external authentication source (LDAP, TACACS, etc)
     */
    bigipTokenAuth?: pulumi.Input<boolean>;
    /**
     * UserName of BIGIP host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    bigipUser?: pulumi.Input<string>;
    /**
     * Name of the of the Declarative DO JSON file
     */
    doJson?: pulumi.Input<string>;
    /**
     * unique identifier for DO resource
     *
     * @deprecated this attribute is no longer in use
     */
    tenantName?: pulumi.Input<string>;
    /**
     * DO json
     */
    timeout?: pulumi.Input<number>;
}
/**
 * The set of arguments for constructing a Do resource.
 */
export interface DoArgs {
    /**
     * IP Address of BIGIP Host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    bigipAddress?: pulumi.Input<string>;
    /**
     * Password of BIGIP host to be used for this resource
     */
    bigipPassword?: pulumi.Input<string>;
    /**
     * Port number of BIGIP host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    bigipPort?: pulumi.Input<string>;
    /**
     * Enable to use an external authentication source (LDAP, TACACS, etc)
     */
    bigipTokenAuth?: pulumi.Input<boolean>;
    /**
     * UserName of BIGIP host to be used for this resource,this is optional parameter.
     * whenever we specify this parameter it gets overwrite provider configuration
     */
    bigipUser?: pulumi.Input<string>;
    /**
     * Name of the of the Declarative DO JSON file
     */
    doJson: pulumi.Input<string>;
    /**
     * unique identifier for DO resource
     *
     * @deprecated this attribute is no longer in use
     */
    tenantName?: pulumi.Input<string>;
    /**
     * DO json
     */
    timeout?: pulumi.Input<number>;
}
