import * as pulumi from "@pulumi/pulumi"; /** * This resource provides the Kafka Cluster Addon resource in Oracle Cloud Infrastructure Managed Kafka service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/kafka/latest/Addon * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/managed_kafka * * Installs a KafkaClusterAddon. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testKafkaClusterAddon = new oci.oci.ManagedKafkaKafkaClusterAddon("test_kafka_cluster_addon", { * addonType: kafkaClusterAddonAddonType, * authenticationMechanism: kafkaClusterAddonAuthenticationMechanism, * kafkaClusterId: testKafkaCluster.id, * name: kafkaClusterAddonName, * networkCidrs: kafkaClusterAddonNetworkCidrs, * description: kafkaClusterAddonDescription, * }); * ``` * * ## Import * * KafkaClusterAddons can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:oci/managedKafkaKafkaClusterAddon:ManagedKafkaKafkaClusterAddon test_kafka_cluster_addon "kafkaClusters/{kafkaClusterId}/addons/{addonName}" * ``` */ export declare class ManagedKafkaKafkaClusterAddon extends pulumi.CustomResource { /** * Get an existing ManagedKafkaKafkaClusterAddon resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ManagedKafkaKafkaClusterAddonState, opts?: pulumi.CustomResourceOptions): ManagedKafkaKafkaClusterAddon; /** * Returns true if the given object is an instance of ManagedKafkaKafkaClusterAddon. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ManagedKafkaKafkaClusterAddon; /** * (Updatable) This is Addon Type of Oracle Cloud Infrastructure kafka cluster */ readonly addonType: pulumi.Output; /** * Authentication mechanism. */ readonly authenticationMechanism: pulumi.Output; /** * The bootstrap url of the kafka cluster. */ readonly bootstrapUrl: pulumi.Output; /** * (Updatable) A brief description of the add on being installed. */ readonly description: pulumi.Output; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster. */ readonly kafkaClusterId: pulumi.Output; /** * A unique user-friendly name. Avoid entering confidential information. */ readonly name: pulumi.Output; /** * (Updatable) A list of CIDR's for ingress/egress traffic. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly networkCidrs: pulumi.Output; /** * The current state of the KafkaCluster. */ readonly state: pulumi.Output; /** * The time the addon was created. */ readonly timeCreated: pulumi.Output; /** * The time the addon was updated. */ readonly timeUpdated: pulumi.Output; /** * Create a ManagedKafkaKafkaClusterAddon resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ManagedKafkaKafkaClusterAddonArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ManagedKafkaKafkaClusterAddon resources. */ export interface ManagedKafkaKafkaClusterAddonState { /** * (Updatable) This is Addon Type of Oracle Cloud Infrastructure kafka cluster */ addonType?: pulumi.Input; /** * Authentication mechanism. */ authenticationMechanism?: pulumi.Input; /** * The bootstrap url of the kafka cluster. */ bootstrapUrl?: pulumi.Input; /** * (Updatable) A brief description of the add on being installed. */ description?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster. */ kafkaClusterId?: pulumi.Input; /** * A unique user-friendly name. Avoid entering confidential information. */ name?: pulumi.Input; /** * (Updatable) A list of CIDR's for ingress/egress traffic. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ networkCidrs?: pulumi.Input[] | undefined>; /** * The current state of the KafkaCluster. */ state?: pulumi.Input; /** * The time the addon was created. */ timeCreated?: pulumi.Input; /** * The time the addon was updated. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a ManagedKafkaKafkaClusterAddon resource. */ export interface ManagedKafkaKafkaClusterAddonArgs { /** * (Updatable) This is Addon Type of Oracle Cloud Infrastructure kafka cluster */ addonType: pulumi.Input; /** * Authentication mechanism. */ authenticationMechanism: pulumi.Input; /** * (Updatable) A brief description of the add on being installed. */ description?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster. */ kafkaClusterId: pulumi.Input; /** * A unique user-friendly name. Avoid entering confidential information. */ name?: pulumi.Input; /** * (Updatable) A list of CIDR's for ingress/egress traffic. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ networkCidrs: pulumi.Input[]>; } //# sourceMappingURL=managedKafkaKafkaClusterAddon.d.ts.map