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 Batch Context Shapes in Oracle Cloud Infrastructure Batch service. * * Lists the shapes allowed to be specified during batch context creation. Ordered by the shape name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBatchContextShapes = oci.oci.getBatchBatchContextShapes({ * compartmentId: compartmentId, * availabilityDomain: batchContextShapeAvailabilityDomain, * shapeType: batchContextShapeShapeType, * }); * ``` */ export declare function getBatchBatchContextShapes(args: GetBatchBatchContextShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBatchBatchContextShapes. */ export interface GetBatchBatchContextShapesArgs { /** * The name of the availability domain. */ 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.oci.GetBatchBatchContextShapesFilter[]; /** * The type of a shape. */ shapeType?: string; } /** * A collection of values returned by getBatchBatchContextShapes. */ export interface GetBatchBatchContextShapesResult { readonly availabilityDomain?: string; /** * The list of batch_context_shape_collection. */ readonly batchContextShapeCollections: outputs.oci.GetBatchBatchContextShapesBatchContextShapeCollection[]; readonly compartmentId: string; readonly filters?: outputs.oci.GetBatchBatchContextShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly shapeType?: string; } /** * This data source provides the list of Batch Context Shapes in Oracle Cloud Infrastructure Batch service. * * Lists the shapes allowed to be specified during batch context creation. Ordered by the shape name. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBatchContextShapes = oci.oci.getBatchBatchContextShapes({ * compartmentId: compartmentId, * availabilityDomain: batchContextShapeAvailabilityDomain, * shapeType: batchContextShapeShapeType, * }); * ``` */ export declare function getBatchBatchContextShapesOutput(args: GetBatchBatchContextShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBatchBatchContextShapes. */ export interface GetBatchBatchContextShapesOutputArgs { /** * The name of the availability domain. */ 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>; /** * The type of a shape. */ shapeType?: pulumi.Input; } //# sourceMappingURL=getBatchBatchContextShapes.d.ts.map