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
@@ -1420,12 +1420,6 @@ class BdsInstanceCloudSqlDetail(dict):
1420
1420
  suggest = "kerberos_details"
1421
1421
  elif key == "memoryInGbs":
1422
1422
  suggest = "memory_in_gbs"
1423
- elif key == "odhVersion":
1424
- suggest = "odh_version"
1425
- elif key == "osVersion":
1426
- suggest = "os_version"
1427
- elif key == "sshFingerprint":
1428
- suggest = "ssh_fingerprint"
1429
1423
 
1430
1424
  if suggest:
1431
1425
  pulumi.log.warn(f"Key '{key}' not found in BdsInstanceCloudSqlDetail. Access the value via the '{suggest}' property getter instead.")
@@ -1446,10 +1440,7 @@ class BdsInstanceCloudSqlDetail(dict):
1446
1440
  kerberos_details: Optional[Sequence['outputs.BdsInstanceCloudSqlDetailKerberosDetail']] = None,
1447
1441
  memory_in_gbs: Optional[int] = None,
1448
1442
  nvmes: Optional[int] = None,
1449
- ocpus: Optional[int] = None,
1450
- odh_version: Optional[str] = None,
1451
- os_version: Optional[str] = None,
1452
- ssh_fingerprint: Optional[str] = None):
1443
+ ocpus: Optional[int] = None):
1453
1444
  """
1454
1445
  :param str shape: Shape of the node
1455
1446
  :param str block_volume_size_in_gbs: The size of block volume in GB that needs to be attached to a given node. All the necessary details needed for attachment are managed by service itself.
@@ -1459,9 +1450,6 @@ class BdsInstanceCloudSqlDetail(dict):
1459
1450
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
1460
1451
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
1461
1452
  :param int ocpus: The total number of OCPUs available to the node.
1462
- :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
1463
- :param str os_version: BDS-assigned Operating System version for the node.
1464
- :param str ssh_fingerprint: The fingerprint of the SSH key used for node access
1465
1453
  """
1466
1454
  pulumi.set(__self__, "shape", shape)
1467
1455
  if block_volume_size_in_gbs is not None:
@@ -1478,12 +1466,6 @@ class BdsInstanceCloudSqlDetail(dict):
1478
1466
  pulumi.set(__self__, "nvmes", nvmes)
1479
1467
  if ocpus is not None:
1480
1468
  pulumi.set(__self__, "ocpus", ocpus)
1481
- if odh_version is not None:
1482
- pulumi.set(__self__, "odh_version", odh_version)
1483
- if os_version is not None:
1484
- pulumi.set(__self__, "os_version", os_version)
1485
- if ssh_fingerprint is not None:
1486
- pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
1487
1469
 
1488
1470
  @property
1489
1471
  @pulumi.getter
@@ -1549,30 +1531,6 @@ class BdsInstanceCloudSqlDetail(dict):
1549
1531
  """
1550
1532
  return pulumi.get(self, "ocpus")
1551
1533
 
1552
- @property
1553
- @pulumi.getter(name="odhVersion")
1554
- def odh_version(self) -> Optional[str]:
1555
- """
1556
- Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
1557
- """
1558
- return pulumi.get(self, "odh_version")
1559
-
1560
- @property
1561
- @pulumi.getter(name="osVersion")
1562
- def os_version(self) -> Optional[str]:
1563
- """
1564
- BDS-assigned Operating System version for the node.
1565
- """
1566
- return pulumi.get(self, "os_version")
1567
-
1568
- @property
1569
- @pulumi.getter(name="sshFingerprint")
1570
- def ssh_fingerprint(self) -> Optional[str]:
1571
- """
1572
- The fingerprint of the SSH key used for node access
1573
- """
1574
- return pulumi.get(self, "ssh_fingerprint")
1575
-
1576
1534
 
1577
1535
  @pulumi.output_type
1578
1536
  class BdsInstanceCloudSqlDetailKerberosDetail(dict):
@@ -4990,10 +4948,7 @@ class GetBdsInstanceCloudSqlDetailResult(dict):
4990
4948
  memory_in_gbs: int,
4991
4949
  nvmes: int,
4992
4950
  ocpus: int,
4993
- odh_version: str,
4994
- os_version: str,
4995
- shape: str,
4996
- ssh_fingerprint: str):
4951
+ shape: str):
4997
4952
  """
4998
4953
  :param str block_volume_size_in_gbs: The size of block volume in GB that needs to be attached to a given node. All the necessary details needed for attachment are managed by service itself.
4999
4954
  :param str ip_address: IP address of the node.
@@ -5002,10 +4957,7 @@ class GetBdsInstanceCloudSqlDetailResult(dict):
5002
4957
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
5003
4958
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
5004
4959
  :param int ocpus: The total number of OCPUs available to the node.
5005
- :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
5006
- :param str os_version: BDS-assigned Operating System version for the node.
5007
4960
  :param str shape: Shape of the node.
5008
- :param str ssh_fingerprint: The fingerprint of the SSH key used for node access.
5009
4961
  """
5010
4962
  pulumi.set(__self__, "block_volume_size_in_gbs", block_volume_size_in_gbs)
5011
4963
  pulumi.set(__self__, "ip_address", ip_address)
@@ -5014,10 +4966,7 @@ class GetBdsInstanceCloudSqlDetailResult(dict):
5014
4966
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
5015
4967
  pulumi.set(__self__, "nvmes", nvmes)
5016
4968
  pulumi.set(__self__, "ocpus", ocpus)
5017
- pulumi.set(__self__, "odh_version", odh_version)
5018
- pulumi.set(__self__, "os_version", os_version)
5019
4969
  pulumi.set(__self__, "shape", shape)
5020
- pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
5021
4970
 
5022
4971
  @property
5023
4972
  @pulumi.getter(name="blockVolumeSizeInGbs")
@@ -5075,22 +5024,6 @@ class GetBdsInstanceCloudSqlDetailResult(dict):
5075
5024
  """
5076
5025
  return pulumi.get(self, "ocpus")
5077
5026
 
5078
- @property
5079
- @pulumi.getter(name="odhVersion")
5080
- def odh_version(self) -> str:
5081
- """
5082
- Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
5083
- """
5084
- return pulumi.get(self, "odh_version")
5085
-
5086
- @property
5087
- @pulumi.getter(name="osVersion")
5088
- def os_version(self) -> str:
5089
- """
5090
- BDS-assigned Operating System version for the node.
5091
- """
5092
- return pulumi.get(self, "os_version")
5093
-
5094
5027
  @property
5095
5028
  @pulumi.getter
5096
5029
  def shape(self) -> str:
@@ -5099,14 +5032,6 @@ class GetBdsInstanceCloudSqlDetailResult(dict):
5099
5032
  """
5100
5033
  return pulumi.get(self, "shape")
5101
5034
 
5102
- @property
5103
- @pulumi.getter(name="sshFingerprint")
5104
- def ssh_fingerprint(self) -> str:
5105
- """
5106
- The fingerprint of the SSH key used for node access.
5107
- """
5108
- return pulumi.get(self, "ssh_fingerprint")
5109
-
5110
5035
 
5111
5036
  @pulumi.output_type
5112
5037
  class GetBdsInstanceCloudSqlDetailKerberosDetailResult(dict):
@@ -6625,7 +6550,6 @@ class GetBdsInstanceWorkerNodeShapeConfigResult(dict):
6625
6550
  @pulumi.output_type
6626
6551
  class GetBdsInstancesBdsInstanceResult(dict):
6627
6552
  def __init__(__self__, *,
6628
- add_kafka_trigger: int,
6629
6553
  bootstrap_script_url: str,
6630
6554
  cloud_sql_details: Sequence['outputs.GetBdsInstancesBdsInstanceCloudSqlDetailResult'],
6631
6555
  cluster_admin_password: str,
@@ -6639,7 +6563,6 @@ class GetBdsInstancesBdsInstanceResult(dict):
6639
6563
  defined_tags: Mapping[str, str],
6640
6564
  display_name: str,
6641
6565
  edge_nodes: Sequence['outputs.GetBdsInstancesBdsInstanceEdgeNodeResult'],
6642
- execute_bootstrap_script_trigger: int,
6643
6566
  freeform_tags: Mapping[str, str],
6644
6567
  id: str,
6645
6568
  ignore_existing_nodes_shapes: Sequence[str],
@@ -6657,7 +6580,6 @@ class GetBdsInstancesBdsInstanceResult(dict):
6657
6580
  number_of_nodes: int,
6658
6581
  number_of_nodes_requiring_maintenance_reboot: int,
6659
6582
  os_patch_version: str,
6660
- remove_kafka_trigger: int,
6661
6583
  state: str,
6662
6584
  time_created: str,
6663
6585
  time_updated: str,
@@ -6688,7 +6610,6 @@ class GetBdsInstancesBdsInstanceResult(dict):
6688
6610
  :param str time_created: The time the cluster was created, shown as an RFC 3339 formatted datetime string.
6689
6611
  :param str time_updated: The time the cluster was updated, shown as an RFC 3339 formatted datetime string.
6690
6612
  """
6691
- pulumi.set(__self__, "add_kafka_trigger", add_kafka_trigger)
6692
6613
  pulumi.set(__self__, "bootstrap_script_url", bootstrap_script_url)
6693
6614
  pulumi.set(__self__, "cloud_sql_details", cloud_sql_details)
6694
6615
  pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
@@ -6702,7 +6623,6 @@ class GetBdsInstancesBdsInstanceResult(dict):
6702
6623
  pulumi.set(__self__, "defined_tags", defined_tags)
6703
6624
  pulumi.set(__self__, "display_name", display_name)
6704
6625
  pulumi.set(__self__, "edge_nodes", edge_nodes)
6705
- pulumi.set(__self__, "execute_bootstrap_script_trigger", execute_bootstrap_script_trigger)
6706
6626
  pulumi.set(__self__, "freeform_tags", freeform_tags)
6707
6627
  pulumi.set(__self__, "id", id)
6708
6628
  pulumi.set(__self__, "ignore_existing_nodes_shapes", ignore_existing_nodes_shapes)
@@ -6720,18 +6640,12 @@ class GetBdsInstancesBdsInstanceResult(dict):
6720
6640
  pulumi.set(__self__, "number_of_nodes", number_of_nodes)
6721
6641
  pulumi.set(__self__, "number_of_nodes_requiring_maintenance_reboot", number_of_nodes_requiring_maintenance_reboot)
6722
6642
  pulumi.set(__self__, "os_patch_version", os_patch_version)
6723
- pulumi.set(__self__, "remove_kafka_trigger", remove_kafka_trigger)
6724
6643
  pulumi.set(__self__, "state", state)
6725
6644
  pulumi.set(__self__, "time_created", time_created)
6726
6645
  pulumi.set(__self__, "time_updated", time_updated)
6727
6646
  pulumi.set(__self__, "util_nodes", util_nodes)
6728
6647
  pulumi.set(__self__, "worker_nodes", worker_nodes)
6729
6648
 
6730
- @property
6731
- @pulumi.getter(name="addKafkaTrigger")
6732
- def add_kafka_trigger(self) -> int:
6733
- return pulumi.get(self, "add_kafka_trigger")
6734
-
6735
6649
  @property
6736
6650
  @pulumi.getter(name="bootstrapScriptUrl")
6737
6651
  def bootstrap_script_url(self) -> str:
@@ -6824,11 +6738,6 @@ class GetBdsInstancesBdsInstanceResult(dict):
6824
6738
  def edge_nodes(self) -> Sequence['outputs.GetBdsInstancesBdsInstanceEdgeNodeResult']:
6825
6739
  return pulumi.get(self, "edge_nodes")
6826
6740
 
6827
- @property
6828
- @pulumi.getter(name="executeBootstrapScriptTrigger")
6829
- def execute_bootstrap_script_trigger(self) -> int:
6830
- return pulumi.get(self, "execute_bootstrap_script_trigger")
6831
-
6832
6741
  @property
6833
6742
  @pulumi.getter(name="freeformTags")
6834
6743
  def freeform_tags(self) -> Mapping[str, str]:
@@ -6947,11 +6856,6 @@ class GetBdsInstancesBdsInstanceResult(dict):
6947
6856
  def os_patch_version(self) -> str:
6948
6857
  return pulumi.get(self, "os_patch_version")
6949
6858
 
6950
- @property
6951
- @pulumi.getter(name="removeKafkaTrigger")
6952
- def remove_kafka_trigger(self) -> int:
6953
- return pulumi.get(self, "remove_kafka_trigger")
6954
-
6955
6859
  @property
6956
6860
  @pulumi.getter
6957
6861
  def state(self) -> str:
@@ -6997,10 +6901,7 @@ class GetBdsInstancesBdsInstanceCloudSqlDetailResult(dict):
6997
6901
  memory_in_gbs: int,
6998
6902
  nvmes: int,
6999
6903
  ocpus: int,
7000
- odh_version: str,
7001
- os_version: str,
7002
- shape: str,
7003
- ssh_fingerprint: str):
6904
+ shape: str):
7004
6905
  """
7005
6906
  :param str block_volume_size_in_gbs: The size of block volume in GB that needs to be attached to a given node. All the necessary details needed for attachment are managed by service itself.
7006
6907
  :param str ip_address: IP address of the node.
@@ -7009,10 +6910,7 @@ class GetBdsInstancesBdsInstanceCloudSqlDetailResult(dict):
7009
6910
  :param int memory_in_gbs: The total amount of memory available to the node, in gigabytes.
7010
6911
  :param int nvmes: The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
7011
6912
  :param int ocpus: The total number of OCPUs available to the node.
7012
- :param str odh_version: Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
7013
- :param str os_version: BDS-assigned Operating System version for the node.
7014
6913
  :param str shape: Shape of the node.
7015
- :param str ssh_fingerprint: The fingerprint of the SSH key used for node access.
7016
6914
  """
7017
6915
  pulumi.set(__self__, "block_volume_size_in_gbs", block_volume_size_in_gbs)
7018
6916
  pulumi.set(__self__, "ip_address", ip_address)
@@ -7021,10 +6919,7 @@ class GetBdsInstancesBdsInstanceCloudSqlDetailResult(dict):
7021
6919
  pulumi.set(__self__, "memory_in_gbs", memory_in_gbs)
7022
6920
  pulumi.set(__self__, "nvmes", nvmes)
7023
6921
  pulumi.set(__self__, "ocpus", ocpus)
7024
- pulumi.set(__self__, "odh_version", odh_version)
7025
- pulumi.set(__self__, "os_version", os_version)
7026
6922
  pulumi.set(__self__, "shape", shape)
7027
- pulumi.set(__self__, "ssh_fingerprint", ssh_fingerprint)
7028
6923
 
7029
6924
  @property
7030
6925
  @pulumi.getter(name="blockVolumeSizeInGbs")
@@ -7082,22 +6977,6 @@ class GetBdsInstancesBdsInstanceCloudSqlDetailResult(dict):
7082
6977
  """
7083
6978
  return pulumi.get(self, "ocpus")
7084
6979
 
7085
- @property
7086
- @pulumi.getter(name="odhVersion")
7087
- def odh_version(self) -> str:
7088
- """
7089
- Version of the ODH (Oracle Distribution including Apache Hadoop) for the node.
7090
- """
7091
- return pulumi.get(self, "odh_version")
7092
-
7093
- @property
7094
- @pulumi.getter(name="osVersion")
7095
- def os_version(self) -> str:
7096
- """
7097
- BDS-assigned Operating System version for the node.
7098
- """
7099
- return pulumi.get(self, "os_version")
7100
-
7101
6980
  @property
7102
6981
  @pulumi.getter
7103
6982
  def shape(self) -> str:
@@ -7106,14 +6985,6 @@ class GetBdsInstancesBdsInstanceCloudSqlDetailResult(dict):
7106
6985
  """
7107
6986
  return pulumi.get(self, "shape")
7108
6987
 
7109
- @property
7110
- @pulumi.getter(name="sshFingerprint")
7111
- def ssh_fingerprint(self) -> str:
7112
- """
7113
- The fingerprint of the SSH key used for node access.
7114
- """
7115
- return pulumi.get(self, "ssh_fingerprint")
7116
-
7117
6988
 
7118
6989
  @pulumi.output_type
7119
6990
  class GetBdsInstancesBdsInstanceCloudSqlDetailKerberosDetailResult(dict):
@@ -1891,18 +1891,22 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
1891
1891
  @pulumi.input_type
1892
1892
  class AutonomousDatabaseLocalStandbyDbArgs:
1893
1893
  def __init__(__self__, *,
1894
+ availability_domain: Optional[pulumi.Input[str]] = None,
1894
1895
  lag_time_in_seconds: Optional[pulumi.Input[int]] = None,
1895
1896
  lifecycle_details: Optional[pulumi.Input[str]] = None,
1896
1897
  state: Optional[pulumi.Input[str]] = None,
1897
1898
  time_data_guard_role_changed: Optional[pulumi.Input[str]] = None,
1898
1899
  time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None):
1899
1900
  """
1901
+ :param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
1900
1902
  :param pulumi.Input[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.
1901
1903
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
1902
1904
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
1903
1905
  :param pulumi.Input[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.
1904
1906
  :param pulumi.Input[str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
1905
1907
  """
1908
+ if availability_domain is not None:
1909
+ pulumi.set(__self__, "availability_domain", availability_domain)
1906
1910
  if lag_time_in_seconds is not None:
1907
1911
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
1908
1912
  if lifecycle_details is not None:
@@ -1914,6 +1918,18 @@ class AutonomousDatabaseLocalStandbyDbArgs:
1914
1918
  if time_disaster_recovery_role_changed is not None:
1915
1919
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
1916
1920
 
1921
+ @property
1922
+ @pulumi.getter(name="availabilityDomain")
1923
+ def availability_domain(self) -> Optional[pulumi.Input[str]]:
1924
+ """
1925
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
1926
+ """
1927
+ return pulumi.get(self, "availability_domain")
1928
+
1929
+ @availability_domain.setter
1930
+ def availability_domain(self, value: Optional[pulumi.Input[str]]):
1931
+ pulumi.set(self, "availability_domain", value)
1932
+
1917
1933
  @property
1918
1934
  @pulumi.getter(name="lagTimeInSeconds")
1919
1935
  def lag_time_in_seconds(self) -> Optional[pulumi.Input[int]]:
@@ -2370,18 +2386,22 @@ class AutonomousDatabaseScheduledOperationDayOfWeekArgs:
2370
2386
  @pulumi.input_type
2371
2387
  class AutonomousDatabaseStandbyDbArgs:
2372
2388
  def __init__(__self__, *,
2389
+ availability_domain: Optional[pulumi.Input[str]] = None,
2373
2390
  lag_time_in_seconds: Optional[pulumi.Input[int]] = None,
2374
2391
  lifecycle_details: Optional[pulumi.Input[str]] = None,
2375
2392
  state: Optional[pulumi.Input[str]] = None,
2376
2393
  time_data_guard_role_changed: Optional[pulumi.Input[str]] = None,
2377
2394
  time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None):
2378
2395
  """
2396
+ :param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
2379
2397
  :param pulumi.Input[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.
2380
2398
  :param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
2381
2399
  :param pulumi.Input[str] state: The current state of the Autonomous Database.
2382
2400
  :param pulumi.Input[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.
2383
2401
  :param pulumi.Input[str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
2384
2402
  """
2403
+ if availability_domain is not None:
2404
+ pulumi.set(__self__, "availability_domain", availability_domain)
2385
2405
  if lag_time_in_seconds is not None:
2386
2406
  pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
2387
2407
  if lifecycle_details is not None:
@@ -2393,6 +2413,18 @@ class AutonomousDatabaseStandbyDbArgs:
2393
2413
  if time_disaster_recovery_role_changed is not None:
2394
2414
  pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
2395
2415
 
2416
+ @property
2417
+ @pulumi.getter(name="availabilityDomain")
2418
+ def availability_domain(self) -> Optional[pulumi.Input[str]]:
2419
+ """
2420
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
2421
+ """
2422
+ return pulumi.get(self, "availability_domain")
2423
+
2424
+ @availability_domain.setter
2425
+ def availability_domain(self, value: Optional[pulumi.Input[str]]):
2426
+ pulumi.set(self, "availability_domain", value)
2427
+
2396
2428
  @property
2397
2429
  @pulumi.getter(name="lagTimeInSeconds")
2398
2430
  def lag_time_in_seconds(self) -> Optional[pulumi.Input[int]]:
@@ -11485,12 +11517,16 @@ class VmClusterNetworkVmNetworkArgs:
11485
11517
  netmask: Optional[pulumi.Input[str]] = None,
11486
11518
  vlan_id: Optional[pulumi.Input[str]] = None):
11487
11519
  """
11488
- :param pulumi.Input[str] network_type: The network type.
11489
- :param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkNodeArgs']]] nodes: The list of node details.
11490
- :param pulumi.Input[str] domain_name: The network domain name.
11491
- :param pulumi.Input[str] gateway: The network gateway.
11492
- :param pulumi.Input[str] netmask: The network netmask.
11493
- :param pulumi.Input[str] vlan_id: The network VLAN ID.
11520
+ :param pulumi.Input[str] network_type: (Updatable) The network type.
11521
+ :param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkNodeArgs']]] nodes: (Updatable) The list of node details.
11522
+ :param pulumi.Input[str] domain_name: (Updatable) The network domain name.
11523
+ :param pulumi.Input[str] gateway: (Updatable) The network gateway.
11524
+ :param pulumi.Input[str] netmask: (Updatable) The network netmask.
11525
+ :param pulumi.Input[str] vlan_id: (Updatable) The network VLAN ID.
11526
+
11527
+
11528
+ ** IMPORTANT **
11529
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
11494
11530
  """
11495
11531
  pulumi.set(__self__, "network_type", network_type)
11496
11532
  pulumi.set(__self__, "nodes", nodes)
@@ -11507,7 +11543,7 @@ class VmClusterNetworkVmNetworkArgs:
11507
11543
  @pulumi.getter(name="networkType")
11508
11544
  def network_type(self) -> pulumi.Input[str]:
11509
11545
  """
11510
- The network type.
11546
+ (Updatable) The network type.
11511
11547
  """
11512
11548
  return pulumi.get(self, "network_type")
11513
11549
 
@@ -11519,7 +11555,7 @@ class VmClusterNetworkVmNetworkArgs:
11519
11555
  @pulumi.getter
11520
11556
  def nodes(self) -> pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkNodeArgs']]]:
11521
11557
  """
11522
- The list of node details.
11558
+ (Updatable) The list of node details.
11523
11559
  """
11524
11560
  return pulumi.get(self, "nodes")
11525
11561
 
@@ -11531,7 +11567,7 @@ class VmClusterNetworkVmNetworkArgs:
11531
11567
  @pulumi.getter(name="domainName")
11532
11568
  def domain_name(self) -> Optional[pulumi.Input[str]]:
11533
11569
  """
11534
- The network domain name.
11570
+ (Updatable) The network domain name.
11535
11571
  """
11536
11572
  return pulumi.get(self, "domain_name")
11537
11573
 
@@ -11543,7 +11579,7 @@ class VmClusterNetworkVmNetworkArgs:
11543
11579
  @pulumi.getter
11544
11580
  def gateway(self) -> Optional[pulumi.Input[str]]:
11545
11581
  """
11546
- The network gateway.
11582
+ (Updatable) The network gateway.
11547
11583
  """
11548
11584
  return pulumi.get(self, "gateway")
11549
11585
 
@@ -11555,7 +11591,7 @@ class VmClusterNetworkVmNetworkArgs:
11555
11591
  @pulumi.getter
11556
11592
  def netmask(self) -> Optional[pulumi.Input[str]]:
11557
11593
  """
11558
- The network netmask.
11594
+ (Updatable) The network netmask.
11559
11595
  """
11560
11596
  return pulumi.get(self, "netmask")
11561
11597
 
@@ -11567,7 +11603,11 @@ class VmClusterNetworkVmNetworkArgs:
11567
11603
  @pulumi.getter(name="vlanId")
11568
11604
  def vlan_id(self) -> Optional[pulumi.Input[str]]:
11569
11605
  """
11570
- The network VLAN ID.
11606
+ (Updatable) The network VLAN ID.
11607
+
11608
+
11609
+ ** IMPORTANT **
11610
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
11571
11611
  """
11572
11612
  return pulumi.get(self, "vlan_id")
11573
11613
 
@@ -11586,12 +11626,12 @@ class VmClusterNetworkVmNetworkNodeArgs:
11586
11626
  vip: Optional[pulumi.Input[str]] = None,
11587
11627
  vip_hostname: Optional[pulumi.Input[str]] = None):
11588
11628
  """
11589
- :param pulumi.Input[str] hostname: The node host name.
11590
- :param pulumi.Input[str] ip: The node IP address.
11591
- :param pulumi.Input[str] db_server_id: The Db server associated with the node.
11592
- :param pulumi.Input[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.
11593
- :param pulumi.Input[str] vip: The node virtual IP (VIP) address.
11594
- :param pulumi.Input[str] vip_hostname: The node virtual IP (VIP) host name.
11629
+ :param pulumi.Input[str] hostname: (Updatable) The node host name.
11630
+ :param pulumi.Input[str] ip: (Updatable) The node IP address.
11631
+ :param pulumi.Input[str] db_server_id: (Updatable) The Db server associated with the node.
11632
+ :param pulumi.Input[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.
11633
+ :param pulumi.Input[str] vip: (Updatable) The node virtual IP (VIP) address.
11634
+ :param pulumi.Input[str] vip_hostname: (Updatable) The node virtual IP (VIP) host name.
11595
11635
  """
11596
11636
  pulumi.set(__self__, "hostname", hostname)
11597
11637
  pulumi.set(__self__, "ip", ip)
@@ -11608,7 +11648,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
11608
11648
  @pulumi.getter
11609
11649
  def hostname(self) -> pulumi.Input[str]:
11610
11650
  """
11611
- The node host name.
11651
+ (Updatable) The node host name.
11612
11652
  """
11613
11653
  return pulumi.get(self, "hostname")
11614
11654
 
@@ -11620,7 +11660,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
11620
11660
  @pulumi.getter
11621
11661
  def ip(self) -> pulumi.Input[str]:
11622
11662
  """
11623
- The node IP address.
11663
+ (Updatable) The node IP address.
11624
11664
  """
11625
11665
  return pulumi.get(self, "ip")
11626
11666
 
@@ -11632,7 +11672,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
11632
11672
  @pulumi.getter(name="dbServerId")
11633
11673
  def db_server_id(self) -> Optional[pulumi.Input[str]]:
11634
11674
  """
11635
- The Db server associated with the node.
11675
+ (Updatable) The Db server associated with the node.
11636
11676
  """
11637
11677
  return pulumi.get(self, "db_server_id")
11638
11678
 
@@ -11644,7 +11684,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
11644
11684
  @pulumi.getter
11645
11685
  def state(self) -> Optional[pulumi.Input[str]]:
11646
11686
  """
11647
- 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.
11687
+ (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.
11648
11688
  """
11649
11689
  return pulumi.get(self, "state")
11650
11690
 
@@ -11656,7 +11696,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
11656
11696
  @pulumi.getter
11657
11697
  def vip(self) -> Optional[pulumi.Input[str]]:
11658
11698
  """
11659
- The node virtual IP (VIP) address.
11699
+ (Updatable) The node virtual IP (VIP) address.
11660
11700
  """
11661
11701
  return pulumi.get(self, "vip")
11662
11702
 
@@ -11668,7 +11708,7 @@ class VmClusterNetworkVmNetworkNodeArgs:
11668
11708
  @pulumi.getter(name="vipHostname")
11669
11709
  def vip_hostname(self) -> Optional[pulumi.Input[str]]:
11670
11710
  """
11671
- The node virtual IP (VIP) host name.
11711
+ (Updatable) The node virtual IP (VIP) host name.
11672
11712
  """
11673
11713
  return pulumi.get(self, "vip_hostname")
11674
11714
 
@@ -1449,6 +1449,7 @@ class _AutonomousDatabaseState:
1449
1449
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
1450
1450
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
1451
1451
  autonomous_maintenance_schedule_type: Optional[pulumi.Input[str]] = None,
1452
+ availability_domain: Optional[pulumi.Input[str]] = None,
1452
1453
  available_upgrade_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1453
1454
  backup_configs: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseBackupConfigArgs']]]] = None,
1454
1455
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
@@ -1587,6 +1588,7 @@ class _AutonomousDatabaseState:
1587
1588
  :param pulumi.Input[str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
1588
1589
  :param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
1589
1590
  :param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
1591
+ :param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
1590
1592
  :param pulumi.Input[Sequence[pulumi.Input[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.
1591
1593
  :param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseBackupConfigArgs']]] 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.
1592
1594
  :param pulumi.Input[int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
@@ -1810,6 +1812,8 @@ class _AutonomousDatabaseState:
1810
1812
  pulumi.set(__self__, "autonomous_database_id", autonomous_database_id)
1811
1813
  if autonomous_maintenance_schedule_type is not None:
1812
1814
  pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
1815
+ if availability_domain is not None:
1816
+ pulumi.set(__self__, "availability_domain", availability_domain)
1813
1817
  if available_upgrade_versions is not None:
1814
1818
  pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
1815
1819
  if backup_configs is not None:
@@ -2196,6 +2200,18 @@ class _AutonomousDatabaseState:
2196
2200
  def autonomous_maintenance_schedule_type(self, value: Optional[pulumi.Input[str]]):
2197
2201
  pulumi.set(self, "autonomous_maintenance_schedule_type", value)
2198
2202
 
2203
+ @property
2204
+ @pulumi.getter(name="availabilityDomain")
2205
+ def availability_domain(self) -> Optional[pulumi.Input[str]]:
2206
+ """
2207
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
2208
+ """
2209
+ return pulumi.get(self, "availability_domain")
2210
+
2211
+ @availability_domain.setter
2212
+ def availability_domain(self, value: Optional[pulumi.Input[str]]):
2213
+ pulumi.set(self, "availability_domain", value)
2214
+
2199
2215
  @property
2200
2216
  @pulumi.getter(name="availableUpgradeVersions")
2201
2217
  def available_upgrade_versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -4235,6 +4251,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4235
4251
  __props__.__dict__["actual_used_data_storage_size_in_tbs"] = None
4236
4252
  __props__.__dict__["allocated_storage_size_in_tbs"] = None
4237
4253
  __props__.__dict__["apex_details"] = None
4254
+ __props__.__dict__["availability_domain"] = None
4238
4255
  __props__.__dict__["available_upgrade_versions"] = None
4239
4256
  __props__.__dict__["backup_configs"] = None
4240
4257
  __props__.__dict__["cluster_placement_group_id"] = None
@@ -4312,6 +4329,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4312
4329
  autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
4313
4330
  autonomous_database_id: Optional[pulumi.Input[str]] = None,
4314
4331
  autonomous_maintenance_schedule_type: Optional[pulumi.Input[str]] = None,
4332
+ availability_domain: Optional[pulumi.Input[str]] = None,
4315
4333
  available_upgrade_versions: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4316
4334
  backup_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseBackupConfigArgs', 'AutonomousDatabaseBackupConfigArgsDict']]]]] = None,
4317
4335
  backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
@@ -4455,6 +4473,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4455
4473
  :param pulumi.Input[str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
4456
4474
  :param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
4457
4475
  :param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
4476
+ :param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
4458
4477
  :param pulumi.Input[Sequence[pulumi.Input[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.
4459
4478
  :param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseBackupConfigArgs', 'AutonomousDatabaseBackupConfigArgsDict']]]] 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.
4460
4479
  :param pulumi.Input[int] backup_retention_period_in_days: (Updatable) Retention period, in days, for backups.
@@ -4671,6 +4690,7 @@ class AutonomousDatabase(pulumi.CustomResource):
4671
4690
  __props__.__dict__["autonomous_database_backup_id"] = autonomous_database_backup_id
4672
4691
  __props__.__dict__["autonomous_database_id"] = autonomous_database_id
4673
4692
  __props__.__dict__["autonomous_maintenance_schedule_type"] = autonomous_maintenance_schedule_type
4693
+ __props__.__dict__["availability_domain"] = availability_domain
4674
4694
  __props__.__dict__["available_upgrade_versions"] = available_upgrade_versions
4675
4695
  __props__.__dict__["backup_configs"] = backup_configs
4676
4696
  __props__.__dict__["backup_retention_period_in_days"] = backup_retention_period_in_days
@@ -4886,6 +4906,14 @@ class AutonomousDatabase(pulumi.CustomResource):
4886
4906
  """
4887
4907
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
4888
4908
 
4909
+ @property
4910
+ @pulumi.getter(name="availabilityDomain")
4911
+ def availability_domain(self) -> pulumi.Output[str]:
4912
+ """
4913
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
4914
+ """
4915
+ return pulumi.get(self, "availability_domain")
4916
+
4889
4917
  @property
4890
4918
  @pulumi.getter(name="availableUpgradeVersions")
4891
4919
  def available_upgrade_versions(self) -> pulumi.Output[Sequence[str]]: