pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.6.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (194) hide show
  1. pulumi_oci/__init__.py +128 -0
  2. pulumi_oci/aivision/__init__.py +12 -0
  3. pulumi_oci/aivision/_inputs.py +787 -51
  4. pulumi_oci/aivision/get_model.py +4 -4
  5. pulumi_oci/aivision/get_models.py +11 -11
  6. pulumi_oci/aivision/get_project.py +15 -15
  7. pulumi_oci/aivision/get_projects.py +10 -10
  8. pulumi_oci/aivision/get_stream_group.py +268 -0
  9. pulumi_oci/aivision/get_stream_groups.py +177 -0
  10. pulumi_oci/aivision/get_stream_job.py +296 -0
  11. pulumi_oci/aivision/get_stream_jobs.py +199 -0
  12. pulumi_oci/aivision/get_stream_source.py +240 -0
  13. pulumi_oci/aivision/get_stream_sources.py +199 -0
  14. pulumi_oci/aivision/get_vision_private_endpoint.py +267 -0
  15. pulumi_oci/aivision/get_vision_private_endpoints.py +199 -0
  16. pulumi_oci/aivision/model.py +149 -157
  17. pulumi_oci/aivision/outputs.py +1920 -116
  18. pulumi_oci/aivision/project.py +61 -69
  19. pulumi_oci/aivision/stream_group.py +632 -0
  20. pulumi_oci/aivision/stream_job.py +744 -0
  21. pulumi_oci/aivision/stream_source.py +519 -0
  22. pulumi_oci/aivision/vision_private_endpoint.py +606 -0
  23. pulumi_oci/cloudguard/_inputs.py +1198 -72
  24. pulumi_oci/cloudguard/get_managed_list.py +15 -1
  25. pulumi_oci/cloudguard/managed_list.py +47 -0
  26. pulumi_oci/cloudguard/outputs.py +2104 -67
  27. pulumi_oci/config/__init__.pyi +12 -17
  28. pulumi_oci/config/vars.py +12 -17
  29. pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
  30. pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
  31. pulumi_oci/core/outputs.py +11 -0
  32. pulumi_oci/database/_inputs.py +298 -13
  33. pulumi_oci/database/data_guard_association.py +98 -0
  34. pulumi_oci/database/database.py +28 -0
  35. pulumi_oci/database/db_node.py +56 -0
  36. pulumi_oci/database/db_system.py +108 -14
  37. pulumi_oci/database/exadb_vm_cluster.py +49 -0
  38. pulumi_oci/database/exascale_db_storage_vault.py +126 -0
  39. pulumi_oci/database/get_data_guard_association.py +23 -1
  40. pulumi_oci/database/get_database.py +15 -1
  41. pulumi_oci/database/get_db_node.py +29 -1
  42. pulumi_oci/database/get_db_system_shapes.py +25 -6
  43. pulumi_oci/database/get_db_system_storage_performances.py +20 -3
  44. pulumi_oci/database/get_db_versions.py +20 -1
  45. pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
  48. pulumi_oci/database/get_gi_versions.py +25 -6
  49. pulumi_oci/database/outputs.py +696 -13
  50. pulumi_oci/datasafe/__init__.py +24 -0
  51. pulumi_oci/datasafe/_inputs.py +3669 -1537
  52. pulumi_oci/datasafe/attribute_set.py +693 -0
  53. pulumi_oci/datasafe/audit_profile.py +356 -95
  54. pulumi_oci/datasafe/audit_profile_management.py +389 -129
  55. pulumi_oci/datasafe/audit_trail.py +47 -0
  56. pulumi_oci/datasafe/audit_trail_management.py +49 -0
  57. pulumi_oci/datasafe/get_alerts.py +2 -2
  58. pulumi_oci/datasafe/get_attribute_set.py +295 -0
  59. pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
  60. pulumi_oci/datasafe/get_attribute_sets.py +340 -0
  61. pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
  62. pulumi_oci/datasafe/get_audit_events.py +2 -2
  63. pulumi_oci/datasafe/get_audit_policies.py +20 -1
  64. pulumi_oci/datasafe/get_audit_profile.py +78 -8
  65. pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
  66. pulumi_oci/datasafe/get_audit_profiles.py +50 -9
  67. pulumi_oci/datasafe/get_audit_trail.py +15 -1
  68. pulumi_oci/datasafe/get_audit_trails.py +20 -1
  69. pulumi_oci/datasafe/get_database_security_configs.py +20 -1
  70. pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
  71. pulumi_oci/datasafe/get_masking_analytics.py +42 -1
  72. pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
  73. pulumi_oci/datasafe/get_report.py +43 -1
  74. pulumi_oci/datasafe/get_reports.py +23 -1
  75. pulumi_oci/datasafe/get_security_assessment.py +116 -2
  76. pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
  77. pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
  78. pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
  79. pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
  80. pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
  81. pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
  82. pulumi_oci/datasafe/get_security_assessments.py +68 -2
  83. pulumi_oci/datasafe/get_security_policies.py +23 -1
  84. pulumi_oci/datasafe/get_security_policy.py +15 -1
  85. pulumi_oci/datasafe/get_security_policy_config.py +296 -0
  86. pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
  87. pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
  88. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
  89. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
  90. pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
  91. pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
  92. pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
  93. pulumi_oci/datasafe/get_sql_collections.py +20 -1
  94. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
  95. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
  96. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
  97. pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
  98. pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
  99. pulumi_oci/datasafe/get_target_database_group.py +296 -0
  100. pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
  101. pulumi_oci/datasafe/get_target_database_groups.py +313 -0
  102. pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
  103. pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
  104. pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
  105. pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
  106. pulumi_oci/datasafe/get_user_assessment.py +29 -1
  107. pulumi_oci/datasafe/get_user_assessments.py +45 -1
  108. pulumi_oci/datasafe/outputs.py +6964 -192
  109. pulumi_oci/datasafe/report.py +84 -0
  110. pulumi_oci/datasafe/report_definition.py +4 -0
  111. pulumi_oci/datasafe/security_assessment.py +425 -82
  112. pulumi_oci/datasafe/security_assessment_check.py +456 -0
  113. pulumi_oci/datasafe/security_assessment_finding.py +818 -0
  114. pulumi_oci/datasafe/security_policy.py +94 -77
  115. pulumi_oci/datasafe/security_policy_config.py +698 -0
  116. pulumi_oci/datasafe/security_policy_deployment.py +272 -67
  117. pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
  118. pulumi_oci/datasafe/security_policy_management.py +87 -30
  119. pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
  120. pulumi_oci/datasafe/target_database.py +4 -0
  121. pulumi_oci/datasafe/target_database_group.py +679 -0
  122. pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
  123. pulumi_oci/datasafe/unified_audit_policy.py +836 -0
  124. pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
  125. pulumi_oci/datasafe/user_assessment.py +105 -28
  126. pulumi_oci/disasterrecovery/_inputs.py +231 -3
  127. pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
  128. pulumi_oci/disasterrecovery/outputs.py +446 -12
  129. pulumi_oci/generativeai/_inputs.py +572 -63
  130. pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
  131. pulumi_oci/generativeai/agent_data_source.py +7 -81
  132. pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
  133. pulumi_oci/generativeai/agent_tool.py +172 -0
  134. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
  135. pulumi_oci/generativeai/get_agent_data_source.py +1 -5
  136. pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
  137. pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
  138. pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
  139. pulumi_oci/generativeai/outputs.py +1128 -106
  140. pulumi_oci/goldengate/deployment.py +94 -0
  141. pulumi_oci/goldengate/get_deployment.py +29 -1
  142. pulumi_oci/goldengate/get_deployments.py +23 -1
  143. pulumi_oci/goldengate/outputs.py +35 -2
  144. pulumi_oci/mysql/_inputs.py +221 -0
  145. pulumi_oci/mysql/get_mysql_backup.py +40 -4
  146. pulumi_oci/mysql/get_mysql_backups.py +2 -2
  147. pulumi_oci/mysql/mysql_backup.py +119 -3
  148. pulumi_oci/mysql/outputs.py +343 -957
  149. pulumi_oci/oci/__init__.py +17 -0
  150. pulumi_oci/oci/_inputs.py +676 -15
  151. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +103 -54
  152. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +45 -45
  153. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +42 -44
  154. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +100 -72
  155. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +74 -74
  156. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +50 -50
  157. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_identity_connector.py +924 -0
  158. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_key_ring.py +762 -0
  159. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +37 -15
  160. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +26 -12
  161. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +12 -12
  162. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +15 -15
  163. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +12 -12
  164. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +15 -15
  165. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +30 -16
  166. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +11 -11
  167. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +41 -13
  168. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +12 -12
  169. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +17 -17
  170. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +14 -14
  171. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +15 -15
  172. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +14 -14
  173. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connector.py +366 -0
  174. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connectors.py +213 -0
  175. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key.py +295 -0
  176. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_ring.py +309 -0
  177. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_rings.py +229 -0
  178. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_keys.py +232 -0
  179. pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
  180. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
  181. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
  182. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
  183. pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
  184. pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
  185. pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
  186. pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
  187. pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
  188. pulumi_oci/oci/outputs.py +2051 -142
  189. pulumi_oci/provider.py +44 -63
  190. pulumi_oci/pulumi-plugin.json +1 -1
  191. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/METADATA +1 -1
  192. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/RECORD +194 -141
  193. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/WHEEL +0 -0
  194. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,984 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = ['ManagedKafkaKafkaClusterArgs', 'ManagedKafkaKafkaCluster']
20
+
21
+ @pulumi.input_type
22
+ class ManagedKafkaKafkaClusterArgs:
23
+ def __init__(__self__, *,
24
+ access_subnets: pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]],
25
+ broker_shape: pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs'],
26
+ cluster_config_id: pulumi.Input[_builtins.str],
27
+ cluster_config_version: pulumi.Input[_builtins.int],
28
+ cluster_type: pulumi.Input[_builtins.str],
29
+ compartment_id: pulumi.Input[_builtins.str],
30
+ coordination_type: pulumi.Input[_builtins.str],
31
+ kafka_version: pulumi.Input[_builtins.str],
32
+ client_certificate_bundle: Optional[pulumi.Input[_builtins.str]] = None,
33
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
34
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
35
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
36
+ """
37
+ The set of arguments for constructing a ManagedKafkaKafkaCluster resource.
38
+ :param pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]] access_subnets: (Updatable) Subnets where broker/coordinator VNICs will be created.
39
+ :param pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs'] broker_shape: (Updatable) Configuration of the broker node.
40
+ :param pulumi.Input[_builtins.str] cluster_config_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
41
+ :param pulumi.Input[_builtins.int] cluster_config_version: (Updatable) The version of configuration object
42
+ :param pulumi.Input[_builtins.str] cluster_type: 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
43
+ :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
44
+ :param pulumi.Input[_builtins.str] coordination_type: (Updatable) Kafka coordination type. Set of available types depends on Kafka version
45
+ :param pulumi.Input[_builtins.str] kafka_version: Version of Kafka to use to spin up the cluster
46
+
47
+
48
+ ** IMPORTANT **
49
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
50
+ :param pulumi.Input[_builtins.str] client_certificate_bundle: (Updatable) CA certificate bundle for mTLS broker authentication.
51
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
52
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
53
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
54
+ """
55
+ pulumi.set(__self__, "access_subnets", access_subnets)
56
+ pulumi.set(__self__, "broker_shape", broker_shape)
57
+ pulumi.set(__self__, "cluster_config_id", cluster_config_id)
58
+ pulumi.set(__self__, "cluster_config_version", cluster_config_version)
59
+ pulumi.set(__self__, "cluster_type", cluster_type)
60
+ pulumi.set(__self__, "compartment_id", compartment_id)
61
+ pulumi.set(__self__, "coordination_type", coordination_type)
62
+ pulumi.set(__self__, "kafka_version", kafka_version)
63
+ if client_certificate_bundle is not None:
64
+ pulumi.set(__self__, "client_certificate_bundle", client_certificate_bundle)
65
+ if defined_tags is not None:
66
+ pulumi.set(__self__, "defined_tags", defined_tags)
67
+ if display_name is not None:
68
+ pulumi.set(__self__, "display_name", display_name)
69
+ if freeform_tags is not None:
70
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
71
+
72
+ @_builtins.property
73
+ @pulumi.getter(name="accessSubnets")
74
+ def access_subnets(self) -> pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]]:
75
+ """
76
+ (Updatable) Subnets where broker/coordinator VNICs will be created.
77
+ """
78
+ return pulumi.get(self, "access_subnets")
79
+
80
+ @access_subnets.setter
81
+ def access_subnets(self, value: pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]]):
82
+ pulumi.set(self, "access_subnets", value)
83
+
84
+ @_builtins.property
85
+ @pulumi.getter(name="brokerShape")
86
+ def broker_shape(self) -> pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs']:
87
+ """
88
+ (Updatable) Configuration of the broker node.
89
+ """
90
+ return pulumi.get(self, "broker_shape")
91
+
92
+ @broker_shape.setter
93
+ def broker_shape(self, value: pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs']):
94
+ pulumi.set(self, "broker_shape", value)
95
+
96
+ @_builtins.property
97
+ @pulumi.getter(name="clusterConfigId")
98
+ def cluster_config_id(self) -> pulumi.Input[_builtins.str]:
99
+ """
100
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
101
+ """
102
+ return pulumi.get(self, "cluster_config_id")
103
+
104
+ @cluster_config_id.setter
105
+ def cluster_config_id(self, value: pulumi.Input[_builtins.str]):
106
+ pulumi.set(self, "cluster_config_id", value)
107
+
108
+ @_builtins.property
109
+ @pulumi.getter(name="clusterConfigVersion")
110
+ def cluster_config_version(self) -> pulumi.Input[_builtins.int]:
111
+ """
112
+ (Updatable) The version of configuration object
113
+ """
114
+ return pulumi.get(self, "cluster_config_version")
115
+
116
+ @cluster_config_version.setter
117
+ def cluster_config_version(self, value: pulumi.Input[_builtins.int]):
118
+ pulumi.set(self, "cluster_config_version", value)
119
+
120
+ @_builtins.property
121
+ @pulumi.getter(name="clusterType")
122
+ def cluster_type(self) -> pulumi.Input[_builtins.str]:
123
+ """
124
+ 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
125
+ """
126
+ return pulumi.get(self, "cluster_type")
127
+
128
+ @cluster_type.setter
129
+ def cluster_type(self, value: pulumi.Input[_builtins.str]):
130
+ pulumi.set(self, "cluster_type", value)
131
+
132
+ @_builtins.property
133
+ @pulumi.getter(name="compartmentId")
134
+ def compartment_id(self) -> pulumi.Input[_builtins.str]:
135
+ """
136
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
137
+ """
138
+ return pulumi.get(self, "compartment_id")
139
+
140
+ @compartment_id.setter
141
+ def compartment_id(self, value: pulumi.Input[_builtins.str]):
142
+ pulumi.set(self, "compartment_id", value)
143
+
144
+ @_builtins.property
145
+ @pulumi.getter(name="coordinationType")
146
+ def coordination_type(self) -> pulumi.Input[_builtins.str]:
147
+ """
148
+ (Updatable) Kafka coordination type. Set of available types depends on Kafka version
149
+ """
150
+ return pulumi.get(self, "coordination_type")
151
+
152
+ @coordination_type.setter
153
+ def coordination_type(self, value: pulumi.Input[_builtins.str]):
154
+ pulumi.set(self, "coordination_type", value)
155
+
156
+ @_builtins.property
157
+ @pulumi.getter(name="kafkaVersion")
158
+ def kafka_version(self) -> pulumi.Input[_builtins.str]:
159
+ """
160
+ Version of Kafka to use to spin up the cluster
161
+
162
+
163
+ ** IMPORTANT **
164
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
165
+ """
166
+ return pulumi.get(self, "kafka_version")
167
+
168
+ @kafka_version.setter
169
+ def kafka_version(self, value: pulumi.Input[_builtins.str]):
170
+ pulumi.set(self, "kafka_version", value)
171
+
172
+ @_builtins.property
173
+ @pulumi.getter(name="clientCertificateBundle")
174
+ def client_certificate_bundle(self) -> Optional[pulumi.Input[_builtins.str]]:
175
+ """
176
+ (Updatable) CA certificate bundle for mTLS broker authentication.
177
+ """
178
+ return pulumi.get(self, "client_certificate_bundle")
179
+
180
+ @client_certificate_bundle.setter
181
+ def client_certificate_bundle(self, value: Optional[pulumi.Input[_builtins.str]]):
182
+ pulumi.set(self, "client_certificate_bundle", value)
183
+
184
+ @_builtins.property
185
+ @pulumi.getter(name="definedTags")
186
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
187
+ """
188
+ (Updatable) 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"}`
189
+ """
190
+ return pulumi.get(self, "defined_tags")
191
+
192
+ @defined_tags.setter
193
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
194
+ pulumi.set(self, "defined_tags", value)
195
+
196
+ @_builtins.property
197
+ @pulumi.getter(name="displayName")
198
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
199
+ """
200
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
201
+ """
202
+ return pulumi.get(self, "display_name")
203
+
204
+ @display_name.setter
205
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
206
+ pulumi.set(self, "display_name", value)
207
+
208
+ @_builtins.property
209
+ @pulumi.getter(name="freeformTags")
210
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
211
+ """
212
+ (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
213
+ """
214
+ return pulumi.get(self, "freeform_tags")
215
+
216
+ @freeform_tags.setter
217
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
218
+ pulumi.set(self, "freeform_tags", value)
219
+
220
+
221
+ @pulumi.input_type
222
+ class _ManagedKafkaKafkaClusterState:
223
+ def __init__(__self__, *,
224
+ access_subnets: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]]] = None,
225
+ broker_shape: Optional[pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs']] = None,
226
+ client_certificate_bundle: Optional[pulumi.Input[_builtins.str]] = None,
227
+ cluster_config_id: Optional[pulumi.Input[_builtins.str]] = None,
228
+ cluster_config_version: Optional[pulumi.Input[_builtins.int]] = None,
229
+ cluster_type: Optional[pulumi.Input[_builtins.str]] = None,
230
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
231
+ coordination_type: Optional[pulumi.Input[_builtins.str]] = None,
232
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
233
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
234
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
235
+ kafka_bootstrap_urls: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs']]]] = None,
236
+ kafka_version: Optional[pulumi.Input[_builtins.str]] = None,
237
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
238
+ secret_id: Optional[pulumi.Input[_builtins.str]] = None,
239
+ state: Optional[pulumi.Input[_builtins.str]] = None,
240
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
241
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
242
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None):
243
+ """
244
+ Input properties used for looking up and filtering ManagedKafkaKafkaCluster resources.
245
+ :param pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]] access_subnets: (Updatable) Subnets where broker/coordinator VNICs will be created.
246
+ :param pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs'] broker_shape: (Updatable) Configuration of the broker node.
247
+ :param pulumi.Input[_builtins.str] client_certificate_bundle: (Updatable) CA certificate bundle for mTLS broker authentication.
248
+ :param pulumi.Input[_builtins.str] cluster_config_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
249
+ :param pulumi.Input[_builtins.int] cluster_config_version: (Updatable) The version of configuration object
250
+ :param pulumi.Input[_builtins.str] cluster_type: 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
251
+ :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
252
+ :param pulumi.Input[_builtins.str] coordination_type: (Updatable) Kafka coordination type. Set of available types depends on Kafka version
253
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
254
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
255
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
256
+ :param pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs']]] kafka_bootstrap_urls: Bootstrap URL that can be used to connect to Kafka
257
+ :param pulumi.Input[_builtins.str] kafka_version: Version of Kafka to use to spin up the cluster
258
+
259
+
260
+ ** IMPORTANT **
261
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
262
+ :param pulumi.Input[_builtins.str] lifecycle_details: 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.
263
+ :param pulumi.Input[_builtins.str] secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
264
+ :param pulumi.Input[_builtins.str] state: The current state of the KafkaCluster.
265
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
266
+ :param pulumi.Input[_builtins.str] time_created: 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`
267
+ :param pulumi.Input[_builtins.str] time_updated: 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`
268
+ """
269
+ if access_subnets is not None:
270
+ pulumi.set(__self__, "access_subnets", access_subnets)
271
+ if broker_shape is not None:
272
+ pulumi.set(__self__, "broker_shape", broker_shape)
273
+ if client_certificate_bundle is not None:
274
+ pulumi.set(__self__, "client_certificate_bundle", client_certificate_bundle)
275
+ if cluster_config_id is not None:
276
+ pulumi.set(__self__, "cluster_config_id", cluster_config_id)
277
+ if cluster_config_version is not None:
278
+ pulumi.set(__self__, "cluster_config_version", cluster_config_version)
279
+ if cluster_type is not None:
280
+ pulumi.set(__self__, "cluster_type", cluster_type)
281
+ if compartment_id is not None:
282
+ pulumi.set(__self__, "compartment_id", compartment_id)
283
+ if coordination_type is not None:
284
+ pulumi.set(__self__, "coordination_type", coordination_type)
285
+ if defined_tags is not None:
286
+ pulumi.set(__self__, "defined_tags", defined_tags)
287
+ if display_name is not None:
288
+ pulumi.set(__self__, "display_name", display_name)
289
+ if freeform_tags is not None:
290
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
291
+ if kafka_bootstrap_urls is not None:
292
+ pulumi.set(__self__, "kafka_bootstrap_urls", kafka_bootstrap_urls)
293
+ if kafka_version is not None:
294
+ pulumi.set(__self__, "kafka_version", kafka_version)
295
+ if lifecycle_details is not None:
296
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
297
+ if secret_id is not None:
298
+ pulumi.set(__self__, "secret_id", secret_id)
299
+ if state is not None:
300
+ pulumi.set(__self__, "state", state)
301
+ if system_tags is not None:
302
+ pulumi.set(__self__, "system_tags", system_tags)
303
+ if time_created is not None:
304
+ pulumi.set(__self__, "time_created", time_created)
305
+ if time_updated is not None:
306
+ pulumi.set(__self__, "time_updated", time_updated)
307
+
308
+ @_builtins.property
309
+ @pulumi.getter(name="accessSubnets")
310
+ def access_subnets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]]]:
311
+ """
312
+ (Updatable) Subnets where broker/coordinator VNICs will be created.
313
+ """
314
+ return pulumi.get(self, "access_subnets")
315
+
316
+ @access_subnets.setter
317
+ def access_subnets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterAccessSubnetArgs']]]]):
318
+ pulumi.set(self, "access_subnets", value)
319
+
320
+ @_builtins.property
321
+ @pulumi.getter(name="brokerShape")
322
+ def broker_shape(self) -> Optional[pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs']]:
323
+ """
324
+ (Updatable) Configuration of the broker node.
325
+ """
326
+ return pulumi.get(self, "broker_shape")
327
+
328
+ @broker_shape.setter
329
+ def broker_shape(self, value: Optional[pulumi.Input['ManagedKafkaKafkaClusterBrokerShapeArgs']]):
330
+ pulumi.set(self, "broker_shape", value)
331
+
332
+ @_builtins.property
333
+ @pulumi.getter(name="clientCertificateBundle")
334
+ def client_certificate_bundle(self) -> Optional[pulumi.Input[_builtins.str]]:
335
+ """
336
+ (Updatable) CA certificate bundle for mTLS broker authentication.
337
+ """
338
+ return pulumi.get(self, "client_certificate_bundle")
339
+
340
+ @client_certificate_bundle.setter
341
+ def client_certificate_bundle(self, value: Optional[pulumi.Input[_builtins.str]]):
342
+ pulumi.set(self, "client_certificate_bundle", value)
343
+
344
+ @_builtins.property
345
+ @pulumi.getter(name="clusterConfigId")
346
+ def cluster_config_id(self) -> Optional[pulumi.Input[_builtins.str]]:
347
+ """
348
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
349
+ """
350
+ return pulumi.get(self, "cluster_config_id")
351
+
352
+ @cluster_config_id.setter
353
+ def cluster_config_id(self, value: Optional[pulumi.Input[_builtins.str]]):
354
+ pulumi.set(self, "cluster_config_id", value)
355
+
356
+ @_builtins.property
357
+ @pulumi.getter(name="clusterConfigVersion")
358
+ def cluster_config_version(self) -> Optional[pulumi.Input[_builtins.int]]:
359
+ """
360
+ (Updatable) The version of configuration object
361
+ """
362
+ return pulumi.get(self, "cluster_config_version")
363
+
364
+ @cluster_config_version.setter
365
+ def cluster_config_version(self, value: Optional[pulumi.Input[_builtins.int]]):
366
+ pulumi.set(self, "cluster_config_version", value)
367
+
368
+ @_builtins.property
369
+ @pulumi.getter(name="clusterType")
370
+ def cluster_type(self) -> Optional[pulumi.Input[_builtins.str]]:
371
+ """
372
+ 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
373
+ """
374
+ return pulumi.get(self, "cluster_type")
375
+
376
+ @cluster_type.setter
377
+ def cluster_type(self, value: Optional[pulumi.Input[_builtins.str]]):
378
+ pulumi.set(self, "cluster_type", value)
379
+
380
+ @_builtins.property
381
+ @pulumi.getter(name="compartmentId")
382
+ def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
383
+ """
384
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
385
+ """
386
+ return pulumi.get(self, "compartment_id")
387
+
388
+ @compartment_id.setter
389
+ def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
390
+ pulumi.set(self, "compartment_id", value)
391
+
392
+ @_builtins.property
393
+ @pulumi.getter(name="coordinationType")
394
+ def coordination_type(self) -> Optional[pulumi.Input[_builtins.str]]:
395
+ """
396
+ (Updatable) Kafka coordination type. Set of available types depends on Kafka version
397
+ """
398
+ return pulumi.get(self, "coordination_type")
399
+
400
+ @coordination_type.setter
401
+ def coordination_type(self, value: Optional[pulumi.Input[_builtins.str]]):
402
+ pulumi.set(self, "coordination_type", value)
403
+
404
+ @_builtins.property
405
+ @pulumi.getter(name="definedTags")
406
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
407
+ """
408
+ (Updatable) 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"}`
409
+ """
410
+ return pulumi.get(self, "defined_tags")
411
+
412
+ @defined_tags.setter
413
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
414
+ pulumi.set(self, "defined_tags", value)
415
+
416
+ @_builtins.property
417
+ @pulumi.getter(name="displayName")
418
+ def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
419
+ """
420
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
421
+ """
422
+ return pulumi.get(self, "display_name")
423
+
424
+ @display_name.setter
425
+ def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
426
+ pulumi.set(self, "display_name", value)
427
+
428
+ @_builtins.property
429
+ @pulumi.getter(name="freeformTags")
430
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
431
+ """
432
+ (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
433
+ """
434
+ return pulumi.get(self, "freeform_tags")
435
+
436
+ @freeform_tags.setter
437
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
438
+ pulumi.set(self, "freeform_tags", value)
439
+
440
+ @_builtins.property
441
+ @pulumi.getter(name="kafkaBootstrapUrls")
442
+ def kafka_bootstrap_urls(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs']]]]:
443
+ """
444
+ Bootstrap URL that can be used to connect to Kafka
445
+ """
446
+ return pulumi.get(self, "kafka_bootstrap_urls")
447
+
448
+ @kafka_bootstrap_urls.setter
449
+ def kafka_bootstrap_urls(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs']]]]):
450
+ pulumi.set(self, "kafka_bootstrap_urls", value)
451
+
452
+ @_builtins.property
453
+ @pulumi.getter(name="kafkaVersion")
454
+ def kafka_version(self) -> Optional[pulumi.Input[_builtins.str]]:
455
+ """
456
+ Version of Kafka to use to spin up the cluster
457
+
458
+
459
+ ** IMPORTANT **
460
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
461
+ """
462
+ return pulumi.get(self, "kafka_version")
463
+
464
+ @kafka_version.setter
465
+ def kafka_version(self, value: Optional[pulumi.Input[_builtins.str]]):
466
+ pulumi.set(self, "kafka_version", value)
467
+
468
+ @_builtins.property
469
+ @pulumi.getter(name="lifecycleDetails")
470
+ def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
471
+ """
472
+ 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.
473
+ """
474
+ return pulumi.get(self, "lifecycle_details")
475
+
476
+ @lifecycle_details.setter
477
+ def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
478
+ pulumi.set(self, "lifecycle_details", value)
479
+
480
+ @_builtins.property
481
+ @pulumi.getter(name="secretId")
482
+ def secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
483
+ """
484
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
485
+ """
486
+ return pulumi.get(self, "secret_id")
487
+
488
+ @secret_id.setter
489
+ def secret_id(self, value: Optional[pulumi.Input[_builtins.str]]):
490
+ pulumi.set(self, "secret_id", value)
491
+
492
+ @_builtins.property
493
+ @pulumi.getter
494
+ def state(self) -> Optional[pulumi.Input[_builtins.str]]:
495
+ """
496
+ The current state of the KafkaCluster.
497
+ """
498
+ return pulumi.get(self, "state")
499
+
500
+ @state.setter
501
+ def state(self, value: Optional[pulumi.Input[_builtins.str]]):
502
+ pulumi.set(self, "state", value)
503
+
504
+ @_builtins.property
505
+ @pulumi.getter(name="systemTags")
506
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
507
+ """
508
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
509
+ """
510
+ return pulumi.get(self, "system_tags")
511
+
512
+ @system_tags.setter
513
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
514
+ pulumi.set(self, "system_tags", value)
515
+
516
+ @_builtins.property
517
+ @pulumi.getter(name="timeCreated")
518
+ def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
519
+ """
520
+ 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`
521
+ """
522
+ return pulumi.get(self, "time_created")
523
+
524
+ @time_created.setter
525
+ def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
526
+ pulumi.set(self, "time_created", value)
527
+
528
+ @_builtins.property
529
+ @pulumi.getter(name="timeUpdated")
530
+ def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
531
+ """
532
+ 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`
533
+ """
534
+ return pulumi.get(self, "time_updated")
535
+
536
+ @time_updated.setter
537
+ def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
538
+ pulumi.set(self, "time_updated", value)
539
+
540
+
541
+ @pulumi.type_token("oci:oci/managedKafkaKafkaCluster:ManagedKafkaKafkaCluster")
542
+ class ManagedKafkaKafkaCluster(pulumi.CustomResource):
543
+ @overload
544
+ def __init__(__self__,
545
+ resource_name: str,
546
+ opts: Optional[pulumi.ResourceOptions] = None,
547
+ access_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterAccessSubnetArgs', 'ManagedKafkaKafkaClusterAccessSubnetArgsDict']]]]] = None,
548
+ broker_shape: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterBrokerShapeArgs', 'ManagedKafkaKafkaClusterBrokerShapeArgsDict']]] = None,
549
+ client_certificate_bundle: Optional[pulumi.Input[_builtins.str]] = None,
550
+ cluster_config_id: Optional[pulumi.Input[_builtins.str]] = None,
551
+ cluster_config_version: Optional[pulumi.Input[_builtins.int]] = None,
552
+ cluster_type: Optional[pulumi.Input[_builtins.str]] = None,
553
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
554
+ coordination_type: Optional[pulumi.Input[_builtins.str]] = None,
555
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
556
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
557
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
558
+ kafka_version: Optional[pulumi.Input[_builtins.str]] = None,
559
+ __props__=None):
560
+ """
561
+ This resource provides the Kafka Cluster resource in Oracle Cloud Infrastructure Managed Kafka service.
562
+
563
+ Creates a KafkaCluster.
564
+
565
+ ## Example Usage
566
+
567
+ ```python
568
+ import pulumi
569
+ import pulumi_oci as oci
570
+
571
+ test_kafka_cluster = oci.oci.ManagedKafkaKafkaCluster("test_kafka_cluster",
572
+ access_subnets=[{
573
+ "subnets": kafka_cluster_access_subnets_subnets,
574
+ }],
575
+ broker_shape={
576
+ "node_count": kafka_cluster_broker_shape_node_count,
577
+ "ocpu_count": kafka_cluster_broker_shape_ocpu_count,
578
+ "storage_size_in_gbs": kafka_cluster_broker_shape_storage_size_in_gbs,
579
+ },
580
+ cluster_config_id=test_config["id"],
581
+ cluster_config_version=kafka_cluster_cluster_config_version,
582
+ cluster_type=kafka_cluster_cluster_type,
583
+ compartment_id=compartment_id,
584
+ coordination_type=kafka_cluster_coordination_type,
585
+ kafka_version=kafka_cluster_kafka_version,
586
+ client_certificate_bundle=kafka_cluster_client_certificate_bundle,
587
+ defined_tags={
588
+ "Operations.CostCenter": "42",
589
+ },
590
+ display_name=kafka_cluster_display_name,
591
+ freeform_tags={
592
+ "Department": "Finance",
593
+ })
594
+ ```
595
+
596
+ ## Import
597
+
598
+ KafkaClusters can be imported using the `id`, e.g.
599
+
600
+ ```sh
601
+ $ pulumi import oci:oci/managedKafkaKafkaCluster:ManagedKafkaKafkaCluster test_kafka_cluster "id"
602
+ ```
603
+
604
+ :param str resource_name: The name of the resource.
605
+ :param pulumi.ResourceOptions opts: Options for the resource.
606
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterAccessSubnetArgs', 'ManagedKafkaKafkaClusterAccessSubnetArgsDict']]]] access_subnets: (Updatable) Subnets where broker/coordinator VNICs will be created.
607
+ :param pulumi.Input[Union['ManagedKafkaKafkaClusterBrokerShapeArgs', 'ManagedKafkaKafkaClusterBrokerShapeArgsDict']] broker_shape: (Updatable) Configuration of the broker node.
608
+ :param pulumi.Input[_builtins.str] client_certificate_bundle: (Updatable) CA certificate bundle for mTLS broker authentication.
609
+ :param pulumi.Input[_builtins.str] cluster_config_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
610
+ :param pulumi.Input[_builtins.int] cluster_config_version: (Updatable) The version of configuration object
611
+ :param pulumi.Input[_builtins.str] cluster_type: 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
612
+ :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
613
+ :param pulumi.Input[_builtins.str] coordination_type: (Updatable) Kafka coordination type. Set of available types depends on Kafka version
614
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
615
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
616
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
617
+ :param pulumi.Input[_builtins.str] kafka_version: Version of Kafka to use to spin up the cluster
618
+
619
+
620
+ ** IMPORTANT **
621
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
622
+ """
623
+ ...
624
+ @overload
625
+ def __init__(__self__,
626
+ resource_name: str,
627
+ args: ManagedKafkaKafkaClusterArgs,
628
+ opts: Optional[pulumi.ResourceOptions] = None):
629
+ """
630
+ This resource provides the Kafka Cluster resource in Oracle Cloud Infrastructure Managed Kafka service.
631
+
632
+ Creates a KafkaCluster.
633
+
634
+ ## Example Usage
635
+
636
+ ```python
637
+ import pulumi
638
+ import pulumi_oci as oci
639
+
640
+ test_kafka_cluster = oci.oci.ManagedKafkaKafkaCluster("test_kafka_cluster",
641
+ access_subnets=[{
642
+ "subnets": kafka_cluster_access_subnets_subnets,
643
+ }],
644
+ broker_shape={
645
+ "node_count": kafka_cluster_broker_shape_node_count,
646
+ "ocpu_count": kafka_cluster_broker_shape_ocpu_count,
647
+ "storage_size_in_gbs": kafka_cluster_broker_shape_storage_size_in_gbs,
648
+ },
649
+ cluster_config_id=test_config["id"],
650
+ cluster_config_version=kafka_cluster_cluster_config_version,
651
+ cluster_type=kafka_cluster_cluster_type,
652
+ compartment_id=compartment_id,
653
+ coordination_type=kafka_cluster_coordination_type,
654
+ kafka_version=kafka_cluster_kafka_version,
655
+ client_certificate_bundle=kafka_cluster_client_certificate_bundle,
656
+ defined_tags={
657
+ "Operations.CostCenter": "42",
658
+ },
659
+ display_name=kafka_cluster_display_name,
660
+ freeform_tags={
661
+ "Department": "Finance",
662
+ })
663
+ ```
664
+
665
+ ## Import
666
+
667
+ KafkaClusters can be imported using the `id`, e.g.
668
+
669
+ ```sh
670
+ $ pulumi import oci:oci/managedKafkaKafkaCluster:ManagedKafkaKafkaCluster test_kafka_cluster "id"
671
+ ```
672
+
673
+ :param str resource_name: The name of the resource.
674
+ :param ManagedKafkaKafkaClusterArgs args: The arguments to use to populate this resource's properties.
675
+ :param pulumi.ResourceOptions opts: Options for the resource.
676
+ """
677
+ ...
678
+ def __init__(__self__, resource_name: str, *args, **kwargs):
679
+ resource_args, opts = _utilities.get_resource_args_opts(ManagedKafkaKafkaClusterArgs, pulumi.ResourceOptions, *args, **kwargs)
680
+ if resource_args is not None:
681
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
682
+ else:
683
+ __self__._internal_init(resource_name, *args, **kwargs)
684
+
685
+ def _internal_init(__self__,
686
+ resource_name: str,
687
+ opts: Optional[pulumi.ResourceOptions] = None,
688
+ access_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterAccessSubnetArgs', 'ManagedKafkaKafkaClusterAccessSubnetArgsDict']]]]] = None,
689
+ broker_shape: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterBrokerShapeArgs', 'ManagedKafkaKafkaClusterBrokerShapeArgsDict']]] = None,
690
+ client_certificate_bundle: Optional[pulumi.Input[_builtins.str]] = None,
691
+ cluster_config_id: Optional[pulumi.Input[_builtins.str]] = None,
692
+ cluster_config_version: Optional[pulumi.Input[_builtins.int]] = None,
693
+ cluster_type: Optional[pulumi.Input[_builtins.str]] = None,
694
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
695
+ coordination_type: Optional[pulumi.Input[_builtins.str]] = None,
696
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
697
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
698
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
699
+ kafka_version: Optional[pulumi.Input[_builtins.str]] = None,
700
+ __props__=None):
701
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
702
+ if not isinstance(opts, pulumi.ResourceOptions):
703
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
704
+ if opts.id is None:
705
+ if __props__ is not None:
706
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
707
+ __props__ = ManagedKafkaKafkaClusterArgs.__new__(ManagedKafkaKafkaClusterArgs)
708
+
709
+ if access_subnets is None and not opts.urn:
710
+ raise TypeError("Missing required property 'access_subnets'")
711
+ __props__.__dict__["access_subnets"] = access_subnets
712
+ if broker_shape is None and not opts.urn:
713
+ raise TypeError("Missing required property 'broker_shape'")
714
+ __props__.__dict__["broker_shape"] = broker_shape
715
+ __props__.__dict__["client_certificate_bundle"] = client_certificate_bundle
716
+ if cluster_config_id is None and not opts.urn:
717
+ raise TypeError("Missing required property 'cluster_config_id'")
718
+ __props__.__dict__["cluster_config_id"] = cluster_config_id
719
+ if cluster_config_version is None and not opts.urn:
720
+ raise TypeError("Missing required property 'cluster_config_version'")
721
+ __props__.__dict__["cluster_config_version"] = cluster_config_version
722
+ if cluster_type is None and not opts.urn:
723
+ raise TypeError("Missing required property 'cluster_type'")
724
+ __props__.__dict__["cluster_type"] = cluster_type
725
+ if compartment_id is None and not opts.urn:
726
+ raise TypeError("Missing required property 'compartment_id'")
727
+ __props__.__dict__["compartment_id"] = compartment_id
728
+ if coordination_type is None and not opts.urn:
729
+ raise TypeError("Missing required property 'coordination_type'")
730
+ __props__.__dict__["coordination_type"] = coordination_type
731
+ __props__.__dict__["defined_tags"] = defined_tags
732
+ __props__.__dict__["display_name"] = display_name
733
+ __props__.__dict__["freeform_tags"] = freeform_tags
734
+ if kafka_version is None and not opts.urn:
735
+ raise TypeError("Missing required property 'kafka_version'")
736
+ __props__.__dict__["kafka_version"] = kafka_version
737
+ __props__.__dict__["kafka_bootstrap_urls"] = None
738
+ __props__.__dict__["lifecycle_details"] = None
739
+ __props__.__dict__["secret_id"] = None
740
+ __props__.__dict__["state"] = None
741
+ __props__.__dict__["system_tags"] = None
742
+ __props__.__dict__["time_created"] = None
743
+ __props__.__dict__["time_updated"] = None
744
+ super(ManagedKafkaKafkaCluster, __self__).__init__(
745
+ 'oci:oci/managedKafkaKafkaCluster:ManagedKafkaKafkaCluster',
746
+ resource_name,
747
+ __props__,
748
+ opts)
749
+
750
+ @staticmethod
751
+ def get(resource_name: str,
752
+ id: pulumi.Input[str],
753
+ opts: Optional[pulumi.ResourceOptions] = None,
754
+ access_subnets: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterAccessSubnetArgs', 'ManagedKafkaKafkaClusterAccessSubnetArgsDict']]]]] = None,
755
+ broker_shape: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterBrokerShapeArgs', 'ManagedKafkaKafkaClusterBrokerShapeArgsDict']]] = None,
756
+ client_certificate_bundle: Optional[pulumi.Input[_builtins.str]] = None,
757
+ cluster_config_id: Optional[pulumi.Input[_builtins.str]] = None,
758
+ cluster_config_version: Optional[pulumi.Input[_builtins.int]] = None,
759
+ cluster_type: Optional[pulumi.Input[_builtins.str]] = None,
760
+ compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
761
+ coordination_type: Optional[pulumi.Input[_builtins.str]] = None,
762
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
763
+ display_name: Optional[pulumi.Input[_builtins.str]] = None,
764
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
765
+ kafka_bootstrap_urls: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs', 'ManagedKafkaKafkaClusterKafkaBootstrapUrlArgsDict']]]]] = None,
766
+ kafka_version: Optional[pulumi.Input[_builtins.str]] = None,
767
+ lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
768
+ secret_id: Optional[pulumi.Input[_builtins.str]] = None,
769
+ state: Optional[pulumi.Input[_builtins.str]] = None,
770
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
771
+ time_created: Optional[pulumi.Input[_builtins.str]] = None,
772
+ time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'ManagedKafkaKafkaCluster':
773
+ """
774
+ Get an existing ManagedKafkaKafkaCluster resource's state with the given name, id, and optional extra
775
+ properties used to qualify the lookup.
776
+
777
+ :param str resource_name: The unique name of the resulting resource.
778
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
779
+ :param pulumi.ResourceOptions opts: Options for the resource.
780
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterAccessSubnetArgs', 'ManagedKafkaKafkaClusterAccessSubnetArgsDict']]]] access_subnets: (Updatable) Subnets where broker/coordinator VNICs will be created.
781
+ :param pulumi.Input[Union['ManagedKafkaKafkaClusterBrokerShapeArgs', 'ManagedKafkaKafkaClusterBrokerShapeArgsDict']] broker_shape: (Updatable) Configuration of the broker node.
782
+ :param pulumi.Input[_builtins.str] client_certificate_bundle: (Updatable) CA certificate bundle for mTLS broker authentication.
783
+ :param pulumi.Input[_builtins.str] cluster_config_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
784
+ :param pulumi.Input[_builtins.int] cluster_config_version: (Updatable) The version of configuration object
785
+ :param pulumi.Input[_builtins.str] cluster_type: 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
786
+ :param pulumi.Input[_builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
787
+ :param pulumi.Input[_builtins.str] coordination_type: (Updatable) Kafka coordination type. Set of available types depends on Kafka version
788
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] defined_tags: (Updatable) 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"}`
789
+ :param pulumi.Input[_builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
790
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
791
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs', 'ManagedKafkaKafkaClusterKafkaBootstrapUrlArgsDict']]]] kafka_bootstrap_urls: Bootstrap URL that can be used to connect to Kafka
792
+ :param pulumi.Input[_builtins.str] kafka_version: Version of Kafka to use to spin up the cluster
793
+
794
+
795
+ ** IMPORTANT **
796
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
797
+ :param pulumi.Input[_builtins.str] lifecycle_details: 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.
798
+ :param pulumi.Input[_builtins.str] secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
799
+ :param pulumi.Input[_builtins.str] state: The current state of the KafkaCluster.
800
+ :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
801
+ :param pulumi.Input[_builtins.str] time_created: 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`
802
+ :param pulumi.Input[_builtins.str] time_updated: 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`
803
+ """
804
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
805
+
806
+ __props__ = _ManagedKafkaKafkaClusterState.__new__(_ManagedKafkaKafkaClusterState)
807
+
808
+ __props__.__dict__["access_subnets"] = access_subnets
809
+ __props__.__dict__["broker_shape"] = broker_shape
810
+ __props__.__dict__["client_certificate_bundle"] = client_certificate_bundle
811
+ __props__.__dict__["cluster_config_id"] = cluster_config_id
812
+ __props__.__dict__["cluster_config_version"] = cluster_config_version
813
+ __props__.__dict__["cluster_type"] = cluster_type
814
+ __props__.__dict__["compartment_id"] = compartment_id
815
+ __props__.__dict__["coordination_type"] = coordination_type
816
+ __props__.__dict__["defined_tags"] = defined_tags
817
+ __props__.__dict__["display_name"] = display_name
818
+ __props__.__dict__["freeform_tags"] = freeform_tags
819
+ __props__.__dict__["kafka_bootstrap_urls"] = kafka_bootstrap_urls
820
+ __props__.__dict__["kafka_version"] = kafka_version
821
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
822
+ __props__.__dict__["secret_id"] = secret_id
823
+ __props__.__dict__["state"] = state
824
+ __props__.__dict__["system_tags"] = system_tags
825
+ __props__.__dict__["time_created"] = time_created
826
+ __props__.__dict__["time_updated"] = time_updated
827
+ return ManagedKafkaKafkaCluster(resource_name, opts=opts, __props__=__props__)
828
+
829
+ @_builtins.property
830
+ @pulumi.getter(name="accessSubnets")
831
+ def access_subnets(self) -> pulumi.Output[Sequence['outputs.ManagedKafkaKafkaClusterAccessSubnet']]:
832
+ """
833
+ (Updatable) Subnets where broker/coordinator VNICs will be created.
834
+ """
835
+ return pulumi.get(self, "access_subnets")
836
+
837
+ @_builtins.property
838
+ @pulumi.getter(name="brokerShape")
839
+ def broker_shape(self) -> pulumi.Output['outputs.ManagedKafkaKafkaClusterBrokerShape']:
840
+ """
841
+ (Updatable) Configuration of the broker node.
842
+ """
843
+ return pulumi.get(self, "broker_shape")
844
+
845
+ @_builtins.property
846
+ @pulumi.getter(name="clientCertificateBundle")
847
+ def client_certificate_bundle(self) -> pulumi.Output[_builtins.str]:
848
+ """
849
+ (Updatable) CA certificate bundle for mTLS broker authentication.
850
+ """
851
+ return pulumi.get(self, "client_certificate_bundle")
852
+
853
+ @_builtins.property
854
+ @pulumi.getter(name="clusterConfigId")
855
+ def cluster_config_id(self) -> pulumi.Output[_builtins.str]:
856
+ """
857
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
858
+ """
859
+ return pulumi.get(self, "cluster_config_id")
860
+
861
+ @_builtins.property
862
+ @pulumi.getter(name="clusterConfigVersion")
863
+ def cluster_config_version(self) -> pulumi.Output[_builtins.int]:
864
+ """
865
+ (Updatable) The version of configuration object
866
+ """
867
+ return pulumi.get(self, "cluster_config_version")
868
+
869
+ @_builtins.property
870
+ @pulumi.getter(name="clusterType")
871
+ def cluster_type(self) -> pulumi.Output[_builtins.str]:
872
+ """
873
+ 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
874
+ """
875
+ return pulumi.get(self, "cluster_type")
876
+
877
+ @_builtins.property
878
+ @pulumi.getter(name="compartmentId")
879
+ def compartment_id(self) -> pulumi.Output[_builtins.str]:
880
+ """
881
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaCluster in.
882
+ """
883
+ return pulumi.get(self, "compartment_id")
884
+
885
+ @_builtins.property
886
+ @pulumi.getter(name="coordinationType")
887
+ def coordination_type(self) -> pulumi.Output[_builtins.str]:
888
+ """
889
+ (Updatable) Kafka coordination type. Set of available types depends on Kafka version
890
+ """
891
+ return pulumi.get(self, "coordination_type")
892
+
893
+ @_builtins.property
894
+ @pulumi.getter(name="definedTags")
895
+ def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
896
+ """
897
+ (Updatable) 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"}`
898
+ """
899
+ return pulumi.get(self, "defined_tags")
900
+
901
+ @_builtins.property
902
+ @pulumi.getter(name="displayName")
903
+ def display_name(self) -> pulumi.Output[_builtins.str]:
904
+ """
905
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
906
+ """
907
+ return pulumi.get(self, "display_name")
908
+
909
+ @_builtins.property
910
+ @pulumi.getter(name="freeformTags")
911
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
912
+ """
913
+ (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](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
914
+ """
915
+ return pulumi.get(self, "freeform_tags")
916
+
917
+ @_builtins.property
918
+ @pulumi.getter(name="kafkaBootstrapUrls")
919
+ def kafka_bootstrap_urls(self) -> pulumi.Output[Sequence['outputs.ManagedKafkaKafkaClusterKafkaBootstrapUrl']]:
920
+ """
921
+ Bootstrap URL that can be used to connect to Kafka
922
+ """
923
+ return pulumi.get(self, "kafka_bootstrap_urls")
924
+
925
+ @_builtins.property
926
+ @pulumi.getter(name="kafkaVersion")
927
+ def kafka_version(self) -> pulumi.Output[_builtins.str]:
928
+ """
929
+ Version of Kafka to use to spin up the cluster
930
+
931
+
932
+ ** IMPORTANT **
933
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
934
+ """
935
+ return pulumi.get(self, "kafka_version")
936
+
937
+ @_builtins.property
938
+ @pulumi.getter(name="lifecycleDetails")
939
+ def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
940
+ """
941
+ 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.
942
+ """
943
+ return pulumi.get(self, "lifecycle_details")
944
+
945
+ @_builtins.property
946
+ @pulumi.getter(name="secretId")
947
+ def secret_id(self) -> pulumi.Output[_builtins.str]:
948
+ """
949
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
950
+ """
951
+ return pulumi.get(self, "secret_id")
952
+
953
+ @_builtins.property
954
+ @pulumi.getter
955
+ def state(self) -> pulumi.Output[_builtins.str]:
956
+ """
957
+ The current state of the KafkaCluster.
958
+ """
959
+ return pulumi.get(self, "state")
960
+
961
+ @_builtins.property
962
+ @pulumi.getter(name="systemTags")
963
+ def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
964
+ """
965
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
966
+ """
967
+ return pulumi.get(self, "system_tags")
968
+
969
+ @_builtins.property
970
+ @pulumi.getter(name="timeCreated")
971
+ def time_created(self) -> pulumi.Output[_builtins.str]:
972
+ """
973
+ 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`
974
+ """
975
+ return pulumi.get(self, "time_created")
976
+
977
+ @_builtins.property
978
+ @pulumi.getter(name="timeUpdated")
979
+ def time_updated(self) -> pulumi.Output[_builtins.str]:
980
+ """
981
+ 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`
982
+ """
983
+ return pulumi.get(self, "time_updated")
984
+