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/oci/outputs.py
CHANGED
@@ -16,11 +16,24 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'ApiPlatformApiPlatformInstanceIdcsApp',
|
20
|
+
'ApiPlatformApiPlatformInstanceUri',
|
19
21
|
'ApiaccesscontrolPrivilegedApiControlPrivilegedOperationList',
|
20
22
|
'ApiaccesscontrolPrivilegedApiRequestApproverDetail',
|
21
23
|
'ApiaccesscontrolPrivilegedApiRequestPrivilegedOperationList',
|
22
24
|
'DbmulticloudMultiCloudResourceDiscoveryResource',
|
23
25
|
'DbmulticloudOracleDbAzureConnectorArcAgentNode',
|
26
|
+
'ManagedKafkaKafkaClusterAccessSubnet',
|
27
|
+
'ManagedKafkaKafkaClusterBrokerShape',
|
28
|
+
'ManagedKafkaKafkaClusterConfigLatestConfig',
|
29
|
+
'ManagedKafkaKafkaClusterKafkaBootstrapUrl',
|
30
|
+
'GetApiPlatformApiPlatformInstanceIdcsAppResult',
|
31
|
+
'GetApiPlatformApiPlatformInstanceUriResult',
|
32
|
+
'GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionResult',
|
33
|
+
'GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemResult',
|
34
|
+
'GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemIdcsAppResult',
|
35
|
+
'GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemUriResult',
|
36
|
+
'GetApiPlatformApiPlatformInstancesFilterResult',
|
24
37
|
'GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionResult',
|
25
38
|
'GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemResult',
|
26
39
|
'GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadataResult',
|
@@ -65,6 +78,23 @@ __all__ = [
|
|
65
78
|
'GetDbmulticloudOracleDbAzureVaultsFilterResult',
|
66
79
|
'GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionResult',
|
67
80
|
'GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemResult',
|
81
|
+
'GetManagedKafkaKafkaClusterAccessSubnetResult',
|
82
|
+
'GetManagedKafkaKafkaClusterBrokerShapeResult',
|
83
|
+
'GetManagedKafkaKafkaClusterConfigLatestConfigResult',
|
84
|
+
'GetManagedKafkaKafkaClusterConfigVersionsFilterResult',
|
85
|
+
'GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionResult',
|
86
|
+
'GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult',
|
87
|
+
'GetManagedKafkaKafkaClusterConfigsFilterResult',
|
88
|
+
'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionResult',
|
89
|
+
'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult',
|
90
|
+
'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult',
|
91
|
+
'GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult',
|
92
|
+
'GetManagedKafkaKafkaClustersFilterResult',
|
93
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionResult',
|
94
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult',
|
95
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult',
|
96
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult',
|
97
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult',
|
68
98
|
'GetWlmsManagedInstanceConfigurationResult',
|
69
99
|
'GetWlmsManagedInstanceScanResultsFilterResult',
|
70
100
|
'GetWlmsManagedInstanceScanResultsScanResultCollectionResult',
|
@@ -106,6 +136,75 @@ __all__ = [
|
|
106
136
|
'GetWlmsWlsDomainsWlsDomainCollectionItemConfigurationResult',
|
107
137
|
]
|
108
138
|
|
139
|
+
@pulumi.output_type
|
140
|
+
class ApiPlatformApiPlatformInstanceIdcsApp(dict):
|
141
|
+
def __init__(__self__, *,
|
142
|
+
url: Optional[_builtins.str] = None):
|
143
|
+
"""
|
144
|
+
:param _builtins.str url: IDCS URL of the app
|
145
|
+
"""
|
146
|
+
if url is not None:
|
147
|
+
pulumi.set(__self__, "url", url)
|
148
|
+
|
149
|
+
@_builtins.property
|
150
|
+
@pulumi.getter
|
151
|
+
def url(self) -> Optional[_builtins.str]:
|
152
|
+
"""
|
153
|
+
IDCS URL of the app
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "url")
|
156
|
+
|
157
|
+
|
158
|
+
@pulumi.output_type
|
159
|
+
class ApiPlatformApiPlatformInstanceUri(dict):
|
160
|
+
@staticmethod
|
161
|
+
def __key_warning(key: str):
|
162
|
+
suggest = None
|
163
|
+
if key == "developersPortalUri":
|
164
|
+
suggest = "developers_portal_uri"
|
165
|
+
elif key == "managementPortalUri":
|
166
|
+
suggest = "management_portal_uri"
|
167
|
+
|
168
|
+
if suggest:
|
169
|
+
pulumi.log.warn(f"Key '{key}' not found in ApiPlatformApiPlatformInstanceUri. Access the value via the '{suggest}' property getter instead.")
|
170
|
+
|
171
|
+
def __getitem__(self, key: str) -> Any:
|
172
|
+
ApiPlatformApiPlatformInstanceUri.__key_warning(key)
|
173
|
+
return super().__getitem__(key)
|
174
|
+
|
175
|
+
def get(self, key: str, default = None) -> Any:
|
176
|
+
ApiPlatformApiPlatformInstanceUri.__key_warning(key)
|
177
|
+
return super().get(key, default)
|
178
|
+
|
179
|
+
def __init__(__self__, *,
|
180
|
+
developers_portal_uri: Optional[_builtins.str] = None,
|
181
|
+
management_portal_uri: Optional[_builtins.str] = None):
|
182
|
+
"""
|
183
|
+
:param _builtins.str developers_portal_uri: Developer's Portal URI of the instance (/developers)
|
184
|
+
:param _builtins.str management_portal_uri: Management Portal URI of the instance (/apiplatform)
|
185
|
+
"""
|
186
|
+
if developers_portal_uri is not None:
|
187
|
+
pulumi.set(__self__, "developers_portal_uri", developers_portal_uri)
|
188
|
+
if management_portal_uri is not None:
|
189
|
+
pulumi.set(__self__, "management_portal_uri", management_portal_uri)
|
190
|
+
|
191
|
+
@_builtins.property
|
192
|
+
@pulumi.getter(name="developersPortalUri")
|
193
|
+
def developers_portal_uri(self) -> Optional[_builtins.str]:
|
194
|
+
"""
|
195
|
+
Developer's Portal URI of the instance (/developers)
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "developers_portal_uri")
|
198
|
+
|
199
|
+
@_builtins.property
|
200
|
+
@pulumi.getter(name="managementPortalUri")
|
201
|
+
def management_portal_uri(self) -> Optional[_builtins.str]:
|
202
|
+
"""
|
203
|
+
Management Portal URI of the instance (/apiplatform)
|
204
|
+
"""
|
205
|
+
return pulumi.get(self, "management_portal_uri")
|
206
|
+
|
207
|
+
|
109
208
|
@pulumi.output_type
|
110
209
|
class ApiaccesscontrolPrivilegedApiControlPrivilegedOperationList(dict):
|
111
210
|
@staticmethod
|
@@ -497,175 +596,332 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
|
|
497
596
|
|
498
597
|
|
499
598
|
@pulumi.output_type
|
500
|
-
class
|
599
|
+
class ManagedKafkaKafkaClusterAccessSubnet(dict):
|
501
600
|
def __init__(__self__, *,
|
502
|
-
|
601
|
+
subnets: Sequence[_builtins.str]):
|
503
602
|
"""
|
504
|
-
:param Sequence[
|
603
|
+
:param Sequence[_builtins.str] subnets: (Updatable) Subnets OCIDs
|
505
604
|
"""
|
506
|
-
pulumi.set(__self__, "
|
605
|
+
pulumi.set(__self__, "subnets", subnets)
|
507
606
|
|
508
607
|
@_builtins.property
|
509
608
|
@pulumi.getter
|
510
|
-
def
|
609
|
+
def subnets(self) -> Sequence[_builtins.str]:
|
511
610
|
"""
|
512
|
-
|
611
|
+
(Updatable) Subnets OCIDs
|
513
612
|
"""
|
514
|
-
return pulumi.get(self, "
|
613
|
+
return pulumi.get(self, "subnets")
|
515
614
|
|
516
615
|
|
517
616
|
@pulumi.output_type
|
518
|
-
class
|
617
|
+
class ManagedKafkaKafkaClusterBrokerShape(dict):
|
618
|
+
@staticmethod
|
619
|
+
def __key_warning(key: str):
|
620
|
+
suggest = None
|
621
|
+
if key == "nodeCount":
|
622
|
+
suggest = "node_count"
|
623
|
+
elif key == "ocpuCount":
|
624
|
+
suggest = "ocpu_count"
|
625
|
+
elif key == "storageSizeInGbs":
|
626
|
+
suggest = "storage_size_in_gbs"
|
627
|
+
|
628
|
+
if suggest:
|
629
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedKafkaKafkaClusterBrokerShape. Access the value via the '{suggest}' property getter instead.")
|
630
|
+
|
631
|
+
def __getitem__(self, key: str) -> Any:
|
632
|
+
ManagedKafkaKafkaClusterBrokerShape.__key_warning(key)
|
633
|
+
return super().__getitem__(key)
|
634
|
+
|
635
|
+
def get(self, key: str, default = None) -> Any:
|
636
|
+
ManagedKafkaKafkaClusterBrokerShape.__key_warning(key)
|
637
|
+
return super().get(key, default)
|
638
|
+
|
519
639
|
def __init__(__self__, *,
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
freeform_tags: Mapping[str, _builtins.str],
|
524
|
-
system_tags: Mapping[str, _builtins.str]):
|
640
|
+
node_count: _builtins.int,
|
641
|
+
ocpu_count: _builtins.int,
|
642
|
+
storage_size_in_gbs: Optional[_builtins.int] = None):
|
525
643
|
"""
|
526
|
-
:param
|
527
|
-
:param
|
528
|
-
:param _builtins.
|
529
|
-
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
530
|
-
:param Mapping[str, _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"}`
|
644
|
+
:param _builtins.int node_count: (Updatable) Number of Kafka broker nodes
|
645
|
+
:param _builtins.int ocpu_count: (Updatable) Number of OCPUs per nodes
|
646
|
+
:param _builtins.int storage_size_in_gbs: (Updatable) Size of the storage per nodes.
|
531
647
|
"""
|
532
|
-
pulumi.set(__self__, "
|
533
|
-
pulumi.set(__self__, "
|
534
|
-
|
535
|
-
|
536
|
-
pulumi.set(__self__, "system_tags", system_tags)
|
648
|
+
pulumi.set(__self__, "node_count", node_count)
|
649
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
650
|
+
if storage_size_in_gbs is not None:
|
651
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
537
652
|
|
538
653
|
@_builtins.property
|
539
|
-
@pulumi.getter(name="
|
540
|
-
def
|
654
|
+
@pulumi.getter(name="nodeCount")
|
655
|
+
def node_count(self) -> _builtins.int:
|
541
656
|
"""
|
542
|
-
|
657
|
+
(Updatable) Number of Kafka broker nodes
|
543
658
|
"""
|
544
|
-
return pulumi.get(self, "
|
659
|
+
return pulumi.get(self, "node_count")
|
545
660
|
|
546
661
|
@_builtins.property
|
547
|
-
@pulumi.getter(name="
|
548
|
-
def
|
662
|
+
@pulumi.getter(name="ocpuCount")
|
663
|
+
def ocpu_count(self) -> _builtins.int:
|
549
664
|
"""
|
550
|
-
|
665
|
+
(Updatable) Number of OCPUs per nodes
|
551
666
|
"""
|
552
|
-
return pulumi.get(self, "
|
667
|
+
return pulumi.get(self, "ocpu_count")
|
553
668
|
|
554
669
|
@_builtins.property
|
555
|
-
@pulumi.getter(name="
|
556
|
-
def
|
670
|
+
@pulumi.getter(name="storageSizeInGbs")
|
671
|
+
def storage_size_in_gbs(self) -> Optional[_builtins.int]:
|
557
672
|
"""
|
558
|
-
|
673
|
+
(Updatable) Size of the storage per nodes.
|
559
674
|
"""
|
560
|
-
return pulumi.get(self, "
|
675
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
676
|
+
|
677
|
+
|
678
|
+
@pulumi.output_type
|
679
|
+
class ManagedKafkaKafkaClusterConfigLatestConfig(dict):
|
680
|
+
@staticmethod
|
681
|
+
def __key_warning(key: str):
|
682
|
+
suggest = None
|
683
|
+
if key == "configId":
|
684
|
+
suggest = "config_id"
|
685
|
+
elif key == "timeCreated":
|
686
|
+
suggest = "time_created"
|
687
|
+
elif key == "versionNumber":
|
688
|
+
suggest = "version_number"
|
689
|
+
|
690
|
+
if suggest:
|
691
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedKafkaKafkaClusterConfigLatestConfig. Access the value via the '{suggest}' property getter instead.")
|
692
|
+
|
693
|
+
def __getitem__(self, key: str) -> Any:
|
694
|
+
ManagedKafkaKafkaClusterConfigLatestConfig.__key_warning(key)
|
695
|
+
return super().__getitem__(key)
|
696
|
+
|
697
|
+
def get(self, key: str, default = None) -> Any:
|
698
|
+
ManagedKafkaKafkaClusterConfigLatestConfig.__key_warning(key)
|
699
|
+
return super().get(key, default)
|
700
|
+
|
701
|
+
def __init__(__self__, *,
|
702
|
+
properties: Mapping[str, _builtins.str],
|
703
|
+
config_id: Optional[_builtins.str] = None,
|
704
|
+
time_created: Optional[_builtins.str] = None,
|
705
|
+
version_number: Optional[_builtins.int] = None):
|
706
|
+
"""
|
707
|
+
:param Mapping[str, _builtins.str] properties: (Updatable) Cluster configuration key-value pairs
|
708
|
+
:param _builtins.str config_id: (Updatable) ID cluster configuration
|
709
|
+
:param _builtins.str time_created: (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
710
|
+
:param _builtins.int version_number: (Updatable) Version of the cluster configuration
|
711
|
+
|
712
|
+
|
713
|
+
** IMPORTANT **
|
714
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
715
|
+
"""
|
716
|
+
pulumi.set(__self__, "properties", properties)
|
717
|
+
if config_id is not None:
|
718
|
+
pulumi.set(__self__, "config_id", config_id)
|
719
|
+
if time_created is not None:
|
720
|
+
pulumi.set(__self__, "time_created", time_created)
|
721
|
+
if version_number is not None:
|
722
|
+
pulumi.set(__self__, "version_number", version_number)
|
561
723
|
|
562
724
|
@_builtins.property
|
563
|
-
@pulumi.getter
|
564
|
-
def
|
725
|
+
@pulumi.getter
|
726
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
565
727
|
"""
|
566
|
-
|
728
|
+
(Updatable) Cluster configuration key-value pairs
|
567
729
|
"""
|
568
|
-
return pulumi.get(self, "
|
730
|
+
return pulumi.get(self, "properties")
|
569
731
|
|
570
732
|
@_builtins.property
|
571
|
-
@pulumi.getter(name="
|
572
|
-
def
|
733
|
+
@pulumi.getter(name="configId")
|
734
|
+
def config_id(self) -> Optional[_builtins.str]:
|
573
735
|
"""
|
574
|
-
|
736
|
+
(Updatable) ID cluster configuration
|
575
737
|
"""
|
576
|
-
return pulumi.get(self, "
|
738
|
+
return pulumi.get(self, "config_id")
|
739
|
+
|
740
|
+
@_builtins.property
|
741
|
+
@pulumi.getter(name="timeCreated")
|
742
|
+
def time_created(self) -> Optional[_builtins.str]:
|
743
|
+
"""
|
744
|
+
(Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
745
|
+
"""
|
746
|
+
return pulumi.get(self, "time_created")
|
747
|
+
|
748
|
+
@_builtins.property
|
749
|
+
@pulumi.getter(name="versionNumber")
|
750
|
+
def version_number(self) -> Optional[_builtins.int]:
|
751
|
+
"""
|
752
|
+
(Updatable) Version of the cluster configuration
|
753
|
+
|
754
|
+
|
755
|
+
** IMPORTANT **
|
756
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
757
|
+
"""
|
758
|
+
return pulumi.get(self, "version_number")
|
577
759
|
|
578
760
|
|
579
761
|
@pulumi.output_type
|
580
|
-
class
|
762
|
+
class ManagedKafkaKafkaClusterKafkaBootstrapUrl(dict):
|
581
763
|
def __init__(__self__, *,
|
582
|
-
|
583
|
-
|
764
|
+
name: Optional[_builtins.str] = None,
|
765
|
+
url: Optional[_builtins.str] = None):
|
766
|
+
"""
|
767
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
768
|
+
:param _builtins.str url: Bootstrap URL
|
769
|
+
"""
|
770
|
+
if name is not None:
|
771
|
+
pulumi.set(__self__, "name", name)
|
772
|
+
if url is not None:
|
773
|
+
pulumi.set(__self__, "url", url)
|
774
|
+
|
775
|
+
@_builtins.property
|
776
|
+
@pulumi.getter
|
777
|
+
def name(self) -> Optional[_builtins.str]:
|
778
|
+
"""
|
779
|
+
Name of the Kafka listener providing this bootstrap URL
|
780
|
+
"""
|
781
|
+
return pulumi.get(self, "name")
|
782
|
+
|
783
|
+
@_builtins.property
|
784
|
+
@pulumi.getter
|
785
|
+
def url(self) -> Optional[_builtins.str]:
|
786
|
+
"""
|
787
|
+
Bootstrap URL
|
788
|
+
"""
|
789
|
+
return pulumi.get(self, "url")
|
790
|
+
|
791
|
+
|
792
|
+
@pulumi.output_type
|
793
|
+
class GetApiPlatformApiPlatformInstanceIdcsAppResult(dict):
|
794
|
+
def __init__(__self__, *,
|
795
|
+
url: _builtins.str):
|
796
|
+
"""
|
797
|
+
:param _builtins.str url: IDCS URL of the app
|
798
|
+
"""
|
799
|
+
pulumi.set(__self__, "url", url)
|
800
|
+
|
801
|
+
@_builtins.property
|
802
|
+
@pulumi.getter
|
803
|
+
def url(self) -> _builtins.str:
|
804
|
+
"""
|
805
|
+
IDCS URL of the app
|
806
|
+
"""
|
807
|
+
return pulumi.get(self, "url")
|
808
|
+
|
809
|
+
|
810
|
+
@pulumi.output_type
|
811
|
+
class GetApiPlatformApiPlatformInstanceUriResult(dict):
|
812
|
+
def __init__(__self__, *,
|
813
|
+
developers_portal_uri: _builtins.str,
|
814
|
+
management_portal_uri: _builtins.str):
|
815
|
+
"""
|
816
|
+
:param _builtins.str developers_portal_uri: Developer's Portal URI of the instance (/developers)
|
817
|
+
:param _builtins.str management_portal_uri: Management Portal URI of the instance (/apiplatform)
|
818
|
+
"""
|
819
|
+
pulumi.set(__self__, "developers_portal_uri", developers_portal_uri)
|
820
|
+
pulumi.set(__self__, "management_portal_uri", management_portal_uri)
|
821
|
+
|
822
|
+
@_builtins.property
|
823
|
+
@pulumi.getter(name="developersPortalUri")
|
824
|
+
def developers_portal_uri(self) -> _builtins.str:
|
825
|
+
"""
|
826
|
+
Developer's Portal URI of the instance (/developers)
|
827
|
+
"""
|
828
|
+
return pulumi.get(self, "developers_portal_uri")
|
829
|
+
|
830
|
+
@_builtins.property
|
831
|
+
@pulumi.getter(name="managementPortalUri")
|
832
|
+
def management_portal_uri(self) -> _builtins.str:
|
833
|
+
"""
|
834
|
+
Management Portal URI of the instance (/apiplatform)
|
835
|
+
"""
|
836
|
+
return pulumi.get(self, "management_portal_uri")
|
837
|
+
|
838
|
+
|
839
|
+
@pulumi.output_type
|
840
|
+
class GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionResult(dict):
|
841
|
+
def __init__(__self__, *,
|
842
|
+
items: Sequence['outputs.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemResult']):
|
843
|
+
pulumi.set(__self__, "items", items)
|
844
|
+
|
845
|
+
@_builtins.property
|
846
|
+
@pulumi.getter
|
847
|
+
def items(self) -> Sequence['outputs.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemResult']:
|
848
|
+
return pulumi.get(self, "items")
|
849
|
+
|
850
|
+
|
851
|
+
@pulumi.output_type
|
852
|
+
class GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemResult(dict):
|
853
|
+
def __init__(__self__, *,
|
854
|
+
compartment_id: _builtins.str,
|
584
855
|
defined_tags: Mapping[str, _builtins.str],
|
585
|
-
|
586
|
-
entity_type: _builtins.str,
|
856
|
+
description: _builtins.str,
|
587
857
|
freeform_tags: Mapping[str, _builtins.str],
|
588
858
|
id: _builtins.str,
|
859
|
+
idcs_apps: Sequence['outputs.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemIdcsAppResult'],
|
589
860
|
lifecycle_details: _builtins.str,
|
590
|
-
|
861
|
+
name: _builtins.str,
|
591
862
|
state: _builtins.str,
|
592
863
|
system_tags: Mapping[str, _builtins.str],
|
593
864
|
time_created: _builtins.str,
|
594
|
-
time_updated: _builtins.str
|
865
|
+
time_updated: _builtins.str,
|
866
|
+
uris: Sequence['outputs.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemUriResult']):
|
595
867
|
"""
|
596
|
-
:param _builtins.str
|
597
|
-
:param
|
598
|
-
:param
|
599
|
-
:param _builtins.str
|
600
|
-
:param _builtins.str
|
601
|
-
:param
|
602
|
-
:param _builtins.str
|
603
|
-
:param _builtins.str
|
604
|
-
:param _builtins.str service_name: The service Name to which the Api belongs to.
|
868
|
+
:param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
869
|
+
:param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
870
|
+
:param _builtins.str description: User-provided changeable and non-unique description of the instance
|
871
|
+
:param Mapping[str, _builtins.str] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
872
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance
|
873
|
+
:param Sequence['GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemIdcsAppArgs'] idcs_apps: IDCS app associated with the instance, that can be used to manage the roles of the users
|
874
|
+
:param _builtins.str lifecycle_details: A message that describes the current state of the instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state
|
875
|
+
:param _builtins.str name: A filter to return only resources that match the given name exactly
|
605
876
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
606
|
-
:param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace.
|
607
|
-
:param _builtins.str time_created: The date and time the
|
608
|
-
:param _builtins.str time_updated: The date and time the
|
877
|
+
:param Mapping[str, _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"}`
|
878
|
+
:param _builtins.str time_created: The date and time the instance was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339) Example: `2016-08-25T21:10:29.600Z`
|
879
|
+
:param _builtins.str time_updated: The date and time the instance was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339) Example: `2016-08-25T21:10:29.600Z`
|
880
|
+
:param Sequence['GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemUriArgs'] uris: Service URIs pertaining to the instance
|
609
881
|
"""
|
610
|
-
pulumi.set(__self__, "
|
611
|
-
pulumi.set(__self__, "attributes", attributes)
|
882
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
612
883
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
613
|
-
pulumi.set(__self__, "
|
614
|
-
pulumi.set(__self__, "entity_type", entity_type)
|
884
|
+
pulumi.set(__self__, "description", description)
|
615
885
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
616
886
|
pulumi.set(__self__, "id", id)
|
887
|
+
pulumi.set(__self__, "idcs_apps", idcs_apps)
|
617
888
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
618
|
-
pulumi.set(__self__, "
|
889
|
+
pulumi.set(__self__, "name", name)
|
619
890
|
pulumi.set(__self__, "state", state)
|
620
891
|
pulumi.set(__self__, "system_tags", system_tags)
|
621
892
|
pulumi.set(__self__, "time_created", time_created)
|
622
893
|
pulumi.set(__self__, "time_updated", time_updated)
|
894
|
+
pulumi.set(__self__, "uris", uris)
|
623
895
|
|
624
896
|
@_builtins.property
|
625
|
-
@pulumi.getter(name="
|
626
|
-
def
|
627
|
-
"""
|
628
|
-
The name of the api to execute the api request.
|
629
|
-
"""
|
630
|
-
return pulumi.get(self, "api_name")
|
631
|
-
|
632
|
-
@_builtins.property
|
633
|
-
@pulumi.getter
|
634
|
-
def attributes(self) -> Sequence[_builtins.str]:
|
897
|
+
@pulumi.getter(name="compartmentId")
|
898
|
+
def compartment_id(self) -> _builtins.str:
|
635
899
|
"""
|
636
|
-
|
900
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
637
901
|
"""
|
638
|
-
return pulumi.get(self, "
|
902
|
+
return pulumi.get(self, "compartment_id")
|
639
903
|
|
640
904
|
@_builtins.property
|
641
905
|
@pulumi.getter(name="definedTags")
|
642
906
|
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
643
907
|
"""
|
644
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace.
|
908
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
645
909
|
"""
|
646
910
|
return pulumi.get(self, "defined_tags")
|
647
911
|
|
648
912
|
@_builtins.property
|
649
|
-
@pulumi.getter
|
650
|
-
def
|
651
|
-
"""
|
652
|
-
A filter to return only resources that match the given display name exactly.
|
653
|
-
"""
|
654
|
-
return pulumi.get(self, "display_name")
|
655
|
-
|
656
|
-
@_builtins.property
|
657
|
-
@pulumi.getter(name="entityType")
|
658
|
-
def entity_type(self) -> _builtins.str:
|
913
|
+
@pulumi.getter
|
914
|
+
def description(self) -> _builtins.str:
|
659
915
|
"""
|
660
|
-
|
916
|
+
User-provided changeable and non-unique description of the instance
|
661
917
|
"""
|
662
|
-
return pulumi.get(self, "
|
918
|
+
return pulumi.get(self, "description")
|
663
919
|
|
664
920
|
@_builtins.property
|
665
921
|
@pulumi.getter(name="freeformTags")
|
666
922
|
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
667
923
|
"""
|
668
|
-
|
924
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
669
925
|
"""
|
670
926
|
return pulumi.get(self, "freeform_tags")
|
671
927
|
|
@@ -673,25 +929,33 @@ class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollecti
|
|
673
929
|
@pulumi.getter
|
674
930
|
def id(self) -> _builtins.str:
|
675
931
|
"""
|
676
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the
|
932
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance
|
677
933
|
"""
|
678
934
|
return pulumi.get(self, "id")
|
679
935
|
|
936
|
+
@_builtins.property
|
937
|
+
@pulumi.getter(name="idcsApps")
|
938
|
+
def idcs_apps(self) -> Sequence['outputs.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemIdcsAppResult']:
|
939
|
+
"""
|
940
|
+
IDCS app associated with the instance, that can be used to manage the roles of the users
|
941
|
+
"""
|
942
|
+
return pulumi.get(self, "idcs_apps")
|
943
|
+
|
680
944
|
@_builtins.property
|
681
945
|
@pulumi.getter(name="lifecycleDetails")
|
682
946
|
def lifecycle_details(self) -> _builtins.str:
|
683
947
|
"""
|
684
|
-
A message that describes the current state of the
|
948
|
+
A message that describes the current state of the instance in more detail. For example, can be used to provide actionable information for a resource in the Failed state
|
685
949
|
"""
|
686
950
|
return pulumi.get(self, "lifecycle_details")
|
687
951
|
|
688
952
|
@_builtins.property
|
689
|
-
@pulumi.getter
|
690
|
-
def
|
953
|
+
@pulumi.getter
|
954
|
+
def name(self) -> _builtins.str:
|
691
955
|
"""
|
692
|
-
|
956
|
+
A filter to return only resources that match the given name exactly
|
693
957
|
"""
|
694
|
-
return pulumi.get(self, "
|
958
|
+
return pulumi.get(self, "name")
|
695
959
|
|
696
960
|
@_builtins.property
|
697
961
|
@pulumi.getter
|
@@ -705,7 +969,7 @@ class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollecti
|
|
705
969
|
@pulumi.getter(name="systemTags")
|
706
970
|
def system_tags(self) -> Mapping[str, _builtins.str]:
|
707
971
|
"""
|
708
|
-
System tags for this resource. Each key is predefined and scoped to a namespace.
|
972
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
709
973
|
"""
|
710
974
|
return pulumi.get(self, "system_tags")
|
711
975
|
|
@@ -713,7 +977,7 @@ class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollecti
|
|
713
977
|
@pulumi.getter(name="timeCreated")
|
714
978
|
def time_created(self) -> _builtins.str:
|
715
979
|
"""
|
716
|
-
The date and time the
|
980
|
+
The date and time the instance was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339) Example: `2016-08-25T21:10:29.600Z`
|
717
981
|
"""
|
718
982
|
return pulumi.get(self, "time_created")
|
719
983
|
|
@@ -721,17 +985,75 @@ class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollecti
|
|
721
985
|
@pulumi.getter(name="timeUpdated")
|
722
986
|
def time_updated(self) -> _builtins.str:
|
723
987
|
"""
|
724
|
-
The date and time the
|
988
|
+
The date and time the instance was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339) Example: `2016-08-25T21:10:29.600Z`
|
725
989
|
"""
|
726
990
|
return pulumi.get(self, "time_updated")
|
727
991
|
|
992
|
+
@_builtins.property
|
993
|
+
@pulumi.getter
|
994
|
+
def uris(self) -> Sequence['outputs.GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemUriResult']:
|
995
|
+
"""
|
996
|
+
Service URIs pertaining to the instance
|
997
|
+
"""
|
998
|
+
return pulumi.get(self, "uris")
|
999
|
+
|
728
1000
|
|
729
1001
|
@pulumi.output_type
|
730
|
-
class
|
1002
|
+
class GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemIdcsAppResult(dict):
|
1003
|
+
def __init__(__self__, *,
|
1004
|
+
url: _builtins.str):
|
1005
|
+
"""
|
1006
|
+
:param _builtins.str url: IDCS URL of the app
|
1007
|
+
"""
|
1008
|
+
pulumi.set(__self__, "url", url)
|
1009
|
+
|
1010
|
+
@_builtins.property
|
1011
|
+
@pulumi.getter
|
1012
|
+
def url(self) -> _builtins.str:
|
1013
|
+
"""
|
1014
|
+
IDCS URL of the app
|
1015
|
+
"""
|
1016
|
+
return pulumi.get(self, "url")
|
1017
|
+
|
1018
|
+
|
1019
|
+
@pulumi.output_type
|
1020
|
+
class GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionItemUriResult(dict):
|
1021
|
+
def __init__(__self__, *,
|
1022
|
+
developers_portal_uri: _builtins.str,
|
1023
|
+
management_portal_uri: _builtins.str):
|
1024
|
+
"""
|
1025
|
+
:param _builtins.str developers_portal_uri: Developer's Portal URI of the instance (/developers)
|
1026
|
+
:param _builtins.str management_portal_uri: Management Portal URI of the instance (/apiplatform)
|
1027
|
+
"""
|
1028
|
+
pulumi.set(__self__, "developers_portal_uri", developers_portal_uri)
|
1029
|
+
pulumi.set(__self__, "management_portal_uri", management_portal_uri)
|
1030
|
+
|
1031
|
+
@_builtins.property
|
1032
|
+
@pulumi.getter(name="developersPortalUri")
|
1033
|
+
def developers_portal_uri(self) -> _builtins.str:
|
1034
|
+
"""
|
1035
|
+
Developer's Portal URI of the instance (/developers)
|
1036
|
+
"""
|
1037
|
+
return pulumi.get(self, "developers_portal_uri")
|
1038
|
+
|
1039
|
+
@_builtins.property
|
1040
|
+
@pulumi.getter(name="managementPortalUri")
|
1041
|
+
def management_portal_uri(self) -> _builtins.str:
|
1042
|
+
"""
|
1043
|
+
Management Portal URI of the instance (/apiplatform)
|
1044
|
+
"""
|
1045
|
+
return pulumi.get(self, "management_portal_uri")
|
1046
|
+
|
1047
|
+
|
1048
|
+
@pulumi.output_type
|
1049
|
+
class GetApiPlatformApiPlatformInstancesFilterResult(dict):
|
731
1050
|
def __init__(__self__, *,
|
732
1051
|
name: _builtins.str,
|
733
1052
|
values: Sequence[_builtins.str],
|
734
1053
|
regex: Optional[_builtins.bool] = None):
|
1054
|
+
"""
|
1055
|
+
:param _builtins.str name: A filter to return only resources that match the given name exactly
|
1056
|
+
"""
|
735
1057
|
pulumi.set(__self__, "name", name)
|
736
1058
|
pulumi.set(__self__, "values", values)
|
737
1059
|
if regex is not None:
|
@@ -740,6 +1062,9 @@ class GetApiaccesscontrolApiMetadataByEntityTypesFilterResult(dict):
|
|
740
1062
|
@_builtins.property
|
741
1063
|
@pulumi.getter
|
742
1064
|
def name(self) -> _builtins.str:
|
1065
|
+
"""
|
1066
|
+
A filter to return only resources that match the given name exactly
|
1067
|
+
"""
|
743
1068
|
return pulumi.get(self, "name")
|
744
1069
|
|
745
1070
|
@_builtins.property
|
@@ -754,66 +1079,128 @@ class GetApiaccesscontrolApiMetadataByEntityTypesFilterResult(dict):
|
|
754
1079
|
|
755
1080
|
|
756
1081
|
@pulumi.output_type
|
757
|
-
class
|
1082
|
+
class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionResult(dict):
|
758
1083
|
def __init__(__self__, *,
|
759
|
-
items: Sequence['outputs.
|
1084
|
+
items: Sequence['outputs.GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemResult']):
|
1085
|
+
"""
|
1086
|
+
:param Sequence['GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemArgs'] items: List of apiMetadataByEntityTypeSummary.
|
1087
|
+
"""
|
760
1088
|
pulumi.set(__self__, "items", items)
|
761
1089
|
|
762
1090
|
@_builtins.property
|
763
1091
|
@pulumi.getter
|
764
|
-
def items(self) -> Sequence['outputs.
|
1092
|
+
def items(self) -> Sequence['outputs.GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemResult']:
|
1093
|
+
"""
|
1094
|
+
List of apiMetadataByEntityTypeSummary.
|
1095
|
+
"""
|
765
1096
|
return pulumi.get(self, "items")
|
766
1097
|
|
767
1098
|
|
768
1099
|
@pulumi.output_type
|
769
|
-
class
|
1100
|
+
class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemResult(dict):
|
1101
|
+
def __init__(__self__, *,
|
1102
|
+
api_metadatas: Sequence['outputs.GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadataResult'],
|
1103
|
+
defined_tags: Mapping[str, _builtins.str],
|
1104
|
+
entity_type: _builtins.str,
|
1105
|
+
freeform_tags: Mapping[str, _builtins.str],
|
1106
|
+
system_tags: Mapping[str, _builtins.str]):
|
1107
|
+
"""
|
1108
|
+
:param Sequence['GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadataArgs'] api_metadatas: List of apiMetadataSummary.
|
1109
|
+
:param Mapping[str, _builtins.str] defined_tags: 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"}`
|
1110
|
+
:param _builtins.str entity_type: The entity Type to which the Api belongs to.
|
1111
|
+
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
1112
|
+
:param Mapping[str, _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"}`
|
1113
|
+
"""
|
1114
|
+
pulumi.set(__self__, "api_metadatas", api_metadatas)
|
1115
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
1116
|
+
pulumi.set(__self__, "entity_type", entity_type)
|
1117
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1118
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
1119
|
+
|
1120
|
+
@_builtins.property
|
1121
|
+
@pulumi.getter(name="apiMetadatas")
|
1122
|
+
def api_metadatas(self) -> Sequence['outputs.GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadataResult']:
|
1123
|
+
"""
|
1124
|
+
List of apiMetadataSummary.
|
1125
|
+
"""
|
1126
|
+
return pulumi.get(self, "api_metadatas")
|
1127
|
+
|
1128
|
+
@_builtins.property
|
1129
|
+
@pulumi.getter(name="definedTags")
|
1130
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
1131
|
+
"""
|
1132
|
+
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"}`
|
1133
|
+
"""
|
1134
|
+
return pulumi.get(self, "defined_tags")
|
1135
|
+
|
1136
|
+
@_builtins.property
|
1137
|
+
@pulumi.getter(name="entityType")
|
1138
|
+
def entity_type(self) -> _builtins.str:
|
1139
|
+
"""
|
1140
|
+
The entity Type to which the Api belongs to.
|
1141
|
+
"""
|
1142
|
+
return pulumi.get(self, "entity_type")
|
1143
|
+
|
1144
|
+
@_builtins.property
|
1145
|
+
@pulumi.getter(name="freeformTags")
|
1146
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
1147
|
+
"""
|
1148
|
+
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"}`
|
1149
|
+
"""
|
1150
|
+
return pulumi.get(self, "freeform_tags")
|
1151
|
+
|
1152
|
+
@_builtins.property
|
1153
|
+
@pulumi.getter(name="systemTags")
|
1154
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
1155
|
+
"""
|
1156
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1157
|
+
"""
|
1158
|
+
return pulumi.get(self, "system_tags")
|
1159
|
+
|
1160
|
+
|
1161
|
+
@pulumi.output_type
|
1162
|
+
class GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionItemApiMetadataResult(dict):
|
770
1163
|
def __init__(__self__, *,
|
771
1164
|
api_name: _builtins.str,
|
1165
|
+
attributes: Sequence[_builtins.str],
|
772
1166
|
defined_tags: Mapping[str, _builtins.str],
|
773
1167
|
display_name: _builtins.str,
|
774
1168
|
entity_type: _builtins.str,
|
775
|
-
fields: Sequence[_builtins.str],
|
776
1169
|
freeform_tags: Mapping[str, _builtins.str],
|
777
1170
|
id: _builtins.str,
|
778
1171
|
lifecycle_details: _builtins.str,
|
779
|
-
path: _builtins.str,
|
780
1172
|
service_name: _builtins.str,
|
781
1173
|
state: _builtins.str,
|
782
1174
|
system_tags: Mapping[str, _builtins.str],
|
783
1175
|
time_created: _builtins.str,
|
784
|
-
time_deleted: _builtins.str,
|
785
1176
|
time_updated: _builtins.str):
|
786
1177
|
"""
|
787
1178
|
:param _builtins.str api_name: The name of the api to execute the api request.
|
1179
|
+
:param Sequence[_builtins.str] attributes: List of the fields that is use while calling post or put for the data.
|
788
1180
|
:param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
789
1181
|
:param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
790
|
-
:param _builtins.str entity_type:
|
791
|
-
:param Sequence[_builtins.str] fields: List of the fields that is use while calling post or put for the data.
|
1182
|
+
:param _builtins.str entity_type: The entity Type to which the Api belongs to.
|
792
1183
|
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
793
1184
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ApiDetail.
|
794
1185
|
:param _builtins.str lifecycle_details: A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
795
|
-
:param _builtins.str
|
796
|
-
:param _builtins.str service_name: The service Name to which the api belongs to.
|
1186
|
+
:param _builtins.str service_name: The service Name to which the Api belongs to.
|
797
1187
|
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
798
1188
|
:param Mapping[str, _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"}`
|
799
|
-
:param _builtins.str time_created: The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
800
|
-
:param _builtins.str time_deleted: The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1189
|
+
:param _builtins.str time_created: The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
801
1190
|
:param _builtins.str time_updated: The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
802
1191
|
"""
|
803
1192
|
pulumi.set(__self__, "api_name", api_name)
|
1193
|
+
pulumi.set(__self__, "attributes", attributes)
|
804
1194
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
805
1195
|
pulumi.set(__self__, "display_name", display_name)
|
806
1196
|
pulumi.set(__self__, "entity_type", entity_type)
|
807
|
-
pulumi.set(__self__, "fields", fields)
|
808
1197
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
809
1198
|
pulumi.set(__self__, "id", id)
|
810
1199
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
811
|
-
pulumi.set(__self__, "path", path)
|
812
1200
|
pulumi.set(__self__, "service_name", service_name)
|
813
1201
|
pulumi.set(__self__, "state", state)
|
814
1202
|
pulumi.set(__self__, "system_tags", system_tags)
|
815
1203
|
pulumi.set(__self__, "time_created", time_created)
|
816
|
-
pulumi.set(__self__, "time_deleted", time_deleted)
|
817
1204
|
pulumi.set(__self__, "time_updated", time_updated)
|
818
1205
|
|
819
1206
|
@_builtins.property
|
@@ -824,6 +1211,14 @@ class GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult(dict):
|
|
824
1211
|
"""
|
825
1212
|
return pulumi.get(self, "api_name")
|
826
1213
|
|
1214
|
+
@_builtins.property
|
1215
|
+
@pulumi.getter
|
1216
|
+
def attributes(self) -> Sequence[_builtins.str]:
|
1217
|
+
"""
|
1218
|
+
List of the fields that is use while calling post or put for the data.
|
1219
|
+
"""
|
1220
|
+
return pulumi.get(self, "attributes")
|
1221
|
+
|
827
1222
|
@_builtins.property
|
828
1223
|
@pulumi.getter(name="definedTags")
|
829
1224
|
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
@@ -844,18 +1239,10 @@ class GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult(dict):
|
|
844
1239
|
@pulumi.getter(name="entityType")
|
845
1240
|
def entity_type(self) -> _builtins.str:
|
846
1241
|
"""
|
847
|
-
|
1242
|
+
The entity Type to which the Api belongs to.
|
848
1243
|
"""
|
849
1244
|
return pulumi.get(self, "entity_type")
|
850
1245
|
|
851
|
-
@_builtins.property
|
852
|
-
@pulumi.getter
|
853
|
-
def fields(self) -> Sequence[_builtins.str]:
|
854
|
-
"""
|
855
|
-
List of the fields that is use while calling post or put for the data.
|
856
|
-
"""
|
857
|
-
return pulumi.get(self, "fields")
|
858
|
-
|
859
1246
|
@_builtins.property
|
860
1247
|
@pulumi.getter(name="freeformTags")
|
861
1248
|
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
@@ -880,19 +1267,11 @@ class GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult(dict):
|
|
880
1267
|
"""
|
881
1268
|
return pulumi.get(self, "lifecycle_details")
|
882
1269
|
|
883
|
-
@_builtins.property
|
884
|
-
@pulumi.getter
|
885
|
-
def path(self) -> _builtins.str:
|
886
|
-
"""
|
887
|
-
rest path of the api.
|
888
|
-
"""
|
889
|
-
return pulumi.get(self, "path")
|
890
|
-
|
891
1270
|
@_builtins.property
|
892
1271
|
@pulumi.getter(name="serviceName")
|
893
1272
|
def service_name(self) -> _builtins.str:
|
894
1273
|
"""
|
895
|
-
The service Name to which the
|
1274
|
+
The service Name to which the Api belongs to.
|
896
1275
|
"""
|
897
1276
|
return pulumi.get(self, "service_name")
|
898
1277
|
|
@@ -916,18 +1295,10 @@ class GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult(dict):
|
|
916
1295
|
@pulumi.getter(name="timeCreated")
|
917
1296
|
def time_created(self) -> _builtins.str:
|
918
1297
|
"""
|
919
|
-
The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
1298
|
+
The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
920
1299
|
"""
|
921
1300
|
return pulumi.get(self, "time_created")
|
922
1301
|
|
923
|
-
@_builtins.property
|
924
|
-
@pulumi.getter(name="timeDeleted")
|
925
|
-
def time_deleted(self) -> _builtins.str:
|
926
|
-
"""
|
927
|
-
The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
928
|
-
"""
|
929
|
-
return pulumi.get(self, "time_deleted")
|
930
|
-
|
931
1302
|
@_builtins.property
|
932
1303
|
@pulumi.getter(name="timeUpdated")
|
933
1304
|
def time_updated(self) -> _builtins.str:
|
@@ -938,7 +1309,7 @@ class GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult(dict):
|
|
938
1309
|
|
939
1310
|
|
940
1311
|
@pulumi.output_type
|
941
|
-
class
|
1312
|
+
class GetApiaccesscontrolApiMetadataByEntityTypesFilterResult(dict):
|
942
1313
|
def __init__(__self__, *,
|
943
1314
|
name: _builtins.str,
|
944
1315
|
values: Sequence[_builtins.str],
|
@@ -965,44 +1336,255 @@ class GetApiaccesscontrolApiMetadatasFilterResult(dict):
|
|
965
1336
|
|
966
1337
|
|
967
1338
|
@pulumi.output_type
|
968
|
-
class
|
1339
|
+
class GetApiaccesscontrolApiMetadatasApiMetadataCollectionResult(dict):
|
1340
|
+
def __init__(__self__, *,
|
1341
|
+
items: Sequence['outputs.GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult']):
|
1342
|
+
pulumi.set(__self__, "items", items)
|
1343
|
+
|
1344
|
+
@_builtins.property
|
1345
|
+
@pulumi.getter
|
1346
|
+
def items(self) -> Sequence['outputs.GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult']:
|
1347
|
+
return pulumi.get(self, "items")
|
1348
|
+
|
1349
|
+
|
1350
|
+
@pulumi.output_type
|
1351
|
+
class GetApiaccesscontrolApiMetadatasApiMetadataCollectionItemResult(dict):
|
969
1352
|
def __init__(__self__, *,
|
970
1353
|
api_name: _builtins.str,
|
971
|
-
|
972
|
-
|
1354
|
+
defined_tags: Mapping[str, _builtins.str],
|
1355
|
+
display_name: _builtins.str,
|
1356
|
+
entity_type: _builtins.str,
|
1357
|
+
fields: Sequence[_builtins.str],
|
1358
|
+
freeform_tags: Mapping[str, _builtins.str],
|
1359
|
+
id: _builtins.str,
|
1360
|
+
lifecycle_details: _builtins.str,
|
1361
|
+
path: _builtins.str,
|
1362
|
+
service_name: _builtins.str,
|
1363
|
+
state: _builtins.str,
|
1364
|
+
system_tags: Mapping[str, _builtins.str],
|
1365
|
+
time_created: _builtins.str,
|
1366
|
+
time_deleted: _builtins.str,
|
1367
|
+
time_updated: _builtins.str):
|
973
1368
|
"""
|
974
|
-
:param _builtins.str api_name: name of the api
|
975
|
-
:param
|
976
|
-
:param _builtins.str
|
1369
|
+
:param _builtins.str api_name: The name of the api to execute the api request.
|
1370
|
+
:param Mapping[str, _builtins.str] defined_tags: 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"}`
|
1371
|
+
:param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
1372
|
+
:param _builtins.str entity_type: ResourceType to which the apiMetadata belongs to.
|
1373
|
+
:param Sequence[_builtins.str] fields: List of the fields that is use while calling post or put for the data.
|
1374
|
+
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
1375
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ApiDetail.
|
1376
|
+
:param _builtins.str lifecycle_details: A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
1377
|
+
:param _builtins.str path: rest path of the api.
|
1378
|
+
:param _builtins.str service_name: The service Name to which the api belongs to.
|
1379
|
+
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
1380
|
+
:param Mapping[str, _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"}`
|
1381
|
+
:param _builtins.str time_created: The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1382
|
+
:param _builtins.str time_deleted: The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1383
|
+
:param _builtins.str time_updated: The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
977
1384
|
"""
|
978
1385
|
pulumi.set(__self__, "api_name", api_name)
|
979
|
-
pulumi.set(__self__, "
|
1386
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
1387
|
+
pulumi.set(__self__, "display_name", display_name)
|
980
1388
|
pulumi.set(__self__, "entity_type", entity_type)
|
1389
|
+
pulumi.set(__self__, "fields", fields)
|
1390
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
1391
|
+
pulumi.set(__self__, "id", id)
|
1392
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
1393
|
+
pulumi.set(__self__, "path", path)
|
1394
|
+
pulumi.set(__self__, "service_name", service_name)
|
1395
|
+
pulumi.set(__self__, "state", state)
|
1396
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
1397
|
+
pulumi.set(__self__, "time_created", time_created)
|
1398
|
+
pulumi.set(__self__, "time_deleted", time_deleted)
|
1399
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
981
1400
|
|
982
1401
|
@_builtins.property
|
983
1402
|
@pulumi.getter(name="apiName")
|
984
1403
|
def api_name(self) -> _builtins.str:
|
985
1404
|
"""
|
986
|
-
name of the api
|
1405
|
+
The name of the api to execute the api request.
|
987
1406
|
"""
|
988
1407
|
return pulumi.get(self, "api_name")
|
989
1408
|
|
990
1409
|
@_builtins.property
|
991
|
-
@pulumi.getter(name="
|
992
|
-
def
|
1410
|
+
@pulumi.getter(name="definedTags")
|
1411
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
993
1412
|
"""
|
994
|
-
|
1413
|
+
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"}`
|
995
1414
|
"""
|
996
|
-
return pulumi.get(self, "
|
1415
|
+
return pulumi.get(self, "defined_tags")
|
997
1416
|
|
998
1417
|
@_builtins.property
|
999
|
-
@pulumi.getter(name="
|
1000
|
-
def
|
1418
|
+
@pulumi.getter(name="displayName")
|
1419
|
+
def display_name(self) -> _builtins.str:
|
1001
1420
|
"""
|
1002
|
-
|
1421
|
+
A filter to return only resources that match the given display name exactly.
|
1003
1422
|
"""
|
1004
|
-
return pulumi.get(self, "
|
1005
|
-
|
1423
|
+
return pulumi.get(self, "display_name")
|
1424
|
+
|
1425
|
+
@_builtins.property
|
1426
|
+
@pulumi.getter(name="entityType")
|
1427
|
+
def entity_type(self) -> _builtins.str:
|
1428
|
+
"""
|
1429
|
+
ResourceType to which the apiMetadata belongs to.
|
1430
|
+
"""
|
1431
|
+
return pulumi.get(self, "entity_type")
|
1432
|
+
|
1433
|
+
@_builtins.property
|
1434
|
+
@pulumi.getter
|
1435
|
+
def fields(self) -> Sequence[_builtins.str]:
|
1436
|
+
"""
|
1437
|
+
List of the fields that is use while calling post or put for the data.
|
1438
|
+
"""
|
1439
|
+
return pulumi.get(self, "fields")
|
1440
|
+
|
1441
|
+
@_builtins.property
|
1442
|
+
@pulumi.getter(name="freeformTags")
|
1443
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
1444
|
+
"""
|
1445
|
+
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"}`
|
1446
|
+
"""
|
1447
|
+
return pulumi.get(self, "freeform_tags")
|
1448
|
+
|
1449
|
+
@_builtins.property
|
1450
|
+
@pulumi.getter
|
1451
|
+
def id(self) -> _builtins.str:
|
1452
|
+
"""
|
1453
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the ApiDetail.
|
1454
|
+
"""
|
1455
|
+
return pulumi.get(self, "id")
|
1456
|
+
|
1457
|
+
@_builtins.property
|
1458
|
+
@pulumi.getter(name="lifecycleDetails")
|
1459
|
+
def lifecycle_details(self) -> _builtins.str:
|
1460
|
+
"""
|
1461
|
+
A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
1462
|
+
"""
|
1463
|
+
return pulumi.get(self, "lifecycle_details")
|
1464
|
+
|
1465
|
+
@_builtins.property
|
1466
|
+
@pulumi.getter
|
1467
|
+
def path(self) -> _builtins.str:
|
1468
|
+
"""
|
1469
|
+
rest path of the api.
|
1470
|
+
"""
|
1471
|
+
return pulumi.get(self, "path")
|
1472
|
+
|
1473
|
+
@_builtins.property
|
1474
|
+
@pulumi.getter(name="serviceName")
|
1475
|
+
def service_name(self) -> _builtins.str:
|
1476
|
+
"""
|
1477
|
+
The service Name to which the api belongs to.
|
1478
|
+
"""
|
1479
|
+
return pulumi.get(self, "service_name")
|
1480
|
+
|
1481
|
+
@_builtins.property
|
1482
|
+
@pulumi.getter
|
1483
|
+
def state(self) -> _builtins.str:
|
1484
|
+
"""
|
1485
|
+
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
1486
|
+
"""
|
1487
|
+
return pulumi.get(self, "state")
|
1488
|
+
|
1489
|
+
@_builtins.property
|
1490
|
+
@pulumi.getter(name="systemTags")
|
1491
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
1492
|
+
"""
|
1493
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1494
|
+
"""
|
1495
|
+
return pulumi.get(self, "system_tags")
|
1496
|
+
|
1497
|
+
@_builtins.property
|
1498
|
+
@pulumi.getter(name="timeCreated")
|
1499
|
+
def time_created(self) -> _builtins.str:
|
1500
|
+
"""
|
1501
|
+
The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1502
|
+
"""
|
1503
|
+
return pulumi.get(self, "time_created")
|
1504
|
+
|
1505
|
+
@_builtins.property
|
1506
|
+
@pulumi.getter(name="timeDeleted")
|
1507
|
+
def time_deleted(self) -> _builtins.str:
|
1508
|
+
"""
|
1509
|
+
The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1510
|
+
"""
|
1511
|
+
return pulumi.get(self, "time_deleted")
|
1512
|
+
|
1513
|
+
@_builtins.property
|
1514
|
+
@pulumi.getter(name="timeUpdated")
|
1515
|
+
def time_updated(self) -> _builtins.str:
|
1516
|
+
"""
|
1517
|
+
The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1518
|
+
"""
|
1519
|
+
return pulumi.get(self, "time_updated")
|
1520
|
+
|
1521
|
+
|
1522
|
+
@pulumi.output_type
|
1523
|
+
class GetApiaccesscontrolApiMetadatasFilterResult(dict):
|
1524
|
+
def __init__(__self__, *,
|
1525
|
+
name: _builtins.str,
|
1526
|
+
values: Sequence[_builtins.str],
|
1527
|
+
regex: Optional[_builtins.bool] = None):
|
1528
|
+
pulumi.set(__self__, "name", name)
|
1529
|
+
pulumi.set(__self__, "values", values)
|
1530
|
+
if regex is not None:
|
1531
|
+
pulumi.set(__self__, "regex", regex)
|
1532
|
+
|
1533
|
+
@_builtins.property
|
1534
|
+
@pulumi.getter
|
1535
|
+
def name(self) -> _builtins.str:
|
1536
|
+
return pulumi.get(self, "name")
|
1537
|
+
|
1538
|
+
@_builtins.property
|
1539
|
+
@pulumi.getter
|
1540
|
+
def values(self) -> Sequence[_builtins.str]:
|
1541
|
+
return pulumi.get(self, "values")
|
1542
|
+
|
1543
|
+
@_builtins.property
|
1544
|
+
@pulumi.getter
|
1545
|
+
def regex(self) -> Optional[_builtins.bool]:
|
1546
|
+
return pulumi.get(self, "regex")
|
1547
|
+
|
1548
|
+
|
1549
|
+
@pulumi.output_type
|
1550
|
+
class GetApiaccesscontrolPrivilegedApiControlPrivilegedOperationListResult(dict):
|
1551
|
+
def __init__(__self__, *,
|
1552
|
+
api_name: _builtins.str,
|
1553
|
+
attribute_names: Sequence[_builtins.str],
|
1554
|
+
entity_type: _builtins.str):
|
1555
|
+
"""
|
1556
|
+
:param _builtins.str api_name: name of the api which needs to be protected.
|
1557
|
+
:param Sequence[_builtins.str] attribute_names: list of attributes belonging to the above api which needs to be protected.
|
1558
|
+
:param _builtins.str entity_type: type of the entity which needs to be protected.
|
1559
|
+
"""
|
1560
|
+
pulumi.set(__self__, "api_name", api_name)
|
1561
|
+
pulumi.set(__self__, "attribute_names", attribute_names)
|
1562
|
+
pulumi.set(__self__, "entity_type", entity_type)
|
1563
|
+
|
1564
|
+
@_builtins.property
|
1565
|
+
@pulumi.getter(name="apiName")
|
1566
|
+
def api_name(self) -> _builtins.str:
|
1567
|
+
"""
|
1568
|
+
name of the api which needs to be protected.
|
1569
|
+
"""
|
1570
|
+
return pulumi.get(self, "api_name")
|
1571
|
+
|
1572
|
+
@_builtins.property
|
1573
|
+
@pulumi.getter(name="attributeNames")
|
1574
|
+
def attribute_names(self) -> Sequence[_builtins.str]:
|
1575
|
+
"""
|
1576
|
+
list of attributes belonging to the above api which needs to be protected.
|
1577
|
+
"""
|
1578
|
+
return pulumi.get(self, "attribute_names")
|
1579
|
+
|
1580
|
+
@_builtins.property
|
1581
|
+
@pulumi.getter(name="entityType")
|
1582
|
+
def entity_type(self) -> _builtins.str:
|
1583
|
+
"""
|
1584
|
+
type of the entity which needs to be protected.
|
1585
|
+
"""
|
1586
|
+
return pulumi.get(self, "entity_type")
|
1587
|
+
|
1006
1588
|
|
1007
1589
|
@pulumi.output_type
|
1008
1590
|
class GetApiaccesscontrolPrivilegedApiControlsFilterResult(dict):
|
@@ -3588,6 +4170,800 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
|
|
3588
4170
|
return pulumi.get(self, "type")
|
3589
4171
|
|
3590
4172
|
|
4173
|
+
@pulumi.output_type
|
4174
|
+
class GetManagedKafkaKafkaClusterAccessSubnetResult(dict):
|
4175
|
+
def __init__(__self__, *,
|
4176
|
+
subnets: Sequence[_builtins.str]):
|
4177
|
+
"""
|
4178
|
+
:param Sequence[_builtins.str] subnets: Subnets OCIDs
|
4179
|
+
"""
|
4180
|
+
pulumi.set(__self__, "subnets", subnets)
|
4181
|
+
|
4182
|
+
@_builtins.property
|
4183
|
+
@pulumi.getter
|
4184
|
+
def subnets(self) -> Sequence[_builtins.str]:
|
4185
|
+
"""
|
4186
|
+
Subnets OCIDs
|
4187
|
+
"""
|
4188
|
+
return pulumi.get(self, "subnets")
|
4189
|
+
|
4190
|
+
|
4191
|
+
@pulumi.output_type
|
4192
|
+
class GetManagedKafkaKafkaClusterBrokerShapeResult(dict):
|
4193
|
+
def __init__(__self__, *,
|
4194
|
+
node_count: _builtins.int,
|
4195
|
+
ocpu_count: _builtins.int,
|
4196
|
+
storage_size_in_gbs: _builtins.int):
|
4197
|
+
"""
|
4198
|
+
:param _builtins.int node_count: Number of Kafka broker nodes
|
4199
|
+
:param _builtins.int ocpu_count: Number of OCPUs per nodes
|
4200
|
+
:param _builtins.int storage_size_in_gbs: Size of the storage per nodes.
|
4201
|
+
"""
|
4202
|
+
pulumi.set(__self__, "node_count", node_count)
|
4203
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
4204
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
4205
|
+
|
4206
|
+
@_builtins.property
|
4207
|
+
@pulumi.getter(name="nodeCount")
|
4208
|
+
def node_count(self) -> _builtins.int:
|
4209
|
+
"""
|
4210
|
+
Number of Kafka broker nodes
|
4211
|
+
"""
|
4212
|
+
return pulumi.get(self, "node_count")
|
4213
|
+
|
4214
|
+
@_builtins.property
|
4215
|
+
@pulumi.getter(name="ocpuCount")
|
4216
|
+
def ocpu_count(self) -> _builtins.int:
|
4217
|
+
"""
|
4218
|
+
Number of OCPUs per nodes
|
4219
|
+
"""
|
4220
|
+
return pulumi.get(self, "ocpu_count")
|
4221
|
+
|
4222
|
+
@_builtins.property
|
4223
|
+
@pulumi.getter(name="storageSizeInGbs")
|
4224
|
+
def storage_size_in_gbs(self) -> _builtins.int:
|
4225
|
+
"""
|
4226
|
+
Size of the storage per nodes.
|
4227
|
+
"""
|
4228
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
4229
|
+
|
4230
|
+
|
4231
|
+
@pulumi.output_type
|
4232
|
+
class GetManagedKafkaKafkaClusterConfigLatestConfigResult(dict):
|
4233
|
+
def __init__(__self__, *,
|
4234
|
+
config_id: _builtins.str,
|
4235
|
+
properties: Mapping[str, _builtins.str],
|
4236
|
+
time_created: _builtins.str,
|
4237
|
+
version_number: _builtins.int):
|
4238
|
+
"""
|
4239
|
+
:param _builtins.str config_id: ID cluster configuration
|
4240
|
+
:param Mapping[str, _builtins.str] properties: Cluster configuration key-value pairs
|
4241
|
+
:param _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`
|
4242
|
+
:param _builtins.int version_number: Version of the cluster configuration
|
4243
|
+
"""
|
4244
|
+
pulumi.set(__self__, "config_id", config_id)
|
4245
|
+
pulumi.set(__self__, "properties", properties)
|
4246
|
+
pulumi.set(__self__, "time_created", time_created)
|
4247
|
+
pulumi.set(__self__, "version_number", version_number)
|
4248
|
+
|
4249
|
+
@_builtins.property
|
4250
|
+
@pulumi.getter(name="configId")
|
4251
|
+
def config_id(self) -> _builtins.str:
|
4252
|
+
"""
|
4253
|
+
ID cluster configuration
|
4254
|
+
"""
|
4255
|
+
return pulumi.get(self, "config_id")
|
4256
|
+
|
4257
|
+
@_builtins.property
|
4258
|
+
@pulumi.getter
|
4259
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
4260
|
+
"""
|
4261
|
+
Cluster configuration key-value pairs
|
4262
|
+
"""
|
4263
|
+
return pulumi.get(self, "properties")
|
4264
|
+
|
4265
|
+
@_builtins.property
|
4266
|
+
@pulumi.getter(name="timeCreated")
|
4267
|
+
def time_created(self) -> _builtins.str:
|
4268
|
+
"""
|
4269
|
+
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`
|
4270
|
+
"""
|
4271
|
+
return pulumi.get(self, "time_created")
|
4272
|
+
|
4273
|
+
@_builtins.property
|
4274
|
+
@pulumi.getter(name="versionNumber")
|
4275
|
+
def version_number(self) -> _builtins.int:
|
4276
|
+
"""
|
4277
|
+
Version of the cluster configuration
|
4278
|
+
"""
|
4279
|
+
return pulumi.get(self, "version_number")
|
4280
|
+
|
4281
|
+
|
4282
|
+
@pulumi.output_type
|
4283
|
+
class GetManagedKafkaKafkaClusterConfigVersionsFilterResult(dict):
|
4284
|
+
def __init__(__self__, *,
|
4285
|
+
name: _builtins.str,
|
4286
|
+
values: Sequence[_builtins.str],
|
4287
|
+
regex: Optional[_builtins.bool] = None):
|
4288
|
+
pulumi.set(__self__, "name", name)
|
4289
|
+
pulumi.set(__self__, "values", values)
|
4290
|
+
if regex is not None:
|
4291
|
+
pulumi.set(__self__, "regex", regex)
|
4292
|
+
|
4293
|
+
@_builtins.property
|
4294
|
+
@pulumi.getter
|
4295
|
+
def name(self) -> _builtins.str:
|
4296
|
+
return pulumi.get(self, "name")
|
4297
|
+
|
4298
|
+
@_builtins.property
|
4299
|
+
@pulumi.getter
|
4300
|
+
def values(self) -> Sequence[_builtins.str]:
|
4301
|
+
return pulumi.get(self, "values")
|
4302
|
+
|
4303
|
+
@_builtins.property
|
4304
|
+
@pulumi.getter
|
4305
|
+
def regex(self) -> Optional[_builtins.bool]:
|
4306
|
+
return pulumi.get(self, "regex")
|
4307
|
+
|
4308
|
+
|
4309
|
+
@pulumi.output_type
|
4310
|
+
class GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionResult(dict):
|
4311
|
+
def __init__(__self__, *,
|
4312
|
+
items: Sequence['outputs.GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult']):
|
4313
|
+
pulumi.set(__self__, "items", items)
|
4314
|
+
|
4315
|
+
@_builtins.property
|
4316
|
+
@pulumi.getter
|
4317
|
+
def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult']:
|
4318
|
+
return pulumi.get(self, "items")
|
4319
|
+
|
4320
|
+
|
4321
|
+
@pulumi.output_type
|
4322
|
+
class GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult(dict):
|
4323
|
+
def __init__(__self__, *,
|
4324
|
+
config_id: _builtins.str,
|
4325
|
+
time_created: _builtins.str,
|
4326
|
+
version_number: _builtins.int):
|
4327
|
+
"""
|
4328
|
+
:param _builtins.str config_id: ID cluster configuration
|
4329
|
+
:param _builtins.str time_created: The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4330
|
+
:param _builtins.int version_number: Version of the cluster configuration
|
4331
|
+
"""
|
4332
|
+
pulumi.set(__self__, "config_id", config_id)
|
4333
|
+
pulumi.set(__self__, "time_created", time_created)
|
4334
|
+
pulumi.set(__self__, "version_number", version_number)
|
4335
|
+
|
4336
|
+
@_builtins.property
|
4337
|
+
@pulumi.getter(name="configId")
|
4338
|
+
def config_id(self) -> _builtins.str:
|
4339
|
+
"""
|
4340
|
+
ID cluster configuration
|
4341
|
+
"""
|
4342
|
+
return pulumi.get(self, "config_id")
|
4343
|
+
|
4344
|
+
@_builtins.property
|
4345
|
+
@pulumi.getter(name="timeCreated")
|
4346
|
+
def time_created(self) -> _builtins.str:
|
4347
|
+
"""
|
4348
|
+
The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4349
|
+
"""
|
4350
|
+
return pulumi.get(self, "time_created")
|
4351
|
+
|
4352
|
+
@_builtins.property
|
4353
|
+
@pulumi.getter(name="versionNumber")
|
4354
|
+
def version_number(self) -> _builtins.int:
|
4355
|
+
"""
|
4356
|
+
Version of the cluster configuration
|
4357
|
+
"""
|
4358
|
+
return pulumi.get(self, "version_number")
|
4359
|
+
|
4360
|
+
|
4361
|
+
@pulumi.output_type
|
4362
|
+
class GetManagedKafkaKafkaClusterConfigsFilterResult(dict):
|
4363
|
+
def __init__(__self__, *,
|
4364
|
+
name: _builtins.str,
|
4365
|
+
values: Sequence[_builtins.str],
|
4366
|
+
regex: Optional[_builtins.bool] = None):
|
4367
|
+
pulumi.set(__self__, "name", name)
|
4368
|
+
pulumi.set(__self__, "values", values)
|
4369
|
+
if regex is not None:
|
4370
|
+
pulumi.set(__self__, "regex", regex)
|
4371
|
+
|
4372
|
+
@_builtins.property
|
4373
|
+
@pulumi.getter
|
4374
|
+
def name(self) -> _builtins.str:
|
4375
|
+
return pulumi.get(self, "name")
|
4376
|
+
|
4377
|
+
@_builtins.property
|
4378
|
+
@pulumi.getter
|
4379
|
+
def values(self) -> Sequence[_builtins.str]:
|
4380
|
+
return pulumi.get(self, "values")
|
4381
|
+
|
4382
|
+
@_builtins.property
|
4383
|
+
@pulumi.getter
|
4384
|
+
def regex(self) -> Optional[_builtins.bool]:
|
4385
|
+
return pulumi.get(self, "regex")
|
4386
|
+
|
4387
|
+
|
4388
|
+
@pulumi.output_type
|
4389
|
+
class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionResult(dict):
|
4390
|
+
def __init__(__self__, *,
|
4391
|
+
items: Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult']):
|
4392
|
+
pulumi.set(__self__, "items", items)
|
4393
|
+
|
4394
|
+
@_builtins.property
|
4395
|
+
@pulumi.getter
|
4396
|
+
def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult']:
|
4397
|
+
return pulumi.get(self, "items")
|
4398
|
+
|
4399
|
+
|
4400
|
+
@pulumi.output_type
|
4401
|
+
class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult(dict):
|
4402
|
+
def __init__(__self__, *,
|
4403
|
+
compartment_id: _builtins.str,
|
4404
|
+
defined_tags: Mapping[str, _builtins.str],
|
4405
|
+
display_name: _builtins.str,
|
4406
|
+
freeform_tags: Mapping[str, _builtins.str],
|
4407
|
+
id: _builtins.str,
|
4408
|
+
latest_configs: Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult'],
|
4409
|
+
lifecycle_details: _builtins.str,
|
4410
|
+
state: _builtins.str,
|
4411
|
+
system_tags: Mapping[str, _builtins.str],
|
4412
|
+
time_created: _builtins.str,
|
4413
|
+
time_updated: _builtins.str):
|
4414
|
+
"""
|
4415
|
+
:param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4416
|
+
:param Mapping[str, _builtins.str] defined_tags: 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"}`
|
4417
|
+
:param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
4418
|
+
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
4419
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
4420
|
+
:param Sequence['GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigArgs'] latest_configs: A shared configuration object used by 0 or more kafka clusters.
|
4421
|
+
:param _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.
|
4422
|
+
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4423
|
+
:param Mapping[str, _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"}`
|
4424
|
+
:param _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`
|
4425
|
+
:param _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`
|
4426
|
+
"""
|
4427
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
4428
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
4429
|
+
pulumi.set(__self__, "display_name", display_name)
|
4430
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
4431
|
+
pulumi.set(__self__, "id", id)
|
4432
|
+
pulumi.set(__self__, "latest_configs", latest_configs)
|
4433
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
4434
|
+
pulumi.set(__self__, "state", state)
|
4435
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
4436
|
+
pulumi.set(__self__, "time_created", time_created)
|
4437
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
4438
|
+
|
4439
|
+
@_builtins.property
|
4440
|
+
@pulumi.getter(name="compartmentId")
|
4441
|
+
def compartment_id(self) -> _builtins.str:
|
4442
|
+
"""
|
4443
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4444
|
+
"""
|
4445
|
+
return pulumi.get(self, "compartment_id")
|
4446
|
+
|
4447
|
+
@_builtins.property
|
4448
|
+
@pulumi.getter(name="definedTags")
|
4449
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
4450
|
+
"""
|
4451
|
+
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"}`
|
4452
|
+
"""
|
4453
|
+
return pulumi.get(self, "defined_tags")
|
4454
|
+
|
4455
|
+
@_builtins.property
|
4456
|
+
@pulumi.getter(name="displayName")
|
4457
|
+
def display_name(self) -> _builtins.str:
|
4458
|
+
"""
|
4459
|
+
A filter to return only resources that match the given display name exactly.
|
4460
|
+
"""
|
4461
|
+
return pulumi.get(self, "display_name")
|
4462
|
+
|
4463
|
+
@_builtins.property
|
4464
|
+
@pulumi.getter(name="freeformTags")
|
4465
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
4466
|
+
"""
|
4467
|
+
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"}`
|
4468
|
+
"""
|
4469
|
+
return pulumi.get(self, "freeform_tags")
|
4470
|
+
|
4471
|
+
@_builtins.property
|
4472
|
+
@pulumi.getter
|
4473
|
+
def id(self) -> _builtins.str:
|
4474
|
+
"""
|
4475
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
4476
|
+
"""
|
4477
|
+
return pulumi.get(self, "id")
|
4478
|
+
|
4479
|
+
@_builtins.property
|
4480
|
+
@pulumi.getter(name="latestConfigs")
|
4481
|
+
def latest_configs(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult']:
|
4482
|
+
"""
|
4483
|
+
A shared configuration object used by 0 or more kafka clusters.
|
4484
|
+
"""
|
4485
|
+
return pulumi.get(self, "latest_configs")
|
4486
|
+
|
4487
|
+
@_builtins.property
|
4488
|
+
@pulumi.getter(name="lifecycleDetails")
|
4489
|
+
def lifecycle_details(self) -> _builtins.str:
|
4490
|
+
"""
|
4491
|
+
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.
|
4492
|
+
"""
|
4493
|
+
return pulumi.get(self, "lifecycle_details")
|
4494
|
+
|
4495
|
+
@_builtins.property
|
4496
|
+
@pulumi.getter
|
4497
|
+
def state(self) -> _builtins.str:
|
4498
|
+
"""
|
4499
|
+
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4500
|
+
"""
|
4501
|
+
return pulumi.get(self, "state")
|
4502
|
+
|
4503
|
+
@_builtins.property
|
4504
|
+
@pulumi.getter(name="systemTags")
|
4505
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
4506
|
+
"""
|
4507
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4508
|
+
"""
|
4509
|
+
return pulumi.get(self, "system_tags")
|
4510
|
+
|
4511
|
+
@_builtins.property
|
4512
|
+
@pulumi.getter(name="timeCreated")
|
4513
|
+
def time_created(self) -> _builtins.str:
|
4514
|
+
"""
|
4515
|
+
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`
|
4516
|
+
"""
|
4517
|
+
return pulumi.get(self, "time_created")
|
4518
|
+
|
4519
|
+
@_builtins.property
|
4520
|
+
@pulumi.getter(name="timeUpdated")
|
4521
|
+
def time_updated(self) -> _builtins.str:
|
4522
|
+
"""
|
4523
|
+
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`
|
4524
|
+
"""
|
4525
|
+
return pulumi.get(self, "time_updated")
|
4526
|
+
|
4527
|
+
|
4528
|
+
@pulumi.output_type
|
4529
|
+
class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult(dict):
|
4530
|
+
def __init__(__self__, *,
|
4531
|
+
config_id: _builtins.str,
|
4532
|
+
properties: Mapping[str, _builtins.str],
|
4533
|
+
time_created: _builtins.str,
|
4534
|
+
version_number: _builtins.int):
|
4535
|
+
"""
|
4536
|
+
:param _builtins.str config_id: ID cluster configuration
|
4537
|
+
:param Mapping[str, _builtins.str] properties: Cluster configuration key-value pairs
|
4538
|
+
:param _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`
|
4539
|
+
:param _builtins.int version_number: Version of the cluster configuration
|
4540
|
+
"""
|
4541
|
+
pulumi.set(__self__, "config_id", config_id)
|
4542
|
+
pulumi.set(__self__, "properties", properties)
|
4543
|
+
pulumi.set(__self__, "time_created", time_created)
|
4544
|
+
pulumi.set(__self__, "version_number", version_number)
|
4545
|
+
|
4546
|
+
@_builtins.property
|
4547
|
+
@pulumi.getter(name="configId")
|
4548
|
+
def config_id(self) -> _builtins.str:
|
4549
|
+
"""
|
4550
|
+
ID cluster configuration
|
4551
|
+
"""
|
4552
|
+
return pulumi.get(self, "config_id")
|
4553
|
+
|
4554
|
+
@_builtins.property
|
4555
|
+
@pulumi.getter
|
4556
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
4557
|
+
"""
|
4558
|
+
Cluster configuration key-value pairs
|
4559
|
+
"""
|
4560
|
+
return pulumi.get(self, "properties")
|
4561
|
+
|
4562
|
+
@_builtins.property
|
4563
|
+
@pulumi.getter(name="timeCreated")
|
4564
|
+
def time_created(self) -> _builtins.str:
|
4565
|
+
"""
|
4566
|
+
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`
|
4567
|
+
"""
|
4568
|
+
return pulumi.get(self, "time_created")
|
4569
|
+
|
4570
|
+
@_builtins.property
|
4571
|
+
@pulumi.getter(name="versionNumber")
|
4572
|
+
def version_number(self) -> _builtins.int:
|
4573
|
+
"""
|
4574
|
+
Version of the cluster configuration
|
4575
|
+
"""
|
4576
|
+
return pulumi.get(self, "version_number")
|
4577
|
+
|
4578
|
+
|
4579
|
+
@pulumi.output_type
|
4580
|
+
class GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult(dict):
|
4581
|
+
def __init__(__self__, *,
|
4582
|
+
name: _builtins.str,
|
4583
|
+
url: _builtins.str):
|
4584
|
+
"""
|
4585
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
4586
|
+
:param _builtins.str url: Bootstrap URL
|
4587
|
+
"""
|
4588
|
+
pulumi.set(__self__, "name", name)
|
4589
|
+
pulumi.set(__self__, "url", url)
|
4590
|
+
|
4591
|
+
@_builtins.property
|
4592
|
+
@pulumi.getter
|
4593
|
+
def name(self) -> _builtins.str:
|
4594
|
+
"""
|
4595
|
+
Name of the Kafka listener providing this bootstrap URL
|
4596
|
+
"""
|
4597
|
+
return pulumi.get(self, "name")
|
4598
|
+
|
4599
|
+
@_builtins.property
|
4600
|
+
@pulumi.getter
|
4601
|
+
def url(self) -> _builtins.str:
|
4602
|
+
"""
|
4603
|
+
Bootstrap URL
|
4604
|
+
"""
|
4605
|
+
return pulumi.get(self, "url")
|
4606
|
+
|
4607
|
+
|
4608
|
+
@pulumi.output_type
|
4609
|
+
class GetManagedKafkaKafkaClustersFilterResult(dict):
|
4610
|
+
def __init__(__self__, *,
|
4611
|
+
name: _builtins.str,
|
4612
|
+
values: Sequence[_builtins.str],
|
4613
|
+
regex: Optional[_builtins.bool] = None):
|
4614
|
+
"""
|
4615
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
4616
|
+
"""
|
4617
|
+
pulumi.set(__self__, "name", name)
|
4618
|
+
pulumi.set(__self__, "values", values)
|
4619
|
+
if regex is not None:
|
4620
|
+
pulumi.set(__self__, "regex", regex)
|
4621
|
+
|
4622
|
+
@_builtins.property
|
4623
|
+
@pulumi.getter
|
4624
|
+
def name(self) -> _builtins.str:
|
4625
|
+
"""
|
4626
|
+
Name of the Kafka listener providing this bootstrap URL
|
4627
|
+
"""
|
4628
|
+
return pulumi.get(self, "name")
|
4629
|
+
|
4630
|
+
@_builtins.property
|
4631
|
+
@pulumi.getter
|
4632
|
+
def values(self) -> Sequence[_builtins.str]:
|
4633
|
+
return pulumi.get(self, "values")
|
4634
|
+
|
4635
|
+
@_builtins.property
|
4636
|
+
@pulumi.getter
|
4637
|
+
def regex(self) -> Optional[_builtins.bool]:
|
4638
|
+
return pulumi.get(self, "regex")
|
4639
|
+
|
4640
|
+
|
4641
|
+
@pulumi.output_type
|
4642
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionResult(dict):
|
4643
|
+
def __init__(__self__, *,
|
4644
|
+
items: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult']):
|
4645
|
+
pulumi.set(__self__, "items", items)
|
4646
|
+
|
4647
|
+
@_builtins.property
|
4648
|
+
@pulumi.getter
|
4649
|
+
def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult']:
|
4650
|
+
return pulumi.get(self, "items")
|
4651
|
+
|
4652
|
+
|
4653
|
+
@pulumi.output_type
|
4654
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult(dict):
|
4655
|
+
def __init__(__self__, *,
|
4656
|
+
access_subnets: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult'],
|
4657
|
+
broker_shapes: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult'],
|
4658
|
+
client_certificate_bundle: _builtins.str,
|
4659
|
+
cluster_config_id: _builtins.str,
|
4660
|
+
cluster_config_version: _builtins.int,
|
4661
|
+
cluster_type: _builtins.str,
|
4662
|
+
compartment_id: _builtins.str,
|
4663
|
+
coordination_type: _builtins.str,
|
4664
|
+
defined_tags: Mapping[str, _builtins.str],
|
4665
|
+
display_name: _builtins.str,
|
4666
|
+
freeform_tags: Mapping[str, _builtins.str],
|
4667
|
+
id: _builtins.str,
|
4668
|
+
kafka_bootstrap_urls: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult'],
|
4669
|
+
kafka_version: _builtins.str,
|
4670
|
+
lifecycle_details: _builtins.str,
|
4671
|
+
secret_id: _builtins.str,
|
4672
|
+
state: _builtins.str,
|
4673
|
+
system_tags: Mapping[str, _builtins.str],
|
4674
|
+
time_created: _builtins.str,
|
4675
|
+
time_updated: _builtins.str):
|
4676
|
+
"""
|
4677
|
+
:param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetArgs'] access_subnets: Subnets where broker/coordinator VNICs will be created.
|
4678
|
+
:param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeArgs'] broker_shapes: Configuration of the broker node.
|
4679
|
+
:param _builtins.str client_certificate_bundle: CA certificate bundle for mTLS broker authentication.
|
4680
|
+
:param _builtins.str cluster_config_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
|
4681
|
+
:param _builtins.int cluster_config_version: The version of configuration object
|
4682
|
+
:param _builtins.str cluster_type: Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
|
4683
|
+
:param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4684
|
+
:param _builtins.str coordination_type: Kafka coordination type. Set of available types depends on Kafka version
|
4685
|
+
:param Mapping[str, _builtins.str] defined_tags: 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"}`
|
4686
|
+
:param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
4687
|
+
:param Mapping[str, _builtins.str] freeform_tags: 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"}`
|
4688
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
4689
|
+
:param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlArgs'] kafka_bootstrap_urls: Bootstrap URL that can be used to connect to Kafka
|
4690
|
+
:param _builtins.str kafka_version: Version of Kafka to use to spin up the cluster
|
4691
|
+
:param _builtins.str lifecycle_details: A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
4692
|
+
:param _builtins.str secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
|
4693
|
+
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4694
|
+
:param Mapping[str, _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"}`
|
4695
|
+
:param _builtins.str time_created: The date and time the KafkaCluster was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4696
|
+
:param _builtins.str time_updated: The date and time the KafkaCluster was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4697
|
+
"""
|
4698
|
+
pulumi.set(__self__, "access_subnets", access_subnets)
|
4699
|
+
pulumi.set(__self__, "broker_shapes", broker_shapes)
|
4700
|
+
pulumi.set(__self__, "client_certificate_bundle", client_certificate_bundle)
|
4701
|
+
pulumi.set(__self__, "cluster_config_id", cluster_config_id)
|
4702
|
+
pulumi.set(__self__, "cluster_config_version", cluster_config_version)
|
4703
|
+
pulumi.set(__self__, "cluster_type", cluster_type)
|
4704
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
4705
|
+
pulumi.set(__self__, "coordination_type", coordination_type)
|
4706
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
4707
|
+
pulumi.set(__self__, "display_name", display_name)
|
4708
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
4709
|
+
pulumi.set(__self__, "id", id)
|
4710
|
+
pulumi.set(__self__, "kafka_bootstrap_urls", kafka_bootstrap_urls)
|
4711
|
+
pulumi.set(__self__, "kafka_version", kafka_version)
|
4712
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
4713
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
4714
|
+
pulumi.set(__self__, "state", state)
|
4715
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
4716
|
+
pulumi.set(__self__, "time_created", time_created)
|
4717
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
4718
|
+
|
4719
|
+
@_builtins.property
|
4720
|
+
@pulumi.getter(name="accessSubnets")
|
4721
|
+
def access_subnets(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult']:
|
4722
|
+
"""
|
4723
|
+
Subnets where broker/coordinator VNICs will be created.
|
4724
|
+
"""
|
4725
|
+
return pulumi.get(self, "access_subnets")
|
4726
|
+
|
4727
|
+
@_builtins.property
|
4728
|
+
@pulumi.getter(name="brokerShapes")
|
4729
|
+
def broker_shapes(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult']:
|
4730
|
+
"""
|
4731
|
+
Configuration of the broker node.
|
4732
|
+
"""
|
4733
|
+
return pulumi.get(self, "broker_shapes")
|
4734
|
+
|
4735
|
+
@_builtins.property
|
4736
|
+
@pulumi.getter(name="clientCertificateBundle")
|
4737
|
+
def client_certificate_bundle(self) -> _builtins.str:
|
4738
|
+
"""
|
4739
|
+
CA certificate bundle for mTLS broker authentication.
|
4740
|
+
"""
|
4741
|
+
return pulumi.get(self, "client_certificate_bundle")
|
4742
|
+
|
4743
|
+
@_builtins.property
|
4744
|
+
@pulumi.getter(name="clusterConfigId")
|
4745
|
+
def cluster_config_id(self) -> _builtins.str:
|
4746
|
+
"""
|
4747
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
|
4748
|
+
"""
|
4749
|
+
return pulumi.get(self, "cluster_config_id")
|
4750
|
+
|
4751
|
+
@_builtins.property
|
4752
|
+
@pulumi.getter(name="clusterConfigVersion")
|
4753
|
+
def cluster_config_version(self) -> _builtins.int:
|
4754
|
+
"""
|
4755
|
+
The version of configuration object
|
4756
|
+
"""
|
4757
|
+
return pulumi.get(self, "cluster_config_version")
|
4758
|
+
|
4759
|
+
@_builtins.property
|
4760
|
+
@pulumi.getter(name="clusterType")
|
4761
|
+
def cluster_type(self) -> _builtins.str:
|
4762
|
+
"""
|
4763
|
+
Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
|
4764
|
+
"""
|
4765
|
+
return pulumi.get(self, "cluster_type")
|
4766
|
+
|
4767
|
+
@_builtins.property
|
4768
|
+
@pulumi.getter(name="compartmentId")
|
4769
|
+
def compartment_id(self) -> _builtins.str:
|
4770
|
+
"""
|
4771
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4772
|
+
"""
|
4773
|
+
return pulumi.get(self, "compartment_id")
|
4774
|
+
|
4775
|
+
@_builtins.property
|
4776
|
+
@pulumi.getter(name="coordinationType")
|
4777
|
+
def coordination_type(self) -> _builtins.str:
|
4778
|
+
"""
|
4779
|
+
Kafka coordination type. Set of available types depends on Kafka version
|
4780
|
+
"""
|
4781
|
+
return pulumi.get(self, "coordination_type")
|
4782
|
+
|
4783
|
+
@_builtins.property
|
4784
|
+
@pulumi.getter(name="definedTags")
|
4785
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
4786
|
+
"""
|
4787
|
+
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"}`
|
4788
|
+
"""
|
4789
|
+
return pulumi.get(self, "defined_tags")
|
4790
|
+
|
4791
|
+
@_builtins.property
|
4792
|
+
@pulumi.getter(name="displayName")
|
4793
|
+
def display_name(self) -> _builtins.str:
|
4794
|
+
"""
|
4795
|
+
A filter to return only resources that match the given display name exactly.
|
4796
|
+
"""
|
4797
|
+
return pulumi.get(self, "display_name")
|
4798
|
+
|
4799
|
+
@_builtins.property
|
4800
|
+
@pulumi.getter(name="freeformTags")
|
4801
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
4802
|
+
"""
|
4803
|
+
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"}`
|
4804
|
+
"""
|
4805
|
+
return pulumi.get(self, "freeform_tags")
|
4806
|
+
|
4807
|
+
@_builtins.property
|
4808
|
+
@pulumi.getter
|
4809
|
+
def id(self) -> _builtins.str:
|
4810
|
+
"""
|
4811
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
4812
|
+
"""
|
4813
|
+
return pulumi.get(self, "id")
|
4814
|
+
|
4815
|
+
@_builtins.property
|
4816
|
+
@pulumi.getter(name="kafkaBootstrapUrls")
|
4817
|
+
def kafka_bootstrap_urls(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult']:
|
4818
|
+
"""
|
4819
|
+
Bootstrap URL that can be used to connect to Kafka
|
4820
|
+
"""
|
4821
|
+
return pulumi.get(self, "kafka_bootstrap_urls")
|
4822
|
+
|
4823
|
+
@_builtins.property
|
4824
|
+
@pulumi.getter(name="kafkaVersion")
|
4825
|
+
def kafka_version(self) -> _builtins.str:
|
4826
|
+
"""
|
4827
|
+
Version of Kafka to use to spin up the cluster
|
4828
|
+
"""
|
4829
|
+
return pulumi.get(self, "kafka_version")
|
4830
|
+
|
4831
|
+
@_builtins.property
|
4832
|
+
@pulumi.getter(name="lifecycleDetails")
|
4833
|
+
def lifecycle_details(self) -> _builtins.str:
|
4834
|
+
"""
|
4835
|
+
A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
4836
|
+
"""
|
4837
|
+
return pulumi.get(self, "lifecycle_details")
|
4838
|
+
|
4839
|
+
@_builtins.property
|
4840
|
+
@pulumi.getter(name="secretId")
|
4841
|
+
def secret_id(self) -> _builtins.str:
|
4842
|
+
"""
|
4843
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
|
4844
|
+
"""
|
4845
|
+
return pulumi.get(self, "secret_id")
|
4846
|
+
|
4847
|
+
@_builtins.property
|
4848
|
+
@pulumi.getter
|
4849
|
+
def state(self) -> _builtins.str:
|
4850
|
+
"""
|
4851
|
+
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4852
|
+
"""
|
4853
|
+
return pulumi.get(self, "state")
|
4854
|
+
|
4855
|
+
@_builtins.property
|
4856
|
+
@pulumi.getter(name="systemTags")
|
4857
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
4858
|
+
"""
|
4859
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4860
|
+
"""
|
4861
|
+
return pulumi.get(self, "system_tags")
|
4862
|
+
|
4863
|
+
@_builtins.property
|
4864
|
+
@pulumi.getter(name="timeCreated")
|
4865
|
+
def time_created(self) -> _builtins.str:
|
4866
|
+
"""
|
4867
|
+
The date and time the KafkaCluster was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4868
|
+
"""
|
4869
|
+
return pulumi.get(self, "time_created")
|
4870
|
+
|
4871
|
+
@_builtins.property
|
4872
|
+
@pulumi.getter(name="timeUpdated")
|
4873
|
+
def time_updated(self) -> _builtins.str:
|
4874
|
+
"""
|
4875
|
+
The date and time the KafkaCluster was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4876
|
+
"""
|
4877
|
+
return pulumi.get(self, "time_updated")
|
4878
|
+
|
4879
|
+
|
4880
|
+
@pulumi.output_type
|
4881
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult(dict):
|
4882
|
+
def __init__(__self__, *,
|
4883
|
+
subnets: Sequence[_builtins.str]):
|
4884
|
+
"""
|
4885
|
+
:param Sequence[_builtins.str] subnets: Subnets OCIDs
|
4886
|
+
"""
|
4887
|
+
pulumi.set(__self__, "subnets", subnets)
|
4888
|
+
|
4889
|
+
@_builtins.property
|
4890
|
+
@pulumi.getter
|
4891
|
+
def subnets(self) -> Sequence[_builtins.str]:
|
4892
|
+
"""
|
4893
|
+
Subnets OCIDs
|
4894
|
+
"""
|
4895
|
+
return pulumi.get(self, "subnets")
|
4896
|
+
|
4897
|
+
|
4898
|
+
@pulumi.output_type
|
4899
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult(dict):
|
4900
|
+
def __init__(__self__, *,
|
4901
|
+
node_count: _builtins.int,
|
4902
|
+
ocpu_count: _builtins.int,
|
4903
|
+
storage_size_in_gbs: _builtins.int):
|
4904
|
+
"""
|
4905
|
+
:param _builtins.int node_count: Number of Kafka broker nodes
|
4906
|
+
:param _builtins.int ocpu_count: Number of OCPUs per nodes
|
4907
|
+
:param _builtins.int storage_size_in_gbs: Size of the storage per nodes.
|
4908
|
+
"""
|
4909
|
+
pulumi.set(__self__, "node_count", node_count)
|
4910
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
4911
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
4912
|
+
|
4913
|
+
@_builtins.property
|
4914
|
+
@pulumi.getter(name="nodeCount")
|
4915
|
+
def node_count(self) -> _builtins.int:
|
4916
|
+
"""
|
4917
|
+
Number of Kafka broker nodes
|
4918
|
+
"""
|
4919
|
+
return pulumi.get(self, "node_count")
|
4920
|
+
|
4921
|
+
@_builtins.property
|
4922
|
+
@pulumi.getter(name="ocpuCount")
|
4923
|
+
def ocpu_count(self) -> _builtins.int:
|
4924
|
+
"""
|
4925
|
+
Number of OCPUs per nodes
|
4926
|
+
"""
|
4927
|
+
return pulumi.get(self, "ocpu_count")
|
4928
|
+
|
4929
|
+
@_builtins.property
|
4930
|
+
@pulumi.getter(name="storageSizeInGbs")
|
4931
|
+
def storage_size_in_gbs(self) -> _builtins.int:
|
4932
|
+
"""
|
4933
|
+
Size of the storage per nodes.
|
4934
|
+
"""
|
4935
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
4936
|
+
|
4937
|
+
|
4938
|
+
@pulumi.output_type
|
4939
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult(dict):
|
4940
|
+
def __init__(__self__, *,
|
4941
|
+
name: _builtins.str,
|
4942
|
+
url: _builtins.str):
|
4943
|
+
"""
|
4944
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
4945
|
+
:param _builtins.str url: Bootstrap URL
|
4946
|
+
"""
|
4947
|
+
pulumi.set(__self__, "name", name)
|
4948
|
+
pulumi.set(__self__, "url", url)
|
4949
|
+
|
4950
|
+
@_builtins.property
|
4951
|
+
@pulumi.getter
|
4952
|
+
def name(self) -> _builtins.str:
|
4953
|
+
"""
|
4954
|
+
Name of the Kafka listener providing this bootstrap URL
|
4955
|
+
"""
|
4956
|
+
return pulumi.get(self, "name")
|
4957
|
+
|
4958
|
+
@_builtins.property
|
4959
|
+
@pulumi.getter
|
4960
|
+
def url(self) -> _builtins.str:
|
4961
|
+
"""
|
4962
|
+
Bootstrap URL
|
4963
|
+
"""
|
4964
|
+
return pulumi.get(self, "url")
|
4965
|
+
|
4966
|
+
|
3591
4967
|
@pulumi.output_type
|
3592
4968
|
class GetWlmsManagedInstanceConfigurationResult(dict):
|
3593
4969
|
def __init__(__self__, *,
|