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:
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- Latest
Config ManagedKafka Kafka Cluster Config Latest Config - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- 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"}
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- Latest
Config ManagedKafka Kafka Cluster Config Latest Config Args - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- 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"}
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- latest
Config ManagedKafka Kafka Cluster Config Latest Config - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- 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"}
- compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- latest
Config ManagedKafka Kafka Cluster Config Latest Config - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- {[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"}
- compartment_
id str - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- latest_
config ManagedKafka Kafka Cluster Config Latest Config Args - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- 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"}
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- latest
Config Property Map - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- 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 ManagedKafkaKafkaClusterConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated 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.
- Lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated 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.
- lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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.
- lifecycle
Details 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.
- {[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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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.
- 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.
- lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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) -> ManagedKafkaKafkaClusterConfigfunc 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.
- Compartment
Id string - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- 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"} - Latest
Config ManagedKafka Kafka Cluster Config Latest Config - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- Lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated 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 string - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- 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"} - Latest
Config ManagedKafka Kafka Cluster Config Latest Config Args - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- Lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - Time
Updated 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 String - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- 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"} - latest
Config ManagedKafka Kafka Cluster Config Latest Config - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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 string - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- {[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"} - latest
Config ManagedKafka Kafka Cluster Config Latest Config - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- lifecycle
Details 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.
- {[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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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.
- 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"} - latest_
config ManagedKafka Kafka Cluster Config Latest Config Args - (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.
- 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
- compartment
Id String - (Updatable) The OCID of the compartment to create the KafkaClusterConfig in.
- 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"} - latest
Config Property Map - (Updatable) A shared configuration object used by 0 or more kafka clusters.
- lifecycle
Details 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.
- 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 KafkaClusterConfig was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z - time
Updated 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
- Config
Id string - (Updatable) ID cluster configuration
- Time
Created string - (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]string
- (Updatable) Cluster configuration key-value pairs
- Config
Id string - (Updatable) ID cluster configuration
- Time
Created string - (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,String>
- (Updatable) Cluster configuration key-value pairs
- config
Id String - (Updatable) ID cluster configuration
- time
Created String - (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 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
- config
Id string - (Updatable) ID cluster configuration
- time
Created string - (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 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
- config
Id String - (Updatable) ID cluster configuration
- time
Created String - (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 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
ociTerraform Provider.
