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 Addon Options in Oracle Cloud Infrastructure Managed Kafka service. * * Gets a list of supported KafkaClusterAddons. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAddonOptions = oci.oci.getManagedKafkaAddonOptions({ * compartmentId: compartmentId, * name: addonOptionName, * }); * ``` */ export declare function getManagedKafkaAddonOptions(args?: GetManagedKafkaAddonOptionsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedKafkaAddonOptions. */ export interface GetManagedKafkaAddonOptionsArgs { /** * 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.GetManagedKafkaAddonOptionsFilter[]; /** * The name to filter on. */ name?: string; } /** * A collection of values returned by getManagedKafkaAddonOptions. */ export interface GetManagedKafkaAddonOptionsResult { /** * The list of addon_option_collection. */ readonly addonOptionCollections: outputs.oci.GetManagedKafkaAddonOptionsAddonOptionCollection[]; readonly compartmentId?: string; readonly filters?: outputs.oci.GetManagedKafkaAddonOptionsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A user-friendly name. */ readonly name?: string; } /** * This data source provides the list of Addon Options in Oracle Cloud Infrastructure Managed Kafka service. * * Gets a list of supported KafkaClusterAddons. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAddonOptions = oci.oci.getManagedKafkaAddonOptions({ * compartmentId: compartmentId, * name: addonOptionName, * }); * ``` */ export declare function getManagedKafkaAddonOptionsOutput(args?: GetManagedKafkaAddonOptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedKafkaAddonOptions. */ export interface GetManagedKafkaAddonOptionsOutputArgs { /** * 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=getManagedKafkaAddonOptions.d.ts.map