import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CloudletsApplicationLoadBalancer extends pulumi.CustomResource { /** * Get an existing CloudletsApplicationLoadBalancer 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?: CloudletsApplicationLoadBalancerState, opts?: pulumi.CustomResourceOptions): CloudletsApplicationLoadBalancer; /** * Returns true if the given object is an instance of CloudletsApplicationLoadBalancer. 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 CloudletsApplicationLoadBalancer; /** * The type of load balancing being performed. Options include WEIGHTED and PERFORMANCE */ readonly balancingType: pulumi.Output; /** * The object containing information on conditional origins being used as data centers for an Application Load Balancer implementation. Only Conditional Origins with an originType of CUSTOMER or NETSTORAGE can be used as data centers in an application load balancer configuration. */ readonly dataCenters: pulumi.Output; /** * The load balancer configuration version description */ readonly description: pulumi.Output; readonly livenessSettings: pulumi.Output; /** * The load balancer configuration description */ readonly originDescription: pulumi.Output; /** * The conditional origin's unique identifier */ readonly originId: pulumi.Output; /** * The load balancer configuration version */ readonly version: pulumi.Output; /** * Describes warnings during activation of load balancer configuration */ readonly warnings: pulumi.Output; /** * Create a CloudletsApplicationLoadBalancer 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: CloudletsApplicationLoadBalancerArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudletsApplicationLoadBalancer resources. */ export interface CloudletsApplicationLoadBalancerState { /** * The type of load balancing being performed. Options include WEIGHTED and PERFORMANCE */ balancingType?: pulumi.Input; /** * The object containing information on conditional origins being used as data centers for an Application Load Balancer implementation. Only Conditional Origins with an originType of CUSTOMER or NETSTORAGE can be used as data centers in an application load balancer configuration. */ dataCenters?: pulumi.Input[] | undefined>; /** * The load balancer configuration version description */ description?: pulumi.Input; livenessSettings?: pulumi.Input; /** * The load balancer configuration description */ originDescription?: pulumi.Input; /** * The conditional origin's unique identifier */ originId?: pulumi.Input; /** * The load balancer configuration version */ version?: pulumi.Input; /** * Describes warnings during activation of load balancer configuration */ warnings?: pulumi.Input; } /** * The set of arguments for constructing a CloudletsApplicationLoadBalancer resource. */ export interface CloudletsApplicationLoadBalancerArgs { /** * The type of load balancing being performed. Options include WEIGHTED and PERFORMANCE */ balancingType?: pulumi.Input; /** * The object containing information on conditional origins being used as data centers for an Application Load Balancer implementation. Only Conditional Origins with an originType of CUSTOMER or NETSTORAGE can be used as data centers in an application load balancer configuration. */ dataCenters: pulumi.Input[]>; /** * The load balancer configuration version description */ description?: pulumi.Input; livenessSettings?: pulumi.Input; /** * The load balancer configuration description */ originDescription?: pulumi.Input; /** * The conditional origin's unique identifier */ originId: pulumi.Input; } //# sourceMappingURL=cloudletsApplicationLoadBalancer.d.ts.map