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 Load Balancer Shapes in Oracle Cloud Infrastructure Load Balancer service. * * Lists the valid load balancer shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLoadBalancerShapes = oci.loadbalancer.getShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getShapes(args: GetShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getShapes. */ export interface GetShapesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancer shapes to list. */ compartmentId: string; filters?: inputs.LoadBalancer.GetShapesFilter[]; } /** * A collection of values returned by getShapes. */ export interface GetShapesResult { readonly compartmentId: string; readonly filters?: outputs.LoadBalancer.GetShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of shapes. */ readonly shapes: outputs.LoadBalancer.GetShapesShape[]; } /** * This data source provides the list of Load Balancer Shapes in Oracle Cloud Infrastructure Load Balancer service. * * Lists the valid load balancer shapes. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testLoadBalancerShapes = oci.loadbalancer.getShapes({ * compartmentId: compartmentId, * }); * ``` */ export declare function getShapesOutput(args: GetShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getShapes. */ export interface GetShapesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the load balancer shapes to list. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getShapes.d.ts.map