pulumi-oci 3.4.0a1755714728__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 +248 -43
- pulumi_oci/aidocument/__init__.py +1 -0
- pulumi_oci/aidocument/_inputs.py +476 -6
- pulumi_oci/aidocument/get_model.py +63 -2
- pulumi_oci/aidocument/get_model_type.py +179 -0
- pulumi_oci/aidocument/get_models.py +1 -1
- pulumi_oci/aidocument/get_project.py +17 -2
- pulumi_oci/aidocument/get_projects.py +1 -1
- pulumi_oci/aidocument/model.py +188 -0
- pulumi_oci/aidocument/outputs.py +883 -8
- pulumi_oci/aidocument/processor_job.py +22 -4
- pulumi_oci/aidocument/project.py +50 -1
- pulumi_oci/apigateway/_inputs.py +608 -12
- pulumi_oci/apigateway/api.py +127 -38
- pulumi_oci/apigateway/certificate.py +122 -3
- pulumi_oci/apigateway/deployment.py +120 -3
- pulumi_oci/apigateway/gateway.py +124 -7
- pulumi_oci/apigateway/get_api.py +40 -1
- pulumi_oci/apigateway/get_certificate.py +41 -1
- pulumi_oci/apigateway/get_deployment.py +40 -1
- pulumi_oci/apigateway/get_gateway.py +40 -1
- pulumi_oci/apigateway/get_subscriber.py +40 -1
- pulumi_oci/apigateway/get_usage_plan.py +40 -1
- pulumi_oci/apigateway/outputs.py +1413 -39
- pulumi_oci/apigateway/subscriber.py +120 -3
- pulumi_oci/apigateway/usage_plan.py +127 -38
- pulumi_oci/apmconfig/_inputs.py +199 -15
- pulumi_oci/apmconfig/config.py +535 -17
- pulumi_oci/apmconfig/get_config.py +141 -1
- pulumi_oci/apmconfig/get_configs.py +2 -2
- pulumi_oci/apmconfig/outputs.py +509 -13
- pulumi_oci/apmtraces/__init__.py +5 -0
- pulumi_oci/apmtraces/_inputs.py +413 -0
- pulumi_oci/apmtraces/get_attribute_auto_activate_status.py +160 -0
- pulumi_oci/apmtraces/get_log.py +356 -0
- pulumi_oci/apmtraces/get_scheduled_queries.py +163 -0
- pulumi_oci/apmtraces/get_scheduled_query.py +368 -0
- pulumi_oci/apmtraces/get_trace.py +4 -4
- pulumi_oci/apmtraces/outputs.py +971 -0
- pulumi_oci/apmtraces/scheduled_query.py +925 -0
- pulumi_oci/autoscaling/_inputs.py +177 -13
- pulumi_oci/autoscaling/auto_scaling_configuration.py +12 -0
- pulumi_oci/autoscaling/outputs.py +269 -23
- pulumi_oci/core/_inputs.py +184 -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/get_ipv6.py +15 -1
- pulumi_oci/core/ipv6.py +49 -0
- pulumi_oci/core/outputs.py +376 -0
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +396 -19
- pulumi_oci/database/autonomous_container_database.py +94 -0
- pulumi_oci/database/autonomous_container_database_add_standby.py +28 -0
- pulumi_oci/database/autonomous_database.py +578 -568
- pulumi_oci/database/autonomous_database_saas_admin_user.py +43 -60
- 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_autonomous_container_database.py +29 -1
- pulumi_oci/database/get_autonomous_database.py +65 -1
- pulumi_oci/database/get_autonomous_databases.py +6 -1
- 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/get_pluggable_database_snapshot.py +253 -0
- pulumi_oci/database/get_pluggable_database_snapshots.py +235 -0
- pulumi_oci/database/outputs.py +1045 -83
- pulumi_oci/database/pluggable_database.py +0 -14
- pulumi_oci/database/pluggable_database_snapshot.py +539 -0
- pulumi_oci/databasemanagement/__init__.py +37 -0
- pulumi_oci/databasemanagement/_inputs.py +9516 -3414
- pulumi_oci/databasemanagement/cloud_asm.py +791 -0
- pulumi_oci/databasemanagement/cloud_asm_instance.py +686 -0
- pulumi_oci/databasemanagement/cloud_cluster.py +847 -0
- pulumi_oci/databasemanagement/cloud_cluster_instance.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_home.py +630 -0
- pulumi_oci/databasemanagement/cloud_db_node.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system.py +789 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_database_managements_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_cloud_stack_monitorings_management.py +354 -0
- pulumi_oci/databasemanagement/cloud_db_system_connector.py +761 -0
- pulumi_oci/databasemanagement/cloud_db_system_discovery.py +754 -0
- pulumi_oci/databasemanagement/cloud_listener.py +1043 -0
- pulumi_oci/databasemanagement/get_cloud_asm.py +380 -0
- pulumi_oci/databasemanagement/get_cloud_asm_configuration.py +147 -0
- pulumi_oci/databasemanagement/get_cloud_asm_disk_groups.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instance.py +337 -0
- pulumi_oci/databasemanagement/get_cloud_asm_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_asm_users.py +163 -0
- pulumi_oci/databasemanagement/get_cloud_asms.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_cluster.py +408 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instance.py +379 -0
- pulumi_oci/databasemanagement/get_cloud_cluster_instances.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_clusters.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_databases.py +188 -0
- pulumi_oci/databasemanagement/get_cloud_db_home.py +309 -0
- pulumi_oci/databasemanagement/get_cloud_db_homes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_node.py +365 -0
- pulumi_oci/databasemanagement/get_cloud_db_nodes.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system.py +352 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connector.py +338 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_connectors.py +191 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discoveries.py +169 -0
- pulumi_oci/databasemanagement/get_cloud_db_system_discovery.py +335 -0
- pulumi_oci/databasemanagement/get_cloud_db_systems.py +235 -0
- pulumi_oci/databasemanagement/get_cloud_listener.py +506 -0
- pulumi_oci/databasemanagement/get_cloud_listener_services.py +187 -0
- pulumi_oci/databasemanagement/get_cloud_listeners.py +191 -0
- pulumi_oci/databasemanagement/get_managed_database.py +2 -2
- pulumi_oci/databasemanagement/get_managed_database_group.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +6 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +5 -5
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +2 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +2 -2
- pulumi_oci/databasemanagement/outputs.py +18049 -4222
- 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_finding_analytics.py +22 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +75 -8
- 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 +70 -4
- 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 +7975 -1013
- 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/datascience/__init__.py +10 -0
- pulumi_oci/datascience/_inputs.py +6760 -2206
- pulumi_oci/datascience/get_job.py +15 -1
- pulumi_oci/datascience/get_job_run.py +44 -2
- pulumi_oci/datascience/get_model_deployment_model_states.py +251 -0
- pulumi_oci/datascience/get_model_group.py +405 -0
- pulumi_oci/datascience/get_model_group_artifact_content.py +132 -0
- pulumi_oci/datascience/get_model_group_models.py +240 -0
- pulumi_oci/datascience/get_model_group_version_histories.py +243 -0
- pulumi_oci/{aianomalydetection/get_detection_model.py → datascience/get_model_group_version_history.py} +73 -74
- pulumi_oci/datascience/get_model_groups.py +265 -0
- pulumi_oci/datascience/get_pipeline_run.py +15 -1
- pulumi_oci/datascience/job.py +81 -154
- pulumi_oci/datascience/job_run.py +250 -4
- pulumi_oci/datascience/model_group.py +1111 -0
- pulumi_oci/datascience/model_group_artifact.py +369 -0
- pulumi_oci/{aianomalydetection/model.py → datascience/model_group_version_history.py} +172 -187
- pulumi_oci/datascience/notebook_session.py +4 -0
- pulumi_oci/datascience/outputs.py +17168 -8021
- pulumi_oci/datascience/pipeline_run.py +87 -0
- 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/_inputs.py +3 -3
- pulumi_oci/goldengate/connection.py +175 -56
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_connection.py +20 -4
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +62 -10
- pulumi_oci/managementagent/__init__.py +4 -0
- pulumi_oci/managementagent/_inputs.py +129 -0
- pulumi_oci/managementagent/get_management_agent.py +26 -1
- pulumi_oci/managementagent/get_management_agent_install_key.py +43 -1
- pulumi_oci/managementagent/get_management_agent_named_credentials_metadata.py +147 -0
- pulumi_oci/managementagent/get_named_credential.py +268 -0
- pulumi_oci/managementagent/get_named_credentials.py +221 -0
- pulumi_oci/managementagent/management_agent.py +48 -0
- pulumi_oci/managementagent/management_agent_install_key.py +84 -0
- pulumi_oci/managementagent/named_credential.py +706 -0
- pulumi_oci/managementagent/outputs.py +515 -0
- pulumi_oci/managementdashboard/management_dashboards_import.py +178 -20
- pulumi_oci/oci/__init__.py +12 -0
- pulumi_oci/oci/_inputs.py +566 -0
- pulumi_oci/{aianomalydetection/project.py → oci/api_platform_api_platform_instance.py} +204 -118
- pulumi_oci/oci/get_api_platform_api_platform_instance.py +282 -0
- pulumi_oci/oci/get_api_platform_api_platform_instances.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/{aianomalydetection/get_ai_private_endpoint.py → oci/get_managed_kafka_kafka_cluster_config.py} +63 -90
- 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/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py} +138 -232
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1540 -164
- pulumi_oci/opsi/_inputs.py +1001 -149
- pulumi_oci/opsi/database_insight.py +22 -3
- pulumi_oci/opsi/exadata_insight.py +86 -6
- pulumi_oci/opsi/outputs.py +1438 -178
- pulumi_oci/psql/configuration.py +109 -19
- pulumi_oci/psql/db_system.py +7 -7
- pulumi_oci/psql/get_configuration.py +30 -2
- pulumi_oci/psql/get_configurations.py +49 -5
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_default_configuration.py +30 -4
- pulumi_oci/psql/get_default_configurations.py +49 -5
- pulumi_oci/psql/outputs.py +47 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +6 -0
- pulumi_oci/redis/_inputs.py +217 -0
- pulumi_oci/{aianomalydetection/get_detection_data_asset.py → redis/get_oci_cache_config_set.py} +74 -74
- pulumi_oci/redis/get_oci_cache_config_sets.py +221 -0
- pulumi_oci/redis/get_oci_cache_default_config_set.py +217 -0
- pulumi_oci/redis/get_oci_cache_default_config_sets.py +218 -0
- pulumi_oci/redis/get_redis_cluster.py +15 -1
- pulumi_oci/{aianomalydetection/data_asset.py → redis/oci_cache_config_set.py} +190 -254
- pulumi_oci/redis/oci_cache_config_setlist_associated_oci_cache_cluster.py +240 -0
- pulumi_oci/redis/outputs.py +713 -0
- pulumi_oci/redis/redis_cluster.py +49 -0
- pulumi_oci/vault/_inputs.py +198 -0
- pulumi_oci/vault/get_secret.py +43 -1
- pulumi_oci/vault/outputs.py +434 -0
- pulumi_oci/vault/secret.py +103 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +302 -218
- pulumi_oci/aianomalydetection/__init__.py +0 -25
- pulumi_oci/aianomalydetection/_inputs.py +0 -1742
- pulumi_oci/aianomalydetection/detect_anomaly_job.py +0 -739
- pulumi_oci/aianomalydetection/get_ai_private_endpoints.py +0 -199
- pulumi_oci/aianomalydetection/get_detect_anomaly_job.py +0 -338
- pulumi_oci/aianomalydetection/get_detect_anomaly_jobs.py +0 -254
- pulumi_oci/aianomalydetection/get_detection_data_assets.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_models.py +0 -213
- pulumi_oci/aianomalydetection/get_detection_project.py +0 -239
- pulumi_oci/aianomalydetection/get_detection_projects.py +0 -191
- pulumi_oci/aianomalydetection/outputs.py +0 -3699
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755714728.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
pulumi_oci/{aianomalydetection/ai_private_endpoint.py → oci/managed_kafka_kafka_cluster_config.py}
RENAMED
@@ -13,34 +13,29 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
|
-
__all__ = ['
|
19
|
+
__all__ = ['ManagedKafkaKafkaClusterConfigArgs', 'ManagedKafkaKafkaClusterConfig']
|
18
20
|
|
19
21
|
@pulumi.input_type
|
20
|
-
class
|
22
|
+
class ManagedKafkaKafkaClusterConfigArgs:
|
21
23
|
def __init__(__self__, *,
|
22
24
|
compartment_id: pulumi.Input[_builtins.str],
|
23
|
-
|
24
|
-
subnet_id: pulumi.Input[_builtins.str],
|
25
|
+
latest_config: pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs'],
|
25
26
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
26
27
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
27
28
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None):
|
28
29
|
"""
|
29
|
-
The set of arguments for constructing a
|
30
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable)
|
31
|
-
:param pulumi.Input[
|
32
|
-
:param pulumi.Input[_builtins.str]
|
33
|
-
|
34
|
-
|
35
|
-
** IMPORTANT **
|
36
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
37
|
-
: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. Example: `{"foo-namespace.bar-key": "value"}`
|
38
|
-
:param pulumi.Input[_builtins.str] display_name: (Updatable) Display name of the private endpoint resource being created.
|
39
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
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"}`
|
40
36
|
"""
|
41
37
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
42
|
-
pulumi.set(__self__, "
|
43
|
-
pulumi.set(__self__, "subnet_id", subnet_id)
|
38
|
+
pulumi.set(__self__, "latest_config", latest_config)
|
44
39
|
if defined_tags is not None:
|
45
40
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
46
41
|
if display_name is not None:
|
@@ -52,7 +47,7 @@ class AiPrivateEndpointArgs:
|
|
52
47
|
@pulumi.getter(name="compartmentId")
|
53
48
|
def compartment_id(self) -> pulumi.Input[_builtins.str]:
|
54
49
|
"""
|
55
|
-
(Updatable)
|
50
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaClusterConfig in.
|
56
51
|
"""
|
57
52
|
return pulumi.get(self, "compartment_id")
|
58
53
|
|
@@ -61,38 +56,22 @@ class AiPrivateEndpointArgs:
|
|
61
56
|
pulumi.set(self, "compartment_id", value)
|
62
57
|
|
63
58
|
@_builtins.property
|
64
|
-
@pulumi.getter(name="
|
65
|
-
def
|
59
|
+
@pulumi.getter(name="latestConfig")
|
60
|
+
def latest_config(self) -> pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']:
|
66
61
|
"""
|
67
|
-
(Updatable)
|
62
|
+
(Updatable) A shared configuration object used by 0 or more kafka clusters.
|
68
63
|
"""
|
69
|
-
return pulumi.get(self, "
|
64
|
+
return pulumi.get(self, "latest_config")
|
70
65
|
|
71
|
-
@
|
72
|
-
def
|
73
|
-
pulumi.set(self, "
|
74
|
-
|
75
|
-
@_builtins.property
|
76
|
-
@pulumi.getter(name="subnetId")
|
77
|
-
def subnet_id(self) -> pulumi.Input[_builtins.str]:
|
78
|
-
"""
|
79
|
-
The OCID of subnet to which the reverse connection is to be created.
|
80
|
-
|
81
|
-
|
82
|
-
** IMPORTANT **
|
83
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
84
|
-
"""
|
85
|
-
return pulumi.get(self, "subnet_id")
|
86
|
-
|
87
|
-
@subnet_id.setter
|
88
|
-
def subnet_id(self, value: pulumi.Input[_builtins.str]):
|
89
|
-
pulumi.set(self, "subnet_id", value)
|
66
|
+
@latest_config.setter
|
67
|
+
def latest_config(self, value: pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']):
|
68
|
+
pulumi.set(self, "latest_config", value)
|
90
69
|
|
91
70
|
@_builtins.property
|
92
71
|
@pulumi.getter(name="definedTags")
|
93
72
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
94
73
|
"""
|
95
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
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"}`
|
96
75
|
"""
|
97
76
|
return pulumi.get(self, "defined_tags")
|
98
77
|
|
@@ -104,7 +83,7 @@ class AiPrivateEndpointArgs:
|
|
104
83
|
@pulumi.getter(name="displayName")
|
105
84
|
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
106
85
|
"""
|
107
|
-
(Updatable)
|
86
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
108
87
|
"""
|
109
88
|
return pulumi.get(self, "display_name")
|
110
89
|
|
@@ -116,7 +95,7 @@ class AiPrivateEndpointArgs:
|
|
116
95
|
@pulumi.getter(name="freeformTags")
|
117
96
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
118
97
|
"""
|
119
|
-
(Updatable)
|
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"}`
|
120
99
|
"""
|
121
100
|
return pulumi.get(self, "freeform_tags")
|
122
101
|
|
@@ -126,57 +105,45 @@ class AiPrivateEndpointArgs:
|
|
126
105
|
|
127
106
|
|
128
107
|
@pulumi.input_type
|
129
|
-
class
|
108
|
+
class _ManagedKafkaKafkaClusterConfigState:
|
130
109
|
def __init__(__self__, *,
|
131
|
-
attached_data_assets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
132
110
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
133
111
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
134
112
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
135
|
-
dns_zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
136
113
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
114
|
+
latest_config: Optional[pulumi.Input['ManagedKafkaKafkaClusterConfigLatestConfigArgs']] = None,
|
137
115
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
138
116
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
139
|
-
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
140
117
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
141
118
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
142
119
|
time_updated: Optional[pulumi.Input[_builtins.str]] = None):
|
143
120
|
"""
|
144
|
-
Input properties used for looking up and filtering
|
145
|
-
:param pulumi.Input[
|
146
|
-
:param pulumi.Input[_builtins.str]
|
147
|
-
:param pulumi.Input[
|
148
|
-
:param pulumi.Input[_builtins.str]
|
149
|
-
:param pulumi.Input[
|
150
|
-
:param pulumi.Input[
|
151
|
-
:param pulumi.Input[_builtins.str]
|
152
|
-
:param pulumi.Input[_builtins.str]
|
153
|
-
:param pulumi.Input[_builtins.str]
|
154
|
-
|
155
|
-
|
156
|
-
** IMPORTANT **
|
157
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
158
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
159
|
-
:param pulumi.Input[_builtins.str] time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
|
160
|
-
:param pulumi.Input[_builtins.str] time_updated: The time the private endpoint was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
|
161
|
-
"""
|
162
|
-
if attached_data_assets is not None:
|
163
|
-
pulumi.set(__self__, "attached_data_assets", attached_data_assets)
|
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
|
+
"""
|
164
133
|
if compartment_id is not None:
|
165
134
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
166
135
|
if defined_tags is not None:
|
167
136
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
168
137
|
if display_name is not None:
|
169
138
|
pulumi.set(__self__, "display_name", display_name)
|
170
|
-
if dns_zones is not None:
|
171
|
-
pulumi.set(__self__, "dns_zones", dns_zones)
|
172
139
|
if freeform_tags is not None:
|
173
140
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
141
|
+
if latest_config is not None:
|
142
|
+
pulumi.set(__self__, "latest_config", latest_config)
|
174
143
|
if lifecycle_details is not None:
|
175
144
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
176
145
|
if state is not None:
|
177
146
|
pulumi.set(__self__, "state", state)
|
178
|
-
if subnet_id is not None:
|
179
|
-
pulumi.set(__self__, "subnet_id", subnet_id)
|
180
147
|
if system_tags is not None:
|
181
148
|
pulumi.set(__self__, "system_tags", system_tags)
|
182
149
|
if time_created is not None:
|
@@ -184,23 +151,11 @@ class _AiPrivateEndpointState:
|
|
184
151
|
if time_updated is not None:
|
185
152
|
pulumi.set(__self__, "time_updated", time_updated)
|
186
153
|
|
187
|
-
@_builtins.property
|
188
|
-
@pulumi.getter(name="attachedDataAssets")
|
189
|
-
def attached_data_assets(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
190
|
-
"""
|
191
|
-
The list of dataAssets using the private reverse connection endpoint.
|
192
|
-
"""
|
193
|
-
return pulumi.get(self, "attached_data_assets")
|
194
|
-
|
195
|
-
@attached_data_assets.setter
|
196
|
-
def attached_data_assets(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
197
|
-
pulumi.set(self, "attached_data_assets", value)
|
198
|
-
|
199
154
|
@_builtins.property
|
200
155
|
@pulumi.getter(name="compartmentId")
|
201
156
|
def compartment_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
202
157
|
"""
|
203
|
-
(Updatable)
|
158
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaClusterConfig in.
|
204
159
|
"""
|
205
160
|
return pulumi.get(self, "compartment_id")
|
206
161
|
|
@@ -212,7 +167,7 @@ class _AiPrivateEndpointState:
|
|
212
167
|
@pulumi.getter(name="definedTags")
|
213
168
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
214
169
|
"""
|
215
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
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"}`
|
216
171
|
"""
|
217
172
|
return pulumi.get(self, "defined_tags")
|
218
173
|
|
@@ -224,7 +179,7 @@ class _AiPrivateEndpointState:
|
|
224
179
|
@pulumi.getter(name="displayName")
|
225
180
|
def display_name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
226
181
|
"""
|
227
|
-
(Updatable)
|
182
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
228
183
|
"""
|
229
184
|
return pulumi.get(self, "display_name")
|
230
185
|
|
@@ -232,23 +187,11 @@ class _AiPrivateEndpointState:
|
|
232
187
|
def display_name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
233
188
|
pulumi.set(self, "display_name", value)
|
234
189
|
|
235
|
-
@_builtins.property
|
236
|
-
@pulumi.getter(name="dnsZones")
|
237
|
-
def dns_zones(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
238
|
-
"""
|
239
|
-
(Updatable) List of DNS zones to be used by the data assets. Example: custpvtsubnet.oraclevcn.com for data asset: db.custpvtsubnet.oraclevcn.com
|
240
|
-
"""
|
241
|
-
return pulumi.get(self, "dns_zones")
|
242
|
-
|
243
|
-
@dns_zones.setter
|
244
|
-
def dns_zones(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
245
|
-
pulumi.set(self, "dns_zones", value)
|
246
|
-
|
247
190
|
@_builtins.property
|
248
191
|
@pulumi.getter(name="freeformTags")
|
249
192
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
250
193
|
"""
|
251
|
-
(Updatable)
|
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"}`
|
252
195
|
"""
|
253
196
|
return pulumi.get(self, "freeform_tags")
|
254
197
|
|
@@ -256,11 +199,23 @@ class _AiPrivateEndpointState:
|
|
256
199
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]):
|
257
200
|
pulumi.set(self, "freeform_tags", value)
|
258
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
|
+
|
259
214
|
@_builtins.property
|
260
215
|
@pulumi.getter(name="lifecycleDetails")
|
261
216
|
def lifecycle_details(self) -> Optional[pulumi.Input[_builtins.str]]:
|
262
217
|
"""
|
263
|
-
A message
|
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.
|
264
219
|
"""
|
265
220
|
return pulumi.get(self, "lifecycle_details")
|
266
221
|
|
@@ -272,7 +227,7 @@ class _AiPrivateEndpointState:
|
|
272
227
|
@pulumi.getter
|
273
228
|
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
274
229
|
"""
|
275
|
-
The current state of the
|
230
|
+
The current state of the KafkaClusterConfig.
|
276
231
|
"""
|
277
232
|
return pulumi.get(self, "state")
|
278
233
|
|
@@ -280,27 +235,11 @@ class _AiPrivateEndpointState:
|
|
280
235
|
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
281
236
|
pulumi.set(self, "state", value)
|
282
237
|
|
283
|
-
@_builtins.property
|
284
|
-
@pulumi.getter(name="subnetId")
|
285
|
-
def subnet_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
286
|
-
"""
|
287
|
-
The OCID of subnet to which the reverse connection is to be created.
|
288
|
-
|
289
|
-
|
290
|
-
** IMPORTANT **
|
291
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
292
|
-
"""
|
293
|
-
return pulumi.get(self, "subnet_id")
|
294
|
-
|
295
|
-
@subnet_id.setter
|
296
|
-
def subnet_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
297
|
-
pulumi.set(self, "subnet_id", value)
|
298
|
-
|
299
238
|
@_builtins.property
|
300
239
|
@pulumi.getter(name="systemTags")
|
301
240
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]:
|
302
241
|
"""
|
303
|
-
|
242
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
304
243
|
"""
|
305
244
|
return pulumi.get(self, "system_tags")
|
306
245
|
|
@@ -312,7 +251,7 @@ class _AiPrivateEndpointState:
|
|
312
251
|
@pulumi.getter(name="timeCreated")
|
313
252
|
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
314
253
|
"""
|
315
|
-
The time the
|
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`
|
316
255
|
"""
|
317
256
|
return pulumi.get(self, "time_created")
|
318
257
|
|
@@ -324,7 +263,7 @@ class _AiPrivateEndpointState:
|
|
324
263
|
@pulumi.getter(name="timeUpdated")
|
325
264
|
def time_updated(self) -> Optional[pulumi.Input[_builtins.str]]:
|
326
265
|
"""
|
327
|
-
The time the
|
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`
|
328
267
|
"""
|
329
268
|
return pulumi.get(self, "time_updated")
|
330
269
|
|
@@ -333,8 +272,8 @@ class _AiPrivateEndpointState:
|
|
333
272
|
pulumi.set(self, "time_updated", value)
|
334
273
|
|
335
274
|
|
336
|
-
@pulumi.type_token("oci:
|
337
|
-
class
|
275
|
+
@pulumi.type_token("oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig")
|
276
|
+
class ManagedKafkaKafkaClusterConfig(pulumi.CustomResource):
|
338
277
|
@overload
|
339
278
|
def __init__(__self__,
|
340
279
|
resource_name: str,
|
@@ -342,14 +281,13 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
342
281
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
343
282
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
344
283
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
345
|
-
dns_zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
346
284
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
347
|
-
|
285
|
+
latest_config: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']]] = None,
|
348
286
|
__props__=None):
|
349
287
|
"""
|
350
|
-
This resource provides the
|
288
|
+
This resource provides the Kafka Cluster Config resource in Oracle Cloud Infrastructure Managed Kafka service.
|
351
289
|
|
352
|
-
|
290
|
+
Creates a KafkaClusterConfig.
|
353
291
|
|
354
292
|
## Example Usage
|
355
293
|
|
@@ -357,50 +295,49 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
357
295
|
import pulumi
|
358
296
|
import pulumi_oci as oci
|
359
297
|
|
360
|
-
|
298
|
+
test_kafka_cluster_config = oci.oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config",
|
361
299
|
compartment_id=compartment_id,
|
362
|
-
|
363
|
-
|
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
|
+
},
|
364
306
|
defined_tags={
|
365
|
-
"
|
307
|
+
"Operations.CostCenter": "42",
|
366
308
|
},
|
367
|
-
display_name=
|
309
|
+
display_name=kafka_cluster_config_display_name,
|
368
310
|
freeform_tags={
|
369
|
-
"
|
311
|
+
"Department": "Finance",
|
370
312
|
})
|
371
313
|
```
|
372
314
|
|
373
315
|
## Import
|
374
316
|
|
375
|
-
|
317
|
+
KafkaClusterConfigs can be imported using the `id`, e.g.
|
376
318
|
|
377
319
|
```sh
|
378
|
-
$ pulumi import oci:
|
320
|
+
$ pulumi import oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig test_kafka_cluster_config "id"
|
379
321
|
```
|
380
322
|
|
381
323
|
:param str resource_name: The name of the resource.
|
382
324
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
383
|
-
:param pulumi.Input[_builtins.str] compartment_id: (Updatable)
|
384
|
-
: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. Example: `{"
|
385
|
-
:param pulumi.Input[_builtins.str] display_name: (Updatable)
|
386
|
-
:param pulumi.Input[
|
387
|
-
:param pulumi.Input[
|
388
|
-
:param pulumi.Input[_builtins.str] subnet_id: The OCID of subnet to which the reverse connection is to be created.
|
389
|
-
|
390
|
-
|
391
|
-
** IMPORTANT **
|
392
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
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.
|
393
330
|
"""
|
394
331
|
...
|
395
332
|
@overload
|
396
333
|
def __init__(__self__,
|
397
334
|
resource_name: str,
|
398
|
-
args:
|
335
|
+
args: ManagedKafkaKafkaClusterConfigArgs,
|
399
336
|
opts: Optional[pulumi.ResourceOptions] = None):
|
400
337
|
"""
|
401
|
-
This resource provides the
|
338
|
+
This resource provides the Kafka Cluster Config resource in Oracle Cloud Infrastructure Managed Kafka service.
|
402
339
|
|
403
|
-
|
340
|
+
Creates a KafkaClusterConfig.
|
404
341
|
|
405
342
|
## Example Usage
|
406
343
|
|
@@ -408,34 +345,38 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
408
345
|
import pulumi
|
409
346
|
import pulumi_oci as oci
|
410
347
|
|
411
|
-
|
348
|
+
test_kafka_cluster_config = oci.oci.ManagedKafkaKafkaClusterConfig("test_kafka_cluster_config",
|
412
349
|
compartment_id=compartment_id,
|
413
|
-
|
414
|
-
|
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
|
+
},
|
415
356
|
defined_tags={
|
416
|
-
"
|
357
|
+
"Operations.CostCenter": "42",
|
417
358
|
},
|
418
|
-
display_name=
|
359
|
+
display_name=kafka_cluster_config_display_name,
|
419
360
|
freeform_tags={
|
420
|
-
"
|
361
|
+
"Department": "Finance",
|
421
362
|
})
|
422
363
|
```
|
423
364
|
|
424
365
|
## Import
|
425
366
|
|
426
|
-
|
367
|
+
KafkaClusterConfigs can be imported using the `id`, e.g.
|
427
368
|
|
428
369
|
```sh
|
429
|
-
$ pulumi import oci:
|
370
|
+
$ pulumi import oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig test_kafka_cluster_config "id"
|
430
371
|
```
|
431
372
|
|
432
373
|
:param str resource_name: The name of the resource.
|
433
|
-
:param
|
374
|
+
:param ManagedKafkaKafkaClusterConfigArgs args: The arguments to use to populate this resource's properties.
|
434
375
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
435
376
|
"""
|
436
377
|
...
|
437
378
|
def __init__(__self__, resource_name: str, *args, **kwargs):
|
438
|
-
resource_args, opts = _utilities.get_resource_args_opts(
|
379
|
+
resource_args, opts = _utilities.get_resource_args_opts(ManagedKafkaKafkaClusterConfigArgs, pulumi.ResourceOptions, *args, **kwargs)
|
439
380
|
if resource_args is not None:
|
440
381
|
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
441
382
|
else:
|
@@ -447,9 +388,8 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
447
388
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
448
389
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
449
390
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
450
|
-
dns_zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
451
391
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
452
|
-
|
392
|
+
latest_config: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']]] = None,
|
453
393
|
__props__=None):
|
454
394
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
455
395
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -457,28 +397,24 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
457
397
|
if opts.id is None:
|
458
398
|
if __props__ is not None:
|
459
399
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
460
|
-
__props__ =
|
400
|
+
__props__ = ManagedKafkaKafkaClusterConfigArgs.__new__(ManagedKafkaKafkaClusterConfigArgs)
|
461
401
|
|
462
402
|
if compartment_id is None and not opts.urn:
|
463
403
|
raise TypeError("Missing required property 'compartment_id'")
|
464
404
|
__props__.__dict__["compartment_id"] = compartment_id
|
465
405
|
__props__.__dict__["defined_tags"] = defined_tags
|
466
406
|
__props__.__dict__["display_name"] = display_name
|
467
|
-
if dns_zones is None and not opts.urn:
|
468
|
-
raise TypeError("Missing required property 'dns_zones'")
|
469
|
-
__props__.__dict__["dns_zones"] = dns_zones
|
470
407
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
471
|
-
if
|
472
|
-
raise TypeError("Missing required property '
|
473
|
-
__props__.__dict__["
|
474
|
-
__props__.__dict__["attached_data_assets"] = None
|
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
|
475
411
|
__props__.__dict__["lifecycle_details"] = None
|
476
412
|
__props__.__dict__["state"] = None
|
477
413
|
__props__.__dict__["system_tags"] = None
|
478
414
|
__props__.__dict__["time_created"] = None
|
479
415
|
__props__.__dict__["time_updated"] = None
|
480
|
-
super(
|
481
|
-
'oci:
|
416
|
+
super(ManagedKafkaKafkaClusterConfig, __self__).__init__(
|
417
|
+
'oci:oci/managedKafkaKafkaClusterConfig:ManagedKafkaKafkaClusterConfig',
|
482
418
|
resource_name,
|
483
419
|
__props__,
|
484
420
|
opts)
|
@@ -487,73 +423,55 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
487
423
|
def get(resource_name: str,
|
488
424
|
id: pulumi.Input[str],
|
489
425
|
opts: Optional[pulumi.ResourceOptions] = None,
|
490
|
-
attached_data_assets: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
491
426
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
492
427
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
493
428
|
display_name: Optional[pulumi.Input[_builtins.str]] = None,
|
494
|
-
dns_zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
495
429
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
430
|
+
latest_config: Optional[pulumi.Input[Union['ManagedKafkaKafkaClusterConfigLatestConfigArgs', 'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict']]] = None,
|
496
431
|
lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
|
497
432
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
498
|
-
subnet_id: Optional[pulumi.Input[_builtins.str]] = None,
|
499
433
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
500
434
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
501
|
-
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> '
|
435
|
+
time_updated: Optional[pulumi.Input[_builtins.str]] = None) -> 'ManagedKafkaKafkaClusterConfig':
|
502
436
|
"""
|
503
|
-
Get an existing
|
437
|
+
Get an existing ManagedKafkaKafkaClusterConfig resource's state with the given name, id, and optional extra
|
504
438
|
properties used to qualify the lookup.
|
505
439
|
|
506
440
|
:param str resource_name: The unique name of the resulting resource.
|
507
441
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
508
442
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
509
|
-
:param pulumi.Input[
|
510
|
-
:param pulumi.Input[_builtins.str]
|
511
|
-
:param pulumi.Input[
|
512
|
-
:param pulumi.Input[_builtins.str]
|
513
|
-
:param pulumi.Input[
|
514
|
-
:param pulumi.Input[
|
515
|
-
:param pulumi.Input[_builtins.str]
|
516
|
-
:param pulumi.Input[_builtins.str]
|
517
|
-
:param pulumi.Input[_builtins.str]
|
518
|
-
|
519
|
-
|
520
|
-
** IMPORTANT **
|
521
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
522
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
523
|
-
:param pulumi.Input[_builtins.str] time_created: The time the private endpoint was created. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
|
524
|
-
:param pulumi.Input[_builtins.str] time_updated: The time the private endpoint was updated. An [RFC3339](https://tools.ietf.org/html/rfc3339) formatted datetime string.
|
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`
|
525
453
|
"""
|
526
454
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
527
455
|
|
528
|
-
__props__ =
|
456
|
+
__props__ = _ManagedKafkaKafkaClusterConfigState.__new__(_ManagedKafkaKafkaClusterConfigState)
|
529
457
|
|
530
|
-
__props__.__dict__["attached_data_assets"] = attached_data_assets
|
531
458
|
__props__.__dict__["compartment_id"] = compartment_id
|
532
459
|
__props__.__dict__["defined_tags"] = defined_tags
|
533
460
|
__props__.__dict__["display_name"] = display_name
|
534
|
-
__props__.__dict__["dns_zones"] = dns_zones
|
535
461
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
462
|
+
__props__.__dict__["latest_config"] = latest_config
|
536
463
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
537
464
|
__props__.__dict__["state"] = state
|
538
|
-
__props__.__dict__["subnet_id"] = subnet_id
|
539
465
|
__props__.__dict__["system_tags"] = system_tags
|
540
466
|
__props__.__dict__["time_created"] = time_created
|
541
467
|
__props__.__dict__["time_updated"] = time_updated
|
542
|
-
return
|
543
|
-
|
544
|
-
@_builtins.property
|
545
|
-
@pulumi.getter(name="attachedDataAssets")
|
546
|
-
def attached_data_assets(self) -> pulumi.Output[Sequence[_builtins.str]]:
|
547
|
-
"""
|
548
|
-
The list of dataAssets using the private reverse connection endpoint.
|
549
|
-
"""
|
550
|
-
return pulumi.get(self, "attached_data_assets")
|
468
|
+
return ManagedKafkaKafkaClusterConfig(resource_name, opts=opts, __props__=__props__)
|
551
469
|
|
552
470
|
@_builtins.property
|
553
471
|
@pulumi.getter(name="compartmentId")
|
554
472
|
def compartment_id(self) -> pulumi.Output[_builtins.str]:
|
555
473
|
"""
|
556
|
-
(Updatable)
|
474
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the KafkaClusterConfig in.
|
557
475
|
"""
|
558
476
|
return pulumi.get(self, "compartment_id")
|
559
477
|
|
@@ -561,7 +479,7 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
561
479
|
@pulumi.getter(name="definedTags")
|
562
480
|
def defined_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
563
481
|
"""
|
564
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
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"}`
|
565
483
|
"""
|
566
484
|
return pulumi.get(self, "defined_tags")
|
567
485
|
|
@@ -569,31 +487,31 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
569
487
|
@pulumi.getter(name="displayName")
|
570
488
|
def display_name(self) -> pulumi.Output[_builtins.str]:
|
571
489
|
"""
|
572
|
-
(Updatable)
|
490
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
573
491
|
"""
|
574
492
|
return pulumi.get(self, "display_name")
|
575
493
|
|
576
494
|
@_builtins.property
|
577
|
-
@pulumi.getter(name="
|
578
|
-
def
|
495
|
+
@pulumi.getter(name="freeformTags")
|
496
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
579
497
|
"""
|
580
|
-
(Updatable)
|
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"}`
|
581
499
|
"""
|
582
|
-
return pulumi.get(self, "
|
500
|
+
return pulumi.get(self, "freeform_tags")
|
583
501
|
|
584
502
|
@_builtins.property
|
585
|
-
@pulumi.getter(name="
|
586
|
-
def
|
503
|
+
@pulumi.getter(name="latestConfig")
|
504
|
+
def latest_config(self) -> pulumi.Output['outputs.ManagedKafkaKafkaClusterConfigLatestConfig']:
|
587
505
|
"""
|
588
|
-
(Updatable)
|
506
|
+
(Updatable) A shared configuration object used by 0 or more kafka clusters.
|
589
507
|
"""
|
590
|
-
return pulumi.get(self, "
|
508
|
+
return pulumi.get(self, "latest_config")
|
591
509
|
|
592
510
|
@_builtins.property
|
593
511
|
@pulumi.getter(name="lifecycleDetails")
|
594
512
|
def lifecycle_details(self) -> pulumi.Output[_builtins.str]:
|
595
513
|
"""
|
596
|
-
A message
|
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.
|
597
515
|
"""
|
598
516
|
return pulumi.get(self, "lifecycle_details")
|
599
517
|
|
@@ -601,27 +519,15 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
601
519
|
@pulumi.getter
|
602
520
|
def state(self) -> pulumi.Output[_builtins.str]:
|
603
521
|
"""
|
604
|
-
The current state of the
|
522
|
+
The current state of the KafkaClusterConfig.
|
605
523
|
"""
|
606
524
|
return pulumi.get(self, "state")
|
607
525
|
|
608
|
-
@_builtins.property
|
609
|
-
@pulumi.getter(name="subnetId")
|
610
|
-
def subnet_id(self) -> pulumi.Output[_builtins.str]:
|
611
|
-
"""
|
612
|
-
The OCID of subnet to which the reverse connection is to be created.
|
613
|
-
|
614
|
-
|
615
|
-
** IMPORTANT **
|
616
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
617
|
-
"""
|
618
|
-
return pulumi.get(self, "subnet_id")
|
619
|
-
|
620
526
|
@_builtins.property
|
621
527
|
@pulumi.getter(name="systemTags")
|
622
528
|
def system_tags(self) -> pulumi.Output[Mapping[str, _builtins.str]]:
|
623
529
|
"""
|
624
|
-
|
530
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
625
531
|
"""
|
626
532
|
return pulumi.get(self, "system_tags")
|
627
533
|
|
@@ -629,7 +535,7 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
629
535
|
@pulumi.getter(name="timeCreated")
|
630
536
|
def time_created(self) -> pulumi.Output[_builtins.str]:
|
631
537
|
"""
|
632
|
-
The time the
|
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`
|
633
539
|
"""
|
634
540
|
return pulumi.get(self, "time_created")
|
635
541
|
|
@@ -637,7 +543,7 @@ class AiPrivateEndpoint(pulumi.CustomResource):
|
|
637
543
|
@pulumi.getter(name="timeUpdated")
|
638
544
|
def time_updated(self) -> pulumi.Output[_builtins.str]:
|
639
545
|
"""
|
640
|
-
The time the
|
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`
|
641
547
|
"""
|
642
548
|
return pulumi.get(self, "time_updated")
|
643
549
|
|