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
@@ -282,6 +282,7 @@ class _PluggableDatabaseState:
|
|
282
282
|
should_create_pdb_backup: Optional[pulumi.Input[builtins.bool]] = None,
|
283
283
|
should_pdb_admin_account_be_locked: Optional[pulumi.Input[builtins.bool]] = None,
|
284
284
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
285
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
285
286
|
tde_wallet_password: Optional[pulumi.Input[builtins.str]] = None,
|
286
287
|
time_created: Optional[pulumi.Input[builtins.str]] = None):
|
287
288
|
"""
|
@@ -313,6 +314,7 @@ class _PluggableDatabaseState:
|
|
313
314
|
:param pulumi.Input[builtins.bool] should_create_pdb_backup: Indicates whether to take Pluggable Database Backup after the operation.
|
314
315
|
:param pulumi.Input[builtins.bool] should_pdb_admin_account_be_locked: The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.
|
315
316
|
:param pulumi.Input[builtins.str] state: The current state of the pluggable database.
|
317
|
+
: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).
|
316
318
|
:param pulumi.Input[builtins.str] tde_wallet_password: The existing TDE wallet password of the CDB.
|
317
319
|
:param pulumi.Input[builtins.str] time_created: The date and time the pluggable database was created.
|
318
320
|
"""
|
@@ -360,6 +362,8 @@ class _PluggableDatabaseState:
|
|
360
362
|
pulumi.set(__self__, "should_pdb_admin_account_be_locked", should_pdb_admin_account_be_locked)
|
361
363
|
if state is not None:
|
362
364
|
pulumi.set(__self__, "state", state)
|
365
|
+
if system_tags is not None:
|
366
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
363
367
|
if tde_wallet_password is not None:
|
364
368
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
365
369
|
if time_created is not None:
|
@@ -632,6 +636,18 @@ class _PluggableDatabaseState:
|
|
632
636
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
633
637
|
pulumi.set(self, "state", value)
|
634
638
|
|
639
|
+
@property
|
640
|
+
@pulumi.getter(name="systemTags")
|
641
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
642
|
+
"""
|
643
|
+
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).
|
644
|
+
"""
|
645
|
+
return pulumi.get(self, "system_tags")
|
646
|
+
|
647
|
+
@system_tags.setter
|
648
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
649
|
+
pulumi.set(self, "system_tags", value)
|
650
|
+
|
635
651
|
@property
|
636
652
|
@pulumi.getter(name="tdeWalletPassword")
|
637
653
|
def tde_wallet_password(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -801,6 +817,7 @@ class PluggableDatabase(pulumi.CustomResource):
|
|
801
817
|
__props__.__dict__["pluggable_database_management_configs"] = None
|
802
818
|
__props__.__dict__["refreshable_clone_configs"] = None
|
803
819
|
__props__.__dict__["state"] = None
|
820
|
+
__props__.__dict__["system_tags"] = None
|
804
821
|
__props__.__dict__["time_created"] = None
|
805
822
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["containerDatabaseAdminPassword", "pdbAdminPassword", "tdeWalletPassword"])
|
806
823
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
@@ -836,6 +853,7 @@ class PluggableDatabase(pulumi.CustomResource):
|
|
836
853
|
should_create_pdb_backup: Optional[pulumi.Input[builtins.bool]] = None,
|
837
854
|
should_pdb_admin_account_be_locked: Optional[pulumi.Input[builtins.bool]] = None,
|
838
855
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
856
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
839
857
|
tde_wallet_password: Optional[pulumi.Input[builtins.str]] = None,
|
840
858
|
time_created: Optional[pulumi.Input[builtins.str]] = None) -> 'PluggableDatabase':
|
841
859
|
"""
|
@@ -872,6 +890,7 @@ class PluggableDatabase(pulumi.CustomResource):
|
|
872
890
|
:param pulumi.Input[builtins.bool] should_create_pdb_backup: Indicates whether to take Pluggable Database Backup after the operation.
|
873
891
|
:param pulumi.Input[builtins.bool] should_pdb_admin_account_be_locked: The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.
|
874
892
|
:param pulumi.Input[builtins.str] state: The current state of the pluggable database.
|
893
|
+
: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).
|
875
894
|
:param pulumi.Input[builtins.str] tde_wallet_password: The existing TDE wallet password of the CDB.
|
876
895
|
:param pulumi.Input[builtins.str] time_created: The date and time the pluggable database was created.
|
877
896
|
"""
|
@@ -901,6 +920,7 @@ class PluggableDatabase(pulumi.CustomResource):
|
|
901
920
|
__props__.__dict__["should_create_pdb_backup"] = should_create_pdb_backup
|
902
921
|
__props__.__dict__["should_pdb_admin_account_be_locked"] = should_pdb_admin_account_be_locked
|
903
922
|
__props__.__dict__["state"] = state
|
923
|
+
__props__.__dict__["system_tags"] = system_tags
|
904
924
|
__props__.__dict__["tde_wallet_password"] = tde_wallet_password
|
905
925
|
__props__.__dict__["time_created"] = time_created
|
906
926
|
return PluggableDatabase(resource_name, opts=opts, __props__=__props__)
|
@@ -1084,6 +1104,14 @@ class PluggableDatabase(pulumi.CustomResource):
|
|
1084
1104
|
"""
|
1085
1105
|
return pulumi.get(self, "state")
|
1086
1106
|
|
1107
|
+
@property
|
1108
|
+
@pulumi.getter(name="systemTags")
|
1109
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1110
|
+
"""
|
1111
|
+
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).
|
1112
|
+
"""
|
1113
|
+
return pulumi.get(self, "system_tags")
|
1114
|
+
|
1087
1115
|
@property
|
1088
1116
|
@pulumi.getter(name="tdeWalletPassword")
|
1089
1117
|
def tde_wallet_password(self) -> pulumi.Output[builtins.str]:
|
@@ -133,6 +133,7 @@ class _PluggableDatabasesLocalCloneState:
|
|
133
133
|
refreshable_clone_configs: Optional[pulumi.Input[Sequence[pulumi.Input['PluggableDatabasesLocalCloneRefreshableCloneConfigArgs']]]] = None,
|
134
134
|
should_pdb_admin_account_be_locked: Optional[pulumi.Input[builtins.bool]] = None,
|
135
135
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
136
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
136
137
|
target_tde_wallet_password: Optional[pulumi.Input[builtins.str]] = None,
|
137
138
|
time_created: Optional[pulumi.Input[builtins.str]] = None):
|
138
139
|
"""
|
@@ -154,6 +155,7 @@ class _PluggableDatabasesLocalCloneState:
|
|
154
155
|
:param pulumi.Input[Sequence[pulumi.Input['PluggableDatabasesLocalCloneRefreshableCloneConfigArgs']]] refreshable_clone_configs: Pluggable Database Refreshable Clone Configuration.
|
155
156
|
:param pulumi.Input[builtins.bool] should_pdb_admin_account_be_locked: The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.
|
156
157
|
:param pulumi.Input[builtins.str] state: The current state of the pluggable database.
|
158
|
+
: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).
|
157
159
|
:param pulumi.Input[builtins.str] target_tde_wallet_password: The existing TDE wallet password of the target CDB.
|
158
160
|
|
159
161
|
|
@@ -195,6 +197,8 @@ class _PluggableDatabasesLocalCloneState:
|
|
195
197
|
pulumi.set(__self__, "should_pdb_admin_account_be_locked", should_pdb_admin_account_be_locked)
|
196
198
|
if state is not None:
|
197
199
|
pulumi.set(__self__, "state", state)
|
200
|
+
if system_tags is not None:
|
201
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
198
202
|
if target_tde_wallet_password is not None:
|
199
203
|
pulumi.set(__self__, "target_tde_wallet_password", target_tde_wallet_password)
|
200
204
|
if time_created is not None:
|
@@ -404,6 +408,18 @@ class _PluggableDatabasesLocalCloneState:
|
|
404
408
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
405
409
|
pulumi.set(self, "state", value)
|
406
410
|
|
411
|
+
@property
|
412
|
+
@pulumi.getter(name="systemTags")
|
413
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
414
|
+
"""
|
415
|
+
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).
|
416
|
+
"""
|
417
|
+
return pulumi.get(self, "system_tags")
|
418
|
+
|
419
|
+
@system_tags.setter
|
420
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
421
|
+
pulumi.set(self, "system_tags", value)
|
422
|
+
|
407
423
|
@property
|
408
424
|
@pulumi.getter(name="targetTdeWalletPassword")
|
409
425
|
def target_tde_wallet_password(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -562,6 +578,7 @@ class PluggableDatabasesLocalClone(pulumi.CustomResource):
|
|
562
578
|
__props__.__dict__["pluggable_database_management_configs"] = None
|
563
579
|
__props__.__dict__["refreshable_clone_configs"] = None
|
564
580
|
__props__.__dict__["state"] = None
|
581
|
+
__props__.__dict__["system_tags"] = None
|
565
582
|
__props__.__dict__["time_created"] = None
|
566
583
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["pdbAdminPassword", "targetTdeWalletPassword"])
|
567
584
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
@@ -592,6 +609,7 @@ class PluggableDatabasesLocalClone(pulumi.CustomResource):
|
|
592
609
|
refreshable_clone_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['PluggableDatabasesLocalCloneRefreshableCloneConfigArgs', 'PluggableDatabasesLocalCloneRefreshableCloneConfigArgsDict']]]]] = None,
|
593
610
|
should_pdb_admin_account_be_locked: Optional[pulumi.Input[builtins.bool]] = None,
|
594
611
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
612
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
595
613
|
target_tde_wallet_password: Optional[pulumi.Input[builtins.str]] = None,
|
596
614
|
time_created: Optional[pulumi.Input[builtins.str]] = None) -> 'PluggableDatabasesLocalClone':
|
597
615
|
"""
|
@@ -618,6 +636,7 @@ class PluggableDatabasesLocalClone(pulumi.CustomResource):
|
|
618
636
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PluggableDatabasesLocalCloneRefreshableCloneConfigArgs', 'PluggableDatabasesLocalCloneRefreshableCloneConfigArgsDict']]]] refreshable_clone_configs: Pluggable Database Refreshable Clone Configuration.
|
619
637
|
:param pulumi.Input[builtins.bool] should_pdb_admin_account_be_locked: The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.
|
620
638
|
:param pulumi.Input[builtins.str] state: The current state of the pluggable database.
|
639
|
+
: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).
|
621
640
|
:param pulumi.Input[builtins.str] target_tde_wallet_password: The existing TDE wallet password of the target CDB.
|
622
641
|
|
623
642
|
|
@@ -646,6 +665,7 @@ class PluggableDatabasesLocalClone(pulumi.CustomResource):
|
|
646
665
|
__props__.__dict__["refreshable_clone_configs"] = refreshable_clone_configs
|
647
666
|
__props__.__dict__["should_pdb_admin_account_be_locked"] = should_pdb_admin_account_be_locked
|
648
667
|
__props__.__dict__["state"] = state
|
668
|
+
__props__.__dict__["system_tags"] = system_tags
|
649
669
|
__props__.__dict__["target_tde_wallet_password"] = target_tde_wallet_password
|
650
670
|
__props__.__dict__["time_created"] = time_created
|
651
671
|
return PluggableDatabasesLocalClone(resource_name, opts=opts, __props__=__props__)
|
@@ -786,6 +806,14 @@ class PluggableDatabasesLocalClone(pulumi.CustomResource):
|
|
786
806
|
"""
|
787
807
|
return pulumi.get(self, "state")
|
788
808
|
|
809
|
+
@property
|
810
|
+
@pulumi.getter(name="systemTags")
|
811
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
812
|
+
"""
|
813
|
+
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).
|
814
|
+
"""
|
815
|
+
return pulumi.get(self, "system_tags")
|
816
|
+
|
789
817
|
@property
|
790
818
|
@pulumi.getter(name="targetTdeWalletPassword")
|
791
819
|
def target_tde_wallet_password(self) -> pulumi.Output[builtins.str]:
|
@@ -164,6 +164,7 @@ class _PluggableDatabasesRemoteCloneState:
|
|
164
164
|
should_pdb_admin_account_be_locked: Optional[pulumi.Input[builtins.bool]] = None,
|
165
165
|
source_container_db_admin_password: Optional[pulumi.Input[builtins.str]] = None,
|
166
166
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
167
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
167
168
|
target_container_database_id: Optional[pulumi.Input[builtins.str]] = None,
|
168
169
|
target_tde_wallet_password: Optional[pulumi.Input[builtins.str]] = None,
|
169
170
|
time_created: Optional[pulumi.Input[builtins.str]] = None):
|
@@ -187,6 +188,7 @@ class _PluggableDatabasesRemoteCloneState:
|
|
187
188
|
:param pulumi.Input[builtins.bool] should_pdb_admin_account_be_locked: The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.
|
188
189
|
:param pulumi.Input[builtins.str] source_container_db_admin_password: The DB system administrator password of the source CDB.
|
189
190
|
:param pulumi.Input[builtins.str] state: The current state of the pluggable database.
|
191
|
+
: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).
|
190
192
|
:param pulumi.Input[builtins.str] target_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target CDB
|
191
193
|
:param pulumi.Input[builtins.str] target_tde_wallet_password: The existing TDE wallet password of the target CDB.
|
192
194
|
|
@@ -231,6 +233,8 @@ class _PluggableDatabasesRemoteCloneState:
|
|
231
233
|
pulumi.set(__self__, "source_container_db_admin_password", source_container_db_admin_password)
|
232
234
|
if state is not None:
|
233
235
|
pulumi.set(__self__, "state", state)
|
236
|
+
if system_tags is not None:
|
237
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
234
238
|
if target_container_database_id is not None:
|
235
239
|
pulumi.set(__self__, "target_container_database_id", target_container_database_id)
|
236
240
|
if target_tde_wallet_password is not None:
|
@@ -454,6 +458,18 @@ class _PluggableDatabasesRemoteCloneState:
|
|
454
458
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
455
459
|
pulumi.set(self, "state", value)
|
456
460
|
|
461
|
+
@property
|
462
|
+
@pulumi.getter(name="systemTags")
|
463
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
464
|
+
"""
|
465
|
+
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).
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "system_tags")
|
468
|
+
|
469
|
+
@system_tags.setter
|
470
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
471
|
+
pulumi.set(self, "system_tags", value)
|
472
|
+
|
457
473
|
@property
|
458
474
|
@pulumi.getter(name="targetContainerDatabaseId")
|
459
475
|
def target_container_database_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -642,6 +658,7 @@ class PluggableDatabasesRemoteClone(pulumi.CustomResource):
|
|
642
658
|
__props__.__dict__["pluggable_database_management_configs"] = None
|
643
659
|
__props__.__dict__["refreshable_clone_configs"] = None
|
644
660
|
__props__.__dict__["state"] = None
|
661
|
+
__props__.__dict__["system_tags"] = None
|
645
662
|
__props__.__dict__["time_created"] = None
|
646
663
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["pdbAdminPassword", "sourceContainerDbAdminPassword", "targetTdeWalletPassword"])
|
647
664
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
@@ -673,6 +690,7 @@ class PluggableDatabasesRemoteClone(pulumi.CustomResource):
|
|
673
690
|
should_pdb_admin_account_be_locked: Optional[pulumi.Input[builtins.bool]] = None,
|
674
691
|
source_container_db_admin_password: Optional[pulumi.Input[builtins.str]] = None,
|
675
692
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
693
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
676
694
|
target_container_database_id: Optional[pulumi.Input[builtins.str]] = None,
|
677
695
|
target_tde_wallet_password: Optional[pulumi.Input[builtins.str]] = None,
|
678
696
|
time_created: Optional[pulumi.Input[builtins.str]] = None) -> 'PluggableDatabasesRemoteClone':
|
@@ -701,6 +719,7 @@ class PluggableDatabasesRemoteClone(pulumi.CustomResource):
|
|
701
719
|
:param pulumi.Input[builtins.bool] should_pdb_admin_account_be_locked: The locked mode of the pluggable database admin account. If false, the user needs to provide the PDB Admin Password to connect to it. If true, the pluggable database will be locked and user cannot login to it.
|
702
720
|
:param pulumi.Input[builtins.str] source_container_db_admin_password: The DB system administrator password of the source CDB.
|
703
721
|
:param pulumi.Input[builtins.str] state: The current state of the pluggable database.
|
722
|
+
: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).
|
704
723
|
:param pulumi.Input[builtins.str] target_container_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the target CDB
|
705
724
|
:param pulumi.Input[builtins.str] target_tde_wallet_password: The existing TDE wallet password of the target CDB.
|
706
725
|
|
@@ -731,6 +750,7 @@ class PluggableDatabasesRemoteClone(pulumi.CustomResource):
|
|
731
750
|
__props__.__dict__["should_pdb_admin_account_be_locked"] = should_pdb_admin_account_be_locked
|
732
751
|
__props__.__dict__["source_container_db_admin_password"] = source_container_db_admin_password
|
733
752
|
__props__.__dict__["state"] = state
|
753
|
+
__props__.__dict__["system_tags"] = system_tags
|
734
754
|
__props__.__dict__["target_container_database_id"] = target_container_database_id
|
735
755
|
__props__.__dict__["target_tde_wallet_password"] = target_tde_wallet_password
|
736
756
|
__props__.__dict__["time_created"] = time_created
|
@@ -880,6 +900,14 @@ class PluggableDatabasesRemoteClone(pulumi.CustomResource):
|
|
880
900
|
"""
|
881
901
|
return pulumi.get(self, "state")
|
882
902
|
|
903
|
+
@property
|
904
|
+
@pulumi.getter(name="systemTags")
|
905
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
906
|
+
"""
|
907
|
+
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).
|
908
|
+
"""
|
909
|
+
return pulumi.get(self, "system_tags")
|
910
|
+
|
883
911
|
@property
|
884
912
|
@pulumi.getter(name="targetContainerDatabaseId")
|
885
913
|
def target_container_database_id(self) -> pulumi.Output[builtins.str]:
|
@@ -453,6 +453,7 @@ class _VmClusterState:
|
|
453
453
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
454
454
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
455
455
|
storage_management_type: Optional[pulumi.Input[builtins.str]] = None,
|
456
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
456
457
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
457
458
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
458
459
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -487,6 +488,7 @@ class _VmClusterState:
|
|
487
488
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
488
489
|
:param pulumi.Input[builtins.str] state: The current state of the VM cluster.
|
489
490
|
:param pulumi.Input[builtins.str] storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
491
|
+
: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).
|
490
492
|
:param pulumi.Input[builtins.str] system_version: Operating system version of the image.
|
491
493
|
:param pulumi.Input[builtins.str] time_created: The date and time that the VM cluster was created.
|
492
494
|
:param pulumi.Input[builtins.str] time_zone: The time zone to use for the VM cluster. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -557,6 +559,8 @@ class _VmClusterState:
|
|
557
559
|
pulumi.set(__self__, "state", state)
|
558
560
|
if storage_management_type is not None:
|
559
561
|
pulumi.set(__self__, "storage_management_type", storage_management_type)
|
562
|
+
if system_tags is not None:
|
563
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
560
564
|
if system_version is not None:
|
561
565
|
pulumi.set(__self__, "system_version", system_version)
|
562
566
|
if time_created is not None:
|
@@ -919,6 +923,18 @@ class _VmClusterState:
|
|
919
923
|
def storage_management_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
920
924
|
pulumi.set(self, "storage_management_type", value)
|
921
925
|
|
926
|
+
@property
|
927
|
+
@pulumi.getter(name="systemTags")
|
928
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
929
|
+
"""
|
930
|
+
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).
|
931
|
+
"""
|
932
|
+
return pulumi.get(self, "system_tags")
|
933
|
+
|
934
|
+
@system_tags.setter
|
935
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
936
|
+
pulumi.set(self, "system_tags", value)
|
937
|
+
|
922
938
|
@property
|
923
939
|
@pulumi.getter(name="systemVersion")
|
924
940
|
def system_version(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -1279,6 +1295,7 @@ class VmCluster(pulumi.CustomResource):
|
|
1279
1295
|
__props__.__dict__["shape"] = None
|
1280
1296
|
__props__.__dict__["state"] = None
|
1281
1297
|
__props__.__dict__["storage_management_type"] = None
|
1298
|
+
__props__.__dict__["system_tags"] = None
|
1282
1299
|
__props__.__dict__["time_created"] = None
|
1283
1300
|
super(VmCluster, __self__).__init__(
|
1284
1301
|
'oci:Database/vmCluster:VmCluster',
|
@@ -1320,6 +1337,7 @@ class VmCluster(pulumi.CustomResource):
|
|
1320
1337
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1321
1338
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
1322
1339
|
storage_management_type: Optional[pulumi.Input[builtins.str]] = None,
|
1340
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1323
1341
|
system_version: Optional[pulumi.Input[builtins.str]] = None,
|
1324
1342
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
1325
1343
|
time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -1359,6 +1377,7 @@ class VmCluster(pulumi.CustomResource):
|
|
1359
1377
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
1360
1378
|
:param pulumi.Input[builtins.str] state: The current state of the VM cluster.
|
1361
1379
|
:param pulumi.Input[builtins.str] storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
1380
|
+
: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).
|
1362
1381
|
:param pulumi.Input[builtins.str] system_version: Operating system version of the image.
|
1363
1382
|
:param pulumi.Input[builtins.str] time_created: The date and time that the VM cluster was created.
|
1364
1383
|
:param pulumi.Input[builtins.str] time_zone: The time zone to use for the VM cluster. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -1403,6 +1422,7 @@ class VmCluster(pulumi.CustomResource):
|
|
1403
1422
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1404
1423
|
__props__.__dict__["state"] = state
|
1405
1424
|
__props__.__dict__["storage_management_type"] = storage_management_type
|
1425
|
+
__props__.__dict__["system_tags"] = system_tags
|
1406
1426
|
__props__.__dict__["system_version"] = system_version
|
1407
1427
|
__props__.__dict__["time_created"] = time_created
|
1408
1428
|
__props__.__dict__["time_zone"] = time_zone
|
@@ -1641,6 +1661,14 @@ class VmCluster(pulumi.CustomResource):
|
|
1641
1661
|
"""
|
1642
1662
|
return pulumi.get(self, "storage_management_type")
|
1643
1663
|
|
1664
|
+
@property
|
1665
|
+
@pulumi.getter(name="systemTags")
|
1666
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1667
|
+
"""
|
1668
|
+
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).
|
1669
|
+
"""
|
1670
|
+
return pulumi.get(self, "system_tags")
|
1671
|
+
|
1644
1672
|
@property
|
1645
1673
|
@pulumi.getter(name="systemVersion")
|
1646
1674
|
def system_version(self) -> pulumi.Output[builtins.str]:
|
@@ -221,6 +221,7 @@ class _VmClusterNetworkState:
|
|
221
221
|
ntps: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
222
222
|
scans: Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]]] = None,
|
223
223
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
224
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
224
225
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
225
226
|
validate_vm_cluster_network: Optional[pulumi.Input[builtins.bool]] = None,
|
226
227
|
vm_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -238,6 +239,7 @@ class _VmClusterNetworkState:
|
|
238
239
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
239
240
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
240
241
|
:param pulumi.Input[builtins.str] state: The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
242
|
+
: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).
|
241
243
|
:param pulumi.Input[builtins.str] time_created: The date and time when the VM cluster network was created.
|
242
244
|
:param pulumi.Input[builtins.str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
243
245
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: (Updatable) Details of the client and backup networks.
|
@@ -266,6 +268,8 @@ class _VmClusterNetworkState:
|
|
266
268
|
pulumi.set(__self__, "scans", scans)
|
267
269
|
if state is not None:
|
268
270
|
pulumi.set(__self__, "state", state)
|
271
|
+
if system_tags is not None:
|
272
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
269
273
|
if time_created is not None:
|
270
274
|
pulumi.set(__self__, "time_created", time_created)
|
271
275
|
if validate_vm_cluster_network is not None:
|
@@ -416,6 +420,18 @@ class _VmClusterNetworkState:
|
|
416
420
|
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
417
421
|
pulumi.set(self, "state", value)
|
418
422
|
|
423
|
+
@property
|
424
|
+
@pulumi.getter(name="systemTags")
|
425
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
426
|
+
"""
|
427
|
+
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).
|
428
|
+
"""
|
429
|
+
return pulumi.get(self, "system_tags")
|
430
|
+
|
431
|
+
@system_tags.setter
|
432
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
433
|
+
pulumi.set(self, "system_tags", value)
|
434
|
+
|
419
435
|
@property
|
420
436
|
@pulumi.getter(name="timeCreated")
|
421
437
|
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -680,6 +696,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
680
696
|
__props__.__dict__["vm_networks"] = vm_networks
|
681
697
|
__props__.__dict__["lifecycle_details"] = None
|
682
698
|
__props__.__dict__["state"] = None
|
699
|
+
__props__.__dict__["system_tags"] = None
|
683
700
|
__props__.__dict__["time_created"] = None
|
684
701
|
__props__.__dict__["vm_cluster_id"] = None
|
685
702
|
super(VmClusterNetwork, __self__).__init__(
|
@@ -704,6 +721,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
704
721
|
ntps: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
705
722
|
scans: Optional[pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkScanArgs', 'VmClusterNetworkScanArgsDict']]]]] = None,
|
706
723
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
724
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
707
725
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
708
726
|
validate_vm_cluster_network: Optional[pulumi.Input[builtins.bool]] = None,
|
709
727
|
vm_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -726,6 +744,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
726
744
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
727
745
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkScanArgs', 'VmClusterNetworkScanArgsDict']]]] scans: (Updatable) The SCAN details.
|
728
746
|
:param pulumi.Input[builtins.str] state: The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
747
|
+
: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).
|
729
748
|
:param pulumi.Input[builtins.str] time_created: The date and time when the VM cluster network was created.
|
730
749
|
:param pulumi.Input[builtins.str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
731
750
|
:param pulumi.Input[Sequence[pulumi.Input[Union['VmClusterNetworkVmNetworkArgs', 'VmClusterNetworkVmNetworkArgsDict']]]] vm_networks: (Updatable) Details of the client and backup networks.
|
@@ -746,6 +765,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
746
765
|
__props__.__dict__["ntps"] = ntps
|
747
766
|
__props__.__dict__["scans"] = scans
|
748
767
|
__props__.__dict__["state"] = state
|
768
|
+
__props__.__dict__["system_tags"] = system_tags
|
749
769
|
__props__.__dict__["time_created"] = time_created
|
750
770
|
__props__.__dict__["validate_vm_cluster_network"] = validate_vm_cluster_network
|
751
771
|
__props__.__dict__["vm_cluster_id"] = vm_cluster_id
|
@@ -845,6 +865,14 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
845
865
|
"""
|
846
866
|
return pulumi.get(self, "state")
|
847
867
|
|
868
|
+
@property
|
869
|
+
@pulumi.getter(name="systemTags")
|
870
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
871
|
+
"""
|
872
|
+
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).
|
873
|
+
"""
|
874
|
+
return pulumi.get(self, "system_tags")
|
875
|
+
|
848
876
|
@property
|
849
877
|
@pulumi.getter(name="timeCreated")
|
850
878
|
def time_created(self) -> pulumi.Output[builtins.str]:
|
@@ -131,7 +131,14 @@ from .get_managed_databases_user_proxy_users import *
|
|
131
131
|
from .get_managed_databases_user_system_privilege import *
|
132
132
|
from .get_managed_databases_user_system_privileges import *
|
133
133
|
from .get_managed_my_sql_database import *
|
134
|
+
from .get_managed_my_sql_database_binary_log_information import *
|
134
135
|
from .get_managed_my_sql_database_configuration_data import *
|
136
|
+
from .get_managed_my_sql_database_digest_errors import *
|
137
|
+
from .get_managed_my_sql_database_general_replication_information import *
|
138
|
+
from .get_managed_my_sql_database_high_availability_members import *
|
139
|
+
from .get_managed_my_sql_database_inbound_replications import *
|
140
|
+
from .get_managed_my_sql_database_outbound_replications import *
|
141
|
+
from .get_managed_my_sql_database_query_detail import *
|
135
142
|
from .get_managed_my_sql_database_sql_data import *
|
136
143
|
from .get_managed_my_sql_databases import *
|
137
144
|
from .get_named_credential import *
|