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 Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service. * * Lists the shapes that can be used to create container instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerInstanceShapes = oci.containerinstances.getContainerInstanceShapes({ * compartmentId: compartmentId, * availabilityDomain: containerInstanceShapeAvailabilityDomain, * }); * ``` */ export declare function getContainerInstanceShapes(args: GetContainerInstanceShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getContainerInstanceShapes. */ export interface GetContainerInstanceShapesArgs { /** * The name of the availability domain. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.ContainerInstances.GetContainerInstanceShapesFilter[]; } /** * A collection of values returned by getContainerInstanceShapes. */ export interface GetContainerInstanceShapesResult { readonly availabilityDomain?: string; readonly compartmentId: string; /** * The list of container_instance_shape_collection. */ readonly containerInstanceShapeCollections: outputs.ContainerInstances.GetContainerInstanceShapesContainerInstanceShapeCollection[]; readonly filters?: outputs.ContainerInstances.GetContainerInstanceShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Container Instance Shapes in Oracle Cloud Infrastructure Container Instances service. * * Lists the shapes that can be used to create container instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerInstanceShapes = oci.containerinstances.getContainerInstanceShapes({ * compartmentId: compartmentId, * availabilityDomain: containerInstanceShapeAvailabilityDomain, * }); * ``` */ export declare function getContainerInstanceShapesOutput(args: GetContainerInstanceShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getContainerInstanceShapes. */ export interface GetContainerInstanceShapesOutputArgs { /** * The name of the availability domain. Example: `Uocm:PHX-AD-1` */ availabilityDomain?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getContainerInstanceShapes.d.ts.map