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
@@ -27,10 +27,13 @@ class GetExascaleDbStorageVaultResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getExascaleDbStorageVault.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, additional_flash_cache_in_percent=None, availability_domain=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, high_capacity_database_storages=None, id=None, lifecycle_details=None, state=None, subscription_id=None, system_tags=None, time_created=None, time_zone=None, vm_cluster_count=None, vm_cluster_ids=None):
|
30
|
+
def __init__(__self__, additional_flash_cache_in_percent=None, attached_shape_attributes=None, availability_domain=None, cluster_placement_group_id=None, compartment_id=None, defined_tags=None, description=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vault_id=None, freeform_tags=None, high_capacity_database_storages=None, id=None, lifecycle_details=None, state=None, subscription_id=None, system_tags=None, time_created=None, time_zone=None, vm_cluster_count=None, vm_cluster_ids=None):
|
31
31
|
if additional_flash_cache_in_percent and not isinstance(additional_flash_cache_in_percent, int):
|
32
32
|
raise TypeError("Expected argument 'additional_flash_cache_in_percent' to be a int")
|
33
33
|
pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
|
34
|
+
if attached_shape_attributes and not isinstance(attached_shape_attributes, list):
|
35
|
+
raise TypeError("Expected argument 'attached_shape_attributes' to be a list")
|
36
|
+
pulumi.set(__self__, "attached_shape_attributes", attached_shape_attributes)
|
34
37
|
if availability_domain and not isinstance(availability_domain, str):
|
35
38
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
36
39
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -97,6 +100,14 @@ class GetExascaleDbStorageVaultResult:
|
|
97
100
|
"""
|
98
101
|
return pulumi.get(self, "additional_flash_cache_in_percent")
|
99
102
|
|
103
|
+
@_builtins.property
|
104
|
+
@pulumi.getter(name="attachedShapeAttributes")
|
105
|
+
def attached_shape_attributes(self) -> Sequence[_builtins.str]:
|
106
|
+
"""
|
107
|
+
The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "attached_shape_attributes")
|
110
|
+
|
100
111
|
@_builtins.property
|
101
112
|
@pulumi.getter(name="availabilityDomain")
|
102
113
|
def availability_domain(self) -> _builtins.str:
|
@@ -254,6 +265,7 @@ class AwaitableGetExascaleDbStorageVaultResult(GetExascaleDbStorageVaultResult):
|
|
254
265
|
yield self
|
255
266
|
return GetExascaleDbStorageVaultResult(
|
256
267
|
additional_flash_cache_in_percent=self.additional_flash_cache_in_percent,
|
268
|
+
attached_shape_attributes=self.attached_shape_attributes,
|
257
269
|
availability_domain=self.availability_domain,
|
258
270
|
cluster_placement_group_id=self.cluster_placement_group_id,
|
259
271
|
compartment_id=self.compartment_id,
|
@@ -301,6 +313,7 @@ def get_exascale_db_storage_vault(exascale_db_storage_vault_id: Optional[_builti
|
|
301
313
|
|
302
314
|
return AwaitableGetExascaleDbStorageVaultResult(
|
303
315
|
additional_flash_cache_in_percent=pulumi.get(__ret__, 'additional_flash_cache_in_percent'),
|
316
|
+
attached_shape_attributes=pulumi.get(__ret__, 'attached_shape_attributes'),
|
304
317
|
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
305
318
|
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
306
319
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
@@ -345,6 +358,7 @@ def get_exascale_db_storage_vault_output(exascale_db_storage_vault_id: Optional[
|
|
345
358
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExascaleDbStorageVault:getExascaleDbStorageVault', __args__, opts=opts, typ=GetExascaleDbStorageVaultResult)
|
346
359
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultResult(
|
347
360
|
additional_flash_cache_in_percent=pulumi.get(__response__, 'additional_flash_cache_in_percent'),
|
361
|
+
attached_shape_attributes=pulumi.get(__response__, 'attached_shape_attributes'),
|
348
362
|
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
349
363
|
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
350
364
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
@@ -28,7 +28,13 @@ class GetExascaleDbStorageVaultsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getExascaleDbStorageVaults.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, cluster_placement_group_id=None, compartment_id=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vaults=None, filters=None, id=None, state=None):
|
31
|
+
def __init__(__self__, attached_shape_attributes=None, attached_shape_attributes_not_equal_to=None, cluster_placement_group_id=None, compartment_id=None, display_name=None, exadata_infrastructure_id=None, exascale_db_storage_vaults=None, filters=None, id=None, state=None, vm_cluster_count_greater_than_or_equal_to=None, vm_cluster_count_less_than_or_equal_to=None):
|
32
|
+
if attached_shape_attributes and not isinstance(attached_shape_attributes, str):
|
33
|
+
raise TypeError("Expected argument 'attached_shape_attributes' to be a str")
|
34
|
+
pulumi.set(__self__, "attached_shape_attributes", attached_shape_attributes)
|
35
|
+
if attached_shape_attributes_not_equal_to and not isinstance(attached_shape_attributes_not_equal_to, str):
|
36
|
+
raise TypeError("Expected argument 'attached_shape_attributes_not_equal_to' to be a str")
|
37
|
+
pulumi.set(__self__, "attached_shape_attributes_not_equal_to", attached_shape_attributes_not_equal_to)
|
32
38
|
if cluster_placement_group_id and not isinstance(cluster_placement_group_id, str):
|
33
39
|
raise TypeError("Expected argument 'cluster_placement_group_id' to be a str")
|
34
40
|
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
@@ -53,6 +59,25 @@ class GetExascaleDbStorageVaultsResult:
|
|
53
59
|
if state and not isinstance(state, str):
|
54
60
|
raise TypeError("Expected argument 'state' to be a str")
|
55
61
|
pulumi.set(__self__, "state", state)
|
62
|
+
if vm_cluster_count_greater_than_or_equal_to and not isinstance(vm_cluster_count_greater_than_or_equal_to, int):
|
63
|
+
raise TypeError("Expected argument 'vm_cluster_count_greater_than_or_equal_to' to be a int")
|
64
|
+
pulumi.set(__self__, "vm_cluster_count_greater_than_or_equal_to", vm_cluster_count_greater_than_or_equal_to)
|
65
|
+
if vm_cluster_count_less_than_or_equal_to and not isinstance(vm_cluster_count_less_than_or_equal_to, int):
|
66
|
+
raise TypeError("Expected argument 'vm_cluster_count_less_than_or_equal_to' to be a int")
|
67
|
+
pulumi.set(__self__, "vm_cluster_count_less_than_or_equal_to", vm_cluster_count_less_than_or_equal_to)
|
68
|
+
|
69
|
+
@_builtins.property
|
70
|
+
@pulumi.getter(name="attachedShapeAttributes")
|
71
|
+
def attached_shape_attributes(self) -> Optional[_builtins.str]:
|
72
|
+
"""
|
73
|
+
The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault.
|
74
|
+
"""
|
75
|
+
return pulumi.get(self, "attached_shape_attributes")
|
76
|
+
|
77
|
+
@_builtins.property
|
78
|
+
@pulumi.getter(name="attachedShapeAttributesNotEqualTo")
|
79
|
+
def attached_shape_attributes_not_equal_to(self) -> Optional[_builtins.str]:
|
80
|
+
return pulumi.get(self, "attached_shape_attributes_not_equal_to")
|
56
81
|
|
57
82
|
@_builtins.property
|
58
83
|
@pulumi.getter(name="clusterPlacementGroupId")
|
@@ -115,6 +140,16 @@ class GetExascaleDbStorageVaultsResult:
|
|
115
140
|
"""
|
116
141
|
return pulumi.get(self, "state")
|
117
142
|
|
143
|
+
@_builtins.property
|
144
|
+
@pulumi.getter(name="vmClusterCountGreaterThanOrEqualTo")
|
145
|
+
def vm_cluster_count_greater_than_or_equal_to(self) -> Optional[_builtins.int]:
|
146
|
+
return pulumi.get(self, "vm_cluster_count_greater_than_or_equal_to")
|
147
|
+
|
148
|
+
@_builtins.property
|
149
|
+
@pulumi.getter(name="vmClusterCountLessThanOrEqualTo")
|
150
|
+
def vm_cluster_count_less_than_or_equal_to(self) -> Optional[_builtins.int]:
|
151
|
+
return pulumi.get(self, "vm_cluster_count_less_than_or_equal_to")
|
152
|
+
|
118
153
|
|
119
154
|
class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult):
|
120
155
|
# pylint: disable=using-constant-test
|
@@ -122,6 +157,8 @@ class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult
|
|
122
157
|
if False:
|
123
158
|
yield self
|
124
159
|
return GetExascaleDbStorageVaultsResult(
|
160
|
+
attached_shape_attributes=self.attached_shape_attributes,
|
161
|
+
attached_shape_attributes_not_equal_to=self.attached_shape_attributes_not_equal_to,
|
125
162
|
cluster_placement_group_id=self.cluster_placement_group_id,
|
126
163
|
compartment_id=self.compartment_id,
|
127
164
|
display_name=self.display_name,
|
@@ -129,15 +166,21 @@ class AwaitableGetExascaleDbStorageVaultsResult(GetExascaleDbStorageVaultsResult
|
|
129
166
|
exascale_db_storage_vaults=self.exascale_db_storage_vaults,
|
130
167
|
filters=self.filters,
|
131
168
|
id=self.id,
|
132
|
-
state=self.state
|
169
|
+
state=self.state,
|
170
|
+
vm_cluster_count_greater_than_or_equal_to=self.vm_cluster_count_greater_than_or_equal_to,
|
171
|
+
vm_cluster_count_less_than_or_equal_to=self.vm_cluster_count_less_than_or_equal_to)
|
133
172
|
|
134
173
|
|
135
|
-
def get_exascale_db_storage_vaults(
|
174
|
+
def get_exascale_db_storage_vaults(attached_shape_attributes: Optional[_builtins.str] = None,
|
175
|
+
attached_shape_attributes_not_equal_to: Optional[_builtins.str] = None,
|
176
|
+
cluster_placement_group_id: Optional[_builtins.str] = None,
|
136
177
|
compartment_id: Optional[_builtins.str] = None,
|
137
178
|
display_name: Optional[_builtins.str] = None,
|
138
179
|
exadata_infrastructure_id: Optional[_builtins.str] = None,
|
139
180
|
filters: Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]] = None,
|
140
181
|
state: Optional[_builtins.str] = None,
|
182
|
+
vm_cluster_count_greater_than_or_equal_to: Optional[_builtins.int] = None,
|
183
|
+
vm_cluster_count_less_than_or_equal_to: Optional[_builtins.int] = None,
|
141
184
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExascaleDbStorageVaultsResult:
|
142
185
|
"""
|
143
186
|
This data source provides the list of Exascale Db Storage Vaults in Oracle Cloud Infrastructure Database service.
|
@@ -151,30 +194,44 @@ def get_exascale_db_storage_vaults(cluster_placement_group_id: Optional[_builtin
|
|
151
194
|
import pulumi_oci as oci
|
152
195
|
|
153
196
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
197
|
+
attached_shape_attributes=exascale_db_storage_vault_attached_shape_attributes,
|
198
|
+
attached_shape_attributes_not_equal_to=exascale_db_storage_vault_attached_shape_attributes_not_equal_to,
|
154
199
|
cluster_placement_group_id=test_cluster_placement_group["id"],
|
155
200
|
display_name=exascale_db_storage_vault_display_name,
|
156
201
|
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
157
|
-
state=exascale_db_storage_vault_state
|
202
|
+
state=exascale_db_storage_vault_state,
|
203
|
+
vm_cluster_count_greater_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_greater_than_or_equal_to,
|
204
|
+
vm_cluster_count_less_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_less_than_or_equal_to)
|
158
205
|
```
|
159
206
|
|
160
207
|
|
208
|
+
:param _builtins.str attached_shape_attributes: A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
|
209
|
+
:param _builtins.str attached_shape_attributes_not_equal_to: A filter to return only Exadata Database Storage Vaults which do not match the given attachedShapeAttributes
|
161
210
|
:param _builtins.str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
162
211
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
163
212
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
164
213
|
:param _builtins.str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
165
214
|
:param _builtins.str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
215
|
+
:param _builtins.int vm_cluster_count_greater_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters greater than or equal to the given count
|
216
|
+
:param _builtins.int vm_cluster_count_less_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters less than or equal to the given count
|
166
217
|
"""
|
167
218
|
__args__ = dict()
|
219
|
+
__args__['attachedShapeAttributes'] = attached_shape_attributes
|
220
|
+
__args__['attachedShapeAttributesNotEqualTo'] = attached_shape_attributes_not_equal_to
|
168
221
|
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
169
222
|
__args__['compartmentId'] = compartment_id
|
170
223
|
__args__['displayName'] = display_name
|
171
224
|
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
172
225
|
__args__['filters'] = filters
|
173
226
|
__args__['state'] = state
|
227
|
+
__args__['vmClusterCountGreaterThanOrEqualTo'] = vm_cluster_count_greater_than_or_equal_to
|
228
|
+
__args__['vmClusterCountLessThanOrEqualTo'] = vm_cluster_count_less_than_or_equal_to
|
174
229
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
175
230
|
__ret__ = pulumi.runtime.invoke('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult).value
|
176
231
|
|
177
232
|
return AwaitableGetExascaleDbStorageVaultsResult(
|
233
|
+
attached_shape_attributes=pulumi.get(__ret__, 'attached_shape_attributes'),
|
234
|
+
attached_shape_attributes_not_equal_to=pulumi.get(__ret__, 'attached_shape_attributes_not_equal_to'),
|
178
235
|
cluster_placement_group_id=pulumi.get(__ret__, 'cluster_placement_group_id'),
|
179
236
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
180
237
|
display_name=pulumi.get(__ret__, 'display_name'),
|
@@ -182,13 +239,19 @@ def get_exascale_db_storage_vaults(cluster_placement_group_id: Optional[_builtin
|
|
182
239
|
exascale_db_storage_vaults=pulumi.get(__ret__, 'exascale_db_storage_vaults'),
|
183
240
|
filters=pulumi.get(__ret__, 'filters'),
|
184
241
|
id=pulumi.get(__ret__, 'id'),
|
185
|
-
state=pulumi.get(__ret__, 'state')
|
186
|
-
|
242
|
+
state=pulumi.get(__ret__, 'state'),
|
243
|
+
vm_cluster_count_greater_than_or_equal_to=pulumi.get(__ret__, 'vm_cluster_count_greater_than_or_equal_to'),
|
244
|
+
vm_cluster_count_less_than_or_equal_to=pulumi.get(__ret__, 'vm_cluster_count_less_than_or_equal_to'))
|
245
|
+
def get_exascale_db_storage_vaults_output(attached_shape_attributes: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
246
|
+
attached_shape_attributes_not_equal_to: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
247
|
+
cluster_placement_group_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
187
248
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
188
249
|
display_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
189
250
|
exadata_infrastructure_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
190
251
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetExascaleDbStorageVaultsFilterArgs', 'GetExascaleDbStorageVaultsFilterArgsDict']]]]] = None,
|
191
252
|
state: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
253
|
+
vm_cluster_count_greater_than_or_equal_to: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
254
|
+
vm_cluster_count_less_than_or_equal_to: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
192
255
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExascaleDbStorageVaultsResult]:
|
193
256
|
"""
|
194
257
|
This data source provides the list of Exascale Db Storage Vaults in Oracle Cloud Infrastructure Database service.
|
@@ -202,29 +265,43 @@ def get_exascale_db_storage_vaults_output(cluster_placement_group_id: Optional[p
|
|
202
265
|
import pulumi_oci as oci
|
203
266
|
|
204
267
|
test_exascale_db_storage_vaults = oci.Database.get_exascale_db_storage_vaults(compartment_id=compartment_id,
|
268
|
+
attached_shape_attributes=exascale_db_storage_vault_attached_shape_attributes,
|
269
|
+
attached_shape_attributes_not_equal_to=exascale_db_storage_vault_attached_shape_attributes_not_equal_to,
|
205
270
|
cluster_placement_group_id=test_cluster_placement_group["id"],
|
206
271
|
display_name=exascale_db_storage_vault_display_name,
|
207
272
|
exadata_infrastructure_id=test_exadata_infrastructure["id"],
|
208
|
-
state=exascale_db_storage_vault_state
|
273
|
+
state=exascale_db_storage_vault_state,
|
274
|
+
vm_cluster_count_greater_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_greater_than_or_equal_to,
|
275
|
+
vm_cluster_count_less_than_or_equal_to=exascale_db_storage_vault_vm_cluster_count_less_than_or_equal_to)
|
209
276
|
```
|
210
277
|
|
211
278
|
|
279
|
+
:param _builtins.str attached_shape_attributes: A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes
|
280
|
+
:param _builtins.str attached_shape_attributes_not_equal_to: A filter to return only Exadata Database Storage Vaults which do not match the given attachedShapeAttributes
|
212
281
|
:param _builtins.str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
213
282
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
214
283
|
:param _builtins.str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
215
284
|
:param _builtins.str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
216
285
|
:param _builtins.str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
286
|
+
:param _builtins.int vm_cluster_count_greater_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters greater than or equal to the given count
|
287
|
+
:param _builtins.int vm_cluster_count_less_than_or_equal_to: A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters less than or equal to the given count
|
217
288
|
"""
|
218
289
|
__args__ = dict()
|
290
|
+
__args__['attachedShapeAttributes'] = attached_shape_attributes
|
291
|
+
__args__['attachedShapeAttributesNotEqualTo'] = attached_shape_attributes_not_equal_to
|
219
292
|
__args__['clusterPlacementGroupId'] = cluster_placement_group_id
|
220
293
|
__args__['compartmentId'] = compartment_id
|
221
294
|
__args__['displayName'] = display_name
|
222
295
|
__args__['exadataInfrastructureId'] = exadata_infrastructure_id
|
223
296
|
__args__['filters'] = filters
|
224
297
|
__args__['state'] = state
|
298
|
+
__args__['vmClusterCountGreaterThanOrEqualTo'] = vm_cluster_count_greater_than_or_equal_to
|
299
|
+
__args__['vmClusterCountLessThanOrEqualTo'] = vm_cluster_count_less_than_or_equal_to
|
225
300
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
226
301
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getExascaleDbStorageVaults:getExascaleDbStorageVaults', __args__, opts=opts, typ=GetExascaleDbStorageVaultsResult)
|
227
302
|
return __ret__.apply(lambda __response__: GetExascaleDbStorageVaultsResult(
|
303
|
+
attached_shape_attributes=pulumi.get(__response__, 'attached_shape_attributes'),
|
304
|
+
attached_shape_attributes_not_equal_to=pulumi.get(__response__, 'attached_shape_attributes_not_equal_to'),
|
228
305
|
cluster_placement_group_id=pulumi.get(__response__, 'cluster_placement_group_id'),
|
229
306
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
230
307
|
display_name=pulumi.get(__response__, 'display_name'),
|
@@ -232,4 +309,6 @@ def get_exascale_db_storage_vaults_output(cluster_placement_group_id: Optional[p
|
|
232
309
|
exascale_db_storage_vaults=pulumi.get(__response__, 'exascale_db_storage_vaults'),
|
233
310
|
filters=pulumi.get(__response__, 'filters'),
|
234
311
|
id=pulumi.get(__response__, 'id'),
|
235
|
-
state=pulumi.get(__response__, 'state')
|
312
|
+
state=pulumi.get(__response__, 'state'),
|
313
|
+
vm_cluster_count_greater_than_or_equal_to=pulumi.get(__response__, 'vm_cluster_count_greater_than_or_equal_to'),
|
314
|
+
vm_cluster_count_less_than_or_equal_to=pulumi.get(__response__, 'vm_cluster_count_less_than_or_equal_to')))
|
@@ -28,7 +28,7 @@ class GetGiVersionsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getGiVersions.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, availability_domain=None, compartment_id=None, filters=None, gi_versions=None, id=None, resource_id=None, shape=None):
|
31
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, filters=None, gi_versions=None, id=None, resource_id=None, shape=None, shape_attribute=None):
|
32
32
|
if availability_domain and not isinstance(availability_domain, str):
|
33
33
|
raise TypeError("Expected argument 'availability_domain' to be a str")
|
34
34
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -50,6 +50,9 @@ class GetGiVersionsResult:
|
|
50
50
|
if shape and not isinstance(shape, str):
|
51
51
|
raise TypeError("Expected argument 'shape' to be a str")
|
52
52
|
pulumi.set(__self__, "shape", shape)
|
53
|
+
if shape_attribute and not isinstance(shape_attribute, str):
|
54
|
+
raise TypeError("Expected argument 'shape_attribute' to be a str")
|
55
|
+
pulumi.set(__self__, "shape_attribute", shape_attribute)
|
53
56
|
|
54
57
|
@_builtins.property
|
55
58
|
@pulumi.getter(name="availabilityDomain")
|
@@ -92,6 +95,11 @@ class GetGiVersionsResult:
|
|
92
95
|
def shape(self) -> Optional[_builtins.str]:
|
93
96
|
return pulumi.get(self, "shape")
|
94
97
|
|
98
|
+
@_builtins.property
|
99
|
+
@pulumi.getter(name="shapeAttribute")
|
100
|
+
def shape_attribute(self) -> Optional[_builtins.str]:
|
101
|
+
return pulumi.get(self, "shape_attribute")
|
102
|
+
|
95
103
|
|
96
104
|
class AwaitableGetGiVersionsResult(GetGiVersionsResult):
|
97
105
|
# pylint: disable=using-constant-test
|
@@ -105,7 +113,8 @@ class AwaitableGetGiVersionsResult(GetGiVersionsResult):
|
|
105
113
|
gi_versions=self.gi_versions,
|
106
114
|
id=self.id,
|
107
115
|
resource_id=self.resource_id,
|
108
|
-
shape=self.shape
|
116
|
+
shape=self.shape,
|
117
|
+
shape_attribute=self.shape_attribute)
|
109
118
|
|
110
119
|
|
111
120
|
def get_gi_versions(availability_domain: Optional[_builtins.str] = None,
|
@@ -113,6 +122,7 @@ def get_gi_versions(availability_domain: Optional[_builtins.str] = None,
|
|
113
122
|
filters: Optional[Sequence[Union['GetGiVersionsFilterArgs', 'GetGiVersionsFilterArgsDict']]] = None,
|
114
123
|
resource_id: Optional[_builtins.str] = None,
|
115
124
|
shape: Optional[_builtins.str] = None,
|
125
|
+
shape_attribute: Optional[_builtins.str] = None,
|
116
126
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGiVersionsResult:
|
117
127
|
"""
|
118
128
|
This data source provides the list of Gi Versions in Oracle Cloud Infrastructure Database service.
|
@@ -128,7 +138,8 @@ def get_gi_versions(availability_domain: Optional[_builtins.str] = None,
|
|
128
138
|
test_gi_versions = oci.Database.get_gi_versions(compartment_id=compartment_id,
|
129
139
|
availability_domain=gi_version_availability_domain,
|
130
140
|
resource_id=test_resource["id"],
|
131
|
-
shape=gi_version_shape
|
141
|
+
shape=gi_version_shape,
|
142
|
+
shape_attribute=gi_version_shape_attribute)
|
132
143
|
```
|
133
144
|
|
134
145
|
|
@@ -136,6 +147,7 @@ def get_gi_versions(availability_domain: Optional[_builtins.str] = None,
|
|
136
147
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
137
148
|
:param _builtins.str resource_id: If provided, filters the results for the specified resource Id.
|
138
149
|
:param _builtins.str shape: If provided, filters the results for the given shape.
|
150
|
+
:param _builtins.str shape_attribute: If provided and applicable, return the results based on the shapeAttribute provided
|
139
151
|
"""
|
140
152
|
__args__ = dict()
|
141
153
|
__args__['availabilityDomain'] = availability_domain
|
@@ -143,6 +155,7 @@ def get_gi_versions(availability_domain: Optional[_builtins.str] = None,
|
|
143
155
|
__args__['filters'] = filters
|
144
156
|
__args__['resourceId'] = resource_id
|
145
157
|
__args__['shape'] = shape
|
158
|
+
__args__['shapeAttribute'] = shape_attribute
|
146
159
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
147
160
|
__ret__ = pulumi.runtime.invoke('oci:Database/getGiVersions:getGiVersions', __args__, opts=opts, typ=GetGiVersionsResult).value
|
148
161
|
|
@@ -153,12 +166,14 @@ def get_gi_versions(availability_domain: Optional[_builtins.str] = None,
|
|
153
166
|
gi_versions=pulumi.get(__ret__, 'gi_versions'),
|
154
167
|
id=pulumi.get(__ret__, 'id'),
|
155
168
|
resource_id=pulumi.get(__ret__, 'resource_id'),
|
156
|
-
shape=pulumi.get(__ret__, 'shape')
|
169
|
+
shape=pulumi.get(__ret__, 'shape'),
|
170
|
+
shape_attribute=pulumi.get(__ret__, 'shape_attribute'))
|
157
171
|
def get_gi_versions_output(availability_domain: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
158
172
|
compartment_id: Optional[pulumi.Input[_builtins.str]] = None,
|
159
173
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetGiVersionsFilterArgs', 'GetGiVersionsFilterArgsDict']]]]] = None,
|
160
174
|
resource_id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
161
175
|
shape: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
176
|
+
shape_attribute: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
162
177
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetGiVersionsResult]:
|
163
178
|
"""
|
164
179
|
This data source provides the list of Gi Versions in Oracle Cloud Infrastructure Database service.
|
@@ -174,7 +189,8 @@ def get_gi_versions_output(availability_domain: Optional[pulumi.Input[Optional[_
|
|
174
189
|
test_gi_versions = oci.Database.get_gi_versions(compartment_id=compartment_id,
|
175
190
|
availability_domain=gi_version_availability_domain,
|
176
191
|
resource_id=test_resource["id"],
|
177
|
-
shape=gi_version_shape
|
192
|
+
shape=gi_version_shape,
|
193
|
+
shape_attribute=gi_version_shape_attribute)
|
178
194
|
```
|
179
195
|
|
180
196
|
|
@@ -182,6 +198,7 @@ def get_gi_versions_output(availability_domain: Optional[pulumi.Input[Optional[_
|
|
182
198
|
:param _builtins.str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
183
199
|
:param _builtins.str resource_id: If provided, filters the results for the specified resource Id.
|
184
200
|
:param _builtins.str shape: If provided, filters the results for the given shape.
|
201
|
+
:param _builtins.str shape_attribute: If provided and applicable, return the results based on the shapeAttribute provided
|
185
202
|
"""
|
186
203
|
__args__ = dict()
|
187
204
|
__args__['availabilityDomain'] = availability_domain
|
@@ -189,6 +206,7 @@ def get_gi_versions_output(availability_domain: Optional[pulumi.Input[Optional[_
|
|
189
206
|
__args__['filters'] = filters
|
190
207
|
__args__['resourceId'] = resource_id
|
191
208
|
__args__['shape'] = shape
|
209
|
+
__args__['shapeAttribute'] = shape_attribute
|
192
210
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
193
211
|
__ret__ = pulumi.runtime.invoke_output('oci:Database/getGiVersions:getGiVersions', __args__, opts=opts, typ=GetGiVersionsResult)
|
194
212
|
return __ret__.apply(lambda __response__: GetGiVersionsResult(
|
@@ -198,4 +216,5 @@ def get_gi_versions_output(availability_domain: Optional[pulumi.Input[Optional[_
|
|
198
216
|
gi_versions=pulumi.get(__response__, 'gi_versions'),
|
199
217
|
id=pulumi.get(__response__, 'id'),
|
200
218
|
resource_id=pulumi.get(__response__, 'resource_id'),
|
201
|
-
shape=pulumi.get(__response__, 'shape')
|
219
|
+
shape=pulumi.get(__response__, 'shape'),
|
220
|
+
shape_attribute=pulumi.get(__response__, 'shape_attribute')))
|
@@ -0,0 +1,253 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins as _builtins
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
|
17
|
+
__all__ = [
|
18
|
+
'GetPluggableDatabaseSnapshotResult',
|
19
|
+
'AwaitableGetPluggableDatabaseSnapshotResult',
|
20
|
+
'get_pluggable_database_snapshot',
|
21
|
+
'get_pluggable_database_snapshot_output',
|
22
|
+
]
|
23
|
+
|
24
|
+
@pulumi.output_type
|
25
|
+
class GetPluggableDatabaseSnapshotResult:
|
26
|
+
"""
|
27
|
+
A collection of values returned by getPluggableDatabaseSnapshot.
|
28
|
+
"""
|
29
|
+
def __init__(__self__, cluster_id=None, compartment_id=None, defined_tags=None, freeform_tags=None, id=None, lifecycle_details=None, name=None, pluggable_database_id=None, pluggable_database_snapshot_id=None, state=None, system_tags=None, time_created=None):
|
30
|
+
if cluster_id and not isinstance(cluster_id, str):
|
31
|
+
raise TypeError("Expected argument 'cluster_id' to be a str")
|
32
|
+
pulumi.set(__self__, "cluster_id", cluster_id)
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
37
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
38
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
39
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
40
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
41
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
42
|
+
if id and not isinstance(id, str):
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
44
|
+
pulumi.set(__self__, "id", id)
|
45
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
46
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
47
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
48
|
+
if name and not isinstance(name, str):
|
49
|
+
raise TypeError("Expected argument 'name' to be a str")
|
50
|
+
pulumi.set(__self__, "name", name)
|
51
|
+
if pluggable_database_id and not isinstance(pluggable_database_id, str):
|
52
|
+
raise TypeError("Expected argument 'pluggable_database_id' to be a str")
|
53
|
+
pulumi.set(__self__, "pluggable_database_id", pluggable_database_id)
|
54
|
+
if pluggable_database_snapshot_id and not isinstance(pluggable_database_snapshot_id, str):
|
55
|
+
raise TypeError("Expected argument 'pluggable_database_snapshot_id' to be a str")
|
56
|
+
pulumi.set(__self__, "pluggable_database_snapshot_id", pluggable_database_snapshot_id)
|
57
|
+
if state and not isinstance(state, str):
|
58
|
+
raise TypeError("Expected argument 'state' to be a str")
|
59
|
+
pulumi.set(__self__, "state", state)
|
60
|
+
if system_tags and not isinstance(system_tags, dict):
|
61
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
62
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
63
|
+
if time_created and not isinstance(time_created, str):
|
64
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
65
|
+
pulumi.set(__self__, "time_created", time_created)
|
66
|
+
|
67
|
+
@_builtins.property
|
68
|
+
@pulumi.getter(name="clusterId")
|
69
|
+
def cluster_id(self) -> _builtins.str:
|
70
|
+
"""
|
71
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "cluster_id")
|
74
|
+
|
75
|
+
@_builtins.property
|
76
|
+
@pulumi.getter(name="compartmentId")
|
77
|
+
def compartment_id(self) -> _builtins.str:
|
78
|
+
"""
|
79
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "compartment_id")
|
82
|
+
|
83
|
+
@_builtins.property
|
84
|
+
@pulumi.getter(name="definedTags")
|
85
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
86
|
+
"""
|
87
|
+
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).
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "defined_tags")
|
90
|
+
|
91
|
+
@_builtins.property
|
92
|
+
@pulumi.getter(name="freeformTags")
|
93
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
94
|
+
"""
|
95
|
+
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"}`
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "freeform_tags")
|
98
|
+
|
99
|
+
@_builtins.property
|
100
|
+
@pulumi.getter
|
101
|
+
def id(self) -> _builtins.str:
|
102
|
+
"""
|
103
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database Snapshot.
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "id")
|
106
|
+
|
107
|
+
@_builtins.property
|
108
|
+
@pulumi.getter(name="lifecycleDetails")
|
109
|
+
def lifecycle_details(self) -> _builtins.str:
|
110
|
+
"""
|
111
|
+
Additional information about the current lifecycle state of the Exadata Pluggable Database Snapshot.
|
112
|
+
"""
|
113
|
+
return pulumi.get(self, "lifecycle_details")
|
114
|
+
|
115
|
+
@_builtins.property
|
116
|
+
@pulumi.getter
|
117
|
+
def name(self) -> _builtins.str:
|
118
|
+
"""
|
119
|
+
The user-friendly name for the Database Snapshot. The name should be unique.
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "name")
|
122
|
+
|
123
|
+
@_builtins.property
|
124
|
+
@pulumi.getter(name="pluggableDatabaseId")
|
125
|
+
def pluggable_database_id(self) -> _builtins.str:
|
126
|
+
"""
|
127
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Pluggable Database.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "pluggable_database_id")
|
130
|
+
|
131
|
+
@_builtins.property
|
132
|
+
@pulumi.getter(name="pluggableDatabaseSnapshotId")
|
133
|
+
def pluggable_database_snapshot_id(self) -> _builtins.str:
|
134
|
+
return pulumi.get(self, "pluggable_database_snapshot_id")
|
135
|
+
|
136
|
+
@_builtins.property
|
137
|
+
@pulumi.getter
|
138
|
+
def state(self) -> _builtins.str:
|
139
|
+
"""
|
140
|
+
The current state of the Exadata Pluggable Database Snapshot.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "state")
|
143
|
+
|
144
|
+
@_builtins.property
|
145
|
+
@pulumi.getter(name="systemTags")
|
146
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
147
|
+
"""
|
148
|
+
System 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).
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "system_tags")
|
151
|
+
|
152
|
+
@_builtins.property
|
153
|
+
@pulumi.getter(name="timeCreated")
|
154
|
+
def time_created(self) -> _builtins.str:
|
155
|
+
"""
|
156
|
+
The date and time that the Exadata Pluggable Database Snapshot was created, as expressed in RFC 3339 format. For example: 2023-06-27T21:10:29Z
|
157
|
+
"""
|
158
|
+
return pulumi.get(self, "time_created")
|
159
|
+
|
160
|
+
|
161
|
+
class AwaitableGetPluggableDatabaseSnapshotResult(GetPluggableDatabaseSnapshotResult):
|
162
|
+
# pylint: disable=using-constant-test
|
163
|
+
def __await__(self):
|
164
|
+
if False:
|
165
|
+
yield self
|
166
|
+
return GetPluggableDatabaseSnapshotResult(
|
167
|
+
cluster_id=self.cluster_id,
|
168
|
+
compartment_id=self.compartment_id,
|
169
|
+
defined_tags=self.defined_tags,
|
170
|
+
freeform_tags=self.freeform_tags,
|
171
|
+
id=self.id,
|
172
|
+
lifecycle_details=self.lifecycle_details,
|
173
|
+
name=self.name,
|
174
|
+
pluggable_database_id=self.pluggable_database_id,
|
175
|
+
pluggable_database_snapshot_id=self.pluggable_database_snapshot_id,
|
176
|
+
state=self.state,
|
177
|
+
system_tags=self.system_tags,
|
178
|
+
time_created=self.time_created)
|
179
|
+
|
180
|
+
|
181
|
+
def get_pluggable_database_snapshot(pluggable_database_snapshot_id: Optional[_builtins.str] = None,
|
182
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPluggableDatabaseSnapshotResult:
|
183
|
+
"""
|
184
|
+
This data source provides details about a specific Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service.
|
185
|
+
|
186
|
+
Gets information about the specified Exadata Pluggable Database Snapshot in the specified compartment.
|
187
|
+
|
188
|
+
## Example Usage
|
189
|
+
|
190
|
+
```python
|
191
|
+
import pulumi
|
192
|
+
import pulumi_oci as oci
|
193
|
+
|
194
|
+
test_pluggable_database_snapshot = oci.Database.get_pluggable_database_snapshot(pluggable_database_snapshot_id=test_pluggable_database_snapshot_oci_database_pluggable_database_snapshot["id"])
|
195
|
+
```
|
196
|
+
|
197
|
+
|
198
|
+
:param _builtins.str pluggable_database_snapshot_id: The Exadata Pluggable Database Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
199
|
+
"""
|
200
|
+
__args__ = dict()
|
201
|
+
__args__['pluggableDatabaseSnapshotId'] = pluggable_database_snapshot_id
|
202
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
203
|
+
__ret__ = pulumi.runtime.invoke('oci:Database/getPluggableDatabaseSnapshot:getPluggableDatabaseSnapshot', __args__, opts=opts, typ=GetPluggableDatabaseSnapshotResult).value
|
204
|
+
|
205
|
+
return AwaitableGetPluggableDatabaseSnapshotResult(
|
206
|
+
cluster_id=pulumi.get(__ret__, 'cluster_id'),
|
207
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
208
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
209
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
210
|
+
id=pulumi.get(__ret__, 'id'),
|
211
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
212
|
+
name=pulumi.get(__ret__, 'name'),
|
213
|
+
pluggable_database_id=pulumi.get(__ret__, 'pluggable_database_id'),
|
214
|
+
pluggable_database_snapshot_id=pulumi.get(__ret__, 'pluggable_database_snapshot_id'),
|
215
|
+
state=pulumi.get(__ret__, 'state'),
|
216
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
217
|
+
time_created=pulumi.get(__ret__, 'time_created'))
|
218
|
+
def get_pluggable_database_snapshot_output(pluggable_database_snapshot_id: Optional[pulumi.Input[_builtins.str]] = None,
|
219
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPluggableDatabaseSnapshotResult]:
|
220
|
+
"""
|
221
|
+
This data source provides details about a specific Pluggable Database Snapshot resource in Oracle Cloud Infrastructure Database service.
|
222
|
+
|
223
|
+
Gets information about the specified Exadata Pluggable Database Snapshot in the specified compartment.
|
224
|
+
|
225
|
+
## Example Usage
|
226
|
+
|
227
|
+
```python
|
228
|
+
import pulumi
|
229
|
+
import pulumi_oci as oci
|
230
|
+
|
231
|
+
test_pluggable_database_snapshot = oci.Database.get_pluggable_database_snapshot(pluggable_database_snapshot_id=test_pluggable_database_snapshot_oci_database_pluggable_database_snapshot["id"])
|
232
|
+
```
|
233
|
+
|
234
|
+
|
235
|
+
:param _builtins.str pluggable_database_snapshot_id: The Exadata Pluggable Database Snapshot [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
236
|
+
"""
|
237
|
+
__args__ = dict()
|
238
|
+
__args__['pluggableDatabaseSnapshotId'] = pluggable_database_snapshot_id
|
239
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
240
|
+
__ret__ = pulumi.runtime.invoke_output('oci:Database/getPluggableDatabaseSnapshot:getPluggableDatabaseSnapshot', __args__, opts=opts, typ=GetPluggableDatabaseSnapshotResult)
|
241
|
+
return __ret__.apply(lambda __response__: GetPluggableDatabaseSnapshotResult(
|
242
|
+
cluster_id=pulumi.get(__response__, 'cluster_id'),
|
243
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
244
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
245
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
246
|
+
id=pulumi.get(__response__, 'id'),
|
247
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
248
|
+
name=pulumi.get(__response__, 'name'),
|
249
|
+
pluggable_database_id=pulumi.get(__response__, 'pluggable_database_id'),
|
250
|
+
pluggable_database_snapshot_id=pulumi.get(__response__, 'pluggable_database_snapshot_id'),
|
251
|
+
state=pulumi.get(__response__, 'state'),
|
252
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
253
|
+
time_created=pulumi.get(__response__, 'time_created')))
|