pulumi-oci 3.4.0a1755922408__py3-none-any.whl → 3.5.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.
- pulumi_oci/__init__.py +80 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/database/_inputs.py +257 -12
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/outputs.py +575 -8
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +68 -2
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +6964 -192
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +35 -2
- pulumi_oci/oci/__init__.py +9 -0
- pulumi_oci/oci/_inputs.py +420 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1009 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +133 -100
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,380 @@
|
|
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
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetManagedKafkaKafkaClusterResult',
|
20
|
+
'AwaitableGetManagedKafkaKafkaClusterResult',
|
21
|
+
'get_managed_kafka_kafka_cluster',
|
22
|
+
'get_managed_kafka_kafka_cluster_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetManagedKafkaKafkaClusterResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getManagedKafkaKafkaCluster.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, access_subnets=None, broker_shapes=None, client_certificate_bundle=None, cluster_config_id=None, cluster_config_version=None, cluster_type=None, compartment_id=None, coordination_type=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, kafka_bootstrap_urls=None, kafka_cluster_id=None, kafka_version=None, lifecycle_details=None, secret_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
31
|
+
if access_subnets and not isinstance(access_subnets, list):
|
32
|
+
raise TypeError("Expected argument 'access_subnets' to be a list")
|
33
|
+
pulumi.set(__self__, "access_subnets", access_subnets)
|
34
|
+
if broker_shapes and not isinstance(broker_shapes, list):
|
35
|
+
raise TypeError("Expected argument 'broker_shapes' to be a list")
|
36
|
+
pulumi.set(__self__, "broker_shapes", broker_shapes)
|
37
|
+
if client_certificate_bundle and not isinstance(client_certificate_bundle, str):
|
38
|
+
raise TypeError("Expected argument 'client_certificate_bundle' to be a str")
|
39
|
+
pulumi.set(__self__, "client_certificate_bundle", client_certificate_bundle)
|
40
|
+
if cluster_config_id and not isinstance(cluster_config_id, str):
|
41
|
+
raise TypeError("Expected argument 'cluster_config_id' to be a str")
|
42
|
+
pulumi.set(__self__, "cluster_config_id", cluster_config_id)
|
43
|
+
if cluster_config_version and not isinstance(cluster_config_version, int):
|
44
|
+
raise TypeError("Expected argument 'cluster_config_version' to be a int")
|
45
|
+
pulumi.set(__self__, "cluster_config_version", cluster_config_version)
|
46
|
+
if cluster_type and not isinstance(cluster_type, str):
|
47
|
+
raise TypeError("Expected argument 'cluster_type' to be a str")
|
48
|
+
pulumi.set(__self__, "cluster_type", cluster_type)
|
49
|
+
if compartment_id and not isinstance(compartment_id, str):
|
50
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
51
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
52
|
+
if coordination_type and not isinstance(coordination_type, str):
|
53
|
+
raise TypeError("Expected argument 'coordination_type' to be a str")
|
54
|
+
pulumi.set(__self__, "coordination_type", coordination_type)
|
55
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
56
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
57
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
58
|
+
if display_name and not isinstance(display_name, str):
|
59
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
60
|
+
pulumi.set(__self__, "display_name", display_name)
|
61
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
62
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
63
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
64
|
+
if id and not isinstance(id, str):
|
65
|
+
raise TypeError("Expected argument 'id' to be a str")
|
66
|
+
pulumi.set(__self__, "id", id)
|
67
|
+
if kafka_bootstrap_urls and not isinstance(kafka_bootstrap_urls, list):
|
68
|
+
raise TypeError("Expected argument 'kafka_bootstrap_urls' to be a list")
|
69
|
+
pulumi.set(__self__, "kafka_bootstrap_urls", kafka_bootstrap_urls)
|
70
|
+
if kafka_cluster_id and not isinstance(kafka_cluster_id, str):
|
71
|
+
raise TypeError("Expected argument 'kafka_cluster_id' to be a str")
|
72
|
+
pulumi.set(__self__, "kafka_cluster_id", kafka_cluster_id)
|
73
|
+
if kafka_version and not isinstance(kafka_version, str):
|
74
|
+
raise TypeError("Expected argument 'kafka_version' to be a str")
|
75
|
+
pulumi.set(__self__, "kafka_version", kafka_version)
|
76
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
77
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
78
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
79
|
+
if secret_id and not isinstance(secret_id, str):
|
80
|
+
raise TypeError("Expected argument 'secret_id' to be a str")
|
81
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
82
|
+
if state and not isinstance(state, str):
|
83
|
+
raise TypeError("Expected argument 'state' to be a str")
|
84
|
+
pulumi.set(__self__, "state", state)
|
85
|
+
if system_tags and not isinstance(system_tags, dict):
|
86
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
87
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
88
|
+
if time_created and not isinstance(time_created, str):
|
89
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
90
|
+
pulumi.set(__self__, "time_created", time_created)
|
91
|
+
if time_updated and not isinstance(time_updated, str):
|
92
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
93
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
94
|
+
|
95
|
+
@_builtins.property
|
96
|
+
@pulumi.getter(name="accessSubnets")
|
97
|
+
def access_subnets(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterAccessSubnetResult']:
|
98
|
+
"""
|
99
|
+
Subnets where broker/coordinator VNICs will be created.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "access_subnets")
|
102
|
+
|
103
|
+
@_builtins.property
|
104
|
+
@pulumi.getter(name="brokerShapes")
|
105
|
+
def broker_shapes(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterBrokerShapeResult']:
|
106
|
+
"""
|
107
|
+
Configuration of the broker node.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "broker_shapes")
|
110
|
+
|
111
|
+
@_builtins.property
|
112
|
+
@pulumi.getter(name="clientCertificateBundle")
|
113
|
+
def client_certificate_bundle(self) -> _builtins.str:
|
114
|
+
"""
|
115
|
+
CA certificate bundle for mTLS broker authentication.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "client_certificate_bundle")
|
118
|
+
|
119
|
+
@_builtins.property
|
120
|
+
@pulumi.getter(name="clusterConfigId")
|
121
|
+
def cluster_config_id(self) -> _builtins.str:
|
122
|
+
"""
|
123
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "cluster_config_id")
|
126
|
+
|
127
|
+
@_builtins.property
|
128
|
+
@pulumi.getter(name="clusterConfigVersion")
|
129
|
+
def cluster_config_version(self) -> _builtins.int:
|
130
|
+
"""
|
131
|
+
The version of configuration object
|
132
|
+
"""
|
133
|
+
return pulumi.get(self, "cluster_config_version")
|
134
|
+
|
135
|
+
@_builtins.property
|
136
|
+
@pulumi.getter(name="clusterType")
|
137
|
+
def cluster_type(self) -> _builtins.str:
|
138
|
+
"""
|
139
|
+
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
|
140
|
+
"""
|
141
|
+
return pulumi.get(self, "cluster_type")
|
142
|
+
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter(name="compartmentId")
|
145
|
+
def compartment_id(self) -> _builtins.str:
|
146
|
+
"""
|
147
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
148
|
+
"""
|
149
|
+
return pulumi.get(self, "compartment_id")
|
150
|
+
|
151
|
+
@_builtins.property
|
152
|
+
@pulumi.getter(name="coordinationType")
|
153
|
+
def coordination_type(self) -> _builtins.str:
|
154
|
+
"""
|
155
|
+
Kafka coordination type. Set of available types depends on Kafka version
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "coordination_type")
|
158
|
+
|
159
|
+
@_builtins.property
|
160
|
+
@pulumi.getter(name="definedTags")
|
161
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
162
|
+
"""
|
163
|
+
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"}`
|
164
|
+
"""
|
165
|
+
return pulumi.get(self, "defined_tags")
|
166
|
+
|
167
|
+
@_builtins.property
|
168
|
+
@pulumi.getter(name="displayName")
|
169
|
+
def display_name(self) -> _builtins.str:
|
170
|
+
"""
|
171
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "display_name")
|
174
|
+
|
175
|
+
@_builtins.property
|
176
|
+
@pulumi.getter(name="freeformTags")
|
177
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
178
|
+
"""
|
179
|
+
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"}`
|
180
|
+
"""
|
181
|
+
return pulumi.get(self, "freeform_tags")
|
182
|
+
|
183
|
+
@_builtins.property
|
184
|
+
@pulumi.getter
|
185
|
+
def id(self) -> _builtins.str:
|
186
|
+
"""
|
187
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "id")
|
190
|
+
|
191
|
+
@_builtins.property
|
192
|
+
@pulumi.getter(name="kafkaBootstrapUrls")
|
193
|
+
def kafka_bootstrap_urls(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult']:
|
194
|
+
"""
|
195
|
+
Bootstrap URL that can be used to connect to Kafka
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "kafka_bootstrap_urls")
|
198
|
+
|
199
|
+
@_builtins.property
|
200
|
+
@pulumi.getter(name="kafkaClusterId")
|
201
|
+
def kafka_cluster_id(self) -> _builtins.str:
|
202
|
+
return pulumi.get(self, "kafka_cluster_id")
|
203
|
+
|
204
|
+
@_builtins.property
|
205
|
+
@pulumi.getter(name="kafkaVersion")
|
206
|
+
def kafka_version(self) -> _builtins.str:
|
207
|
+
"""
|
208
|
+
Version of Kafka to use to spin up the cluster
|
209
|
+
"""
|
210
|
+
return pulumi.get(self, "kafka_version")
|
211
|
+
|
212
|
+
@_builtins.property
|
213
|
+
@pulumi.getter(name="lifecycleDetails")
|
214
|
+
def lifecycle_details(self) -> _builtins.str:
|
215
|
+
"""
|
216
|
+
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.
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "lifecycle_details")
|
219
|
+
|
220
|
+
@_builtins.property
|
221
|
+
@pulumi.getter(name="secretId")
|
222
|
+
def secret_id(self) -> _builtins.str:
|
223
|
+
"""
|
224
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
|
225
|
+
"""
|
226
|
+
return pulumi.get(self, "secret_id")
|
227
|
+
|
228
|
+
@_builtins.property
|
229
|
+
@pulumi.getter
|
230
|
+
def state(self) -> _builtins.str:
|
231
|
+
"""
|
232
|
+
The current state of the KafkaCluster.
|
233
|
+
"""
|
234
|
+
return pulumi.get(self, "state")
|
235
|
+
|
236
|
+
@_builtins.property
|
237
|
+
@pulumi.getter(name="systemTags")
|
238
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
239
|
+
"""
|
240
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "system_tags")
|
243
|
+
|
244
|
+
@_builtins.property
|
245
|
+
@pulumi.getter(name="timeCreated")
|
246
|
+
def time_created(self) -> _builtins.str:
|
247
|
+
"""
|
248
|
+
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`
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "time_created")
|
251
|
+
|
252
|
+
@_builtins.property
|
253
|
+
@pulumi.getter(name="timeUpdated")
|
254
|
+
def time_updated(self) -> _builtins.str:
|
255
|
+
"""
|
256
|
+
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`
|
257
|
+
"""
|
258
|
+
return pulumi.get(self, "time_updated")
|
259
|
+
|
260
|
+
|
261
|
+
class AwaitableGetManagedKafkaKafkaClusterResult(GetManagedKafkaKafkaClusterResult):
|
262
|
+
# pylint: disable=using-constant-test
|
263
|
+
def __await__(self):
|
264
|
+
if False:
|
265
|
+
yield self
|
266
|
+
return GetManagedKafkaKafkaClusterResult(
|
267
|
+
access_subnets=self.access_subnets,
|
268
|
+
broker_shapes=self.broker_shapes,
|
269
|
+
client_certificate_bundle=self.client_certificate_bundle,
|
270
|
+
cluster_config_id=self.cluster_config_id,
|
271
|
+
cluster_config_version=self.cluster_config_version,
|
272
|
+
cluster_type=self.cluster_type,
|
273
|
+
compartment_id=self.compartment_id,
|
274
|
+
coordination_type=self.coordination_type,
|
275
|
+
defined_tags=self.defined_tags,
|
276
|
+
display_name=self.display_name,
|
277
|
+
freeform_tags=self.freeform_tags,
|
278
|
+
id=self.id,
|
279
|
+
kafka_bootstrap_urls=self.kafka_bootstrap_urls,
|
280
|
+
kafka_cluster_id=self.kafka_cluster_id,
|
281
|
+
kafka_version=self.kafka_version,
|
282
|
+
lifecycle_details=self.lifecycle_details,
|
283
|
+
secret_id=self.secret_id,
|
284
|
+
state=self.state,
|
285
|
+
system_tags=self.system_tags,
|
286
|
+
time_created=self.time_created,
|
287
|
+
time_updated=self.time_updated)
|
288
|
+
|
289
|
+
|
290
|
+
def get_managed_kafka_kafka_cluster(kafka_cluster_id: Optional[_builtins.str] = None,
|
291
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedKafkaKafkaClusterResult:
|
292
|
+
"""
|
293
|
+
This data source provides details about a specific Kafka Cluster resource in Oracle Cloud Infrastructure Managed Kafka service.
|
294
|
+
|
295
|
+
Gets information about a KafkaCluster.
|
296
|
+
|
297
|
+
## Example Usage
|
298
|
+
|
299
|
+
```python
|
300
|
+
import pulumi
|
301
|
+
import pulumi_oci as oci
|
302
|
+
|
303
|
+
test_kafka_cluster = oci.oci.get_managed_kafka_kafka_cluster(kafka_cluster_id=test_kafka_cluster_oci_managed_kafka_kafka_cluster["id"])
|
304
|
+
```
|
305
|
+
|
306
|
+
|
307
|
+
:param _builtins.str kafka_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
308
|
+
"""
|
309
|
+
__args__ = dict()
|
310
|
+
__args__['kafkaClusterId'] = kafka_cluster_id
|
311
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
312
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getManagedKafkaKafkaCluster:getManagedKafkaKafkaCluster', __args__, opts=opts, typ=GetManagedKafkaKafkaClusterResult).value
|
313
|
+
|
314
|
+
return AwaitableGetManagedKafkaKafkaClusterResult(
|
315
|
+
access_subnets=pulumi.get(__ret__, 'access_subnets'),
|
316
|
+
broker_shapes=pulumi.get(__ret__, 'broker_shapes'),
|
317
|
+
client_certificate_bundle=pulumi.get(__ret__, 'client_certificate_bundle'),
|
318
|
+
cluster_config_id=pulumi.get(__ret__, 'cluster_config_id'),
|
319
|
+
cluster_config_version=pulumi.get(__ret__, 'cluster_config_version'),
|
320
|
+
cluster_type=pulumi.get(__ret__, 'cluster_type'),
|
321
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
322
|
+
coordination_type=pulumi.get(__ret__, 'coordination_type'),
|
323
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
324
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
325
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
326
|
+
id=pulumi.get(__ret__, 'id'),
|
327
|
+
kafka_bootstrap_urls=pulumi.get(__ret__, 'kafka_bootstrap_urls'),
|
328
|
+
kafka_cluster_id=pulumi.get(__ret__, 'kafka_cluster_id'),
|
329
|
+
kafka_version=pulumi.get(__ret__, 'kafka_version'),
|
330
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
331
|
+
secret_id=pulumi.get(__ret__, 'secret_id'),
|
332
|
+
state=pulumi.get(__ret__, 'state'),
|
333
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
334
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
335
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
336
|
+
def get_managed_kafka_kafka_cluster_output(kafka_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
337
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetManagedKafkaKafkaClusterResult]:
|
338
|
+
"""
|
339
|
+
This data source provides details about a specific Kafka Cluster resource in Oracle Cloud Infrastructure Managed Kafka service.
|
340
|
+
|
341
|
+
Gets information about a KafkaCluster.
|
342
|
+
|
343
|
+
## Example Usage
|
344
|
+
|
345
|
+
```python
|
346
|
+
import pulumi
|
347
|
+
import pulumi_oci as oci
|
348
|
+
|
349
|
+
test_kafka_cluster = oci.oci.get_managed_kafka_kafka_cluster(kafka_cluster_id=test_kafka_cluster_oci_managed_kafka_kafka_cluster["id"])
|
350
|
+
```
|
351
|
+
|
352
|
+
|
353
|
+
:param _builtins.str kafka_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
354
|
+
"""
|
355
|
+
__args__ = dict()
|
356
|
+
__args__['kafkaClusterId'] = kafka_cluster_id
|
357
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
358
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getManagedKafkaKafkaCluster:getManagedKafkaKafkaCluster', __args__, opts=opts, typ=GetManagedKafkaKafkaClusterResult)
|
359
|
+
return __ret__.apply(lambda __response__: GetManagedKafkaKafkaClusterResult(
|
360
|
+
access_subnets=pulumi.get(__response__, 'access_subnets'),
|
361
|
+
broker_shapes=pulumi.get(__response__, 'broker_shapes'),
|
362
|
+
client_certificate_bundle=pulumi.get(__response__, 'client_certificate_bundle'),
|
363
|
+
cluster_config_id=pulumi.get(__response__, 'cluster_config_id'),
|
364
|
+
cluster_config_version=pulumi.get(__response__, 'cluster_config_version'),
|
365
|
+
cluster_type=pulumi.get(__response__, 'cluster_type'),
|
366
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
367
|
+
coordination_type=pulumi.get(__response__, 'coordination_type'),
|
368
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
369
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
370
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
371
|
+
id=pulumi.get(__response__, 'id'),
|
372
|
+
kafka_bootstrap_urls=pulumi.get(__response__, 'kafka_bootstrap_urls'),
|
373
|
+
kafka_cluster_id=pulumi.get(__response__, 'kafka_cluster_id'),
|
374
|
+
kafka_version=pulumi.get(__response__, 'kafka_version'),
|
375
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
376
|
+
secret_id=pulumi.get(__response__, 'secret_id'),
|
377
|
+
state=pulumi.get(__response__, 'state'),
|
378
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
379
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
380
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,254 @@
|
|
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
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetManagedKafkaKafkaClusterConfigResult',
|
20
|
+
'AwaitableGetManagedKafkaKafkaClusterConfigResult',
|
21
|
+
'get_managed_kafka_kafka_cluster_config',
|
22
|
+
'get_managed_kafka_kafka_cluster_config_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetManagedKafkaKafkaClusterConfigResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getManagedKafkaKafkaClusterConfig.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, kafka_cluster_config_id=None, latest_configs=None, lifecycle_details=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
31
|
+
if compartment_id and not isinstance(compartment_id, str):
|
32
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
34
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
35
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
36
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
37
|
+
if display_name and not isinstance(display_name, str):
|
38
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
39
|
+
pulumi.set(__self__, "display_name", display_name)
|
40
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
41
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
42
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
43
|
+
if id and not isinstance(id, str):
|
44
|
+
raise TypeError("Expected argument 'id' to be a str")
|
45
|
+
pulumi.set(__self__, "id", id)
|
46
|
+
if kafka_cluster_config_id and not isinstance(kafka_cluster_config_id, str):
|
47
|
+
raise TypeError("Expected argument 'kafka_cluster_config_id' to be a str")
|
48
|
+
pulumi.set(__self__, "kafka_cluster_config_id", kafka_cluster_config_id)
|
49
|
+
if latest_configs and not isinstance(latest_configs, list):
|
50
|
+
raise TypeError("Expected argument 'latest_configs' to be a list")
|
51
|
+
pulumi.set(__self__, "latest_configs", latest_configs)
|
52
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
53
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
54
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
55
|
+
if state and not isinstance(state, str):
|
56
|
+
raise TypeError("Expected argument 'state' to be a str")
|
57
|
+
pulumi.set(__self__, "state", state)
|
58
|
+
if system_tags and not isinstance(system_tags, dict):
|
59
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
60
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
61
|
+
if time_created and not isinstance(time_created, str):
|
62
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
63
|
+
pulumi.set(__self__, "time_created", time_created)
|
64
|
+
if time_updated and not isinstance(time_updated, str):
|
65
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
66
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
67
|
+
|
68
|
+
@_builtins.property
|
69
|
+
@pulumi.getter(name="compartmentId")
|
70
|
+
def compartment_id(self) -> _builtins.str:
|
71
|
+
"""
|
72
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "compartment_id")
|
75
|
+
|
76
|
+
@_builtins.property
|
77
|
+
@pulumi.getter(name="definedTags")
|
78
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
79
|
+
"""
|
80
|
+
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"}`
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "defined_tags")
|
83
|
+
|
84
|
+
@_builtins.property
|
85
|
+
@pulumi.getter(name="displayName")
|
86
|
+
def display_name(self) -> _builtins.str:
|
87
|
+
"""
|
88
|
+
A user-friendly name. Does not have to be unique, and it's changeable.
|
89
|
+
"""
|
90
|
+
return pulumi.get(self, "display_name")
|
91
|
+
|
92
|
+
@_builtins.property
|
93
|
+
@pulumi.getter(name="freeformTags")
|
94
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
95
|
+
"""
|
96
|
+
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"}`
|
97
|
+
"""
|
98
|
+
return pulumi.get(self, "freeform_tags")
|
99
|
+
|
100
|
+
@_builtins.property
|
101
|
+
@pulumi.getter
|
102
|
+
def id(self) -> _builtins.str:
|
103
|
+
"""
|
104
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "id")
|
107
|
+
|
108
|
+
@_builtins.property
|
109
|
+
@pulumi.getter(name="kafkaClusterConfigId")
|
110
|
+
def kafka_cluster_config_id(self) -> _builtins.str:
|
111
|
+
return pulumi.get(self, "kafka_cluster_config_id")
|
112
|
+
|
113
|
+
@_builtins.property
|
114
|
+
@pulumi.getter(name="latestConfigs")
|
115
|
+
def latest_configs(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigLatestConfigResult']:
|
116
|
+
"""
|
117
|
+
A shared configuration object used by 0 or more kafka clusters.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "latest_configs")
|
120
|
+
|
121
|
+
@_builtins.property
|
122
|
+
@pulumi.getter(name="lifecycleDetails")
|
123
|
+
def lifecycle_details(self) -> _builtins.str:
|
124
|
+
"""
|
125
|
+
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.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "lifecycle_details")
|
128
|
+
|
129
|
+
@_builtins.property
|
130
|
+
@pulumi.getter
|
131
|
+
def state(self) -> _builtins.str:
|
132
|
+
"""
|
133
|
+
The current state of the KafkaClusterConfig.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "state")
|
136
|
+
|
137
|
+
@_builtins.property
|
138
|
+
@pulumi.getter(name="systemTags")
|
139
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
140
|
+
"""
|
141
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "system_tags")
|
144
|
+
|
145
|
+
@_builtins.property
|
146
|
+
@pulumi.getter(name="timeCreated")
|
147
|
+
def time_created(self) -> _builtins.str:
|
148
|
+
"""
|
149
|
+
The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "time_created")
|
152
|
+
|
153
|
+
@_builtins.property
|
154
|
+
@pulumi.getter(name="timeUpdated")
|
155
|
+
def time_updated(self) -> _builtins.str:
|
156
|
+
"""
|
157
|
+
The date and time the KafkaClusterConfig was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "time_updated")
|
160
|
+
|
161
|
+
|
162
|
+
class AwaitableGetManagedKafkaKafkaClusterConfigResult(GetManagedKafkaKafkaClusterConfigResult):
|
163
|
+
# pylint: disable=using-constant-test
|
164
|
+
def __await__(self):
|
165
|
+
if False:
|
166
|
+
yield self
|
167
|
+
return GetManagedKafkaKafkaClusterConfigResult(
|
168
|
+
compartment_id=self.compartment_id,
|
169
|
+
defined_tags=self.defined_tags,
|
170
|
+
display_name=self.display_name,
|
171
|
+
freeform_tags=self.freeform_tags,
|
172
|
+
id=self.id,
|
173
|
+
kafka_cluster_config_id=self.kafka_cluster_config_id,
|
174
|
+
latest_configs=self.latest_configs,
|
175
|
+
lifecycle_details=self.lifecycle_details,
|
176
|
+
state=self.state,
|
177
|
+
system_tags=self.system_tags,
|
178
|
+
time_created=self.time_created,
|
179
|
+
time_updated=self.time_updated)
|
180
|
+
|
181
|
+
|
182
|
+
def get_managed_kafka_kafka_cluster_config(kafka_cluster_config_id: Optional[_builtins.str] = None,
|
183
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetManagedKafkaKafkaClusterConfigResult:
|
184
|
+
"""
|
185
|
+
This data source provides details about a specific Kafka Cluster Config resource in Oracle Cloud Infrastructure Managed Kafka service.
|
186
|
+
|
187
|
+
Gets information about a KafkaClusterConfig.
|
188
|
+
|
189
|
+
## Example Usage
|
190
|
+
|
191
|
+
```python
|
192
|
+
import pulumi
|
193
|
+
import pulumi_oci as oci
|
194
|
+
|
195
|
+
test_kafka_cluster_config = oci.oci.get_managed_kafka_kafka_cluster_config(kafka_cluster_config_id=test_kafka_cluster_config_oci_managed_kafka_kafka_cluster_config["id"])
|
196
|
+
```
|
197
|
+
|
198
|
+
|
199
|
+
:param _builtins.str kafka_cluster_config_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
200
|
+
"""
|
201
|
+
__args__ = dict()
|
202
|
+
__args__['kafkaClusterConfigId'] = kafka_cluster_config_id
|
203
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
204
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getManagedKafkaKafkaClusterConfig:getManagedKafkaKafkaClusterConfig', __args__, opts=opts, typ=GetManagedKafkaKafkaClusterConfigResult).value
|
205
|
+
|
206
|
+
return AwaitableGetManagedKafkaKafkaClusterConfigResult(
|
207
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
208
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
209
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
210
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
211
|
+
id=pulumi.get(__ret__, 'id'),
|
212
|
+
kafka_cluster_config_id=pulumi.get(__ret__, 'kafka_cluster_config_id'),
|
213
|
+
latest_configs=pulumi.get(__ret__, 'latest_configs'),
|
214
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
215
|
+
state=pulumi.get(__ret__, 'state'),
|
216
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
217
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
218
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
219
|
+
def get_managed_kafka_kafka_cluster_config_output(kafka_cluster_config_id: Optional[pulumi.Input[_builtins.str]] = None,
|
220
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetManagedKafkaKafkaClusterConfigResult]:
|
221
|
+
"""
|
222
|
+
This data source provides details about a specific Kafka Cluster Config resource in Oracle Cloud Infrastructure Managed Kafka service.
|
223
|
+
|
224
|
+
Gets information about a KafkaClusterConfig.
|
225
|
+
|
226
|
+
## Example Usage
|
227
|
+
|
228
|
+
```python
|
229
|
+
import pulumi
|
230
|
+
import pulumi_oci as oci
|
231
|
+
|
232
|
+
test_kafka_cluster_config = oci.oci.get_managed_kafka_kafka_cluster_config(kafka_cluster_config_id=test_kafka_cluster_config_oci_managed_kafka_kafka_cluster_config["id"])
|
233
|
+
```
|
234
|
+
|
235
|
+
|
236
|
+
:param _builtins.str kafka_cluster_config_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
237
|
+
"""
|
238
|
+
__args__ = dict()
|
239
|
+
__args__['kafkaClusterConfigId'] = kafka_cluster_config_id
|
240
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
241
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getManagedKafkaKafkaClusterConfig:getManagedKafkaKafkaClusterConfig', __args__, opts=opts, typ=GetManagedKafkaKafkaClusterConfigResult)
|
242
|
+
return __ret__.apply(lambda __response__: GetManagedKafkaKafkaClusterConfigResult(
|
243
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
244
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
245
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
246
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
247
|
+
id=pulumi.get(__response__, 'id'),
|
248
|
+
kafka_cluster_config_id=pulumi.get(__response__, 'kafka_cluster_config_id'),
|
249
|
+
latest_configs=pulumi.get(__response__, 'latest_configs'),
|
250
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
251
|
+
state=pulumi.get(__response__, 'state'),
|
252
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
253
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
254
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|