1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. ManagedKafkaKafkaClusterConfig
Oracle Cloud Infrastructure v3.15.0 published on Thursday, Jan 22, 2026 by Pulumi
oci logo
Oracle Cloud Infrastructure v3.15.0 published on Thursday, Jan 22, 2026 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testKafkaClusterConfig = new oci.oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config", {
        compartmentId: compartmentId,
        latestConfig: {
            properties: kafkaClusterConfigLatestConfigProperties,
            configId: testConfig.id,
            timeCreated: kafkaClusterConfigLatestConfigTimeCreated,
            versionNumber: kafkaClusterConfigLatestConfigVersionNumber,
        },
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: kafkaClusterConfigDisplayName,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_kafka_cluster_config = oci.oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config",
        compartment_id=compartment_id,
        latest_config={
            "properties": kafka_cluster_config_latest_config_properties,
            "config_id": test_config["id"],
            "time_created": kafka_cluster_config_latest_config_time_created,
            "version_number": kafka_cluster_config_latest_config_version_number,
        },
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=kafka_cluster_config_display_name,
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/oci"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := oci.NewManagedKafkaKafkaClusterConfig(ctx, "test_kafka_cluster_config", &oci.ManagedKafkaKafkaClusterConfigArgs{
    			CompartmentId: pulumi.Any(compartmentId),
    			LatestConfig: &oci.ManagedKafkaKafkaClusterConfigLatestConfigArgs{
    				Properties:    pulumi.Any(kafkaClusterConfigLatestConfigProperties),
    				ConfigId:      pulumi.Any(testConfig.Id),
    				TimeCreated:   pulumi.Any(kafkaClusterConfigLatestConfigTimeCreated),
    				VersionNumber: pulumi.Any(kafkaClusterConfigLatestConfigVersionNumber),
    			},
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			DisplayName: pulumi.Any(kafkaClusterConfigDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testKafkaClusterConfig = new Oci.Oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config", new()
        {
            CompartmentId = compartmentId,
            LatestConfig = new Oci.Oci.Inputs.ManagedKafkaKafkaClusterConfigLatestConfigArgs
            {
                Properties = kafkaClusterConfigLatestConfigProperties,
                ConfigId = testConfig.Id,
                TimeCreated = kafkaClusterConfigLatestConfigTimeCreated,
                VersionNumber = kafkaClusterConfigLatestConfigVersionNumber,
            },
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = kafkaClusterConfigDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.ManagedKafkaKafkaClusterConfig;
    import com.pulumi.oci.oci.ManagedKafkaKafkaClusterConfigArgs;
    import com.pulumi.oci.oci.inputs.ManagedKafkaKafkaClusterConfigLatestConfigArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testKafkaClusterConfig = new ManagedKafkaKafkaClusterConfig("testKafkaClusterConfig", ManagedKafkaKafkaClusterConfigArgs.builder()
                .compartmentId(compartmentId)
                .latestConfig(ManagedKafkaKafkaClusterConfigLatestConfigArgs.builder()
                    .properties(kafkaClusterConfigLatestConfigProperties)
                    .configId(testConfig.id())
                    .timeCreated(kafkaClusterConfigLatestConfigTimeCreated)
                    .versionNumber(kafkaClusterConfigLatestConfigVersionNumber)
                    .build())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(kafkaClusterConfigDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testKafkaClusterConfig:
        type: oci:oci:ManagedKafkaKafkaClusterConfig
        name: test_kafka_cluster_config
        properties:
          compartmentId: ${compartmentId}
          latestConfig:
            properties: ${kafkaClusterConfigLatestConfigProperties}
            configId: ${testConfig.id}
            timeCreated: ${kafkaClusterConfigLatestConfigTimeCreated}
            versionNumber: ${kafkaClusterConfigLatestConfigVersionNumber}
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${kafkaClusterConfigDisplayName}
          freeformTags:
            Department: Finance
    

    Create ManagedKafkaKafkaClusterConfig Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ManagedKafkaKafkaClusterConfig(name: string, args: ManagedKafkaKafkaClusterConfigArgs, opts?: CustomResourceOptions);
    @overload
    def ManagedKafkaKafkaClusterConfig(resource_name: str,
                                       args: ManagedKafkaKafkaClusterConfigArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def ManagedKafkaKafkaClusterConfig(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       compartment_id: Optional[str] = None,
                                       latest_config: Optional[ManagedKafkaKafkaClusterConfigLatestConfigArgs] = None,
                                       defined_tags: Optional[Mapping[str, str]] = None,
                                       display_name: Optional[str] = None,
                                       freeform_tags: Optional[Mapping[str, str]] = None)
    func NewManagedKafkaKafkaClusterConfig(ctx *Context, name string, args ManagedKafkaKafkaClusterConfigArgs, opts ...ResourceOption) (*ManagedKafkaKafkaClusterConfig, error)
    public ManagedKafkaKafkaClusterConfig(string name, ManagedKafkaKafkaClusterConfigArgs args, CustomResourceOptions? opts = null)
    public ManagedKafkaKafkaClusterConfig(String name, ManagedKafkaKafkaClusterConfigArgs args)
    public ManagedKafkaKafkaClusterConfig(String name, ManagedKafkaKafkaClusterConfigArgs args, CustomResourceOptions options)
    
    type: oci:oci:ManagedKafkaKafkaClusterConfig
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ManagedKafkaKafkaClusterConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ManagedKafkaKafkaClusterConfigArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ManagedKafkaKafkaClusterConfigArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ManagedKafkaKafkaClusterConfigArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ManagedKafkaKafkaClusterConfigArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var managedKafkaKafkaClusterConfigResource = new Oci.Oci.ManagedKafkaKafkaClusterConfig("managedKafkaKafkaClusterConfigResource", new()
    {
        CompartmentId = "string",
        LatestConfig = new Oci.Oci.Inputs.ManagedKafkaKafkaClusterConfigLatestConfigArgs
        {
            Properties = 
            {
                { "string", "string" },
            },
            ConfigId = "string",
            TimeCreated = "string",
            VersionNumber = 0,
        },
        DefinedTags = 
        {
            { "string", "string" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := oci.NewManagedKafkaKafkaClusterConfig(ctx, "managedKafkaKafkaClusterConfigResource", &oci.ManagedKafkaKafkaClusterConfigArgs{
    	CompartmentId: pulumi.String("string"),
    	LatestConfig: &oci.ManagedKafkaKafkaClusterConfigLatestConfigArgs{
    		Properties: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		ConfigId:      pulumi.String("string"),
    		TimeCreated:   pulumi.String("string"),
    		VersionNumber: pulumi.Int(0),
    	},
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var managedKafkaKafkaClusterConfigResource = new ManagedKafkaKafkaClusterConfig("managedKafkaKafkaClusterConfigResource", ManagedKafkaKafkaClusterConfigArgs.builder()
        .compartmentId("string")
        .latestConfig(ManagedKafkaKafkaClusterConfigLatestConfigArgs.builder()
            .properties(Map.of("string", "string"))
            .configId("string")
            .timeCreated("string")
            .versionNumber(0)
            .build())
        .definedTags(Map.of("string", "string"))
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    managed_kafka_kafka_cluster_config_resource = oci.oci.ManagedKafkaKafkaClusterConfig("managedKafkaKafkaClusterConfigResource",
        compartment_id="string",
        latest_config={
            "properties": {
                "string": "string",
            },
            "config_id": "string",
            "time_created": "string",
            "version_number": 0,
        },
        defined_tags={
            "string": "string",
        },
        display_name="string",
        freeform_tags={
            "string": "string",
        })
    
    const managedKafkaKafkaClusterConfigResource = new oci.oci.ManagedKafkaKafkaClusterConfig("managedKafkaKafkaClusterConfigResource", {
        compartmentId: "string",
        latestConfig: {
            properties: {
                string: "string",
            },
            configId: "string",
            timeCreated: "string",
            versionNumber: 0,
        },
        definedTags: {
            string: "string",
        },
        displayName: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:oci:ManagedKafkaKafkaClusterConfig
    properties:
        compartmentId: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        latestConfig:
            configId: string
            properties:
                string: string
            timeCreated: string
            versionNumber: 0
    

    ManagedKafkaKafkaClusterConfig Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The ManagedKafkaKafkaClusterConfig resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    LatestConfig ManagedKafkaKafkaClusterConfigLatestConfig
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    LatestConfig ManagedKafkaKafkaClusterConfigLatestConfigArgs
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    latestConfig ManagedKafkaKafkaClusterConfigLatestConfig
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    compartmentId string
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    latestConfig ManagedKafkaKafkaClusterConfigLatestConfig
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    compartment_id str
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    latest_config ManagedKafkaKafkaClusterConfigLatestConfigArgs
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    latestConfig Property Map
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ManagedKafkaKafkaClusterConfig resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the KafkaClusterConfig.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the KafkaClusterConfig.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the KafkaClusterConfig.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state string
    The current state of the KafkaClusterConfig.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state str
    The current state of the KafkaClusterConfig.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the KafkaClusterConfig.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Look up Existing ManagedKafkaKafkaClusterConfig Resource

    Get an existing ManagedKafkaKafkaClusterConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ManagedKafkaKafkaClusterConfigState, opts?: CustomResourceOptions): ManagedKafkaKafkaClusterConfig
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            latest_config: Optional[ManagedKafkaKafkaClusterConfigLatestConfigArgs] = None,
            lifecycle_details: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> ManagedKafkaKafkaClusterConfig
    func GetManagedKafkaKafkaClusterConfig(ctx *Context, name string, id IDInput, state *ManagedKafkaKafkaClusterConfigState, opts ...ResourceOption) (*ManagedKafkaKafkaClusterConfig, error)
    public static ManagedKafkaKafkaClusterConfig Get(string name, Input<string> id, ManagedKafkaKafkaClusterConfigState? state, CustomResourceOptions? opts = null)
    public static ManagedKafkaKafkaClusterConfig get(String name, Output<String> id, ManagedKafkaKafkaClusterConfigState state, CustomResourceOptions options)
    resources:  _:    type: oci:oci:ManagedKafkaKafkaClusterConfig    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags Dictionary<string, string>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    LatestConfig ManagedKafkaKafkaClusterConfigLatestConfig
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    LifecycleDetails string
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the KafkaClusterConfig.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    CompartmentId string
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    FreeformTags map[string]string
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    LatestConfig ManagedKafkaKafkaClusterConfigLatestConfigArgs
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    LifecycleDetails string
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    State string
    The current state of the KafkaClusterConfig.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String,String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    latestConfig ManagedKafkaKafkaClusterConfigLatestConfig
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    lifecycleDetails String
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the KafkaClusterConfig.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId string
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags {[key: string]: string}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    latestConfig ManagedKafkaKafkaClusterConfigLatestConfig
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    lifecycleDetails string
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state string
    The current state of the KafkaClusterConfig.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartment_id str
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeform_tags Mapping[str, str]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    latest_config ManagedKafkaKafkaClusterConfigLatestConfigArgs
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    lifecycle_details str
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state str
    The current state of the KafkaClusterConfig.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    compartmentId String
    (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    freeformTags Map<String>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    latestConfig Property Map
    (Updatable) A shared configuration object used by 0 or more kafka clusters.
    lifecycleDetails String
    A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    state String
    The current state of the KafkaClusterConfig.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the KafkaClusterConfig was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaClusterConfig was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    Supporting Types

    ManagedKafkaKafkaClusterConfigLatestConfig, ManagedKafkaKafkaClusterConfigLatestConfigArgs

    Properties Dictionary<string, string>
    (Updatable) Cluster configuration key-value pairs
    ConfigId string
    (Updatable) ID cluster configuration
    TimeCreated string
    (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    VersionNumber int

    (Updatable) Version of the cluster configuration

    ** 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

    Properties map[string]string
    (Updatable) Cluster configuration key-value pairs
    ConfigId string
    (Updatable) ID cluster configuration
    TimeCreated string
    (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    VersionNumber int

    (Updatable) Version of the cluster configuration

    ** 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

    properties Map<String,String>
    (Updatable) Cluster configuration key-value pairs
    configId String
    (Updatable) ID cluster configuration
    timeCreated String
    (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    versionNumber Integer

    (Updatable) Version of the cluster configuration

    ** 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

    properties {[key: string]: string}
    (Updatable) Cluster configuration key-value pairs
    configId string
    (Updatable) ID cluster configuration
    timeCreated string
    (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    versionNumber number

    (Updatable) Version of the cluster configuration

    ** 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

    properties Mapping[str, str]
    (Updatable) Cluster configuration key-value pairs
    config_id str
    (Updatable) ID cluster configuration
    time_created str
    (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    version_number int

    (Updatable) Version of the cluster configuration

    ** 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

    properties Map<String>
    (Updatable) Cluster configuration key-value pairs
    configId String
    (Updatable) ID cluster configuration
    timeCreated String
    (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    versionNumber Number

    (Updatable) Version of the cluster configuration

    ** 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

    Import

    KafkaClusterConfigs can be imported using the id, e.g.

    $ pulumi import oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig test_kafka_cluster_config "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.15.0 published on Thursday, Jan 22, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate