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 Node Shapes in Oracle Cloud Infrastructure Managed Kafka service. * * Returns the list of shapes allowed in the region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNodeShapes = oci.oci.getManagedKafkaNodeShapes({ * compartmentId: compartmentId, * name: nodeShapeName, * }); * ``` */ export declare function getManagedKafkaNodeShapes(args?: GetManagedKafkaNodeShapesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedKafkaNodeShapes. */ export interface GetManagedKafkaNodeShapesArgs { /** * 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.GetManagedKafkaNodeShapesFilter[]; /** * The name to filter on. */ name?: string; } /** * A collection of values returned by getManagedKafkaNodeShapes. */ export interface GetManagedKafkaNodeShapesResult { readonly compartmentId?: string; readonly filters?: outputs.oci.GetManagedKafkaNodeShapesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The name of the shape */ readonly name?: string; /** * The list of node_shape_collection. */ readonly nodeShapeCollections: outputs.oci.GetManagedKafkaNodeShapesNodeShapeCollection[]; } /** * This data source provides the list of Node Shapes in Oracle Cloud Infrastructure Managed Kafka service. * * Returns the list of shapes allowed in the region. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNodeShapes = oci.oci.getManagedKafkaNodeShapes({ * compartmentId: compartmentId, * name: nodeShapeName, * }); * ``` */ export declare function getManagedKafkaNodeShapesOutput(args?: GetManagedKafkaNodeShapesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedKafkaNodeShapes. */ export interface GetManagedKafkaNodeShapesOutputArgs { /** * 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 name to filter on. */ name?: pulumi.Input; } //# sourceMappingURL=getManagedKafkaNodeShapes.d.ts.map