Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testKafkaCluster = new oci.oci.ManagedKafkaKafkaCluster("test_kafka_cluster", {
accessSubnets: [{
subnets: kafkaClusterAccessSubnetsSubnets,
}],
brokerShape: {
nodeCount: kafkaClusterBrokerShapeNodeCount,
ocpuCount: kafkaClusterBrokerShapeOcpuCount,
storageSizeInGbs: kafkaClusterBrokerShapeStorageSizeInGbs,
},
clusterConfigId: testConfig.id,
clusterConfigVersion: kafkaClusterClusterConfigVersion,
clusterType: kafkaClusterClusterType,
compartmentId: compartmentId,
coordinationType: kafkaClusterCoordinationType,
kafkaVersion: kafkaClusterKafkaVersion,
clientCertificateBundle: kafkaClusterClientCertificateBundle,
definedTags: {
"Operations.CostCenter": "42",
},
displayName: kafkaClusterDisplayName,
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_kafka_cluster = oci.oci.ManagedKafkaKafkaCluster("test_kafka_cluster",
access_subnets=[{
"subnets": kafka_cluster_access_subnets_subnets,
}],
broker_shape={
"node_count": kafka_cluster_broker_shape_node_count,
"ocpu_count": kafka_cluster_broker_shape_ocpu_count,
"storage_size_in_gbs": kafka_cluster_broker_shape_storage_size_in_gbs,
},
cluster_config_id=test_config["id"],
cluster_config_version=kafka_cluster_cluster_config_version,
cluster_type=kafka_cluster_cluster_type,
compartment_id=compartment_id,
coordination_type=kafka_cluster_coordination_type,
kafka_version=kafka_cluster_kafka_version,
client_certificate_bundle=kafka_cluster_client_certificate_bundle,
defined_tags={
"Operations.CostCenter": "42",
},
display_name=kafka_cluster_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.NewManagedKafkaKafkaCluster(ctx, "test_kafka_cluster", &oci.ManagedKafkaKafkaClusterArgs{
AccessSubnets: oci.ManagedKafkaKafkaClusterAccessSubnetArray{
&oci.ManagedKafkaKafkaClusterAccessSubnetArgs{
Subnets: pulumi.Any(kafkaClusterAccessSubnetsSubnets),
},
},
BrokerShape: &oci.ManagedKafkaKafkaClusterBrokerShapeArgs{
NodeCount: pulumi.Any(kafkaClusterBrokerShapeNodeCount),
OcpuCount: pulumi.Any(kafkaClusterBrokerShapeOcpuCount),
StorageSizeInGbs: pulumi.Any(kafkaClusterBrokerShapeStorageSizeInGbs),
},
ClusterConfigId: pulumi.Any(testConfig.Id),
ClusterConfigVersion: pulumi.Any(kafkaClusterClusterConfigVersion),
ClusterType: pulumi.Any(kafkaClusterClusterType),
CompartmentId: pulumi.Any(compartmentId),
CoordinationType: pulumi.Any(kafkaClusterCoordinationType),
KafkaVersion: pulumi.Any(kafkaClusterKafkaVersion),
ClientCertificateBundle: pulumi.Any(kafkaClusterClientCertificateBundle),
DefinedTags: pulumi.StringMap{
"Operations.CostCenter": pulumi.String("42"),
},
DisplayName: pulumi.Any(kafkaClusterDisplayName),
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 testKafkaCluster = new Oci.Oci.ManagedKafkaKafkaCluster("test_kafka_cluster", new()
{
AccessSubnets = new[]
{
new Oci.Oci.Inputs.ManagedKafkaKafkaClusterAccessSubnetArgs
{
Subnets = kafkaClusterAccessSubnetsSubnets,
},
},
BrokerShape = new Oci.Oci.Inputs.ManagedKafkaKafkaClusterBrokerShapeArgs
{
NodeCount = kafkaClusterBrokerShapeNodeCount,
OcpuCount = kafkaClusterBrokerShapeOcpuCount,
StorageSizeInGbs = kafkaClusterBrokerShapeStorageSizeInGbs,
},
ClusterConfigId = testConfig.Id,
ClusterConfigVersion = kafkaClusterClusterConfigVersion,
ClusterType = kafkaClusterClusterType,
CompartmentId = compartmentId,
CoordinationType = kafkaClusterCoordinationType,
KafkaVersion = kafkaClusterKafkaVersion,
ClientCertificateBundle = kafkaClusterClientCertificateBundle,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
DisplayName = kafkaClusterDisplayName,
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.oci.ManagedKafkaKafkaCluster;
import com.pulumi.oci.oci.ManagedKafkaKafkaClusterArgs;
import com.pulumi.oci.oci.inputs.ManagedKafkaKafkaClusterAccessSubnetArgs;
import com.pulumi.oci.oci.inputs.ManagedKafkaKafkaClusterBrokerShapeArgs;
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 testKafkaCluster = new ManagedKafkaKafkaCluster("testKafkaCluster", ManagedKafkaKafkaClusterArgs.builder()
.accessSubnets(ManagedKafkaKafkaClusterAccessSubnetArgs.builder()
.subnets(kafkaClusterAccessSubnetsSubnets)
.build())
.brokerShape(ManagedKafkaKafkaClusterBrokerShapeArgs.builder()
.nodeCount(kafkaClusterBrokerShapeNodeCount)
.ocpuCount(kafkaClusterBrokerShapeOcpuCount)
.storageSizeInGbs(kafkaClusterBrokerShapeStorageSizeInGbs)
.build())
.clusterConfigId(testConfig.id())
.clusterConfigVersion(kafkaClusterClusterConfigVersion)
.clusterType(kafkaClusterClusterType)
.compartmentId(compartmentId)
.coordinationType(kafkaClusterCoordinationType)
.kafkaVersion(kafkaClusterKafkaVersion)
.clientCertificateBundle(kafkaClusterClientCertificateBundle)
.definedTags(Map.of("Operations.CostCenter", "42"))
.displayName(kafkaClusterDisplayName)
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testKafkaCluster:
type: oci:oci:ManagedKafkaKafkaCluster
name: test_kafka_cluster
properties:
accessSubnets:
- subnets: ${kafkaClusterAccessSubnetsSubnets}
brokerShape:
nodeCount: ${kafkaClusterBrokerShapeNodeCount}
ocpuCount: ${kafkaClusterBrokerShapeOcpuCount}
storageSizeInGbs: ${kafkaClusterBrokerShapeStorageSizeInGbs}
clusterConfigId: ${testConfig.id}
clusterConfigVersion: ${kafkaClusterClusterConfigVersion}
clusterType: ${kafkaClusterClusterType}
compartmentId: ${compartmentId}
coordinationType: ${kafkaClusterCoordinationType}
kafkaVersion: ${kafkaClusterKafkaVersion}
clientCertificateBundle: ${kafkaClusterClientCertificateBundle}
definedTags:
Operations.CostCenter: '42'
displayName: ${kafkaClusterDisplayName}
freeformTags:
Department: Finance
Create ManagedKafkaKafkaCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedKafkaKafkaCluster(name: string, args: ManagedKafkaKafkaClusterArgs, opts?: CustomResourceOptions);@overload
def ManagedKafkaKafkaCluster(resource_name: str,
args: ManagedKafkaKafkaClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedKafkaKafkaCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_subnets: Optional[Sequence[ManagedKafkaKafkaClusterAccessSubnetArgs]] = None,
broker_shape: Optional[ManagedKafkaKafkaClusterBrokerShapeArgs] = None,
cluster_config_id: Optional[str] = None,
cluster_config_version: Optional[int] = None,
cluster_type: Optional[str] = None,
compartment_id: Optional[str] = None,
coordination_type: Optional[str] = None,
kafka_version: Optional[str] = None,
client_certificate_bundle: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None)func NewManagedKafkaKafkaCluster(ctx *Context, name string, args ManagedKafkaKafkaClusterArgs, opts ...ResourceOption) (*ManagedKafkaKafkaCluster, error)public ManagedKafkaKafkaCluster(string name, ManagedKafkaKafkaClusterArgs args, CustomResourceOptions? opts = null)
public ManagedKafkaKafkaCluster(String name, ManagedKafkaKafkaClusterArgs args)
public ManagedKafkaKafkaCluster(String name, ManagedKafkaKafkaClusterArgs args, CustomResourceOptions options)
type: oci:oci:ManagedKafkaKafkaCluster
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 ManagedKafkaKafkaClusterArgs
- 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 ManagedKafkaKafkaClusterArgs
- 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 ManagedKafkaKafkaClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedKafkaKafkaClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedKafkaKafkaClusterArgs
- 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 managedKafkaKafkaClusterResource = new Oci.Oci.ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource", new()
{
AccessSubnets = new[]
{
new Oci.Oci.Inputs.ManagedKafkaKafkaClusterAccessSubnetArgs
{
Subnets = new[]
{
"string",
},
},
},
BrokerShape = new Oci.Oci.Inputs.ManagedKafkaKafkaClusterBrokerShapeArgs
{
NodeCount = 0,
OcpuCount = 0,
StorageSizeInGbs = 0,
},
ClusterConfigId = "string",
ClusterConfigVersion = 0,
ClusterType = "string",
CompartmentId = "string",
CoordinationType = "string",
KafkaVersion = "string",
ClientCertificateBundle = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
});
example, err := oci.NewManagedKafkaKafkaCluster(ctx, "managedKafkaKafkaClusterResource", &oci.ManagedKafkaKafkaClusterArgs{
AccessSubnets: oci.ManagedKafkaKafkaClusterAccessSubnetArray{
&oci.ManagedKafkaKafkaClusterAccessSubnetArgs{
Subnets: pulumi.StringArray{
pulumi.String("string"),
},
},
},
BrokerShape: &oci.ManagedKafkaKafkaClusterBrokerShapeArgs{
NodeCount: pulumi.Int(0),
OcpuCount: pulumi.Int(0),
StorageSizeInGbs: pulumi.Int(0),
},
ClusterConfigId: pulumi.String("string"),
ClusterConfigVersion: pulumi.Int(0),
ClusterType: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
CoordinationType: pulumi.String("string"),
KafkaVersion: pulumi.String("string"),
ClientCertificateBundle: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var managedKafkaKafkaClusterResource = new ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource", ManagedKafkaKafkaClusterArgs.builder()
.accessSubnets(ManagedKafkaKafkaClusterAccessSubnetArgs.builder()
.subnets("string")
.build())
.brokerShape(ManagedKafkaKafkaClusterBrokerShapeArgs.builder()
.nodeCount(0)
.ocpuCount(0)
.storageSizeInGbs(0)
.build())
.clusterConfigId("string")
.clusterConfigVersion(0)
.clusterType("string")
.compartmentId("string")
.coordinationType("string")
.kafkaVersion("string")
.clientCertificateBundle("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.freeformTags(Map.of("string", "string"))
.build());
managed_kafka_kafka_cluster_resource = oci.oci.ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource",
access_subnets=[{
"subnets": ["string"],
}],
broker_shape={
"node_count": 0,
"ocpu_count": 0,
"storage_size_in_gbs": 0,
},
cluster_config_id="string",
cluster_config_version=0,
cluster_type="string",
compartment_id="string",
coordination_type="string",
kafka_version="string",
client_certificate_bundle="string",
defined_tags={
"string": "string",
},
display_name="string",
freeform_tags={
"string": "string",
})
const managedKafkaKafkaClusterResource = new oci.oci.ManagedKafkaKafkaCluster("managedKafkaKafkaClusterResource", {
accessSubnets: [{
subnets: ["string"],
}],
brokerShape: {
nodeCount: 0,
ocpuCount: 0,
storageSizeInGbs: 0,
},
clusterConfigId: "string",
clusterConfigVersion: 0,
clusterType: "string",
compartmentId: "string",
coordinationType: "string",
kafkaVersion: "string",
clientCertificateBundle: "string",
definedTags: {
string: "string",
},
displayName: "string",
freeformTags: {
string: "string",
},
});
type: oci:oci:ManagedKafkaKafkaCluster
properties:
accessSubnets:
- subnets:
- string
brokerShape:
nodeCount: 0
ocpuCount: 0
storageSizeInGbs: 0
clientCertificateBundle: string
clusterConfigId: string
clusterConfigVersion: 0
clusterType: string
compartmentId: string
coordinationType: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
kafkaVersion: string
ManagedKafkaKafkaCluster 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 ManagedKafkaKafkaCluster resource accepts the following input properties:
- Access
Subnets List<ManagedKafka Kafka Cluster Access Subnet> - (Updatable) Subnets where broker/coordinator VNICs will be created.
- Broker
Shape ManagedKafka Kafka Cluster Broker Shape - (Updatable) Configuration of the broker node.
- Cluster
Config stringId - (Updatable) The OCID of Kafka Cluster configuration object
- Cluster
Config intVersion - (Updatable) The version of configuration object
- Cluster
Type string - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- Coordination
Type string - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- Kafka
Version string Version of Kafka to use to spin up the cluster
** 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
- Client
Certificate stringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- Access
Subnets []ManagedKafka Kafka Cluster Access Subnet Args - (Updatable) Subnets where broker/coordinator VNICs will be created.
- Broker
Shape ManagedKafka Kafka Cluster Broker Shape Args - (Updatable) Configuration of the broker node.
- Cluster
Config stringId - (Updatable) The OCID of Kafka Cluster configuration object
- Cluster
Config intVersion - (Updatable) The version of configuration object
- Cluster
Type string - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- Coordination
Type string - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- Kafka
Version string Version of Kafka to use to spin up the cluster
** 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
- Client
Certificate stringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- access
Subnets List<ManagedKafka Kafka Cluster Access Subnet> - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker
Shape ManagedKafka Kafka Cluster Broker Shape - (Updatable) Configuration of the broker node.
- cluster
Config StringId - (Updatable) The OCID of Kafka Cluster configuration object
- cluster
Config IntegerVersion - (Updatable) The version of configuration object
- cluster
Type String - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination
Type String - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- kafka
Version String Version of Kafka to use to spin up the cluster
** 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
- client
Certificate StringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"}
- access
Subnets ManagedKafka Kafka Cluster Access Subnet[] - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker
Shape ManagedKafka Kafka Cluster Broker Shape - (Updatable) Configuration of the broker node.
- cluster
Config stringId - (Updatable) The OCID of Kafka Cluster configuration object
- cluster
Config numberVersion - (Updatable) The version of configuration object
- cluster
Type string - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination
Type string - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- kafka
Version string Version of Kafka to use to spin up the cluster
** 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
- client
Certificate stringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- {[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"} - display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"}
- access_
subnets Sequence[ManagedKafka Kafka Cluster Access Subnet Args] - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker_
shape ManagedKafka Kafka Cluster Broker Shape Args - (Updatable) Configuration of the broker node.
- cluster_
config_ strid - (Updatable) The OCID of Kafka Cluster configuration object
- cluster_
config_ intversion - (Updatable) 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 single node PRODUCTION - Minimum allowed broker count is 3
- compartment_
id str - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination_
type str - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- kafka_
version str Version of Kafka to use to spin up the cluster
** 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
- client_
certificate_ strbundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- 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.
- 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"}
- access
Subnets List<Property Map> - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker
Shape Property Map - (Updatable) Configuration of the broker node.
- cluster
Config StringId - (Updatable) The OCID of Kafka Cluster configuration object
- cluster
Config NumberVersion - (Updatable) The version of configuration object
- cluster
Type String - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination
Type String - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- kafka
Version String Version of Kafka to use to spin up the cluster
** 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
- client
Certificate StringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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 ManagedKafkaKafkaCluster resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Kafka
Bootstrap List<ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url> - Bootstrap URL that can be used to connect to Kafka
- Lifecycle
Details 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.
- Secret
Id string - The OCID of the secret that contains superuser password.
- State string
- The current state of the KafkaCluster.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the KafkaCluster 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.
- Kafka
Bootstrap []ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url - Bootstrap URL that can be used to connect to Kafka
- Lifecycle
Details 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.
- Secret
Id string - The OCID of the secret that contains superuser password.
- State string
- The current state of the KafkaCluster.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated string - The date and time the KafkaCluster 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.
- kafka
Bootstrap List<ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url> - Bootstrap URL that can be used to connect to Kafka
- lifecycle
Details 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.
- secret
Id String - The OCID of the secret that contains superuser password.
- state String
- The current state of the KafkaCluster.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the KafkaCluster 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.
- kafka
Bootstrap ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url[] - Bootstrap URL that can be used to connect to Kafka
- lifecycle
Details 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.
- secret
Id string - The OCID of the secret that contains superuser password.
- state string
- The current state of the KafkaCluster.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated string - The date and time the KafkaCluster 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.
- kafka_
bootstrap_ Sequence[Managedurls Kafka Kafka Cluster Kafka Bootstrap Url] - Bootstrap URL that can be used to connect to Kafka
- 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
- The current state of the KafkaCluster.
- 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
- id String
- The provider-assigned unique ID for this managed resource.
- kafka
Bootstrap List<Property Map>Urls - Bootstrap URL that can be used to connect to Kafka
- lifecycle
Details 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.
- secret
Id String - The OCID of the secret that contains superuser password.
- state String
- The current state of the KafkaCluster.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Look up Existing ManagedKafkaKafkaCluster Resource
Get an existing ManagedKafkaKafkaCluster 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?: ManagedKafkaKafkaClusterState, opts?: CustomResourceOptions): ManagedKafkaKafkaCluster@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_subnets: Optional[Sequence[ManagedKafkaKafkaClusterAccessSubnetArgs]] = None,
broker_shape: Optional[ManagedKafkaKafkaClusterBrokerShapeArgs] = None,
client_certificate_bundle: Optional[str] = None,
cluster_config_id: Optional[str] = None,
cluster_config_version: Optional[int] = None,
cluster_type: Optional[str] = None,
compartment_id: Optional[str] = None,
coordination_type: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
kafka_bootstrap_urls: Optional[Sequence[ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs]] = None,
kafka_version: Optional[str] = None,
lifecycle_details: Optional[str] = None,
secret_id: Optional[str] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> ManagedKafkaKafkaClusterfunc GetManagedKafkaKafkaCluster(ctx *Context, name string, id IDInput, state *ManagedKafkaKafkaClusterState, opts ...ResourceOption) (*ManagedKafkaKafkaCluster, error)public static ManagedKafkaKafkaCluster Get(string name, Input<string> id, ManagedKafkaKafkaClusterState? state, CustomResourceOptions? opts = null)public static ManagedKafkaKafkaCluster get(String name, Output<String> id, ManagedKafkaKafkaClusterState state, CustomResourceOptions options)resources: _: type: oci:oci:ManagedKafkaKafkaCluster 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.
- Access
Subnets List<ManagedKafka Kafka Cluster Access Subnet> - (Updatable) Subnets where broker/coordinator VNICs will be created.
- Broker
Shape ManagedKafka Kafka Cluster Broker Shape - (Updatable) Configuration of the broker node.
- Client
Certificate stringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- Cluster
Config stringId - (Updatable) The OCID of Kafka Cluster configuration object
- Cluster
Config intVersion - (Updatable) The version of configuration object
- Cluster
Type string - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- Coordination
Type string - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - Kafka
Bootstrap List<ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url> - Bootstrap URL that can be used to connect to Kafka
- Kafka
Version string Version of Kafka to use to spin up the cluster
** 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
- Lifecycle
Details 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.
- Secret
Id string - The OCID of the secret that contains superuser password.
- State string
- The current state of the KafkaCluster.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated 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 []ManagedKafka Kafka Cluster Access Subnet Args - (Updatable) Subnets where broker/coordinator VNICs will be created.
- Broker
Shape ManagedKafka Kafka Cluster Broker Shape Args - (Updatable) Configuration of the broker node.
- Client
Certificate stringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- Cluster
Config stringId - (Updatable) The OCID of Kafka Cluster configuration object
- Cluster
Config intVersion - (Updatable) The version of configuration object
- Cluster
Type string - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- Coordination
Type string - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- 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"} - Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - Kafka
Bootstrap []ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url Args - Bootstrap URL that can be used to connect to Kafka
- Kafka
Version string Version of Kafka to use to spin up the cluster
** 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
- Lifecycle
Details 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.
- Secret
Id string - The OCID of the secret that contains superuser password.
- State string
- The current state of the KafkaCluster.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated 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 List<ManagedKafka Kafka Cluster Access Subnet> - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker
Shape ManagedKafka Kafka Cluster Broker Shape - (Updatable) Configuration of the broker node.
- client
Certificate StringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- cluster
Config StringId - (Updatable) The OCID of Kafka Cluster configuration object
- cluster
Config IntegerVersion - (Updatable) The version of configuration object
- cluster
Type String - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination
Type String - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - kafka
Bootstrap List<ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url> - Bootstrap URL that can be used to connect to Kafka
- kafka
Version String Version of Kafka to use to spin up the cluster
** 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
- lifecycle
Details 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.
- secret
Id String - The OCID of the secret that contains superuser password.
- state String
- The current state of the KafkaCluster.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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 ManagedKafka Kafka Cluster Access Subnet[] - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker
Shape ManagedKafka Kafka Cluster Broker Shape - (Updatable) Configuration of the broker node.
- client
Certificate stringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- cluster
Config stringId - (Updatable) The OCID of Kafka Cluster configuration object
- cluster
Config numberVersion - (Updatable) The version of configuration object
- cluster
Type string - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination
Type string - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- {[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"} - display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[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"} - kafka
Bootstrap ManagedUrls Kafka Kafka Cluster Kafka Bootstrap Url[] - Bootstrap URL that can be used to connect to Kafka
- kafka
Version string Version of Kafka to use to spin up the cluster
** 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
- lifecycle
Details 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.
- secret
Id string - The OCID of the secret that contains superuser password.
- state string
- The current state of the KafkaCluster.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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[ManagedKafka Kafka Cluster Access Subnet Args] - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker_
shape ManagedKafka Kafka Cluster Broker Shape Args - (Updatable) Configuration of the broker node.
- client_
certificate_ strbundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- cluster_
config_ strid - (Updatable) The OCID of Kafka Cluster configuration object
- cluster_
config_ intversion - (Updatable) 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 single node PRODUCTION - Minimum allowed broker count is 3
- compartment_
id str - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination_
type str - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- 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.
- 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"} - kafka_
bootstrap_ Sequence[Managedurls Kafka Kafka Cluster Kafka Bootstrap Url Args] - Bootstrap URL that can be used to connect to Kafka
- kafka_
version str Version of Kafka to use to spin up the cluster
** 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
- 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
- The current state of the KafkaCluster.
- 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
- access
Subnets List<Property Map> - (Updatable) Subnets where broker/coordinator VNICs will be created.
- broker
Shape Property Map - (Updatable) Configuration of the broker node.
- client
Certificate StringBundle - (Updatable) CA certificate bundle for mTLS broker authentication.
- cluster
Config StringId - (Updatable) The OCID of Kafka Cluster configuration object
- cluster
Config NumberVersion - (Updatable) The version of configuration object
- cluster
Type String - Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on single node PRODUCTION - Minimum allowed broker count is 3
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaCluster in.
- coordination
Type String - (Updatable) Kafka coordination type. Set of available types depends on Kafka version
- 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"} - display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- 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"} - kafka
Bootstrap List<Property Map>Urls - Bootstrap URL that can be used to connect to Kafka
- kafka
Version String Version of Kafka to use to spin up the cluster
** 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
- lifecycle
Details 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.
- secret
Id String - The OCID of the secret that contains superuser password.
- state String
- The current state of the KafkaCluster.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The date and time the KafkaCluster was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated String - The date and time the KafkaCluster was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
Supporting Types
ManagedKafkaKafkaClusterAccessSubnet, ManagedKafkaKafkaClusterAccessSubnetArgs
- Subnets List<string>
- (Updatable) Subnets OCIDs
- Subnets []string
- (Updatable) Subnets OCIDs
- subnets List<String>
- (Updatable) Subnets OCIDs
- subnets string[]
- (Updatable) Subnets OCIDs
- subnets Sequence[str]
- (Updatable) Subnets OCIDs
- subnets List<String>
- (Updatable) Subnets OCIDs
ManagedKafkaKafkaClusterBrokerShape, ManagedKafkaKafkaClusterBrokerShapeArgs
- Node
Count int - (Updatable) Number of Kafka broker nodes
- Ocpu
Count int - (Updatable) Number of OCPUs per nodes
- Storage
Size intIn Gbs - (Updatable) Size of the storage per nodes.
- Node
Count int - (Updatable) Number of Kafka broker nodes
- Ocpu
Count int - (Updatable) Number of OCPUs per nodes
- Storage
Size intIn Gbs - (Updatable) Size of the storage per nodes.
- node
Count Integer - (Updatable) Number of Kafka broker nodes
- ocpu
Count Integer - (Updatable) Number of OCPUs per nodes
- storage
Size IntegerIn Gbs - (Updatable) Size of the storage per nodes.
- node
Count number - (Updatable) Number of Kafka broker nodes
- ocpu
Count number - (Updatable) Number of OCPUs per nodes
- storage
Size numberIn Gbs - (Updatable) Size of the storage per nodes.
- node_
count int - (Updatable) Number of Kafka broker nodes
- ocpu_
count int - (Updatable) Number of OCPUs per nodes
- storage_
size_ intin_ gbs - (Updatable) Size of the storage per nodes.
- node
Count Number - (Updatable) Number of Kafka broker nodes
- ocpu
Count Number - (Updatable) Number of OCPUs per nodes
- storage
Size NumberIn Gbs - (Updatable) Size of the storage per nodes.
ManagedKafkaKafkaClusterKafkaBootstrapUrl, ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs
Import
KafkaClusters can be imported using the id, e.g.
$ pulumi import oci:oci/managedKafkaKafkaCluster:ManagedKafkaKafkaCluster test_kafka_cluster "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
ociTerraform Provider.
