import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Kafka Cluster resource in Oracle Cloud Infrastructure Managed Kafka service. * * Gets information about a KafkaCluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testKafkaCluster = oci.oci.getManagedKafkaKafkaCluster({ * kafkaClusterId: testKafkaClusterOciManagedKafkaKafkaCluster.id, * }); * ``` */ export declare function getManagedKafkaKafkaCluster(args: GetManagedKafkaKafkaClusterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedKafkaKafkaCluster. */ export interface GetManagedKafkaKafkaClusterArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster. */ kafkaClusterId: string; } /** * A collection of values returned by getManagedKafkaKafkaCluster. */ export interface GetManagedKafkaKafkaClusterResult { /** * Subnets where broker/coordinator VNICs will be created. */ readonly accessSubnets: outputs.oci.GetManagedKafkaKafkaClusterAccessSubnet[]; /** * Configuration of the broker node. */ readonly brokerShapes: outputs.oci.GetManagedKafkaKafkaClusterBrokerShape[]; /** * CA certificate bundle for mTLS broker authentication. */ readonly clientCertificateBundle: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object */ readonly clusterConfigId: string; /** * The version of configuration object */ readonly clusterConfigVersion: number; /** * 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 */ readonly clusterType: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Kafka coordination type. Set of available types depends on Kafka version */ readonly coordinationType: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName: 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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster. */ readonly id: string; /** * Bootstrap URL that can be used to connect to Kafka */ readonly kafkaBootstrapUrls: outputs.oci.GetManagedKafkaKafkaClusterKafkaBootstrapUrl[]; readonly kafkaClusterId: string; /** * Version of Kafka to use to spin up the cluster */ readonly kafkaVersion: 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. */ readonly lifecycleDetails: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password. */ readonly secretId: string; /** * The current state of the KafkaCluster. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the KafkaCluster was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the KafkaCluster was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeUpdated: string; } /** * This data source provides details about a specific Kafka Cluster resource in Oracle Cloud Infrastructure Managed Kafka service. * * Gets information about a KafkaCluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testKafkaCluster = oci.oci.getManagedKafkaKafkaCluster({ * kafkaClusterId: testKafkaClusterOciManagedKafkaKafkaCluster.id, * }); * ``` */ export declare function getManagedKafkaKafkaClusterOutput(args: GetManagedKafkaKafkaClusterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedKafkaKafkaCluster. */ export interface GetManagedKafkaKafkaClusterOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster. */ kafkaClusterId: pulumi.Input; } //# sourceMappingURL=getManagedKafkaKafkaCluster.d.ts.map