1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. oci
  5. getManagedKafkaKafkaClusters
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

    This data source provides the list of Kafka Clusters in Oracle Cloud Infrastructure Managed Kafka service.

    Gets a list of KafkaClusters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testKafkaClusters = oci.oci.getManagedKafkaKafkaClusters({
        compartmentId: compartmentId,
        displayName: kafkaClusterDisplayName,
        id: kafkaClusterId,
        state: kafkaClusterState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_kafka_clusters = oci.oci.get_managed_kafka_kafka_clusters(compartment_id=compartment_id,
        display_name=kafka_cluster_display_name,
        id=kafka_cluster_id,
        state=kafka_cluster_state)
    
    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.GetManagedKafkaKafkaClusters(ctx, &oci.GetManagedKafkaKafkaClustersArgs{
    			CompartmentId: pulumi.StringRef(compartmentId),
    			DisplayName:   pulumi.StringRef(kafkaClusterDisplayName),
    			Id:            pulumi.StringRef(kafkaClusterId),
    			State:         pulumi.StringRef(kafkaClusterState),
    		}, nil)
    		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 testKafkaClusters = Oci.Oci.GetManagedKafkaKafkaClusters.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = kafkaClusterDisplayName,
            Id = kafkaClusterId,
            State = kafkaClusterState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.oci.OciFunctions;
    import com.pulumi.oci.oci.inputs.GetManagedKafkaKafkaClustersArgs;
    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) {
            final var testKafkaClusters = OciFunctions.getManagedKafkaKafkaClusters(GetManagedKafkaKafkaClustersArgs.builder()
                .compartmentId(compartmentId)
                .displayName(kafkaClusterDisplayName)
                .id(kafkaClusterId)
                .state(kafkaClusterState)
                .build());
    
        }
    }
    
    variables:
      testKafkaClusters:
        fn::invoke:
          function: oci:oci:getManagedKafkaKafkaClusters
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${kafkaClusterDisplayName}
            id: ${kafkaClusterId}
            state: ${kafkaClusterState}
    

    Using getManagedKafkaKafkaClusters

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getManagedKafkaKafkaClusters(args: GetManagedKafkaKafkaClustersArgs, opts?: InvokeOptions): Promise<GetManagedKafkaKafkaClustersResult>
    function getManagedKafkaKafkaClustersOutput(args: GetManagedKafkaKafkaClustersOutputArgs, opts?: InvokeOptions): Output<GetManagedKafkaKafkaClustersResult>
    def get_managed_kafka_kafka_clusters(compartment_id: Optional[str] = None,
                                         display_name: Optional[str] = None,
                                         filters: Optional[Sequence[GetManagedKafkaKafkaClustersFilter]] = None,
                                         id: Optional[str] = None,
                                         state: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetManagedKafkaKafkaClustersResult
    def get_managed_kafka_kafka_clusters_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                         display_name: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetManagedKafkaKafkaClustersFilterArgs]]]] = None,
                                         id: Optional[pulumi.Input[str]] = None,
                                         state: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetManagedKafkaKafkaClustersResult]
    func GetManagedKafkaKafkaClusters(ctx *Context, args *GetManagedKafkaKafkaClustersArgs, opts ...InvokeOption) (*GetManagedKafkaKafkaClustersResult, error)
    func GetManagedKafkaKafkaClustersOutput(ctx *Context, args *GetManagedKafkaKafkaClustersOutputArgs, opts ...InvokeOption) GetManagedKafkaKafkaClustersResultOutput

    > Note: This function is named GetManagedKafkaKafkaClusters in the Go SDK.

    public static class GetManagedKafkaKafkaClusters 
    {
        public static Task<GetManagedKafkaKafkaClustersResult> InvokeAsync(GetManagedKafkaKafkaClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetManagedKafkaKafkaClustersResult> Invoke(GetManagedKafkaKafkaClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetManagedKafkaKafkaClustersResult> getManagedKafkaKafkaClusters(GetManagedKafkaKafkaClustersArgs args, InvokeOptions options)
    public static Output<GetManagedKafkaKafkaClustersResult> getManagedKafkaKafkaClusters(GetManagedKafkaKafkaClustersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:oci/getManagedKafkaKafkaClusters:getManagedKafkaKafkaClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetManagedKafkaKafkaClustersFilter>
    Id string
    The OCID of the KafkaCluster.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetManagedKafkaKafkaClustersFilter
    Id string
    The OCID of the KafkaCluster.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetManagedKafkaKafkaClustersFilter>
    id String
    The OCID of the KafkaCluster.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The OCID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetManagedKafkaKafkaClustersFilter[]
    id string
    The OCID of the KafkaCluster.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The OCID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[GetManagedKafkaKafkaClustersFilter]
    id str
    The OCID of the KafkaCluster.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    id String
    The OCID of the KafkaCluster.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getManagedKafkaKafkaClusters Result

    The following output properties are available:

    KafkaClusterCollections List<GetManagedKafkaKafkaClustersKafkaClusterCollection>
    The list of kafka_cluster_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    Filters List<GetManagedKafkaKafkaClustersFilter>
    Id string
    The OCID of the KafkaCluster.
    State string
    The current state of the KafkaCluster.
    KafkaClusterCollections []GetManagedKafkaKafkaClustersKafkaClusterCollection
    The list of kafka_cluster_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    Filters []GetManagedKafkaKafkaClustersFilter
    Id string
    The OCID of the KafkaCluster.
    State string
    The current state of the KafkaCluster.
    kafkaClusterCollections List<GetManagedKafkaKafkaClustersKafkaClusterCollection>
    The list of kafka_cluster_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters List<GetManagedKafkaKafkaClustersFilter>
    id String
    The OCID of the KafkaCluster.
    state String
    The current state of the KafkaCluster.
    kafkaClusterCollections GetManagedKafkaKafkaClustersKafkaClusterCollection[]
    The list of kafka_cluster_collection.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters GetManagedKafkaKafkaClustersFilter[]
    id string
    The OCID of the KafkaCluster.
    state string
    The current state of the KafkaCluster.
    kafka_cluster_collections Sequence[GetManagedKafkaKafkaClustersKafkaClusterCollection]
    The list of kafka_cluster_collection.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters Sequence[GetManagedKafkaKafkaClustersFilter]
    id str
    The OCID of the KafkaCluster.
    state str
    The current state of the KafkaCluster.
    kafkaClusterCollections List<Property Map>
    The list of kafka_cluster_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable.
    filters List<Property Map>
    id String
    The OCID of the KafkaCluster.
    state String
    The current state of the KafkaCluster.

    Supporting Types

    GetManagedKafkaKafkaClustersFilter

    Name string
    Name of the Kafka listener providing this bootstrap URL
    Values List<string>
    Regex bool
    Name string
    Name of the Kafka listener providing this bootstrap URL
    Values []string
    Regex bool
    name String
    Name of the Kafka listener providing this bootstrap URL
    values List<String>
    regex Boolean
    name string
    Name of the Kafka listener providing this bootstrap URL
    values string[]
    regex boolean
    name str
    Name of the Kafka listener providing this bootstrap URL
    values Sequence[str]
    regex bool
    name String
    Name of the Kafka listener providing this bootstrap URL
    values List<String>
    regex Boolean

    GetManagedKafkaKafkaClustersKafkaClusterCollection

    GetManagedKafkaKafkaClustersKafkaClusterCollectionItem

    AccessSubnets List<GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnet>
    Subnets where broker/coordinator VNICs will be created.
    BrokerShapes List<GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShape>
    Configuration of the broker node.
    ClientCertificateBundle string
    CA certificate bundle for mTLS broker authentication.
    ClusterConfigId string
    The OCID of Kafka Cluster configuration object
    ClusterConfigVersion int
    The version of configuration object
    ClusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CoordinationType string
    Kafka coordination type. Set of available types depends on Kafka version
    DefinedTags Dictionary<string, string>
    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
    A filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, string>
    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"}
    Id string
    The OCID of the KafkaCluster.
    KafkaBootstrapUrls List<GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrl>
    Bootstrap URL that can be used to connect to Kafka
    KafkaVersion string
    Version of Kafka to use to spin up the cluster
    LifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    SecretId string
    The OCID of the secret that contains superuser password.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    AccessSubnets []GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnet
    Subnets where broker/coordinator VNICs will be created.
    BrokerShapes []GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShape
    Configuration of the broker node.
    ClientCertificateBundle string
    CA certificate bundle for mTLS broker authentication.
    ClusterConfigId string
    The OCID of Kafka Cluster configuration object
    ClusterConfigVersion int
    The version of configuration object
    ClusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CoordinationType string
    Kafka coordination type. Set of available types depends on Kafka version
    DefinedTags map[string]string
    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
    A filter to return only resources that match the given display name exactly.
    FreeformTags map[string]string
    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"}
    Id string
    The OCID of the KafkaCluster.
    KafkaBootstrapUrls []GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrl
    Bootstrap URL that can be used to connect to Kafka
    KafkaVersion string
    Version of Kafka to use to spin up the cluster
    LifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    SecretId string
    The OCID of the secret that contains superuser password.
    State string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    accessSubnets List<GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnet>
    Subnets where broker/coordinator VNICs will be created.
    brokerShapes List<GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShape>
    Configuration of the broker node.
    clientCertificateBundle String
    CA certificate bundle for mTLS broker authentication.
    clusterConfigId String
    The OCID of Kafka Cluster configuration object
    clusterConfigVersion Integer
    The version of configuration object
    clusterType String
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId String
    The OCID of the compartment in which to list resources.
    coordinationType String
    Kafka coordination type. Set of available types depends on Kafka version
    definedTags Map<String,String>
    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
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String,String>
    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"}
    id String
    The OCID of the KafkaCluster.
    kafkaBootstrapUrls List<GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrl>
    Bootstrap URL that can be used to connect to Kafka
    kafkaVersion String
    Version of Kafka to use to spin up the cluster
    lifecycleDetails String
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId String
    The OCID of the secret that contains superuser password.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    accessSubnets GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnet[]
    Subnets where broker/coordinator VNICs will be created.
    brokerShapes GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShape[]
    Configuration of the broker node.
    clientCertificateBundle string
    CA certificate bundle for mTLS broker authentication.
    clusterConfigId string
    The OCID of Kafka Cluster configuration object
    clusterConfigVersion number
    The version of configuration object
    clusterType string
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId string
    The OCID of the compartment in which to list resources.
    coordinationType string
    Kafka coordination type. Set of available types depends on Kafka version
    definedTags {[key: string]: string}
    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
    A filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: string}
    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"}
    id string
    The OCID of the KafkaCluster.
    kafkaBootstrapUrls GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrl[]
    Bootstrap URL that can be used to connect to Kafka
    kafkaVersion string
    Version of Kafka to use to spin up the cluster
    lifecycleDetails string
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId string
    The OCID of the secret that contains superuser password.
    state string
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    access_subnets Sequence[GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnet]
    Subnets where broker/coordinator VNICs will be created.
    broker_shapes Sequence[GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShape]
    Configuration of the broker node.
    client_certificate_bundle str
    CA certificate bundle for mTLS broker authentication.
    cluster_config_id str
    The OCID of Kafka Cluster configuration object
    cluster_config_version int
    The version of configuration object
    cluster_type str
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
    compartment_id str
    The OCID of the compartment in which to list resources.
    coordination_type str
    Kafka coordination type. Set of available types depends on Kafka version
    defined_tags Mapping[str, str]
    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
    A filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, str]
    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"}
    id str
    The OCID of the KafkaCluster.
    kafka_bootstrap_urls Sequence[GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrl]
    Bootstrap URL that can be used to connect to Kafka
    kafka_version str
    Version of Kafka to use to spin up the cluster
    lifecycle_details str
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secret_id str
    The OCID of the secret that contains superuser password.
    state str
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_updated str
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    accessSubnets List<Property Map>
    Subnets where broker/coordinator VNICs will be created.
    brokerShapes List<Property Map>
    Configuration of the broker node.
    clientCertificateBundle String
    CA certificate bundle for mTLS broker authentication.
    clusterConfigId String
    The OCID of Kafka Cluster configuration object
    clusterConfigVersion Number
    The version of configuration object
    clusterType String
    Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
    compartmentId String
    The OCID of the compartment in which to list resources.
    coordinationType String
    Kafka coordination type. Set of available types depends on Kafka version
    definedTags Map<String>
    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
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String>
    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"}
    id String
    The OCID of the KafkaCluster.
    kafkaBootstrapUrls List<Property Map>
    Bootstrap URL that can be used to connect to Kafka
    kafkaVersion String
    Version of Kafka to use to spin up the cluster
    lifecycleDetails String
    A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
    secretId String
    The OCID of the secret that contains superuser password.
    state String
    A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    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 KafkaCluster was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnet

    Subnets List<string>
    Subnets OCIDs
    Subnets []string
    Subnets OCIDs
    subnets List<String>
    Subnets OCIDs
    subnets string[]
    Subnets OCIDs
    subnets Sequence[str]
    Subnets OCIDs
    subnets List<String>
    Subnets OCIDs

    GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShape

    NodeCount int
    Number of Kafka broker nodes
    OcpuCount int
    Number of OCPUs per nodes
    StorageSizeInGbs int
    Size of the storage per nodes.
    NodeCount int
    Number of Kafka broker nodes
    OcpuCount int
    Number of OCPUs per nodes
    StorageSizeInGbs int
    Size of the storage per nodes.
    nodeCount Integer
    Number of Kafka broker nodes
    ocpuCount Integer
    Number of OCPUs per nodes
    storageSizeInGbs Integer
    Size of the storage per nodes.
    nodeCount number
    Number of Kafka broker nodes
    ocpuCount number
    Number of OCPUs per nodes
    storageSizeInGbs number
    Size of the storage per nodes.
    node_count int
    Number of Kafka broker nodes
    ocpu_count int
    Number of OCPUs per nodes
    storage_size_in_gbs int
    Size of the storage per nodes.
    nodeCount Number
    Number of Kafka broker nodes
    ocpuCount Number
    Number of OCPUs per nodes
    storageSizeInGbs Number
    Size of the storage per nodes.

    GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrl

    Name string
    Name of the Kafka listener providing this bootstrap URL
    Url string
    Bootstrap URL
    Name string
    Name of the Kafka listener providing this bootstrap URL
    Url string
    Bootstrap URL
    name String
    Name of the Kafka listener providing this bootstrap URL
    url String
    Bootstrap URL
    name string
    Name of the Kafka listener providing this bootstrap URL
    url string
    Bootstrap URL
    name str
    Name of the Kafka listener providing this bootstrap URL
    url str
    Bootstrap URL
    name String
    Name of the Kafka listener providing this bootstrap URL
    url String
    Bootstrap URL

    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