pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__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 +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -56,6 +56,7 @@ class CloudVmClusterArgs:
|
|
56
56
|
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
57
57
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
58
58
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
59
|
+
tde_key_store_type: Optional[pulumi.Input[builtins.str]] = None,
|
59
60
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
60
61
|
vm_cluster_type: Optional[pulumi.Input[builtins.str]] = None):
|
61
62
|
"""
|
@@ -63,7 +64,7 @@ class CloudVmClusterArgs:
|
|
63
64
|
:param pulumi.Input[builtins.str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the cloud VM cluster.
|
64
65
|
:param pulumi.Input[builtins.str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
|
65
66
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
66
|
-
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of
|
67
|
+
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
67
68
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
68
69
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
69
70
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -105,6 +106,7 @@ class CloudVmClusterArgs:
|
|
105
106
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
106
107
|
:param pulumi.Input[builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
107
108
|
:param pulumi.Input[builtins.str] system_version: Operating system version of the image.
|
109
|
+
:param pulumi.Input[builtins.str] tde_key_store_type: Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
108
110
|
:param pulumi.Input[builtins.str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
109
111
|
:param pulumi.Input[builtins.str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
|
110
112
|
|
@@ -171,6 +173,8 @@ class CloudVmClusterArgs:
|
|
171
173
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
172
174
|
if system_version is not None:
|
173
175
|
pulumi.set(__self__, "system_version", system_version)
|
176
|
+
if tde_key_store_type is not None:
|
177
|
+
pulumi.set(__self__, "tde_key_store_type", tde_key_store_type)
|
174
178
|
if time_zone is not None:
|
175
179
|
pulumi.set(__self__, "time_zone", time_zone)
|
176
180
|
if vm_cluster_type is not None:
|
@@ -216,7 +220,7 @@ class CloudVmClusterArgs:
|
|
216
220
|
@pulumi.getter(name="cpuCoreCount")
|
217
221
|
def cpu_core_count(self) -> pulumi.Input[builtins.int]:
|
218
222
|
"""
|
219
|
-
(Updatable) The number of
|
223
|
+
(Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
220
224
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
221
225
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
222
226
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -593,6 +597,18 @@ class CloudVmClusterArgs:
|
|
593
597
|
def system_version(self, value: Optional[pulumi.Input[builtins.str]]):
|
594
598
|
pulumi.set(self, "system_version", value)
|
595
599
|
|
600
|
+
@property
|
601
|
+
@pulumi.getter(name="tdeKeyStoreType")
|
602
|
+
def tde_key_store_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
603
|
+
"""
|
604
|
+
Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
605
|
+
"""
|
606
|
+
return pulumi.get(self, "tde_key_store_type")
|
607
|
+
|
608
|
+
@tde_key_store_type.setter
|
609
|
+
def tde_key_store_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
610
|
+
pulumi.set(self, "tde_key_store_type", value)
|
611
|
+
|
596
612
|
@property
|
597
613
|
@pulumi.getter(name="timeZone")
|
598
614
|
def time_zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -656,6 +672,7 @@ class _CloudVmClusterState:
|
|
656
672
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
657
673
|
listener_port: Optional[pulumi.Input[builtins.str]] = None,
|
658
674
|
memory_size_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
|
675
|
+
multi_cloud_identity_connector_configs: Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterMultiCloudIdentityConnectorConfigArgs']]]] = None,
|
659
676
|
node_count: Optional[pulumi.Input[builtins.int]] = None,
|
660
677
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
661
678
|
ocpu_count: Optional[pulumi.Input[builtins.float]] = None,
|
@@ -675,6 +692,7 @@ class _CloudVmClusterState:
|
|
675
692
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
676
693
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
677
694
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
695
|
+
tde_key_store_type: Optional[pulumi.Input[builtins.str]] = None,
|
678
696
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
679
697
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
680
698
|
vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
@@ -691,7 +709,7 @@ class _CloudVmClusterState:
|
|
691
709
|
:param pulumi.Input[builtins.str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
692
710
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
693
711
|
:param pulumi.Input[builtins.str] compute_model: The compute model of the cloud VM cluster.
|
694
|
-
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of
|
712
|
+
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
695
713
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
696
714
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
697
715
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -724,6 +742,7 @@ class _CloudVmClusterState:
|
|
724
742
|
:param pulumi.Input[builtins.str] lifecycle_details: Additional information about the current lifecycle state.
|
725
743
|
:param pulumi.Input[builtins.str] listener_port: The port number configured for the listener on the cloud VM cluster.
|
726
744
|
:param pulumi.Input[builtins.int] memory_size_in_gbs: (Updatable) The memory to be allocated in GBs.
|
745
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudVmClusterMultiCloudIdentityConnectorConfigArgs']]] multi_cloud_identity_connector_configs: Details of the multi cloud identity connectors of the VM cluster.
|
727
746
|
:param pulumi.Input[builtins.int] node_count: The number of nodes in the cloud VM cluster.
|
728
747
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
729
748
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
@@ -744,6 +763,7 @@ class _CloudVmClusterState:
|
|
744
763
|
:param pulumi.Input[builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
745
764
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
746
765
|
:param pulumi.Input[builtins.str] system_version: Operating system version of the image.
|
766
|
+
:param pulumi.Input[builtins.str] tde_key_store_type: Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
747
767
|
:param pulumi.Input[builtins.str] time_created: The date and time that the cloud VM cluster was created.
|
748
768
|
:param pulumi.Input[builtins.str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
749
769
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
@@ -817,6 +837,8 @@ class _CloudVmClusterState:
|
|
817
837
|
pulumi.set(__self__, "listener_port", listener_port)
|
818
838
|
if memory_size_in_gbs is not None:
|
819
839
|
pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
|
840
|
+
if multi_cloud_identity_connector_configs is not None:
|
841
|
+
pulumi.set(__self__, "multi_cloud_identity_connector_configs", multi_cloud_identity_connector_configs)
|
820
842
|
if node_count is not None:
|
821
843
|
pulumi.set(__self__, "node_count", node_count)
|
822
844
|
if nsg_ids is not None:
|
@@ -855,6 +877,8 @@ class _CloudVmClusterState:
|
|
855
877
|
pulumi.set(__self__, "system_tags", system_tags)
|
856
878
|
if system_version is not None:
|
857
879
|
pulumi.set(__self__, "system_version", system_version)
|
880
|
+
if tde_key_store_type is not None:
|
881
|
+
pulumi.set(__self__, "tde_key_store_type", tde_key_store_type)
|
858
882
|
if time_created is not None:
|
859
883
|
pulumi.set(__self__, "time_created", time_created)
|
860
884
|
if time_zone is not None:
|
@@ -968,7 +992,7 @@ class _CloudVmClusterState:
|
|
968
992
|
@pulumi.getter(name="cpuCoreCount")
|
969
993
|
def cpu_core_count(self) -> Optional[pulumi.Input[builtins.int]]:
|
970
994
|
"""
|
971
|
-
(Updatable) The number of
|
995
|
+
(Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
972
996
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
973
997
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
974
998
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -1248,6 +1272,18 @@ class _CloudVmClusterState:
|
|
1248
1272
|
def memory_size_in_gbs(self, value: Optional[pulumi.Input[builtins.int]]):
|
1249
1273
|
pulumi.set(self, "memory_size_in_gbs", value)
|
1250
1274
|
|
1275
|
+
@property
|
1276
|
+
@pulumi.getter(name="multiCloudIdentityConnectorConfigs")
|
1277
|
+
def multi_cloud_identity_connector_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterMultiCloudIdentityConnectorConfigArgs']]]]:
|
1278
|
+
"""
|
1279
|
+
Details of the multi cloud identity connectors of the VM cluster.
|
1280
|
+
"""
|
1281
|
+
return pulumi.get(self, "multi_cloud_identity_connector_configs")
|
1282
|
+
|
1283
|
+
@multi_cloud_identity_connector_configs.setter
|
1284
|
+
def multi_cloud_identity_connector_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudVmClusterMultiCloudIdentityConnectorConfigArgs']]]]):
|
1285
|
+
pulumi.set(self, "multi_cloud_identity_connector_configs", value)
|
1286
|
+
|
1251
1287
|
@property
|
1252
1288
|
@pulumi.getter(name="nodeCount")
|
1253
1289
|
def node_count(self) -> Optional[pulumi.Input[builtins.int]]:
|
@@ -1477,6 +1513,18 @@ class _CloudVmClusterState:
|
|
1477
1513
|
def system_version(self, value: Optional[pulumi.Input[builtins.str]]):
|
1478
1514
|
pulumi.set(self, "system_version", value)
|
1479
1515
|
|
1516
|
+
@property
|
1517
|
+
@pulumi.getter(name="tdeKeyStoreType")
|
1518
|
+
def tde_key_store_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
1519
|
+
"""
|
1520
|
+
Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
1521
|
+
"""
|
1522
|
+
return pulumi.get(self, "tde_key_store_type")
|
1523
|
+
|
1524
|
+
@tde_key_store_type.setter
|
1525
|
+
def tde_key_store_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
1526
|
+
pulumi.set(self, "tde_key_store_type", value)
|
1527
|
+
|
1480
1528
|
@property
|
1481
1529
|
@pulumi.getter(name="timeCreated")
|
1482
1530
|
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -1594,6 +1642,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1594
1642
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
1595
1643
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
1596
1644
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
1645
|
+
tde_key_store_type: Optional[pulumi.Input[builtins.str]] = None,
|
1597
1646
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
1598
1647
|
vm_cluster_type: Optional[pulumi.Input[builtins.str]] = None,
|
1599
1648
|
__props__=None):
|
@@ -1682,7 +1731,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1682
1731
|
:param pulumi.Input[builtins.str] cloud_exadata_infrastructure_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud Exadata infrastructure resource.
|
1683
1732
|
:param pulumi.Input[builtins.str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
1684
1733
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1685
|
-
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of
|
1734
|
+
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
1686
1735
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
1687
1736
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
1688
1737
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -1721,6 +1770,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1721
1770
|
:param pulumi.Input[builtins.str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
|
1722
1771
|
:param pulumi.Input[builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
1723
1772
|
:param pulumi.Input[builtins.str] system_version: Operating system version of the image.
|
1773
|
+
:param pulumi.Input[builtins.str] tde_key_store_type: Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
1724
1774
|
:param pulumi.Input[builtins.str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1725
1775
|
:param pulumi.Input[builtins.str] vm_cluster_type: The vmcluster type for the VM cluster/Cloud VM cluster.
|
1726
1776
|
|
@@ -1860,6 +1910,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1860
1910
|
subnet_id: Optional[pulumi.Input[builtins.str]] = None,
|
1861
1911
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
1862
1912
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
1913
|
+
tde_key_store_type: Optional[pulumi.Input[builtins.str]] = None,
|
1863
1914
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
1864
1915
|
vm_cluster_type: Optional[pulumi.Input[builtins.str]] = None,
|
1865
1916
|
__props__=None):
|
@@ -1923,6 +1974,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1923
1974
|
__props__.__dict__["subnet_id"] = subnet_id
|
1924
1975
|
__props__.__dict__["subscription_id"] = subscription_id
|
1925
1976
|
__props__.__dict__["system_version"] = system_version
|
1977
|
+
__props__.__dict__["tde_key_store_type"] = tde_key_store_type
|
1926
1978
|
__props__.__dict__["time_zone"] = time_zone
|
1927
1979
|
__props__.__dict__["vm_cluster_type"] = vm_cluster_type
|
1928
1980
|
__props__.__dict__["availability_domain"] = None
|
@@ -1932,6 +1984,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1932
1984
|
__props__.__dict__["last_update_history_entry_id"] = None
|
1933
1985
|
__props__.__dict__["lifecycle_details"] = None
|
1934
1986
|
__props__.__dict__["listener_port"] = None
|
1987
|
+
__props__.__dict__["multi_cloud_identity_connector_configs"] = None
|
1935
1988
|
__props__.__dict__["node_count"] = None
|
1936
1989
|
__props__.__dict__["scan_dns_name"] = None
|
1937
1990
|
__props__.__dict__["scan_dns_record_id"] = None
|
@@ -1986,6 +2039,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1986
2039
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
1987
2040
|
listener_port: Optional[pulumi.Input[builtins.str]] = None,
|
1988
2041
|
memory_size_in_gbs: Optional[pulumi.Input[builtins.int]] = None,
|
2042
|
+
multi_cloud_identity_connector_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CloudVmClusterMultiCloudIdentityConnectorConfigArgs', 'CloudVmClusterMultiCloudIdentityConnectorConfigArgsDict']]]]] = None,
|
1989
2043
|
node_count: Optional[pulumi.Input[builtins.int]] = None,
|
1990
2044
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1991
2045
|
ocpu_count: Optional[pulumi.Input[builtins.float]] = None,
|
@@ -2005,6 +2059,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2005
2059
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
2006
2060
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
2007
2061
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
2062
|
+
tde_key_store_type: Optional[pulumi.Input[builtins.str]] = None,
|
2008
2063
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
2009
2064
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
2010
2065
|
vip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
@@ -2026,7 +2081,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2026
2081
|
:param pulumi.Input[builtins.str] cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
2027
2082
|
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
2028
2083
|
:param pulumi.Input[builtins.str] compute_model: The compute model of the cloud VM cluster.
|
2029
|
-
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of
|
2084
|
+
:param pulumi.Input[builtins.int] cpu_core_count: (Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
2030
2085
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
2031
2086
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
2032
2087
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -2059,6 +2114,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2059
2114
|
:param pulumi.Input[builtins.str] lifecycle_details: Additional information about the current lifecycle state.
|
2060
2115
|
:param pulumi.Input[builtins.str] listener_port: The port number configured for the listener on the cloud VM cluster.
|
2061
2116
|
:param pulumi.Input[builtins.int] memory_size_in_gbs: (Updatable) The memory to be allocated in GBs.
|
2117
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['CloudVmClusterMultiCloudIdentityConnectorConfigArgs', 'CloudVmClusterMultiCloudIdentityConnectorConfigArgsDict']]]] multi_cloud_identity_connector_configs: Details of the multi cloud identity connectors of the VM cluster.
|
2062
2118
|
:param pulumi.Input[builtins.int] node_count: The number of nodes in the cloud VM cluster.
|
2063
2119
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] nsg_ids: (Updatable) The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). **NsgIds restrictions:**
|
2064
2120
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
@@ -2079,6 +2135,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2079
2135
|
:param pulumi.Input[builtins.str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
2080
2136
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
2081
2137
|
:param pulumi.Input[builtins.str] system_version: Operating system version of the image.
|
2138
|
+
:param pulumi.Input[builtins.str] tde_key_store_type: Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
2082
2139
|
:param pulumi.Input[builtins.str] time_created: The date and time that the cloud VM cluster was created.
|
2083
2140
|
:param pulumi.Input[builtins.str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
2084
2141
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
@@ -2125,6 +2182,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2125
2182
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
2126
2183
|
__props__.__dict__["listener_port"] = listener_port
|
2127
2184
|
__props__.__dict__["memory_size_in_gbs"] = memory_size_in_gbs
|
2185
|
+
__props__.__dict__["multi_cloud_identity_connector_configs"] = multi_cloud_identity_connector_configs
|
2128
2186
|
__props__.__dict__["node_count"] = node_count
|
2129
2187
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
2130
2188
|
__props__.__dict__["ocpu_count"] = ocpu_count
|
@@ -2144,6 +2202,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2144
2202
|
__props__.__dict__["subscription_id"] = subscription_id
|
2145
2203
|
__props__.__dict__["system_tags"] = system_tags
|
2146
2204
|
__props__.__dict__["system_version"] = system_version
|
2205
|
+
__props__.__dict__["tde_key_store_type"] = tde_key_store_type
|
2147
2206
|
__props__.__dict__["time_created"] = time_created
|
2148
2207
|
__props__.__dict__["time_zone"] = time_zone
|
2149
2208
|
__props__.__dict__["vip_ids"] = vip_ids
|
@@ -2220,7 +2279,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2220
2279
|
@pulumi.getter(name="cpuCoreCount")
|
2221
2280
|
def cpu_core_count(self) -> pulumi.Output[builtins.int]:
|
2222
2281
|
"""
|
2223
|
-
(Updatable) The number of
|
2282
|
+
(Updatable) The number of ECPUs (X11M and higher) or number of OCPUs (X10M and earlier) to enable for the VM cluster.
|
2224
2283
|
* Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
|
2225
2284
|
* Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
|
2226
2285
|
* Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
|
@@ -2408,6 +2467,14 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2408
2467
|
"""
|
2409
2468
|
return pulumi.get(self, "memory_size_in_gbs")
|
2410
2469
|
|
2470
|
+
@property
|
2471
|
+
@pulumi.getter(name="multiCloudIdentityConnectorConfigs")
|
2472
|
+
def multi_cloud_identity_connector_configs(self) -> pulumi.Output[Sequence['outputs.CloudVmClusterMultiCloudIdentityConnectorConfig']]:
|
2473
|
+
"""
|
2474
|
+
Details of the multi cloud identity connectors of the VM cluster.
|
2475
|
+
"""
|
2476
|
+
return pulumi.get(self, "multi_cloud_identity_connector_configs")
|
2477
|
+
|
2411
2478
|
@property
|
2412
2479
|
@pulumi.getter(name="nodeCount")
|
2413
2480
|
def node_count(self) -> pulumi.Output[builtins.int]:
|
@@ -2561,6 +2628,14 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2561
2628
|
"""
|
2562
2629
|
return pulumi.get(self, "system_version")
|
2563
2630
|
|
2631
|
+
@property
|
2632
|
+
@pulumi.getter(name="tdeKeyStoreType")
|
2633
|
+
def tde_key_store_type(self) -> pulumi.Output[builtins.str]:
|
2634
|
+
"""
|
2635
|
+
Use 'AZURE' for installing azure encryption RPMS. Use 'OCI' to install oracle managed encryption RPMS. Use 'NONE' to uninstall encryption RPMS.
|
2636
|
+
"""
|
2637
|
+
return pulumi.get(self, "tde_key_store_type")
|
2638
|
+
|
2564
2639
|
@property
|
2565
2640
|
@pulumi.getter(name="timeCreated")
|
2566
2641
|
def time_created(self) -> pulumi.Output[builtins.str]:
|
pulumi_oci/database/database.py
CHANGED
@@ -268,6 +268,7 @@ class _DatabaseState:
|
|
268
268
|
source: Optional[pulumi.Input[builtins.str]] = None,
|
269
269
|
source_database_point_in_time_recovery_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
270
270
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
271
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
271
272
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
272
273
|
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
273
274
|
vm_cluster_id: Optional[pulumi.Input[builtins.str]] = None):
|
@@ -315,6 +316,7 @@ class _DatabaseState:
|
|
315
316
|
:param pulumi.Input[builtins.str] source: The source of the database: Use `NONE` for creating a new database. Use `DB_BACKUP` for creating a new database by restoring from a backup. Use `DATAGUARD` for creating a new STANDBY database for a Data Guard setup. The default is `NONE`.
|
316
317
|
:param pulumi.Input[builtins.str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
|
317
318
|
:param pulumi.Input[builtins.str] state: The current state of the database.
|
319
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
318
320
|
:param pulumi.Input[builtins.str] time_created: The date and time the database was created.
|
319
321
|
:param pulumi.Input[builtins.str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
320
322
|
:param pulumi.Input[builtins.str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -389,6 +391,8 @@ class _DatabaseState:
|
|
389
391
|
pulumi.set(__self__, "source_database_point_in_time_recovery_timestamp", source_database_point_in_time_recovery_timestamp)
|
390
392
|
if state is not None:
|
391
393
|
pulumi.set(__self__, "state", state)
|
394
|
+
if system_tags is not None:
|
395
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
392
396
|
if time_created is not None:
|
393
397
|
pulumi.set(__self__, "time_created", time_created)
|
394
398
|
if vault_id is not None:
|
@@ -823,6 +827,18 @@ class _DatabaseState:
|
|
823
827
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
824
828
|
pulumi.set(self, "state", value)
|
825
829
|
|
830
|
+
@property
|
831
|
+
@pulumi.getter(name="systemTags")
|
832
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
833
|
+
"""
|
834
|
+
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).
|
835
|
+
"""
|
836
|
+
return pulumi.get(self, "system_tags")
|
837
|
+
|
838
|
+
@system_tags.setter
|
839
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
840
|
+
pulumi.set(self, "system_tags", value)
|
841
|
+
|
826
842
|
@property
|
827
843
|
@pulumi.getter(name="timeCreated")
|
828
844
|
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -1015,6 +1031,7 @@ class Database(pulumi.CustomResource):
|
|
1015
1031
|
__props__.__dict__["sid_prefix"] = None
|
1016
1032
|
__props__.__dict__["source_database_point_in_time_recovery_timestamp"] = None
|
1017
1033
|
__props__.__dict__["state"] = None
|
1034
|
+
__props__.__dict__["system_tags"] = None
|
1018
1035
|
__props__.__dict__["time_created"] = None
|
1019
1036
|
__props__.__dict__["vm_cluster_id"] = None
|
1020
1037
|
super(Database, __self__).__init__(
|
@@ -1062,6 +1079,7 @@ class Database(pulumi.CustomResource):
|
|
1062
1079
|
source: Optional[pulumi.Input[builtins.str]] = None,
|
1063
1080
|
source_database_point_in_time_recovery_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
1064
1081
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
1082
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1065
1083
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
1066
1084
|
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
1067
1085
|
vm_cluster_id: Optional[pulumi.Input[builtins.str]] = None) -> 'Database':
|
@@ -1114,6 +1132,7 @@ class Database(pulumi.CustomResource):
|
|
1114
1132
|
:param pulumi.Input[builtins.str] source: The source of the database: Use `NONE` for creating a new database. Use `DB_BACKUP` for creating a new database by restoring from a backup. Use `DATAGUARD` for creating a new STANDBY database for a Data Guard setup. The default is `NONE`.
|
1115
1133
|
:param pulumi.Input[builtins.str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
|
1116
1134
|
:param pulumi.Input[builtins.str] state: The current state of the database.
|
1135
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1117
1136
|
:param pulumi.Input[builtins.str] time_created: The date and time the database was created.
|
1118
1137
|
:param pulumi.Input[builtins.str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
1119
1138
|
:param pulumi.Input[builtins.str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -1157,6 +1176,7 @@ class Database(pulumi.CustomResource):
|
|
1157
1176
|
__props__.__dict__["source"] = source
|
1158
1177
|
__props__.__dict__["source_database_point_in_time_recovery_timestamp"] = source_database_point_in_time_recovery_timestamp
|
1159
1178
|
__props__.__dict__["state"] = state
|
1179
|
+
__props__.__dict__["system_tags"] = system_tags
|
1160
1180
|
__props__.__dict__["time_created"] = time_created
|
1161
1181
|
__props__.__dict__["vault_id"] = vault_id
|
1162
1182
|
__props__.__dict__["vm_cluster_id"] = vm_cluster_id
|
@@ -1449,6 +1469,14 @@ class Database(pulumi.CustomResource):
|
|
1449
1469
|
"""
|
1450
1470
|
return pulumi.get(self, "state")
|
1451
1471
|
|
1472
|
+
@property
|
1473
|
+
@pulumi.getter(name="systemTags")
|
1474
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1475
|
+
"""
|
1476
|
+
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).
|
1477
|
+
"""
|
1478
|
+
return pulumi.get(self, "system_tags")
|
1479
|
+
|
1452
1480
|
@property
|
1453
1481
|
@pulumi.getter(name="timeCreated")
|
1454
1482
|
def time_created(self) -> pulumi.Output[builtins.str]:
|
@@ -226,6 +226,7 @@ class _DatabaseSoftwareImageState:
|
|
226
226
|
patch_set: Optional[pulumi.Input[builtins.str]] = None,
|
227
227
|
source_db_home_id: Optional[pulumi.Input[builtins.str]] = None,
|
228
228
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
229
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
229
230
|
time_created: Optional[pulumi.Input[builtins.str]] = None):
|
230
231
|
"""
|
231
232
|
Input properties used for looking up and filtering DatabaseSoftwareImage resources.
|
@@ -249,6 +250,7 @@ class _DatabaseSoftwareImageState:
|
|
249
250
|
** IMPORTANT **
|
250
251
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
251
252
|
:param pulumi.Input[builtins.str] state: The current state of the database software image.
|
253
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
252
254
|
:param pulumi.Input[builtins.str] time_created: The date and time the database software image was created.
|
253
255
|
"""
|
254
256
|
if compartment_id is not None:
|
@@ -283,6 +285,8 @@ class _DatabaseSoftwareImageState:
|
|
283
285
|
pulumi.set(__self__, "source_db_home_id", source_db_home_id)
|
284
286
|
if state is not None:
|
285
287
|
pulumi.set(__self__, "state", state)
|
288
|
+
if system_tags is not None:
|
289
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
286
290
|
if time_created is not None:
|
287
291
|
pulumi.set(__self__, "time_created", time_created)
|
288
292
|
|
@@ -482,6 +486,18 @@ class _DatabaseSoftwareImageState:
|
|
482
486
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
483
487
|
pulumi.set(self, "state", value)
|
484
488
|
|
489
|
+
@property
|
490
|
+
@pulumi.getter(name="systemTags")
|
491
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
492
|
+
"""
|
493
|
+
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).
|
494
|
+
"""
|
495
|
+
return pulumi.get(self, "system_tags")
|
496
|
+
|
497
|
+
@system_tags.setter
|
498
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
499
|
+
pulumi.set(self, "system_tags", value)
|
500
|
+
|
485
501
|
@property
|
486
502
|
@pulumi.getter(name="timeCreated")
|
487
503
|
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -662,6 +678,7 @@ class DatabaseSoftwareImage(pulumi.CustomResource):
|
|
662
678
|
__props__.__dict__["is_upgrade_supported"] = None
|
663
679
|
__props__.__dict__["lifecycle_details"] = None
|
664
680
|
__props__.__dict__["state"] = None
|
681
|
+
__props__.__dict__["system_tags"] = None
|
665
682
|
__props__.__dict__["time_created"] = None
|
666
683
|
super(DatabaseSoftwareImage, __self__).__init__(
|
667
684
|
'oci:Database/databaseSoftwareImage:DatabaseSoftwareImage',
|
@@ -689,6 +706,7 @@ class DatabaseSoftwareImage(pulumi.CustomResource):
|
|
689
706
|
patch_set: Optional[pulumi.Input[builtins.str]] = None,
|
690
707
|
source_db_home_id: Optional[pulumi.Input[builtins.str]] = None,
|
691
708
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
709
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
692
710
|
time_created: Optional[pulumi.Input[builtins.str]] = None) -> 'DatabaseSoftwareImage':
|
693
711
|
"""
|
694
712
|
Get an existing DatabaseSoftwareImage resource's state with the given name, id, and optional extra
|
@@ -717,6 +735,7 @@ class DatabaseSoftwareImage(pulumi.CustomResource):
|
|
717
735
|
** IMPORTANT **
|
718
736
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
719
737
|
:param pulumi.Input[builtins.str] state: The current state of the database software image.
|
738
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
720
739
|
:param pulumi.Input[builtins.str] time_created: The date and time the database software image was created.
|
721
740
|
"""
|
722
741
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -739,6 +758,7 @@ class DatabaseSoftwareImage(pulumi.CustomResource):
|
|
739
758
|
__props__.__dict__["patch_set"] = patch_set
|
740
759
|
__props__.__dict__["source_db_home_id"] = source_db_home_id
|
741
760
|
__props__.__dict__["state"] = state
|
761
|
+
__props__.__dict__["system_tags"] = system_tags
|
742
762
|
__props__.__dict__["time_created"] = time_created
|
743
763
|
return DatabaseSoftwareImage(resource_name, opts=opts, __props__=__props__)
|
744
764
|
|
@@ -874,6 +894,14 @@ class DatabaseSoftwareImage(pulumi.CustomResource):
|
|
874
894
|
"""
|
875
895
|
return pulumi.get(self, "state")
|
876
896
|
|
897
|
+
@property
|
898
|
+
@pulumi.getter(name="systemTags")
|
899
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
900
|
+
"""
|
901
|
+
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).
|
902
|
+
"""
|
903
|
+
return pulumi.get(self, "system_tags")
|
904
|
+
|
877
905
|
@property
|
878
906
|
@pulumi.getter(name="timeCreated")
|
879
907
|
def time_created(self) -> pulumi.Output[builtins.str]:
|
@@ -106,6 +106,7 @@ class _DatabaseUpgradeState:
|
|
106
106
|
sid_prefix: Optional[pulumi.Input[builtins.str]] = None,
|
107
107
|
source_database_point_in_time_recovery_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
108
108
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
109
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
109
110
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
110
111
|
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
111
112
|
vm_cluster_id: Optional[pulumi.Input[builtins.str]] = None):
|
@@ -141,6 +142,7 @@ class _DatabaseUpgradeState:
|
|
141
142
|
:param pulumi.Input[builtins.str] sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
142
143
|
:param pulumi.Input[builtins.str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
|
143
144
|
:param pulumi.Input[builtins.str] state: The current state of the database.
|
145
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
144
146
|
:param pulumi.Input[builtins.str] time_created: The date and time the database was created.
|
145
147
|
:param pulumi.Input[builtins.str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
146
148
|
:param pulumi.Input[builtins.str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -205,6 +207,8 @@ class _DatabaseUpgradeState:
|
|
205
207
|
pulumi.set(__self__, "source_database_point_in_time_recovery_timestamp", source_database_point_in_time_recovery_timestamp)
|
206
208
|
if state is not None:
|
207
209
|
pulumi.set(__self__, "state", state)
|
210
|
+
if system_tags is not None:
|
211
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
208
212
|
if time_created is not None:
|
209
213
|
pulumi.set(__self__, "time_created", time_created)
|
210
214
|
if vault_id is not None:
|
@@ -572,6 +576,18 @@ class _DatabaseUpgradeState:
|
|
572
576
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
573
577
|
pulumi.set(self, "state", value)
|
574
578
|
|
579
|
+
@property
|
580
|
+
@pulumi.getter(name="systemTags")
|
581
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
582
|
+
"""
|
583
|
+
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).
|
584
|
+
"""
|
585
|
+
return pulumi.get(self, "system_tags")
|
586
|
+
|
587
|
+
@system_tags.setter
|
588
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
589
|
+
pulumi.set(self, "system_tags", value)
|
590
|
+
|
575
591
|
@property
|
576
592
|
@pulumi.getter(name="timeCreated")
|
577
593
|
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -722,6 +738,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
|
|
722
738
|
__props__.__dict__["sid_prefix"] = None
|
723
739
|
__props__.__dict__["source_database_point_in_time_recovery_timestamp"] = None
|
724
740
|
__props__.__dict__["state"] = None
|
741
|
+
__props__.__dict__["system_tags"] = None
|
725
742
|
__props__.__dict__["time_created"] = None
|
726
743
|
__props__.__dict__["vault_id"] = None
|
727
744
|
__props__.__dict__["vm_cluster_id"] = None
|
@@ -765,6 +782,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
|
|
765
782
|
sid_prefix: Optional[pulumi.Input[builtins.str]] = None,
|
766
783
|
source_database_point_in_time_recovery_timestamp: Optional[pulumi.Input[builtins.str]] = None,
|
767
784
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
785
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
768
786
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
769
787
|
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
770
788
|
vm_cluster_id: Optional[pulumi.Input[builtins.str]] = None) -> 'DatabaseUpgrade':
|
@@ -805,6 +823,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
|
|
805
823
|
:param pulumi.Input[builtins.str] sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
806
824
|
:param pulumi.Input[builtins.str] source_database_point_in_time_recovery_timestamp: Point in time recovery timeStamp of the source database at which cloned database system is cloned from the source database system, as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339)
|
807
825
|
:param pulumi.Input[builtins.str] state: The current state of the database.
|
826
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
808
827
|
:param pulumi.Input[builtins.str] time_created: The date and time the database was created.
|
809
828
|
:param pulumi.Input[builtins.str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
810
829
|
:param pulumi.Input[builtins.str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -843,6 +862,7 @@ class DatabaseUpgrade(pulumi.CustomResource):
|
|
843
862
|
__props__.__dict__["sid_prefix"] = sid_prefix
|
844
863
|
__props__.__dict__["source_database_point_in_time_recovery_timestamp"] = source_database_point_in_time_recovery_timestamp
|
845
864
|
__props__.__dict__["state"] = state
|
865
|
+
__props__.__dict__["system_tags"] = system_tags
|
846
866
|
__props__.__dict__["time_created"] = time_created
|
847
867
|
__props__.__dict__["vault_id"] = vault_id
|
848
868
|
__props__.__dict__["vm_cluster_id"] = vm_cluster_id
|
@@ -1088,6 +1108,14 @@ class DatabaseUpgrade(pulumi.CustomResource):
|
|
1088
1108
|
"""
|
1089
1109
|
return pulumi.get(self, "state")
|
1090
1110
|
|
1111
|
+
@property
|
1112
|
+
@pulumi.getter(name="systemTags")
|
1113
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1114
|
+
"""
|
1115
|
+
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).
|
1116
|
+
"""
|
1117
|
+
return pulumi.get(self, "system_tags")
|
1118
|
+
|
1091
1119
|
@property
|
1092
1120
|
@pulumi.getter(name="timeCreated")
|
1093
1121
|
def time_created(self) -> pulumi.Output[builtins.str]:
|