import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Backend Sets in Oracle Cloud Infrastructure Load Balancer service. * * Lists all backend sets associated with a given load balancer. * * ## Supported Aliases * * * `ociLoadBalancerBackendsets` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBackendSets = oci.loadbalancer.getBackendSets({ * loadBalancerId: testLoadBalancer.id, * }); * ``` */ export declare function getBackendSets(args: GetBackendSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBackendSets. */ export interface GetBackendSetsArgs { filters?: inputs.LoadBalancer.GetBackendSetsFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend sets to retrieve. */ loadBalancerId: string; } /** * A collection of values returned by getBackendSets. */ export interface GetBackendSetsResult { /** * The list of backendsets. */ readonly backendsets: outputs.LoadBalancer.GetBackendSetsBackendset[]; readonly filters?: outputs.LoadBalancer.GetBackendSetsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly loadBalancerId: string; } /** * This data source provides the list of Backend Sets in Oracle Cloud Infrastructure Load Balancer service. * * Lists all backend sets associated with a given load balancer. * * ## Supported Aliases * * * `ociLoadBalancerBackendsets` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBackendSets = oci.loadbalancer.getBackendSets({ * loadBalancerId: testLoadBalancer.id, * }); * ``` */ export declare function getBackendSetsOutput(args: GetBackendSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBackendSets. */ export interface GetBackendSetsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend sets to retrieve. */ loadBalancerId: pulumi.Input; } //# sourceMappingURL=getBackendSets.d.ts.map