pulumi-oci 2.8.0a1724316519__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -2268,7 +2268,9 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2268
2268
|
@staticmethod
|
2269
2269
|
def __key_warning(key: str):
|
2270
2270
|
suggest = None
|
2271
|
-
if key == "
|
2271
|
+
if key == "availabilityDomain":
|
2272
|
+
suggest = "availability_domain"
|
2273
|
+
elif key == "lagTimeInSeconds":
|
2272
2274
|
suggest = "lag_time_in_seconds"
|
2273
2275
|
elif key == "lifecycleDetails":
|
2274
2276
|
suggest = "lifecycle_details"
|
@@ -2289,18 +2291,22 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2289
2291
|
return super().get(key, default)
|
2290
2292
|
|
2291
2293
|
def __init__(__self__, *,
|
2294
|
+
availability_domain: Optional[str] = None,
|
2292
2295
|
lag_time_in_seconds: Optional[int] = None,
|
2293
2296
|
lifecycle_details: Optional[str] = None,
|
2294
2297
|
state: Optional[str] = None,
|
2295
2298
|
time_data_guard_role_changed: Optional[str] = None,
|
2296
2299
|
time_disaster_recovery_role_changed: Optional[str] = None):
|
2297
2300
|
"""
|
2301
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
2298
2302
|
:param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
2299
2303
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
2300
2304
|
:param str state: The current state of the Autonomous Database.
|
2301
2305
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
2302
2306
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
2303
2307
|
"""
|
2308
|
+
if availability_domain is not None:
|
2309
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
2304
2310
|
if lag_time_in_seconds is not None:
|
2305
2311
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
2306
2312
|
if lifecycle_details is not None:
|
@@ -2312,6 +2318,14 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2312
2318
|
if time_disaster_recovery_role_changed is not None:
|
2313
2319
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
2314
2320
|
|
2321
|
+
@property
|
2322
|
+
@pulumi.getter(name="availabilityDomain")
|
2323
|
+
def availability_domain(self) -> Optional[str]:
|
2324
|
+
"""
|
2325
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
2326
|
+
"""
|
2327
|
+
return pulumi.get(self, "availability_domain")
|
2328
|
+
|
2315
2329
|
@property
|
2316
2330
|
@pulumi.getter(name="lagTimeInSeconds")
|
2317
2331
|
def lag_time_in_seconds(self) -> Optional[int]:
|
@@ -2779,7 +2793,9 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
2779
2793
|
@staticmethod
|
2780
2794
|
def __key_warning(key: str):
|
2781
2795
|
suggest = None
|
2782
|
-
if key == "
|
2796
|
+
if key == "availabilityDomain":
|
2797
|
+
suggest = "availability_domain"
|
2798
|
+
elif key == "lagTimeInSeconds":
|
2783
2799
|
suggest = "lag_time_in_seconds"
|
2784
2800
|
elif key == "lifecycleDetails":
|
2785
2801
|
suggest = "lifecycle_details"
|
@@ -2800,18 +2816,22 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
2800
2816
|
return super().get(key, default)
|
2801
2817
|
|
2802
2818
|
def __init__(__self__, *,
|
2819
|
+
availability_domain: Optional[str] = None,
|
2803
2820
|
lag_time_in_seconds: Optional[int] = None,
|
2804
2821
|
lifecycle_details: Optional[str] = None,
|
2805
2822
|
state: Optional[str] = None,
|
2806
2823
|
time_data_guard_role_changed: Optional[str] = None,
|
2807
2824
|
time_disaster_recovery_role_changed: Optional[str] = None):
|
2808
2825
|
"""
|
2826
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
2809
2827
|
:param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
2810
2828
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
2811
2829
|
:param str state: The current state of the Autonomous Database.
|
2812
2830
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
2813
2831
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
2814
2832
|
"""
|
2833
|
+
if availability_domain is not None:
|
2834
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
2815
2835
|
if lag_time_in_seconds is not None:
|
2816
2836
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
2817
2837
|
if lifecycle_details is not None:
|
@@ -2823,6 +2843,14 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
2823
2843
|
if time_disaster_recovery_role_changed is not None:
|
2824
2844
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
2825
2845
|
|
2846
|
+
@property
|
2847
|
+
@pulumi.getter(name="availabilityDomain")
|
2848
|
+
def availability_domain(self) -> Optional[str]:
|
2849
|
+
"""
|
2850
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
2851
|
+
"""
|
2852
|
+
return pulumi.get(self, "availability_domain")
|
2853
|
+
|
2826
2854
|
@property
|
2827
2855
|
@pulumi.getter(name="lagTimeInSeconds")
|
2828
2856
|
def lag_time_in_seconds(self) -> Optional[int]:
|
@@ -16305,24 +16333,35 @@ class GetAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
16305
16333
|
@pulumi.output_type
|
16306
16334
|
class GetAutonomousDatabaseLocalStandbyDbResult(dict):
|
16307
16335
|
def __init__(__self__, *,
|
16336
|
+
availability_domain: str,
|
16308
16337
|
lag_time_in_seconds: int,
|
16309
16338
|
lifecycle_details: str,
|
16310
16339
|
state: str,
|
16311
16340
|
time_data_guard_role_changed: str,
|
16312
16341
|
time_disaster_recovery_role_changed: str):
|
16313
16342
|
"""
|
16343
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
16314
16344
|
:param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
16315
16345
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
16316
16346
|
:param str state: The current state of the Autonomous Database.
|
16317
16347
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
16318
16348
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
16319
16349
|
"""
|
16350
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
16320
16351
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
16321
16352
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
16322
16353
|
pulumi.set(__self__, "state", state)
|
16323
16354
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
16324
16355
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
16325
16356
|
|
16357
|
+
@property
|
16358
|
+
@pulumi.getter(name="availabilityDomain")
|
16359
|
+
def availability_domain(self) -> str:
|
16360
|
+
"""
|
16361
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
16362
|
+
"""
|
16363
|
+
return pulumi.get(self, "availability_domain")
|
16364
|
+
|
16326
16365
|
@property
|
16327
16366
|
@pulumi.getter(name="lagTimeInSeconds")
|
16328
16367
|
def lag_time_in_seconds(self) -> int:
|
@@ -16970,24 +17009,35 @@ class GetAutonomousDatabaseSoftwareImagesFilterResult(dict):
|
|
16970
17009
|
@pulumi.output_type
|
16971
17010
|
class GetAutonomousDatabaseStandbyDbResult(dict):
|
16972
17011
|
def __init__(__self__, *,
|
17012
|
+
availability_domain: str,
|
16973
17013
|
lag_time_in_seconds: int,
|
16974
17014
|
lifecycle_details: str,
|
16975
17015
|
state: str,
|
16976
17016
|
time_data_guard_role_changed: str,
|
16977
17017
|
time_disaster_recovery_role_changed: str):
|
16978
17018
|
"""
|
17019
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
16979
17020
|
:param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
16980
17021
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
16981
17022
|
:param str state: The current state of the Autonomous Database.
|
16982
17023
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
16983
17024
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
16984
17025
|
"""
|
17026
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
16985
17027
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
16986
17028
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
16987
17029
|
pulumi.set(__self__, "state", state)
|
16988
17030
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
16989
17031
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
16990
17032
|
|
17033
|
+
@property
|
17034
|
+
@pulumi.getter(name="availabilityDomain")
|
17035
|
+
def availability_domain(self) -> str:
|
17036
|
+
"""
|
17037
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
17038
|
+
"""
|
17039
|
+
return pulumi.get(self, "availability_domain")
|
17040
|
+
|
16991
17041
|
@property
|
16992
17042
|
@pulumi.getter(name="lagTimeInSeconds")
|
16993
17043
|
def lag_time_in_seconds(self) -> int:
|
@@ -17043,6 +17093,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17043
17093
|
autonomous_database_backup_id: str,
|
17044
17094
|
autonomous_database_id: str,
|
17045
17095
|
autonomous_maintenance_schedule_type: str,
|
17096
|
+
availability_domain: str,
|
17046
17097
|
available_upgrade_versions: Sequence[str],
|
17047
17098
|
backup_configs: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseBackupConfigResult'],
|
17048
17099
|
backup_retention_period_in_days: int,
|
@@ -17177,13 +17228,15 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17177
17228
|
:param int auto_refresh_frequency_in_seconds: The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
17178
17229
|
:param int auto_refresh_point_lag_in_seconds: The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
17179
17230
|
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
17231
|
+
:param str autonomous_database_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
17180
17232
|
:param str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
17233
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
17181
17234
|
:param Sequence[str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
|
17182
17235
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
17183
17236
|
:param int backup_retention_period_in_days: Retention period, in days, for backups.
|
17184
17237
|
:param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
17185
17238
|
:param str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
17186
|
-
:param str compartment_id: The
|
17239
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
17187
17240
|
:param float compute_count: Compute used by database tools.
|
17188
17241
|
:param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
17189
17242
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseConnectionStringArgs'] connection_strings: The connection string used to connect to the Autonomous Database. The username for the Service Console is ADMIN. Use the password you entered when creating the Autonomous Database for the password value.
|
@@ -17198,30 +17251,34 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17198
17251
|
:param str dataguard_region_type: The Autonomous Data Guard region type of the Autonomous Database. For Autonomous Database Serverless, Autonomous Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. The standby regions in Autonomous Data Guard associations can be the same region designated as the primary region, or they can be remote regions. Certain database administrative operations may be available only in the primary region of the Autonomous Data Guard association, and cannot be performed when the database using the primary role is operating in a remote Autonomous Data Guard standby region.
|
17199
17252
|
:param str db_name: The database name.
|
17200
17253
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseDbToolsDetailArgs'] db_tools_details: The list of database tools details.
|
17201
|
-
:param str db_version: A
|
17202
|
-
:param str db_workload:
|
17254
|
+
:param str db_version: A valid Oracle Database version for Autonomous Database.
|
17255
|
+
:param str db_workload: The Autonomous Database workload type. The following values are valid:
|
17256
|
+
* OLTP - indicates an Autonomous Transaction Processing database
|
17257
|
+
* DW - indicates an Autonomous Data Warehouse database
|
17258
|
+
* AJD - indicates an Autonomous JSON Database
|
17259
|
+
* APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
|
17203
17260
|
:param Mapping[str, str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
17204
17261
|
:param str disaster_recovery_region_type: The disaster recovery (DR) region type of the Autonomous Database. For Autonomous Database Serverless instances, DR associations have designated primary and standby regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
17205
17262
|
:param str disaster_recovery_type: Indicates the disaster recovery (DR) type of the Shared Autonomous Database. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
17206
|
-
:param str display_name:
|
17263
|
+
:param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
17207
17264
|
:param int failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
17208
17265
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
17209
17266
|
:param str id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
17210
17267
|
:param int in_memory_area_in_gbs: The area assigned to In-Memory tables in Autonomous Database.
|
17211
17268
|
:param int in_memory_percentage: The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
|
17212
|
-
:param str infrastructure_type:
|
17269
|
+
:param str infrastructure_type: The infrastructure type this resource belongs to.
|
17213
17270
|
:param bool is_access_control_enabled: Indicates if the database-level access control is enabled. If disabled, database access is defined by the network security rules. If enabled, database access is restricted to the IP addresses defined by the rules specified with the `whitelistedIps` property. While specifying `whitelistedIps` rules is optional, if database-level access control is enabled and no rules are specified, the database will become inaccessible. The rules can be added later using the `UpdateAutonomousDatabase` API operation or edit option in console. When creating a database clone, the desired access control setting should be specified. By default, database-level access control will be disabled for the clone.
|
17214
17271
|
:param bool is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Autonomous Database CPU core count. The default value is `TRUE`.
|
17215
17272
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
17216
|
-
:param bool is_data_guard_enabled:
|
17273
|
+
:param bool is_data_guard_enabled: **Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
17217
17274
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
17218
17275
|
:param bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
17219
|
-
:param bool is_free_tier:
|
17276
|
+
:param bool is_free_tier: Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
|
17220
17277
|
:param bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
17221
17278
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
17222
17279
|
:param bool is_preview: Indicates if the Autonomous Database version is a preview version.
|
17223
17280
|
:param bool is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
|
17224
|
-
:param bool is_refreshable_clone:
|
17281
|
+
:param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
|
17225
17282
|
:param bool is_remote_data_guard_enabled: Indicates whether the Autonomous Database has Cross Region Data Guard enabled. Not applicable to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
17226
17283
|
:param bool is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
17227
17284
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryArgs'] key_history_entries: Key History Entry.
|
@@ -17237,7 +17294,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17237
17294
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
|
17238
17295
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
|
17239
17296
|
:param int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
17240
|
-
:param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per
|
17297
|
+
:param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
|
17241
17298
|
:param str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
17242
17299
|
:param str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
|
17243
17300
|
:param str next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
|
@@ -17257,7 +17314,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17257
17314
|
:param str refreshable_mode: The refresh mode of the clone. AUTOMATIC indicates that the clone is automatically being refreshed with data from the source Autonomous Database.
|
17258
17315
|
:param str refreshable_status: The refresh status of the clone. REFRESHING indicates that the clone is currently being refreshed with data from the source Autonomous Database.
|
17259
17316
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs'] remote_disaster_recovery_configurations: Configurations of a Disaster Recovery.
|
17260
|
-
:param str resource_pool_leader_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
17317
|
+
:param str resource_pool_leader_id: The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
17261
17318
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryArgs'] resource_pool_summaries: The configuration details for resource pool
|
17262
17319
|
:param str role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
17263
17320
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseScheduledOperationArgs'] scheduled_operations: The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
@@ -17265,9 +17322,10 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17265
17322
|
:param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.
|
17266
17323
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
|
17267
17324
|
:param Sequence[str] standby_whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
|
17268
|
-
:param str state:
|
17325
|
+
:param str state: The current state of the Autonomous Database.
|
17269
17326
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
|
17270
17327
|
:param 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.
|
17328
|
+
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
|
17271
17329
|
:param Sequence[str] supported_regions_to_clone_tos: The list of regions that support the creation of an Autonomous Database clone or an Autonomous Data Guard standby database.
|
17272
17330
|
:param Mapping[str, 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).
|
17273
17331
|
:param str time_created: The date and time the Autonomous Database was created.
|
@@ -17303,6 +17361,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17303
17361
|
pulumi.set(__self__, "autonomous_database_backup_id", autonomous_database_backup_id)
|
17304
17362
|
pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
|
17305
17363
|
pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
|
17364
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
17306
17365
|
pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
|
17307
17366
|
pulumi.set(__self__, "backup_configs", backup_configs)
|
17308
17367
|
pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
|
@@ -17499,6 +17558,9 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17499
17558
|
@property
|
17500
17559
|
@pulumi.getter(name="autonomousDatabaseId")
|
17501
17560
|
def autonomous_database_id(self) -> str:
|
17561
|
+
"""
|
17562
|
+
The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
17563
|
+
"""
|
17502
17564
|
return pulumi.get(self, "autonomous_database_id")
|
17503
17565
|
|
17504
17566
|
@property
|
@@ -17509,6 +17571,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17509
17571
|
"""
|
17510
17572
|
return pulumi.get(self, "autonomous_maintenance_schedule_type")
|
17511
17573
|
|
17574
|
+
@property
|
17575
|
+
@pulumi.getter(name="availabilityDomain")
|
17576
|
+
def availability_domain(self) -> str:
|
17577
|
+
"""
|
17578
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
17579
|
+
"""
|
17580
|
+
return pulumi.get(self, "availability_domain")
|
17581
|
+
|
17512
17582
|
@property
|
17513
17583
|
@pulumi.getter(name="availableUpgradeVersions")
|
17514
17584
|
def available_upgrade_versions(self) -> Sequence[str]:
|
@@ -17563,7 +17633,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17563
17633
|
@pulumi.getter(name="compartmentId")
|
17564
17634
|
def compartment_id(self) -> str:
|
17565
17635
|
"""
|
17566
|
-
The
|
17636
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
17567
17637
|
"""
|
17568
17638
|
return pulumi.get(self, "compartment_id")
|
17569
17639
|
|
@@ -17683,7 +17753,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17683
17753
|
@pulumi.getter(name="dbVersion")
|
17684
17754
|
def db_version(self) -> str:
|
17685
17755
|
"""
|
17686
|
-
A
|
17756
|
+
A valid Oracle Database version for Autonomous Database.
|
17687
17757
|
"""
|
17688
17758
|
return pulumi.get(self, "db_version")
|
17689
17759
|
|
@@ -17691,7 +17761,11 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17691
17761
|
@pulumi.getter(name="dbWorkload")
|
17692
17762
|
def db_workload(self) -> str:
|
17693
17763
|
"""
|
17694
|
-
|
17764
|
+
The Autonomous Database workload type. The following values are valid:
|
17765
|
+
* OLTP - indicates an Autonomous Transaction Processing database
|
17766
|
+
* DW - indicates an Autonomous Data Warehouse database
|
17767
|
+
* AJD - indicates an Autonomous JSON Database
|
17768
|
+
* APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
|
17695
17769
|
"""
|
17696
17770
|
return pulumi.get(self, "db_workload")
|
17697
17771
|
|
@@ -17723,7 +17797,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17723
17797
|
@pulumi.getter(name="displayName")
|
17724
17798
|
def display_name(self) -> str:
|
17725
17799
|
"""
|
17726
|
-
|
17800
|
+
The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
17727
17801
|
"""
|
17728
17802
|
return pulumi.get(self, "display_name")
|
17729
17803
|
|
@@ -17771,7 +17845,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17771
17845
|
@pulumi.getter(name="infrastructureType")
|
17772
17846
|
def infrastructure_type(self) -> str:
|
17773
17847
|
"""
|
17774
|
-
|
17848
|
+
The infrastructure type this resource belongs to.
|
17775
17849
|
"""
|
17776
17850
|
return pulumi.get(self, "infrastructure_type")
|
17777
17851
|
|
@@ -17803,7 +17877,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17803
17877
|
@pulumi.getter(name="isDataGuardEnabled")
|
17804
17878
|
def is_data_guard_enabled(self) -> bool:
|
17805
17879
|
"""
|
17806
|
-
|
17880
|
+
**Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
17807
17881
|
"""
|
17808
17882
|
return pulumi.get(self, "is_data_guard_enabled")
|
17809
17883
|
|
@@ -17827,7 +17901,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17827
17901
|
@pulumi.getter(name="isFreeTier")
|
17828
17902
|
def is_free_tier(self) -> bool:
|
17829
17903
|
"""
|
17830
|
-
|
17904
|
+
Indicates if this is an Always Free resource. The default value is false. Note that Always Free Autonomous Databases have 1 CPU and 20GB of memory. For Always Free databases, memory and CPU cannot be scaled.
|
17831
17905
|
"""
|
17832
17906
|
return pulumi.get(self, "is_free_tier")
|
17833
17907
|
|
@@ -17872,7 +17946,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
17872
17946
|
@pulumi.getter(name="isRefreshableClone")
|
17873
17947
|
def is_refreshable_clone(self) -> bool:
|
17874
17948
|
"""
|
17875
|
-
|
17949
|
+
Indicates if the Autonomous Database is a refreshable clone.
|
17876
17950
|
"""
|
17877
17951
|
return pulumi.get(self, "is_refreshable_clone")
|
17878
17952
|
|
@@ -18006,7 +18080,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
18006
18080
|
@pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
|
18007
18081
|
def memory_per_oracle_compute_unit_in_gbs(self) -> int:
|
18008
18082
|
"""
|
18009
|
-
The amount of memory (in GBs) enabled per
|
18083
|
+
The amount of memory (in GBs) enabled per ECPU or OCPU.
|
18010
18084
|
"""
|
18011
18085
|
return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
|
18012
18086
|
|
@@ -18164,7 +18238,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
18164
18238
|
@pulumi.getter(name="resourcePoolLeaderId")
|
18165
18239
|
def resource_pool_leader_id(self) -> str:
|
18166
18240
|
"""
|
18167
|
-
The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
18241
|
+
The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
18168
18242
|
"""
|
18169
18243
|
return pulumi.get(self, "resource_pool_leader_id")
|
18170
18244
|
|
@@ -18253,7 +18327,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
18253
18327
|
@pulumi.getter
|
18254
18328
|
def state(self) -> str:
|
18255
18329
|
"""
|
18256
|
-
|
18330
|
+
The current state of the Autonomous Database.
|
18257
18331
|
"""
|
18258
18332
|
return pulumi.get(self, "state")
|
18259
18333
|
|
@@ -18270,6 +18344,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
18270
18344
|
def subscription_id(self) -> str:
|
18271
18345
|
"""
|
18272
18346
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
18347
|
+
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
|
18273
18348
|
"""
|
18274
18349
|
return pulumi.get(self, "subscription_id")
|
18275
18350
|
|
@@ -18623,12 +18698,11 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
18623
18698
|
value: str):
|
18624
18699
|
"""
|
18625
18700
|
:param str consumer_group: Consumer group used by the connection.
|
18626
|
-
:param str display_name:
|
18701
|
+
:param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
18627
18702
|
:param str host_format: Host format used in connection string.
|
18628
|
-
:param bool is_regional: True for a regional connection string, applicable to cross-region DG only.
|
18629
18703
|
:param str protocol: Protocol used by the connection.
|
18630
18704
|
:param str session_mode: Specifies whether the listener performs a direct hand-off of the session, or redirects the session. In RAC deployments where SCAN is used, sessions are redirected to a Node VIP. Use `DIRECT` for direct hand-offs. Use `REDIRECT` to redirect the session.
|
18631
|
-
:param str syntax_format: Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous
|
18705
|
+
:param str syntax_format: Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Databases on shared Exadata infrastructure always use the long format.
|
18632
18706
|
:param str tls_authentication: Specifies whether the TLS handshake is using one-way (`SERVER`) or mutual (`MUTUAL`) authentication.
|
18633
18707
|
:param str value: Connection string value.
|
18634
18708
|
"""
|
@@ -18654,7 +18728,7 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
18654
18728
|
@pulumi.getter(name="displayName")
|
18655
18729
|
def display_name(self) -> str:
|
18656
18730
|
"""
|
18657
|
-
|
18731
|
+
The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
18658
18732
|
"""
|
18659
18733
|
return pulumi.get(self, "display_name")
|
18660
18734
|
|
@@ -18669,9 +18743,6 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
18669
18743
|
@property
|
18670
18744
|
@pulumi.getter(name="isRegional")
|
18671
18745
|
def is_regional(self) -> bool:
|
18672
|
-
"""
|
18673
|
-
True for a regional connection string, applicable to cross-region DG only.
|
18674
|
-
"""
|
18675
18746
|
return pulumi.get(self, "is_regional")
|
18676
18747
|
|
18677
18748
|
@property
|
@@ -18694,7 +18765,7 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
|
|
18694
18765
|
@pulumi.getter(name="syntaxFormat")
|
18695
18766
|
def syntax_format(self) -> str:
|
18696
18767
|
"""
|
18697
|
-
Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous
|
18768
|
+
Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Databases on shared Exadata infrastructure always use the long format.
|
18698
18769
|
"""
|
18699
18770
|
return pulumi.get(self, "syntax_format")
|
18700
18771
|
|
@@ -18933,24 +19004,35 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
18933
19004
|
@pulumi.output_type
|
18934
19005
|
class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
|
18935
19006
|
def __init__(__self__, *,
|
19007
|
+
availability_domain: str,
|
18936
19008
|
lag_time_in_seconds: int,
|
18937
19009
|
lifecycle_details: str,
|
18938
19010
|
state: str,
|
18939
19011
|
time_data_guard_role_changed: str,
|
18940
19012
|
time_disaster_recovery_role_changed: str):
|
18941
19013
|
"""
|
19014
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
18942
19015
|
:param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
18943
19016
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
18944
|
-
:param str state:
|
19017
|
+
:param str state: The current state of the Autonomous Database.
|
18945
19018
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
18946
19019
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
18947
19020
|
"""
|
19021
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
18948
19022
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
18949
19023
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
18950
19024
|
pulumi.set(__self__, "state", state)
|
18951
19025
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
18952
19026
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
18953
19027
|
|
19028
|
+
@property
|
19029
|
+
@pulumi.getter(name="availabilityDomain")
|
19030
|
+
def availability_domain(self) -> str:
|
19031
|
+
"""
|
19032
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19033
|
+
"""
|
19034
|
+
return pulumi.get(self, "availability_domain")
|
19035
|
+
|
18954
19036
|
@property
|
18955
19037
|
@pulumi.getter(name="lagTimeInSeconds")
|
18956
19038
|
def lag_time_in_seconds(self) -> int:
|
@@ -18971,7 +19053,7 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
18971
19053
|
@pulumi.getter
|
18972
19054
|
def state(self) -> str:
|
18973
19055
|
"""
|
18974
|
-
|
19056
|
+
The current state of the Autonomous Database.
|
18975
19057
|
"""
|
18976
19058
|
return pulumi.get(self, "state")
|
18977
19059
|
|
@@ -19271,24 +19353,35 @@ class GetAutonomousDatabasesAutonomousDatabaseScheduledOperationDayOfWeekResult(
|
|
19271
19353
|
@pulumi.output_type
|
19272
19354
|
class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
|
19273
19355
|
def __init__(__self__, *,
|
19356
|
+
availability_domain: str,
|
19274
19357
|
lag_time_in_seconds: int,
|
19275
19358
|
lifecycle_details: str,
|
19276
19359
|
state: str,
|
19277
19360
|
time_data_guard_role_changed: str,
|
19278
19361
|
time_disaster_recovery_role_changed: str):
|
19279
19362
|
"""
|
19363
|
+
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19280
19364
|
:param int lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
19281
19365
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
19282
|
-
:param str state:
|
19366
|
+
:param str state: The current state of the Autonomous Database.
|
19283
19367
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
19284
19368
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
19285
19369
|
"""
|
19370
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
19286
19371
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
19287
19372
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
19288
19373
|
pulumi.set(__self__, "state", state)
|
19289
19374
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
19290
19375
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
19291
19376
|
|
19377
|
+
@property
|
19378
|
+
@pulumi.getter(name="availabilityDomain")
|
19379
|
+
def availability_domain(self) -> str:
|
19380
|
+
"""
|
19381
|
+
The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19382
|
+
"""
|
19383
|
+
return pulumi.get(self, "availability_domain")
|
19384
|
+
|
19292
19385
|
@property
|
19293
19386
|
@pulumi.getter(name="lagTimeInSeconds")
|
19294
19387
|
def lag_time_in_seconds(self) -> int:
|
@@ -19309,7 +19402,7 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
|
|
19309
19402
|
@pulumi.getter
|
19310
19403
|
def state(self) -> str:
|
19311
19404
|
"""
|
19312
|
-
|
19405
|
+
The current state of the Autonomous Database.
|
19313
19406
|
"""
|
19314
19407
|
return pulumi.get(self, "state")
|
19315
19408
|
|
@@ -19341,6 +19434,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19341
19434
|
auto_refresh_point_lag_in_seconds: int,
|
19342
19435
|
autonomous_container_database_id: str,
|
19343
19436
|
autonomous_maintenance_schedule_type: str,
|
19437
|
+
availability_domain: str,
|
19344
19438
|
available_upgrade_versions: Sequence[str],
|
19345
19439
|
backup_configs: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigResult'],
|
19346
19440
|
backup_retention_period_in_days: int,
|
@@ -19458,7 +19552,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19458
19552
|
:param int auto_refresh_frequency_in_seconds: The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
19459
19553
|
:param int auto_refresh_point_lag_in_seconds: The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
19460
19554
|
:param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
19461
|
-
:param str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
19555
|
+
:param str autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle* `availability_domain` - The availability domain where the Autonomous Database Serverless instance is located.
|
19462
19556
|
:param Sequence[str] available_upgrade_versions: List of Oracle Database versions available for a database upgrade. If there are no version upgrades available, this list is empty.
|
19463
19557
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
19464
19558
|
:param int backup_retention_period_in_days: Retention period, in days, for backups.
|
@@ -19517,7 +19611,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19517
19611
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
19518
19612
|
:param int local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
|
19519
19613
|
:param str local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
19520
|
-
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
|
19614
|
+
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19521
19615
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
|
19522
19616
|
:param int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
19523
19617
|
:param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per OCPU or ECPU. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
|
@@ -19544,7 +19638,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19544
19638
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationArgs'] scheduled_operations: The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
|
19545
19639
|
:param str service_console_url: The URL of the Service Console for the Autonomous Database.
|
19546
19640
|
:param str source_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that was cloned to create the current Autonomous Database.
|
19547
|
-
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
|
19641
|
+
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19548
19642
|
:param Sequence[str] standby_whitelisted_ips: The client IP access control list (ACL). This feature is available for [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance. If `arePrimaryWhitelistedIpsUsed` is 'TRUE' then Autonomous Database uses this primary's IP access control list (ACL) for the disaster recovery peer called `standbywhitelistedips`.
|
19549
19643
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
19550
19644
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the resource is associated with.
|
@@ -19580,6 +19674,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19580
19674
|
pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
|
19581
19675
|
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
19582
19676
|
pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
|
19677
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
19583
19678
|
pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
|
19584
19679
|
pulumi.set(__self__, "backup_configs", backup_configs)
|
19585
19680
|
pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
|
@@ -19750,10 +19845,15 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
19750
19845
|
@pulumi.getter(name="autonomousMaintenanceScheduleType")
|
19751
19846
|
def autonomous_maintenance_schedule_type(self) -> str:
|
19752
19847
|
"""
|
19753
|
-
The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle
|
19848
|
+
The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle* `availability_domain` - The availability domain where the Autonomous Database Serverless instance is located.
|
19754
19849
|
"""
|
19755
19850
|
return pulumi.get(self, "autonomous_maintenance_schedule_type")
|
19756
19851
|
|
19852
|
+
@property
|
19853
|
+
@pulumi.getter(name="availabilityDomain")
|
19854
|
+
def availability_domain(self) -> str:
|
19855
|
+
return pulumi.get(self, "availability_domain")
|
19856
|
+
|
19757
19857
|
@property
|
19758
19858
|
@pulumi.getter(name="availableUpgradeVersions")
|
19759
19859
|
def available_upgrade_versions(self) -> Sequence[str]:
|
@@ -20199,7 +20299,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
20199
20299
|
@pulumi.getter(name="localStandbyDbs")
|
20200
20300
|
def local_standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult']:
|
20201
20301
|
"""
|
20202
|
-
Autonomous Data Guard standby database details.
|
20302
|
+
Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
20203
20303
|
"""
|
20204
20304
|
return pulumi.get(self, "local_standby_dbs")
|
20205
20305
|
|
@@ -20408,7 +20508,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
20408
20508
|
@pulumi.getter(name="standbyDbs")
|
20409
20509
|
def standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult']:
|
20410
20510
|
"""
|
20411
|
-
**Deprecated** Autonomous Data Guard standby database details.
|
20511
|
+
**Deprecated** Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
20412
20512
|
"""
|
20413
20513
|
return pulumi.get(self, "standby_dbs")
|
20414
20514
|
|
@@ -21081,6 +21181,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
|
|
21081
21181
|
@pulumi.output_type
|
21082
21182
|
class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
21083
21183
|
def __init__(__self__, *,
|
21184
|
+
availability_domain: str,
|
21084
21185
|
lag_time_in_seconds: int,
|
21085
21186
|
lifecycle_details: str,
|
21086
21187
|
state: str,
|
@@ -21093,12 +21194,18 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
21093
21194
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
21094
21195
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
21095
21196
|
"""
|
21197
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
21096
21198
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
21097
21199
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
21098
21200
|
pulumi.set(__self__, "state", state)
|
21099
21201
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
21100
21202
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
21101
21203
|
|
21204
|
+
@property
|
21205
|
+
@pulumi.getter(name="availabilityDomain")
|
21206
|
+
def availability_domain(self) -> str:
|
21207
|
+
return pulumi.get(self, "availability_domain")
|
21208
|
+
|
21102
21209
|
@property
|
21103
21210
|
@pulumi.getter(name="lagTimeInSeconds")
|
21104
21211
|
def lag_time_in_seconds(self) -> int:
|
@@ -21423,6 +21530,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeekR
|
|
21423
21530
|
@pulumi.output_type
|
21424
21531
|
class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
21425
21532
|
def __init__(__self__, *,
|
21533
|
+
availability_domain: str,
|
21426
21534
|
lag_time_in_seconds: int,
|
21427
21535
|
lifecycle_details: str,
|
21428
21536
|
state: str,
|
@@ -21435,12 +21543,18 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
|
21435
21543
|
:param str time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
21436
21544
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
21437
21545
|
"""
|
21546
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
21438
21547
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
21439
21548
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
21440
21549
|
pulumi.set(__self__, "state", state)
|
21441
21550
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
21442
21551
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
21443
21552
|
|
21553
|
+
@property
|
21554
|
+
@pulumi.getter(name="availabilityDomain")
|
21555
|
+
def availability_domain(self) -> str:
|
21556
|
+
return pulumi.get(self, "availability_domain")
|
21557
|
+
|
21444
21558
|
@property
|
21445
21559
|
@pulumi.getter(name="lagTimeInSeconds")
|
21446
21560
|
def lag_time_in_seconds(self) -> int:
|
@@ -28824,6 +28938,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
28824
28938
|
db_system_freeform_tags: Mapping[str, str],
|
28825
28939
|
delete_standby_db_home_on_delete: str,
|
28826
28940
|
display_name: str,
|
28941
|
+
domain: str,
|
28827
28942
|
fault_domains: Sequence[str],
|
28828
28943
|
hostname: str,
|
28829
28944
|
id: str,
|
@@ -28885,6 +29000,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
28885
29000
|
pulumi.set(__self__, "db_system_freeform_tags", db_system_freeform_tags)
|
28886
29001
|
pulumi.set(__self__, "delete_standby_db_home_on_delete", delete_standby_db_home_on_delete)
|
28887
29002
|
pulumi.set(__self__, "display_name", display_name)
|
29003
|
+
pulumi.set(__self__, "domain", domain)
|
28888
29004
|
pulumi.set(__self__, "fault_domains", fault_domains)
|
28889
29005
|
pulumi.set(__self__, "hostname", hostname)
|
28890
29006
|
pulumi.set(__self__, "id", id)
|
@@ -29006,6 +29122,11 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
29006
29122
|
def display_name(self) -> str:
|
29007
29123
|
return pulumi.get(self, "display_name")
|
29008
29124
|
|
29125
|
+
@property
|
29126
|
+
@pulumi.getter
|
29127
|
+
def domain(self) -> str:
|
29128
|
+
return pulumi.get(self, "domain")
|
29129
|
+
|
29009
29130
|
@property
|
29010
29131
|
@pulumi.getter(name="faultDomains")
|
29011
29132
|
def fault_domains(self) -> Sequence[str]:
|