pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.5.0a1756440723__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.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,549 @@
|
|
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__ = ['ManagedKafkaKafkaClusterConfigArgs', 'ManagedKafkaKafkaClusterConfig']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class ManagedKafkaKafkaClusterConfigArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
compartment_id: pulumi.Input[_builtins.str],
|
25
|
+
latest_config: pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs'],
|
26
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
27
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
28
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
29
|
+
"""
|
30
|
+
The set of arguments for constructing a ManagedKafkaKafkaClusterConfig resource.
|
31
|
+
: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 KafkaClusterConfig in.
|
32
|
+
:param pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs'] latest_config: (Updatable) A shared configuration object used by 0 or more kafka clusters.
|
33
|
+
: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"}`
|
34
|
+
: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.
|
35
|
+
: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"}`
|
36
|
+
"""
|
37
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
+
pulumi.set(__self__, "latest_config", latest_config)
|
39
|
+
if defined_tags is not None:
|
40
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
41
|
+
if display_name is not None:
|
42
|
+
pulumi.set(__self__, "display_name", display_name)
|
43
|
+
if freeform_tags is not None:
|
44
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
45
|
+
|
46
|
+
@_builtins.property
|
47
|
+
@pulumi.getter(name="compartmentId")
|
48
|
+
def compartment_id(self) -> pulumi.Input[_builtins.str]:
|
49
|
+
"""
|
50
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaClusterConfig in.
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "compartment_id")
|
53
|
+
|
54
|
+
@compartment_id.setter
|
55
|
+
def compartment_id(self, value: pulumi.Input[_builtins.str]):
|
56
|
+
pulumi.set(self, "compartment_id", value)
|
57
|
+
|
58
|
+
@_builtins.property
|
59
|
+
@pulumi.getter(name="latestConfig")
|
60
|
+
def latest_config(self) -> pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']:
|
61
|
+
"""
|
62
|
+
(Updatable) A shared configuration object used by 0 or more kafka clusters.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "latest_config")
|
65
|
+
|
66
|
+
@latest_config.setter
|
67
|
+
def latest_config(self, value: pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']):
|
68
|
+
pulumi.set(self, "latest_config", value)
|
69
|
+
|
70
|
+
@_builtins.property
|
71
|
+
@pulumi.getter(name="definedTags")
|
72
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
73
|
+
"""
|
74
|
+
(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"}`
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "defined_tags")
|
77
|
+
|
78
|
+
@defined_tags.setter
|
79
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
80
|
+
pulumi.set(self, "defined_tags", value)
|
81
|
+
|
82
|
+
@_builtins.property
|
83
|
+
@pulumi.getter(name="displayName")
|
84
|
+
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
85
|
+
"""
|
86
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "display_name")
|
89
|
+
|
90
|
+
@display_name.setter
|
91
|
+
def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
92
|
+
pulumi.set(self, "display_name", value)
|
93
|
+
|
94
|
+
@_builtins.property
|
95
|
+
@pulumi.getter(name="freeformTags")
|
96
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
97
|
+
"""
|
98
|
+
(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"}`
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "freeform_tags")
|
101
|
+
|
102
|
+
@freeform_tags.setter
|
103
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
104
|
+
pulumi.set(self, "freeform_tags", value)
|
105
|
+
|
106
|
+
|
107
|
+
@pulumi.input_type
|
108
|
+
class _ManagedKafkaKafkaClusterConfigState:
|
109
|
+
def __init__(__self__, *,
|
110
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
111
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
112
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
113
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
114
|
+
latest_config: Optional[pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']] = None,
|
115
|
+
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
116
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
117
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
118
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
119
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None):
|
120
|
+
"""
|
121
|
+
Input properties used for looking up and filtering ManagedKafkaKafkaClusterConfig resources.
|
122
|
+
: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 KafkaClusterConfig in.
|
123
|
+
: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"}`
|
124
|
+
: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.
|
125
|
+
: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"}`
|
126
|
+
:param pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs'] latest_config: (Updatable) A shared configuration object used by 0 or more kafka clusters.
|
127
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: 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.
|
128
|
+
:param pulumi.Input[_builtins.str] state: The current state of the KafkaClusterConfig.
|
129
|
+
: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"}`
|
130
|
+
:param pulumi.Input[_builtins.str] time_created: 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`
|
131
|
+
:param pulumi.Input[_builtins.str] time_updated: 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`
|
132
|
+
"""
|
133
|
+
if compartment_id is not None:
|
134
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
135
|
+
if defined_tags is not None:
|
136
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
137
|
+
if display_name is not None:
|
138
|
+
pulumi.set(__self__, "display_name", display_name)
|
139
|
+
if freeform_tags is not None:
|
140
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
141
|
+
if latest_config is not None:
|
142
|
+
pulumi.set(__self__, "latest_config", latest_config)
|
143
|
+
if lifecycle_details is not None:
|
144
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
145
|
+
if state is not None:
|
146
|
+
pulumi.set(__self__, "state", state)
|
147
|
+
if system_tags is not None:
|
148
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
149
|
+
if time_created is not None:
|
150
|
+
pulumi.set(__self__, "time_created", time_created)
|
151
|
+
if time_updated is not None:
|
152
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
153
|
+
|
154
|
+
@_builtins.property
|
155
|
+
@pulumi.getter(name="compartmentId")
|
156
|
+
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
157
|
+
"""
|
158
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaClusterConfig in.
|
159
|
+
"""
|
160
|
+
return pulumi.get(self, "compartment_id")
|
161
|
+
|
162
|
+
@compartment_id.setter
|
163
|
+
def compartment_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
164
|
+
pulumi.set(self, "compartment_id", value)
|
165
|
+
|
166
|
+
@_builtins.property
|
167
|
+
@pulumi.getter(name="definedTags")
|
168
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
169
|
+
"""
|
170
|
+
(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"}`
|
171
|
+
"""
|
172
|
+
return pulumi.get(self, "defined_tags")
|
173
|
+
|
174
|
+
@defined_tags.setter
|
175
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
176
|
+
pulumi.set(self, "defined_tags", value)
|
177
|
+
|
178
|
+
@_builtins.property
|
179
|
+
@pulumi.getter(name="displayName")
|
180
|
+
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
181
|
+
"""
|
182
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
183
|
+
"""
|
184
|
+
return pulumi.get(self, "display_name")
|
185
|
+
|
186
|
+
@display_name.setter
|
187
|
+
def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
188
|
+
pulumi.set(self, "display_name", value)
|
189
|
+
|
190
|
+
@_builtins.property
|
191
|
+
@pulumi.getter(name="freeformTags")
|
192
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
193
|
+
"""
|
194
|
+
(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"}`
|
195
|
+
"""
|
196
|
+
return pulumi.get(self, "freeform_tags")
|
197
|
+
|
198
|
+
@freeform_tags.setter
|
199
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
200
|
+
pulumi.set(self, "freeform_tags", value)
|
201
|
+
|
202
|
+
@_builtins.property
|
203
|
+
@pulumi.getter(name="latestConfig")
|
204
|
+
def latest_config(self) -> Optional[pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']]:
|
205
|
+
"""
|
206
|
+
(Updatable) A shared configuration object used by 0 or more kafka clusters.
|
207
|
+
"""
|
208
|
+
return pulumi.get(self, "latest_config")
|
209
|
+
|
210
|
+
@latest_config.setter
|
211
|
+
def latest_config(self, value: Optional[pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']]):
|
212
|
+
pulumi.set(self, "latest_config", value)
|
213
|
+
|
214
|
+
@_builtins.property
|
215
|
+
@pulumi.getter(name="lifecycleDetails")
|
216
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
|
217
|
+
"""
|
218
|
+
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.
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "lifecycle_details")
|
221
|
+
|
222
|
+
@lifecycle_details.setter
|
223
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[_builtins.str]]):
|
224
|
+
pulumi.set(self, "lifecycle_details", value)
|
225
|
+
|
226
|
+
@_builtins.property
|
227
|
+
@pulumi.getter
|
228
|
+
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
229
|
+
"""
|
230
|
+
The current state of the KafkaClusterConfig.
|
231
|
+
"""
|
232
|
+
return pulumi.get(self, "state")
|
233
|
+
|
234
|
+
@state.setter
|
235
|
+
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
236
|
+
pulumi.set(self, "state", value)
|
237
|
+
|
238
|
+
@_builtins.property
|
239
|
+
@pulumi.getter(name="systemTags")
|
240
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
241
|
+
"""
|
242
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "system_tags")
|
245
|
+
|
246
|
+
@system_tags.setter
|
247
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
248
|
+
pulumi.set(self, "system_tags", value)
|
249
|
+
|
250
|
+
@_builtins.property
|
251
|
+
@pulumi.getter(name="timeCreated")
|
252
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
253
|
+
"""
|
254
|
+
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`
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "time_created")
|
257
|
+
|
258
|
+
@time_created.setter
|
259
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
260
|
+
pulumi.set(self, "time_created", value)
|
261
|
+
|
262
|
+
@_builtins.property
|
263
|
+
@pulumi.getter(name="timeUpdated")
|
264
|
+
def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
265
|
+
"""
|
266
|
+
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`
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "time_updated")
|
269
|
+
|
270
|
+
@time_updated.setter
|
271
|
+
def time_updated(self, value: Optional[pulumi.Input[_builtins.str]]):
|
272
|
+
pulumi.set(self, "time_updated", value)
|
273
|
+
|
274
|
+
|
275
|
+
@pulumi.type_token("oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig")
|
276
|
+
class ManagedKafkaKafkaClusterConfig(pulumi.CustomResource):
|
277
|
+
@overload
|
278
|
+
def __init__(__self__,
|
279
|
+
resource_name: str,
|
280
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
281
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
282
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
283
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
284
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
285
|
+
latest_config: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']]] = None,
|
286
|
+
__props__=None):
|
287
|
+
"""
|
288
|
+
This resource provides the Kafka Cluster Config resource in Oracle Cloud Infrastructure Managed Kafka service.
|
289
|
+
|
290
|
+
Creates a KafkaClusterConfig.
|
291
|
+
|
292
|
+
## Example Usage
|
293
|
+
|
294
|
+
```python
|
295
|
+
import pulumi
|
296
|
+
import pulumi_oci as oci
|
297
|
+
|
298
|
+
test_kafka_cluster_config = oci.oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config",
|
299
|
+
compartment_id=compartment_id,
|
300
|
+
latest_config={
|
301
|
+
"properties": kafka_cluster_config_latest_config_properties,
|
302
|
+
"config_id": test_config["id"],
|
303
|
+
"time_created": kafka_cluster_config_latest_config_time_created,
|
304
|
+
"version_number": kafka_cluster_config_latest_config_version_number,
|
305
|
+
},
|
306
|
+
defined_tags={
|
307
|
+
"Operations.CostCenter": "42",
|
308
|
+
},
|
309
|
+
display_name=kafka_cluster_config_display_name,
|
310
|
+
freeform_tags={
|
311
|
+
"Department": "Finance",
|
312
|
+
})
|
313
|
+
```
|
314
|
+
|
315
|
+
## Import
|
316
|
+
|
317
|
+
KafkaClusterConfigs can be imported using the `id`, e.g.
|
318
|
+
|
319
|
+
```sh
|
320
|
+
$ pulumi import oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig test_kafka_cluster_config "id"
|
321
|
+
```
|
322
|
+
|
323
|
+
:param str resource_name: The name of the resource.
|
324
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
325
|
+
: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 KafkaClusterConfig in.
|
326
|
+
: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"}`
|
327
|
+
: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.
|
328
|
+
: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"}`
|
329
|
+
:param pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']] latest_config: (Updatable) A shared configuration object used by 0 or more kafka clusters.
|
330
|
+
"""
|
331
|
+
...
|
332
|
+
@overload
|
333
|
+
def __init__(__self__,
|
334
|
+
resource_name: str,
|
335
|
+
args: ManagedKafkaKafkaClusterConfigArgs,
|
336
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
337
|
+
"""
|
338
|
+
This resource provides the Kafka Cluster Config resource in Oracle Cloud Infrastructure Managed Kafka service.
|
339
|
+
|
340
|
+
Creates a KafkaClusterConfig.
|
341
|
+
|
342
|
+
## Example Usage
|
343
|
+
|
344
|
+
```python
|
345
|
+
import pulumi
|
346
|
+
import pulumi_oci as oci
|
347
|
+
|
348
|
+
test_kafka_cluster_config = oci.oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config",
|
349
|
+
compartment_id=compartment_id,
|
350
|
+
latest_config={
|
351
|
+
"properties": kafka_cluster_config_latest_config_properties,
|
352
|
+
"config_id": test_config["id"],
|
353
|
+
"time_created": kafka_cluster_config_latest_config_time_created,
|
354
|
+
"version_number": kafka_cluster_config_latest_config_version_number,
|
355
|
+
},
|
356
|
+
defined_tags={
|
357
|
+
"Operations.CostCenter": "42",
|
358
|
+
},
|
359
|
+
display_name=kafka_cluster_config_display_name,
|
360
|
+
freeform_tags={
|
361
|
+
"Department": "Finance",
|
362
|
+
})
|
363
|
+
```
|
364
|
+
|
365
|
+
## Import
|
366
|
+
|
367
|
+
KafkaClusterConfigs can be imported using the `id`, e.g.
|
368
|
+
|
369
|
+
```sh
|
370
|
+
$ pulumi import oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig test_kafka_cluster_config "id"
|
371
|
+
```
|
372
|
+
|
373
|
+
:param str resource_name: The name of the resource.
|
374
|
+
:param ManagedKafkaKafkaClusterConfigArgs args: The arguments to use to populate this resource's properties.
|
375
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
376
|
+
"""
|
377
|
+
...
|
378
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
379
|
+
resource_args, opts = _utilities.get_resource_args_opts(ManagedKafkaKafkaClusterConfigArgs, pulumi.ResourceOptions, *args, **kwargs)
|
380
|
+
if resource_args is not None:
|
381
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
382
|
+
else:
|
383
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
384
|
+
|
385
|
+
def _internal_init(__self__,
|
386
|
+
resource_name: str,
|
387
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
388
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
389
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
390
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
391
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
392
|
+
latest_config: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']]] = None,
|
393
|
+
__props__=None):
|
394
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
395
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
396
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
397
|
+
if opts.id is None:
|
398
|
+
if __props__ is not None:
|
399
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
400
|
+
__props__ = ManagedKafkaKafkaClusterConfigArgs.__new__(ManagedKafkaKafkaClusterConfigArgs)
|
401
|
+
|
402
|
+
if compartment_id is None and not opts.urn:
|
403
|
+
raise TypeError("Missing required property 'compartment_id'")
|
404
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
405
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
406
|
+
__props__.__dict__["display_name"] = display_name
|
407
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
408
|
+
if latest_config is None and not opts.urn:
|
409
|
+
raise TypeError("Missing required property 'latest_config'")
|
410
|
+
__props__.__dict__["latest_config"] = latest_config
|
411
|
+
__props__.__dict__["lifecycle_details"] = None
|
412
|
+
__props__.__dict__["state"] = None
|
413
|
+
__props__.__dict__["system_tags"] = None
|
414
|
+
__props__.__dict__["time_created"] = None
|
415
|
+
__props__.__dict__["time_updated"] = None
|
416
|
+
super(ManagedKafkaKafkaClusterConfig, __self__).__init__(
|
417
|
+
'oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig',
|
418
|
+
resource_name,
|
419
|
+
__props__,
|
420
|
+
opts)
|
421
|
+
|
422
|
+
@staticmethod
|
423
|
+
def get(resource_name: str,
|
424
|
+
id: pulumi.Input[str],
|
425
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
426
|
+
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
427
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
428
|
+
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
429
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
430
|
+
latest_config: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']]] = None,
|
431
|
+
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
432
|
+
state: Optional[pulumi.Input[_builtins.str]] = None,
|
433
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
434
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
435
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'ManagedKafkaKafkaClusterConfig':
|
436
|
+
"""
|
437
|
+
Get an existing ManagedKafkaKafkaClusterConfig resource's state with the given name, id, and optional extra
|
438
|
+
properties used to qualify the lookup.
|
439
|
+
|
440
|
+
:param str resource_name: The unique name of the resulting resource.
|
441
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
442
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
443
|
+
: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 KafkaClusterConfig in.
|
444
|
+
: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"}`
|
445
|
+
: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.
|
446
|
+
: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"}`
|
447
|
+
:param pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']] latest_config: (Updatable) A shared configuration object used by 0 or more kafka clusters.
|
448
|
+
:param pulumi.Input[_builtins.str] lifecycle_details: 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.
|
449
|
+
:param pulumi.Input[_builtins.str] state: The current state of the KafkaClusterConfig.
|
450
|
+
: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"}`
|
451
|
+
:param pulumi.Input[_builtins.str] time_created: 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`
|
452
|
+
:param pulumi.Input[_builtins.str] time_updated: 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`
|
453
|
+
"""
|
454
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
455
|
+
|
456
|
+
__props__ = _ManagedKafkaKafkaClusterConfigState.__new__(_ManagedKafkaKafkaClusterConfigState)
|
457
|
+
|
458
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
459
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
460
|
+
__props__.__dict__["display_name"] = display_name
|
461
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
462
|
+
__props__.__dict__["latest_config"] = latest_config
|
463
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
464
|
+
__props__.__dict__["state"] = state
|
465
|
+
__props__.__dict__["system_tags"] = system_tags
|
466
|
+
__props__.__dict__["time_created"] = time_created
|
467
|
+
__props__.__dict__["time_updated"] = time_updated
|
468
|
+
return ManagedKafkaKafkaClusterConfig(resource_name, opts=opts, __props__=__props__)
|
469
|
+
|
470
|
+
@_builtins.property
|
471
|
+
@pulumi.getter(name="compartmentId")
|
472
|
+
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
473
|
+
"""
|
474
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaClusterConfig in.
|
475
|
+
"""
|
476
|
+
return pulumi.get(self, "compartment_id")
|
477
|
+
|
478
|
+
@_builtins.property
|
479
|
+
@pulumi.getter(name="definedTags")
|
480
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
481
|
+
"""
|
482
|
+
(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"}`
|
483
|
+
"""
|
484
|
+
return pulumi.get(self, "defined_tags")
|
485
|
+
|
486
|
+
@_builtins.property
|
487
|
+
@pulumi.getter(name="displayName")
|
488
|
+
def display_name(self) -> pulumi.Output[_builtins.str]:
|
489
|
+
"""
|
490
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "display_name")
|
493
|
+
|
494
|
+
@_builtins.property
|
495
|
+
@pulumi.getter(name="freeformTags")
|
496
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
497
|
+
"""
|
498
|
+
(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"}`
|
499
|
+
"""
|
500
|
+
return pulumi.get(self, "freeform_tags")
|
501
|
+
|
502
|
+
@_builtins.property
|
503
|
+
@pulumi.getter(name="latestConfig")
|
504
|
+
def latest_config(self) -> pulumi.Output['outputs.ManagedKafkaKafkaClusterConfigLatestConfig']:
|
505
|
+
"""
|
506
|
+
(Updatable) A shared configuration object used by 0 or more kafka clusters.
|
507
|
+
"""
|
508
|
+
return pulumi.get(self, "latest_config")
|
509
|
+
|
510
|
+
@_builtins.property
|
511
|
+
@pulumi.getter(name="lifecycleDetails")
|
512
|
+
def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
|
513
|
+
"""
|
514
|
+
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.
|
515
|
+
"""
|
516
|
+
return pulumi.get(self, "lifecycle_details")
|
517
|
+
|
518
|
+
@_builtins.property
|
519
|
+
@pulumi.getter
|
520
|
+
def state(self) -> pulumi.Output[_builtins.str]:
|
521
|
+
"""
|
522
|
+
The current state of the KafkaClusterConfig.
|
523
|
+
"""
|
524
|
+
return pulumi.get(self, "state")
|
525
|
+
|
526
|
+
@_builtins.property
|
527
|
+
@pulumi.getter(name="systemTags")
|
528
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
529
|
+
"""
|
530
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
531
|
+
"""
|
532
|
+
return pulumi.get(self, "system_tags")
|
533
|
+
|
534
|
+
@_builtins.property
|
535
|
+
@pulumi.getter(name="timeCreated")
|
536
|
+
def time_created(self) -> pulumi.Output[_builtins.str]:
|
537
|
+
"""
|
538
|
+
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`
|
539
|
+
"""
|
540
|
+
return pulumi.get(self, "time_created")
|
541
|
+
|
542
|
+
@_builtins.property
|
543
|
+
@pulumi.getter(name="timeUpdated")
|
544
|
+
def time_updated(self) -> pulumi.Output[_builtins.str]:
|
545
|
+
"""
|
546
|
+
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`
|
547
|
+
"""
|
548
|
+
return pulumi.get(self, "time_updated")
|
549
|
+
|