pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.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.
Files changed (123) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +64 -24
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -2268,7 +2268,9 @@ class AutonomousDatabaseLocalStandbyDb(dict):
2268
2268
  @staticmethod
2269
2269
  def __key_warning(key: str):
2270
2270
  suggest = None
2271
- if key == "lagTimeInSeconds":
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 == "lagTimeInSeconds":
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]:
@@ -12138,12 +12166,16 @@ class VmClusterNetworkVmNetwork(dict):
12138
12166
  netmask: Optional[str] = None,
12139
12167
  vlan_id: Optional[str] = None):
12140
12168
  """
12141
- :param str network_type: The network type.
12142
- :param Sequence['VmClusterNetworkVmNetworkNodeArgs'] nodes: The list of node details.
12143
- :param str domain_name: The network domain name.
12144
- :param str gateway: The network gateway.
12145
- :param str netmask: The network netmask.
12146
- :param str vlan_id: The network VLAN ID.
12169
+ :param str network_type: (Updatable) The network type.
12170
+ :param Sequence['VmClusterNetworkVmNetworkNodeArgs'] nodes: (Updatable) The list of node details.
12171
+ :param str domain_name: (Updatable) The network domain name.
12172
+ :param str gateway: (Updatable) The network gateway.
12173
+ :param str netmask: (Updatable) The network netmask.
12174
+ :param str vlan_id: (Updatable) The network VLAN ID.
12175
+
12176
+
12177
+ ** IMPORTANT **
12178
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
12147
12179
  """
12148
12180
  pulumi.set(__self__, "network_type", network_type)
12149
12181
  pulumi.set(__self__, "nodes", nodes)
@@ -12160,7 +12192,7 @@ class VmClusterNetworkVmNetwork(dict):
12160
12192
  @pulumi.getter(name="networkType")
12161
12193
  def network_type(self) -> str:
12162
12194
  """
12163
- The network type.
12195
+ (Updatable) The network type.
12164
12196
  """
12165
12197
  return pulumi.get(self, "network_type")
12166
12198
 
@@ -12168,7 +12200,7 @@ class VmClusterNetworkVmNetwork(dict):
12168
12200
  @pulumi.getter
12169
12201
  def nodes(self) -> Sequence['outputs.VmClusterNetworkVmNetworkNode']:
12170
12202
  """
12171
- The list of node details.
12203
+ (Updatable) The list of node details.
12172
12204
  """
12173
12205
  return pulumi.get(self, "nodes")
12174
12206
 
@@ -12176,7 +12208,7 @@ class VmClusterNetworkVmNetwork(dict):
12176
12208
  @pulumi.getter(name="domainName")
12177
12209
  def domain_name(self) -> Optional[str]:
12178
12210
  """
12179
- The network domain name.
12211
+ (Updatable) The network domain name.
12180
12212
  """
12181
12213
  return pulumi.get(self, "domain_name")
12182
12214
 
@@ -12184,7 +12216,7 @@ class VmClusterNetworkVmNetwork(dict):
12184
12216
  @pulumi.getter
12185
12217
  def gateway(self) -> Optional[str]:
12186
12218
  """
12187
- The network gateway.
12219
+ (Updatable) The network gateway.
12188
12220
  """
12189
12221
  return pulumi.get(self, "gateway")
12190
12222
 
@@ -12192,7 +12224,7 @@ class VmClusterNetworkVmNetwork(dict):
12192
12224
  @pulumi.getter
12193
12225
  def netmask(self) -> Optional[str]:
12194
12226
  """
12195
- The network netmask.
12227
+ (Updatable) The network netmask.
12196
12228
  """
12197
12229
  return pulumi.get(self, "netmask")
12198
12230
 
@@ -12200,7 +12232,11 @@ class VmClusterNetworkVmNetwork(dict):
12200
12232
  @pulumi.getter(name="vlanId")
12201
12233
  def vlan_id(self) -> Optional[str]:
12202
12234
  """
12203
- The network VLAN ID.
12235
+ (Updatable) The network VLAN ID.
12236
+
12237
+
12238
+ ** IMPORTANT **
12239
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
12204
12240
  """
12205
12241
  return pulumi.get(self, "vlan_id")
12206
12242
 
@@ -12234,12 +12270,12 @@ class VmClusterNetworkVmNetworkNode(dict):
12234
12270
  vip: Optional[str] = None,
12235
12271
  vip_hostname: Optional[str] = None):
12236
12272
  """
12237
- :param str hostname: The node host name.
12238
- :param str ip: The node IP address.
12239
- :param str db_server_id: The Db server associated with the node.
12240
- :param 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.
12241
- :param str vip: The node virtual IP (VIP) address.
12242
- :param str vip_hostname: The node virtual IP (VIP) host name.
12273
+ :param str hostname: (Updatable) The node host name.
12274
+ :param str ip: (Updatable) The node IP address.
12275
+ :param str db_server_id: (Updatable) The Db server associated with the node.
12276
+ :param str state: (Updatable) 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.
12277
+ :param str vip: (Updatable) The node virtual IP (VIP) address.
12278
+ :param str vip_hostname: (Updatable) The node virtual IP (VIP) host name.
12243
12279
  """
12244
12280
  pulumi.set(__self__, "hostname", hostname)
12245
12281
  pulumi.set(__self__, "ip", ip)
@@ -12256,7 +12292,7 @@ class VmClusterNetworkVmNetworkNode(dict):
12256
12292
  @pulumi.getter
12257
12293
  def hostname(self) -> str:
12258
12294
  """
12259
- The node host name.
12295
+ (Updatable) The node host name.
12260
12296
  """
12261
12297
  return pulumi.get(self, "hostname")
12262
12298
 
@@ -12264,7 +12300,7 @@ class VmClusterNetworkVmNetworkNode(dict):
12264
12300
  @pulumi.getter
12265
12301
  def ip(self) -> str:
12266
12302
  """
12267
- The node IP address.
12303
+ (Updatable) The node IP address.
12268
12304
  """
12269
12305
  return pulumi.get(self, "ip")
12270
12306
 
@@ -12272,7 +12308,7 @@ class VmClusterNetworkVmNetworkNode(dict):
12272
12308
  @pulumi.getter(name="dbServerId")
12273
12309
  def db_server_id(self) -> Optional[str]:
12274
12310
  """
12275
- The Db server associated with the node.
12311
+ (Updatable) The Db server associated with the node.
12276
12312
  """
12277
12313
  return pulumi.get(self, "db_server_id")
12278
12314
 
@@ -12280,7 +12316,7 @@ class VmClusterNetworkVmNetworkNode(dict):
12280
12316
  @pulumi.getter
12281
12317
  def state(self) -> Optional[str]:
12282
12318
  """
12283
- 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.
12319
+ (Updatable) 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.
12284
12320
  """
12285
12321
  return pulumi.get(self, "state")
12286
12322
 
@@ -12288,7 +12324,7 @@ class VmClusterNetworkVmNetworkNode(dict):
12288
12324
  @pulumi.getter
12289
12325
  def vip(self) -> Optional[str]:
12290
12326
  """
12291
- The node virtual IP (VIP) address.
12327
+ (Updatable) The node virtual IP (VIP) address.
12292
12328
  """
12293
12329
  return pulumi.get(self, "vip")
12294
12330
 
@@ -12296,7 +12332,7 @@ class VmClusterNetworkVmNetworkNode(dict):
12296
12332
  @pulumi.getter(name="vipHostname")
12297
12333
  def vip_hostname(self) -> Optional[str]:
12298
12334
  """
12299
- The node virtual IP (VIP) host name.
12335
+ (Updatable) The node virtual IP (VIP) host name.
12300
12336
  """
12301
12337
  return pulumi.get(self, "vip_hostname")
12302
12338
 
@@ -16305,24 +16341,35 @@ class GetAutonomousDatabaseKeyHistoryEntryResult(dict):
16305
16341
  @pulumi.output_type
16306
16342
  class GetAutonomousDatabaseLocalStandbyDbResult(dict):
16307
16343
  def __init__(__self__, *,
16344
+ availability_domain: str,
16308
16345
  lag_time_in_seconds: int,
16309
16346
  lifecycle_details: str,
16310
16347
  state: str,
16311
16348
  time_data_guard_role_changed: str,
16312
16349
  time_disaster_recovery_role_changed: str):
16313
16350
  """
16351
+ :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
16314
16352
  :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
16353
  :param str lifecycle_details: Additional information about the current lifecycle state.
16316
16354
  :param str state: The current state of the Autonomous Database.
16317
16355
  :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
16356
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
16319
16357
  """
16358
+ pulumi.set(__self__, "availability_domain", availability_domain)
16320
16359
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
16321
16360
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
16322
16361
  pulumi.set(__self__, "state", state)
16323
16362
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
16324
16363
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
16325
16364
 
16365
+ @property
16366
+ @pulumi.getter(name="availabilityDomain")
16367
+ def availability_domain(self) -> str:
16368
+ """
16369
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
16370
+ """
16371
+ return pulumi.get(self, "availability_domain")
16372
+
16326
16373
  @property
16327
16374
  @pulumi.getter(name="lagTimeInSeconds")
16328
16375
  def lag_time_in_seconds(self) -> int:
@@ -16970,24 +17017,35 @@ class GetAutonomousDatabaseSoftwareImagesFilterResult(dict):
16970
17017
  @pulumi.output_type
16971
17018
  class GetAutonomousDatabaseStandbyDbResult(dict):
16972
17019
  def __init__(__self__, *,
17020
+ availability_domain: str,
16973
17021
  lag_time_in_seconds: int,
16974
17022
  lifecycle_details: str,
16975
17023
  state: str,
16976
17024
  time_data_guard_role_changed: str,
16977
17025
  time_disaster_recovery_role_changed: str):
16978
17026
  """
17027
+ :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
16979
17028
  :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
17029
  :param str lifecycle_details: Additional information about the current lifecycle state.
16981
17030
  :param str state: The current state of the Autonomous Database.
16982
17031
  :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
17032
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
16984
17033
  """
17034
+ pulumi.set(__self__, "availability_domain", availability_domain)
16985
17035
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
16986
17036
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
16987
17037
  pulumi.set(__self__, "state", state)
16988
17038
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
16989
17039
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
16990
17040
 
17041
+ @property
17042
+ @pulumi.getter(name="availabilityDomain")
17043
+ def availability_domain(self) -> str:
17044
+ """
17045
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
17046
+ """
17047
+ return pulumi.get(self, "availability_domain")
17048
+
16991
17049
  @property
16992
17050
  @pulumi.getter(name="lagTimeInSeconds")
16993
17051
  def lag_time_in_seconds(self) -> int:
@@ -17043,6 +17101,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17043
17101
  autonomous_database_backup_id: str,
17044
17102
  autonomous_database_id: str,
17045
17103
  autonomous_maintenance_schedule_type: str,
17104
+ availability_domain: str,
17046
17105
  available_upgrade_versions: Sequence[str],
17047
17106
  backup_configs: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseBackupConfigResult'],
17048
17107
  backup_retention_period_in_days: int,
@@ -17177,13 +17236,15 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17177
17236
  :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
17237
  :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
17238
  :param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
17239
+ :param str autonomous_database_id: The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
17180
17240
  :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
17241
+ :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
17181
17242
  :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
17243
  :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
17244
  :param int backup_retention_period_in_days: Retention period, in days, for backups.
17184
17245
  :param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
17185
17246
  :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 compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
17247
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
17187
17248
  :param float compute_count: Compute used by database tools.
17188
17249
  :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
17250
  :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 +17259,34 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17198
17259
  :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
17260
  :param str db_name: The database name.
17200
17261
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseDbToolsDetailArgs'] db_tools_details: The list of database tools details.
17201
- :param str db_version: A filter to return only autonomous database resources that match the specified dbVersion.
17202
- :param str db_workload: A filter to return only autonomous database resources that match the specified workload type.
17262
+ :param str db_version: A valid Oracle Database version for Autonomous Database.
17263
+ :param str db_workload: The Autonomous Database workload type. The following values are valid:
17264
+ * OLTP - indicates an Autonomous Transaction Processing database
17265
+ * DW - indicates an Autonomous Data Warehouse database
17266
+ * AJD - indicates an Autonomous JSON Database
17267
+ * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
17203
17268
  :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
17269
  :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
17270
  :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: A filter to return only resources that match the entire display name given. The match is not case sensitive.
17271
+ :param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
17207
17272
  :param int failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
17208
17273
  :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
17274
  :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
17275
  :param int in_memory_area_in_gbs: The area assigned to In-Memory tables in Autonomous Database.
17211
17276
  :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: A filter to return only resources that match the given Infrastructure Type.
17277
+ :param str infrastructure_type: The infrastructure type this resource belongs to.
17213
17278
  :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
17279
  :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
17280
  :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: A filter to return only resources that have Data Guard enabled.
17281
+ :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
17282
  :param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
17218
17283
  :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: Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
17284
+ :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
17285
  :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
17286
  :param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
17222
17287
  :param bool is_preview: Indicates if the Autonomous Database version is a preview version.
17223
17288
  :param bool is_reconnect_clone_enabled: Indicates if the refreshable clone can be reconnected to its source database.
17224
- :param bool is_refreshable_clone: Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
17289
+ :param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
17225
17290
  :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
17291
  :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
17292
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryArgs'] key_history_entries: Key History Entry.
@@ -17237,7 +17302,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17237
17302
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
17238
17303
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
17239
17304
  :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 OCPU or ECPU.
17305
+ :param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
17241
17306
  :param str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
17242
17307
  :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
17308
  :param str next_long_term_backup_time_stamp: The date and time when the next long-term backup would be created.
@@ -17257,7 +17322,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17257
17322
  :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
17323
  :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
17324
  :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) of the resourcepool Leader Autonomous Database.
17325
+ :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
17326
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseResourcePoolSummaryArgs'] resource_pool_summaries: The configuration details for resource pool
17262
17327
  :param str role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
17263
17328
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseScheduledOperationArgs'] scheduled_operations: The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
@@ -17265,9 +17330,10 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17265
17330
  :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
17331
  :param Sequence['GetAutonomousDatabasesAutonomousDatabaseStandbyDbArgs'] standby_dbs: **Deprecated** Autonomous Data Guard standby database details.
17267
17332
  :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: A filter to return only resources that match the given lifecycle state exactly.
17333
+ :param str state: The current state of the Autonomous Database.
17269
17334
  :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
17335
  :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.
17336
+ 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
17337
  :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
17338
  :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
17339
  :param str time_created: The date and time the Autonomous Database was created.
@@ -17303,6 +17369,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17303
17369
  pulumi.set(__self__, "autonomous_database_backup_id", autonomous_database_backup_id)
17304
17370
  pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
17305
17371
  pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
17372
+ pulumi.set(__self__, "availability_domain", availability_domain)
17306
17373
  pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
17307
17374
  pulumi.set(__self__, "backup_configs", backup_configs)
17308
17375
  pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
@@ -17499,6 +17566,9 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17499
17566
  @property
17500
17567
  @pulumi.getter(name="autonomousDatabaseId")
17501
17568
  def autonomous_database_id(self) -> str:
17569
+ """
17570
+ The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
17571
+ """
17502
17572
  return pulumi.get(self, "autonomous_database_id")
17503
17573
 
17504
17574
  @property
@@ -17509,6 +17579,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17509
17579
  """
17510
17580
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
17511
17581
 
17582
+ @property
17583
+ @pulumi.getter(name="availabilityDomain")
17584
+ def availability_domain(self) -> str:
17585
+ """
17586
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
17587
+ """
17588
+ return pulumi.get(self, "availability_domain")
17589
+
17512
17590
  @property
17513
17591
  @pulumi.getter(name="availableUpgradeVersions")
17514
17592
  def available_upgrade_versions(self) -> Sequence[str]:
@@ -17563,7 +17641,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17563
17641
  @pulumi.getter(name="compartmentId")
17564
17642
  def compartment_id(self) -> str:
17565
17643
  """
17566
- The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
17644
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
17567
17645
  """
17568
17646
  return pulumi.get(self, "compartment_id")
17569
17647
 
@@ -17683,7 +17761,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17683
17761
  @pulumi.getter(name="dbVersion")
17684
17762
  def db_version(self) -> str:
17685
17763
  """
17686
- A filter to return only autonomous database resources that match the specified dbVersion.
17764
+ A valid Oracle Database version for Autonomous Database.
17687
17765
  """
17688
17766
  return pulumi.get(self, "db_version")
17689
17767
 
@@ -17691,7 +17769,11 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17691
17769
  @pulumi.getter(name="dbWorkload")
17692
17770
  def db_workload(self) -> str:
17693
17771
  """
17694
- A filter to return only autonomous database resources that match the specified workload type.
17772
+ The Autonomous Database workload type. The following values are valid:
17773
+ * OLTP - indicates an Autonomous Transaction Processing database
17774
+ * DW - indicates an Autonomous Data Warehouse database
17775
+ * AJD - indicates an Autonomous JSON Database
17776
+ * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
17695
17777
  """
17696
17778
  return pulumi.get(self, "db_workload")
17697
17779
 
@@ -17723,7 +17805,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17723
17805
  @pulumi.getter(name="displayName")
17724
17806
  def display_name(self) -> str:
17725
17807
  """
17726
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
17808
+ The user-friendly name for the Autonomous Database. The name does not have to be unique.
17727
17809
  """
17728
17810
  return pulumi.get(self, "display_name")
17729
17811
 
@@ -17771,7 +17853,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17771
17853
  @pulumi.getter(name="infrastructureType")
17772
17854
  def infrastructure_type(self) -> str:
17773
17855
  """
17774
- A filter to return only resources that match the given Infrastructure Type.
17856
+ The infrastructure type this resource belongs to.
17775
17857
  """
17776
17858
  return pulumi.get(self, "infrastructure_type")
17777
17859
 
@@ -17803,7 +17885,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17803
17885
  @pulumi.getter(name="isDataGuardEnabled")
17804
17886
  def is_data_guard_enabled(self) -> bool:
17805
17887
  """
17806
- A filter to return only resources that have Data Guard enabled.
17888
+ **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
17889
  """
17808
17890
  return pulumi.get(self, "is_data_guard_enabled")
17809
17891
 
@@ -17827,7 +17909,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17827
17909
  @pulumi.getter(name="isFreeTier")
17828
17910
  def is_free_tier(self) -> bool:
17829
17911
  """
17830
- Filter on the value of the resource's 'isFreeTier' property. A value of `true` returns only Always Free resources. A value of `false` excludes Always Free resources from the returned results. Omitting this parameter returns both Always Free and paid resources.
17912
+ 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
17913
  """
17832
17914
  return pulumi.get(self, "is_free_tier")
17833
17915
 
@@ -17872,7 +17954,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
17872
17954
  @pulumi.getter(name="isRefreshableClone")
17873
17955
  def is_refreshable_clone(self) -> bool:
17874
17956
  """
17875
- Filter on the value of the resource's 'isRefreshableClone' property. A value of `true` returns only refreshable clones. A value of `false` excludes refreshable clones from the returned results. Omitting this parameter returns both refreshable clones and databases that are not refreshable clones.
17957
+ Indicates if the Autonomous Database is a refreshable clone.
17876
17958
  """
17877
17959
  return pulumi.get(self, "is_refreshable_clone")
17878
17960
 
@@ -18006,7 +18088,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
18006
18088
  @pulumi.getter(name="memoryPerOracleComputeUnitInGbs")
18007
18089
  def memory_per_oracle_compute_unit_in_gbs(self) -> int:
18008
18090
  """
18009
- The amount of memory (in GBs) enabled per OCPU or ECPU.
18091
+ The amount of memory (in GBs) enabled per ECPU or OCPU.
18010
18092
  """
18011
18093
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
18012
18094
 
@@ -18164,7 +18246,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
18164
18246
  @pulumi.getter(name="resourcePoolLeaderId")
18165
18247
  def resource_pool_leader_id(self) -> str:
18166
18248
  """
18167
- The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resourcepool Leader Autonomous Database.
18249
+ The unique identifier for leader autonomous database OCID [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
18168
18250
  """
18169
18251
  return pulumi.get(self, "resource_pool_leader_id")
18170
18252
 
@@ -18253,7 +18335,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
18253
18335
  @pulumi.getter
18254
18336
  def state(self) -> str:
18255
18337
  """
18256
- A filter to return only resources that match the given lifecycle state exactly.
18338
+ The current state of the Autonomous Database.
18257
18339
  """
18258
18340
  return pulumi.get(self, "state")
18259
18341
 
@@ -18270,6 +18352,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
18270
18352
  def subscription_id(self) -> str:
18271
18353
  """
18272
18354
  The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
18355
+ 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
18356
  """
18274
18357
  return pulumi.get(self, "subscription_id")
18275
18358
 
@@ -18623,12 +18706,11 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
18623
18706
  value: str):
18624
18707
  """
18625
18708
  :param str consumer_group: Consumer group used by the connection.
18626
- :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
18709
+ :param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
18627
18710
  :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
18711
  :param str protocol: Protocol used by the connection.
18630
18712
  :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 Database Serverless instances always use the long format.
18713
+ :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
18714
  :param str tls_authentication: Specifies whether the TLS handshake is using one-way (`SERVER`) or mutual (`MUTUAL`) authentication.
18633
18715
  :param str value: Connection string value.
18634
18716
  """
@@ -18654,7 +18736,7 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
18654
18736
  @pulumi.getter(name="displayName")
18655
18737
  def display_name(self) -> str:
18656
18738
  """
18657
- A filter to return only resources that match the entire display name given. The match is not case sensitive.
18739
+ The user-friendly name for the Autonomous Database. The name does not have to be unique.
18658
18740
  """
18659
18741
  return pulumi.get(self, "display_name")
18660
18742
 
@@ -18669,9 +18751,6 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
18669
18751
  @property
18670
18752
  @pulumi.getter(name="isRegional")
18671
18753
  def is_regional(self) -> bool:
18672
- """
18673
- True for a regional connection string, applicable to cross-region DG only.
18674
- """
18675
18754
  return pulumi.get(self, "is_regional")
18676
18755
 
18677
18756
  @property
@@ -18694,7 +18773,7 @@ class GetAutonomousDatabasesAutonomousDatabaseConnectionStringProfileResult(dict
18694
18773
  @pulumi.getter(name="syntaxFormat")
18695
18774
  def syntax_format(self) -> str:
18696
18775
  """
18697
- Specifies whether the connection string is using the long (`LONG`), Easy Connect (`EZCONNECT`), or Easy Connect Plus (`EZCONNECTPLUS`) format. Autonomous Database Serverless instances always use the long format.
18776
+ 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
18777
  """
18699
18778
  return pulumi.get(self, "syntax_format")
18700
18779
 
@@ -18933,24 +19012,35 @@ class GetAutonomousDatabasesAutonomousDatabaseKeyHistoryEntryResult(dict):
18933
19012
  @pulumi.output_type
18934
19013
  class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
18935
19014
  def __init__(__self__, *,
19015
+ availability_domain: str,
18936
19016
  lag_time_in_seconds: int,
18937
19017
  lifecycle_details: str,
18938
19018
  state: str,
18939
19019
  time_data_guard_role_changed: str,
18940
19020
  time_disaster_recovery_role_changed: str):
18941
19021
  """
19022
+ :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
18942
19023
  :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
19024
  :param str lifecycle_details: Additional information about the current lifecycle state.
18944
- :param str state: A filter to return only resources that match the given lifecycle state exactly.
19025
+ :param str state: The current state of the Autonomous Database.
18945
19026
  :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
19027
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
18947
19028
  """
19029
+ pulumi.set(__self__, "availability_domain", availability_domain)
18948
19030
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
18949
19031
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
18950
19032
  pulumi.set(__self__, "state", state)
18951
19033
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
18952
19034
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
18953
19035
 
19036
+ @property
19037
+ @pulumi.getter(name="availabilityDomain")
19038
+ def availability_domain(self) -> str:
19039
+ """
19040
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
19041
+ """
19042
+ return pulumi.get(self, "availability_domain")
19043
+
18954
19044
  @property
18955
19045
  @pulumi.getter(name="lagTimeInSeconds")
18956
19046
  def lag_time_in_seconds(self) -> int:
@@ -18971,7 +19061,7 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
18971
19061
  @pulumi.getter
18972
19062
  def state(self) -> str:
18973
19063
  """
18974
- A filter to return only resources that match the given lifecycle state exactly.
19064
+ The current state of the Autonomous Database.
18975
19065
  """
18976
19066
  return pulumi.get(self, "state")
18977
19067
 
@@ -19271,24 +19361,35 @@ class GetAutonomousDatabasesAutonomousDatabaseScheduledOperationDayOfWeekResult(
19271
19361
  @pulumi.output_type
19272
19362
  class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
19273
19363
  def __init__(__self__, *,
19364
+ availability_domain: str,
19274
19365
  lag_time_in_seconds: int,
19275
19366
  lifecycle_details: str,
19276
19367
  state: str,
19277
19368
  time_data_guard_role_changed: str,
19278
19369
  time_disaster_recovery_role_changed: str):
19279
19370
  """
19371
+ :param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
19280
19372
  :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
19373
  :param str lifecycle_details: Additional information about the current lifecycle state.
19282
- :param str state: A filter to return only resources that match the given lifecycle state exactly.
19374
+ :param str state: The current state of the Autonomous Database.
19283
19375
  :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
19376
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
19285
19377
  """
19378
+ pulumi.set(__self__, "availability_domain", availability_domain)
19286
19379
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
19287
19380
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
19288
19381
  pulumi.set(__self__, "state", state)
19289
19382
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
19290
19383
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
19291
19384
 
19385
+ @property
19386
+ @pulumi.getter(name="availabilityDomain")
19387
+ def availability_domain(self) -> str:
19388
+ """
19389
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
19390
+ """
19391
+ return pulumi.get(self, "availability_domain")
19392
+
19292
19393
  @property
19293
19394
  @pulumi.getter(name="lagTimeInSeconds")
19294
19395
  def lag_time_in_seconds(self) -> int:
@@ -19309,7 +19410,7 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
19309
19410
  @pulumi.getter
19310
19411
  def state(self) -> str:
19311
19412
  """
19312
- A filter to return only resources that match the given lifecycle state exactly.
19413
+ The current state of the Autonomous Database.
19313
19414
  """
19314
19415
  return pulumi.get(self, "state")
19315
19416
 
@@ -19341,6 +19442,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
19341
19442
  auto_refresh_point_lag_in_seconds: int,
19342
19443
  autonomous_container_database_id: str,
19343
19444
  autonomous_maintenance_schedule_type: str,
19445
+ availability_domain: str,
19344
19446
  available_upgrade_versions: Sequence[str],
19345
19447
  backup_configs: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigResult'],
19346
19448
  backup_retention_period_in_days: int,
@@ -19458,7 +19560,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
19458
19560
  :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
19561
  :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
19562
  :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
19563
+ :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
19564
  :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
19565
  :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
19566
  :param int backup_retention_period_in_days: Retention period, in days, for backups.
@@ -19517,7 +19619,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
19517
19619
  :param str lifecycle_details: Additional information about the current lifecycle state.
19518
19620
  :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
19621
  :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.
19622
+ :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
19623
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
19522
19624
  :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
19625
  :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 +19646,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
19544
19646
  :param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationArgs'] scheduled_operations: The list of scheduled operations. Consists of values such as dayOfWeek, scheduledStartTime, scheduledStopTime.
19545
19647
  :param str service_console_url: The URL of the Service Console for the Autonomous Database.
19546
19648
  :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.
19649
+ :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
19650
  :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
19651
  :param str state: A filter to return only resources that match the given lifecycle state exactly.
19550
19652
  :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 +19682,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
19580
19682
  pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
19581
19683
  pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
19582
19684
  pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
19685
+ pulumi.set(__self__, "availability_domain", availability_domain)
19583
19686
  pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
19584
19687
  pulumi.set(__self__, "backup_configs", backup_configs)
19585
19688
  pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
@@ -19750,10 +19853,15 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
19750
19853
  @pulumi.getter(name="autonomousMaintenanceScheduleType")
19751
19854
  def autonomous_maintenance_schedule_type(self) -> str:
19752
19855
  """
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
19856
+ 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
19857
  """
19755
19858
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
19756
19859
 
19860
+ @property
19861
+ @pulumi.getter(name="availabilityDomain")
19862
+ def availability_domain(self) -> str:
19863
+ return pulumi.get(self, "availability_domain")
19864
+
19757
19865
  @property
19758
19866
  @pulumi.getter(name="availableUpgradeVersions")
19759
19867
  def available_upgrade_versions(self) -> Sequence[str]:
@@ -20199,7 +20307,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
20199
20307
  @pulumi.getter(name="localStandbyDbs")
20200
20308
  def local_standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult']:
20201
20309
  """
20202
- Autonomous Data Guard standby database details.
20310
+ 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
20311
  """
20204
20312
  return pulumi.get(self, "local_standby_dbs")
20205
20313
 
@@ -20408,7 +20516,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
20408
20516
  @pulumi.getter(name="standbyDbs")
20409
20517
  def standby_dbs(self) -> Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult']:
20410
20518
  """
20411
- **Deprecated** Autonomous Data Guard standby database details.
20519
+ **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
20520
  """
20413
20521
  return pulumi.get(self, "standby_dbs")
20414
20522
 
@@ -21081,6 +21189,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseKeyHistoryEntryResult(dict):
21081
21189
  @pulumi.output_type
21082
21190
  class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
21083
21191
  def __init__(__self__, *,
21192
+ availability_domain: str,
21084
21193
  lag_time_in_seconds: int,
21085
21194
  lifecycle_details: str,
21086
21195
  state: str,
@@ -21093,12 +21202,18 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
21093
21202
  :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
21203
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
21095
21204
  """
21205
+ pulumi.set(__self__, "availability_domain", availability_domain)
21096
21206
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
21097
21207
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
21098
21208
  pulumi.set(__self__, "state", state)
21099
21209
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
21100
21210
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
21101
21211
 
21212
+ @property
21213
+ @pulumi.getter(name="availabilityDomain")
21214
+ def availability_domain(self) -> str:
21215
+ return pulumi.get(self, "availability_domain")
21216
+
21102
21217
  @property
21103
21218
  @pulumi.getter(name="lagTimeInSeconds")
21104
21219
  def lag_time_in_seconds(self) -> int:
@@ -21423,6 +21538,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseScheduledOperationDayOfWeekR
21423
21538
  @pulumi.output_type
21424
21539
  class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
21425
21540
  def __init__(__self__, *,
21541
+ availability_domain: str,
21426
21542
  lag_time_in_seconds: int,
21427
21543
  lifecycle_details: str,
21428
21544
  state: str,
@@ -21435,12 +21551,18 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
21435
21551
  :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
21552
  :param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
21437
21553
  """
21554
+ pulumi.set(__self__, "availability_domain", availability_domain)
21438
21555
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
21439
21556
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
21440
21557
  pulumi.set(__self__, "state", state)
21441
21558
  pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
21442
21559
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
21443
21560
 
21561
+ @property
21562
+ @pulumi.getter(name="availabilityDomain")
21563
+ def availability_domain(self) -> str:
21564
+ return pulumi.get(self, "availability_domain")
21565
+
21444
21566
  @property
21445
21567
  @pulumi.getter(name="lagTimeInSeconds")
21446
21568
  def lag_time_in_seconds(self) -> int:
@@ -28824,6 +28946,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
28824
28946
  db_system_freeform_tags: Mapping[str, str],
28825
28947
  delete_standby_db_home_on_delete: str,
28826
28948
  display_name: str,
28949
+ domain: str,
28827
28950
  fault_domains: Sequence[str],
28828
28951
  hostname: str,
28829
28952
  id: str,
@@ -28885,6 +29008,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
28885
29008
  pulumi.set(__self__, "db_system_freeform_tags", db_system_freeform_tags)
28886
29009
  pulumi.set(__self__, "delete_standby_db_home_on_delete", delete_standby_db_home_on_delete)
28887
29010
  pulumi.set(__self__, "display_name", display_name)
29011
+ pulumi.set(__self__, "domain", domain)
28888
29012
  pulumi.set(__self__, "fault_domains", fault_domains)
28889
29013
  pulumi.set(__self__, "hostname", hostname)
28890
29014
  pulumi.set(__self__, "id", id)
@@ -29006,6 +29130,11 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
29006
29130
  def display_name(self) -> str:
29007
29131
  return pulumi.get(self, "display_name")
29008
29132
 
29133
+ @property
29134
+ @pulumi.getter
29135
+ def domain(self) -> str:
29136
+ return pulumi.get(self, "domain")
29137
+
29009
29138
  @property
29010
29139
  @pulumi.getter(name="faultDomains")
29011
29140
  def fault_domains(self) -> Sequence[str]: