import * as pulumi from "@pulumi/pulumi";
/**
 * The provider type for the bigip package. By default, resources use package-wide configuration
 * settings, however an explicit `Provider` instance may be created and passed during resource
 * construction to achieve fine-grained programmatic control over provider settings. See the
 * [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information.
 */
export declare class Provider extends pulumi.ProviderResource {
    /**
     * Returns true if the given object is an instance of Provider.  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 Provider;
    /**
     * Domain name/IP of the BigIP
     */
    readonly address: pulumi.Output<string | undefined>;
    /**
     * Login reference for token authentication (see BIG-IP REST docs for details)
     */
    readonly loginRef: pulumi.Output<string | undefined>;
    /**
     * The user's password. Leave empty if using token_value
     */
    readonly password: pulumi.Output<string | undefined>;
    /**
     * Management Port to connect to Bigip
     */
    readonly port: pulumi.Output<string | undefined>;
    /**
     * A token generated outside the provider, in place of password
     */
    readonly tokenValue: pulumi.Output<string | undefined>;
    /**
     * Valid Trusted Certificate path
     */
    readonly trustedCertPath: pulumi.Output<string | undefined>;
    /**
     * Username with API access to the BigIP
     */
    readonly username: pulumi.Output<string | undefined>;
    /**
     * Create a Provider 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?: ProviderArgs, opts?: pulumi.ResourceOptions);
}
/**
 * The set of arguments for constructing a Provider resource.
 */
export interface ProviderArgs {
    /**
     * Domain name/IP of the BigIP
     */
    address?: pulumi.Input<string>;
    /**
     * Amount of times to retry AS3 API requests. Default: 10.
     */
    apiRetries?: pulumi.Input<number>;
    /**
     * A timeout for AS3 requests, represented as a number of seconds. Default: 60
     */
    apiTimeout?: pulumi.Input<number>;
    /**
     * Login reference for token authentication (see BIG-IP REST docs for details)
     */
    loginRef?: pulumi.Input<string>;
    /**
     * The user's password. Leave empty if using token_value
     */
    password?: pulumi.Input<string>;
    /**
     * Management Port to connect to Bigip
     */
    port?: pulumi.Input<string>;
    /**
     * If this flag set to true,sending telemetry data to TEEM will be disabled
     */
    teemDisable?: pulumi.Input<boolean>;
    /**
     * Enable to use token authentication. Can be set via the BIGIP_TOKEN_AUTH environment variable
     */
    tokenAuth?: pulumi.Input<boolean>;
    /**
     * A lifespan to request for the AS3 auth token, represented as a number of seconds. Default: 1200
     */
    tokenTimeout?: pulumi.Input<number>;
    /**
     * A token generated outside the provider, in place of password
     */
    tokenValue?: pulumi.Input<string>;
    /**
     * Valid Trusted Certificate path
     */
    trustedCertPath?: pulumi.Input<string>;
    /**
     * Username with API access to the BigIP
     */
    username?: pulumi.Input<string>;
    /**
     * If set to true, Disables TLS certificate check on BIG-IP. Default : True
     */
    validateCertsDisable?: pulumi.Input<boolean>;
}
