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
@@ -33,6 +33,7 @@ class DataGuardAssociationArgs:
33
33
  db_system_defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
34
34
  db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
35
35
  display_name: Optional[pulumi.Input[str]] = None,
36
+ domain: Optional[pulumi.Input[str]] = None,
36
37
  fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
37
38
  hostname: Optional[pulumi.Input[str]] = None,
38
39
  is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
@@ -87,6 +88,7 @@ class DataGuardAssociationArgs:
87
88
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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).
88
89
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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"}`
89
90
  :param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
91
+ :param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
90
92
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
91
93
 
92
94
  If you do not specify the Fault Domain, the system selects one for you. To change the Fault Domain for a DB system, terminate it and launch a new DB system in the preferred Fault Domain.
@@ -146,6 +148,8 @@ class DataGuardAssociationArgs:
146
148
  pulumi.set(__self__, "db_system_freeform_tags", db_system_freeform_tags)
147
149
  if display_name is not None:
148
150
  pulumi.set(__self__, "display_name", display_name)
151
+ if domain is not None:
152
+ pulumi.set(__self__, "domain", domain)
149
153
  if fault_domains is not None:
150
154
  pulumi.set(__self__, "fault_domains", fault_domains)
151
155
  if hostname is not None:
@@ -398,6 +402,18 @@ class DataGuardAssociationArgs:
398
402
  def display_name(self, value: Optional[pulumi.Input[str]]):
399
403
  pulumi.set(self, "display_name", value)
400
404
 
405
+ @property
406
+ @pulumi.getter
407
+ def domain(self) -> Optional[pulumi.Input[str]]:
408
+ """
409
+ A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
410
+ """
411
+ return pulumi.get(self, "domain")
412
+
413
+ @domain.setter
414
+ def domain(self, value: Optional[pulumi.Input[str]]):
415
+ pulumi.set(self, "domain", value)
416
+
401
417
  @property
402
418
  @pulumi.getter(name="faultDomains")
403
419
  def fault_domains(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -625,6 +641,7 @@ class _DataGuardAssociationState:
625
641
  db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
626
642
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
627
643
  display_name: Optional[pulumi.Input[str]] = None,
644
+ domain: Optional[pulumi.Input[str]] = None,
628
645
  fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
629
646
  hostname: Optional[pulumi.Input[str]] = None,
630
647
  is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
@@ -675,6 +692,7 @@ class _DataGuardAssociationState:
675
692
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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).
676
693
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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"}`
677
694
  :param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
695
+ :param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
678
696
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
679
697
 
680
698
  If you do not specify the Fault Domain, the system selects one for you. To change the Fault Domain for a DB system, terminate it and launch a new DB system in the preferred Fault Domain.
@@ -762,6 +780,8 @@ class _DataGuardAssociationState:
762
780
  pulumi.set(__self__, "delete_standby_db_home_on_delete", delete_standby_db_home_on_delete)
763
781
  if display_name is not None:
764
782
  pulumi.set(__self__, "display_name", display_name)
783
+ if domain is not None:
784
+ pulumi.set(__self__, "domain", domain)
765
785
  if fault_domains is not None:
766
786
  pulumi.set(__self__, "fault_domains", fault_domains)
767
787
  if hostname is not None:
@@ -1019,6 +1039,18 @@ class _DataGuardAssociationState:
1019
1039
  def display_name(self, value: Optional[pulumi.Input[str]]):
1020
1040
  pulumi.set(self, "display_name", value)
1021
1041
 
1042
+ @property
1043
+ @pulumi.getter
1044
+ def domain(self) -> Optional[pulumi.Input[str]]:
1045
+ """
1046
+ A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
1047
+ """
1048
+ return pulumi.get(self, "domain")
1049
+
1050
+ @domain.setter
1051
+ def domain(self, value: Optional[pulumi.Input[str]]):
1052
+ pulumi.set(self, "domain", value)
1053
+
1022
1054
  @property
1023
1055
  @pulumi.getter(name="faultDomains")
1024
1056
  def fault_domains(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -1367,6 +1399,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1367
1399
  db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1368
1400
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
1369
1401
  display_name: Optional[pulumi.Input[str]] = None,
1402
+ domain: Optional[pulumi.Input[str]] = None,
1370
1403
  fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1371
1404
  hostname: Optional[pulumi.Input[str]] = None,
1372
1405
  is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
@@ -1425,6 +1458,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1425
1458
  db_system_defined_tags=data_guard_association_db_system_defined_tags,
1426
1459
  db_system_freeform_tags=data_guard_association_db_system_freeform_tags,
1427
1460
  display_name=data_guard_association_display_name,
1461
+ domain=data_guard_association_domain,
1428
1462
  fault_domains=data_guard_association_fault_domains,
1429
1463
  hostname=data_guard_association_hostname,
1430
1464
  is_active_data_guard_enabled=data_guard_association_is_active_data_guard_enabled,
@@ -1470,6 +1504,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1470
1504
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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).
1471
1505
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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"}`
1472
1506
  :param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
1507
+ :param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
1473
1508
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
1474
1509
 
1475
1510
  If you do not specify the Fault Domain, the system selects one for you. To change the Fault Domain for a DB system, terminate it and launch a new DB system in the preferred Fault Domain.
@@ -1561,6 +1596,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1561
1596
  db_system_defined_tags=data_guard_association_db_system_defined_tags,
1562
1597
  db_system_freeform_tags=data_guard_association_db_system_freeform_tags,
1563
1598
  display_name=data_guard_association_display_name,
1599
+ domain=data_guard_association_domain,
1564
1600
  fault_domains=data_guard_association_fault_domains,
1565
1601
  hostname=data_guard_association_hostname,
1566
1602
  is_active_data_guard_enabled=data_guard_association_is_active_data_guard_enabled,
@@ -1613,6 +1649,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1613
1649
  db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1614
1650
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
1615
1651
  display_name: Optional[pulumi.Input[str]] = None,
1652
+ domain: Optional[pulumi.Input[str]] = None,
1616
1653
  fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1617
1654
  hostname: Optional[pulumi.Input[str]] = None,
1618
1655
  is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
@@ -1663,6 +1700,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1663
1700
  raise TypeError("Missing required property 'delete_standby_db_home_on_delete'")
1664
1701
  __props__.__dict__["delete_standby_db_home_on_delete"] = delete_standby_db_home_on_delete
1665
1702
  __props__.__dict__["display_name"] = display_name
1703
+ __props__.__dict__["domain"] = domain
1666
1704
  __props__.__dict__["fault_domains"] = fault_domains
1667
1705
  __props__.__dict__["hostname"] = hostname
1668
1706
  __props__.__dict__["is_active_data_guard_enabled"] = is_active_data_guard_enabled
@@ -1723,6 +1761,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1723
1761
  db_system_freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
1724
1762
  delete_standby_db_home_on_delete: Optional[pulumi.Input[str]] = None,
1725
1763
  display_name: Optional[pulumi.Input[str]] = None,
1764
+ domain: Optional[pulumi.Input[str]] = None,
1726
1765
  fault_domains: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
1727
1766
  hostname: Optional[pulumi.Input[str]] = None,
1728
1767
  is_active_data_guard_enabled: Optional[pulumi.Input[bool]] = None,
@@ -1778,6 +1817,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1778
1817
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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).
1779
1818
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] db_system_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"}`
1780
1819
  :param pulumi.Input[str] display_name: The user-friendly name of the DB system that will contain the the standby database. The display name does not have to be unique.
1820
+ :param pulumi.Input[str] domain: A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
1781
1821
  :param pulumi.Input[Sequence[pulumi.Input[str]]] fault_domains: A Fault Domain is a grouping of hardware and infrastructure within an availability domain. Fault Domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or maintenance that affects one Fault Domain does not affect DB systems in other Fault Domains.
1782
1822
 
1783
1823
  If you do not specify the Fault Domain, the system selects one for you. To change the Fault Domain for a DB system, terminate it and launch a new DB system in the preferred Fault Domain.
@@ -1852,6 +1892,7 @@ class DataGuardAssociation(pulumi.CustomResource):
1852
1892
  __props__.__dict__["db_system_freeform_tags"] = db_system_freeform_tags
1853
1893
  __props__.__dict__["delete_standby_db_home_on_delete"] = delete_standby_db_home_on_delete
1854
1894
  __props__.__dict__["display_name"] = display_name
1895
+ __props__.__dict__["domain"] = domain
1855
1896
  __props__.__dict__["fault_domains"] = fault_domains
1856
1897
  __props__.__dict__["hostname"] = hostname
1857
1898
  __props__.__dict__["is_active_data_guard_enabled"] = is_active_data_guard_enabled
@@ -2017,6 +2058,14 @@ class DataGuardAssociation(pulumi.CustomResource):
2017
2058
  """
2018
2059
  return pulumi.get(self, "display_name")
2019
2060
 
2061
+ @property
2062
+ @pulumi.getter
2063
+ def domain(self) -> pulumi.Output[str]:
2064
+ """
2065
+ A domain name used for the DB system. If the Oracle-provided Internet and VCN Resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted.
2066
+ """
2067
+ return pulumi.get(self, "domain")
2068
+
2020
2069
  @property
2021
2070
  @pulumi.getter(name="faultDomains")
2022
2071
  def fault_domains(self) -> pulumi.Output[Optional[Sequence[str]]]:
@@ -22,7 +22,7 @@ class GetAutonomousDatabaseResult:
22
22
  """
23
23
  A collection of values returned by getAutonomousDatabase.
24
24
  """
25
- def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, subscription_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
25
+ def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, availability_domain=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, byol_compute_count_limit=None, character_set=None, clone_type=None, cluster_placement_group_id=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, disaster_recovery_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, public_connection_urls=None, public_endpoint=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, subscription_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
26
26
  if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
27
27
  raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
28
28
  pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
@@ -56,6 +56,9 @@ class GetAutonomousDatabaseResult:
56
56
  if autonomous_maintenance_schedule_type and not isinstance(autonomous_maintenance_schedule_type, str):
57
57
  raise TypeError("Expected argument 'autonomous_maintenance_schedule_type' to be a str")
58
58
  pulumi.set(__self__, "autonomous_maintenance_schedule_type", autonomous_maintenance_schedule_type)
59
+ if availability_domain and not isinstance(availability_domain, str):
60
+ raise TypeError("Expected argument 'availability_domain' to be a str")
61
+ pulumi.set(__self__, "availability_domain", availability_domain)
59
62
  if available_upgrade_versions and not isinstance(available_upgrade_versions, list):
60
63
  raise TypeError("Expected argument 'available_upgrade_versions' to be a list")
61
64
  pulumi.set(__self__, "available_upgrade_versions", available_upgrade_versions)
@@ -514,6 +517,14 @@ class GetAutonomousDatabaseResult:
514
517
  """
515
518
  return pulumi.get(self, "autonomous_maintenance_schedule_type")
516
519
 
520
+ @property
521
+ @pulumi.getter(name="availabilityDomain")
522
+ def availability_domain(self) -> str:
523
+ """
524
+ The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
525
+ """
526
+ return pulumi.get(self, "availability_domain")
527
+
517
528
  @property
518
529
  @pulumi.getter(name="availableUpgradeVersions")
519
530
  def available_upgrade_versions(self) -> Sequence[str]:
@@ -1505,6 +1516,7 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
1505
1516
  autonomous_database_backup_id=self.autonomous_database_backup_id,
1506
1517
  autonomous_database_id=self.autonomous_database_id,
1507
1518
  autonomous_maintenance_schedule_type=self.autonomous_maintenance_schedule_type,
1519
+ availability_domain=self.availability_domain,
1508
1520
  available_upgrade_versions=self.available_upgrade_versions,
1509
1521
  backup_configs=self.backup_configs,
1510
1522
  backup_retention_period_in_days=self.backup_retention_period_in_days,
@@ -1669,6 +1681,7 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
1669
1681
  autonomous_database_backup_id=pulumi.get(__ret__, 'autonomous_database_backup_id'),
1670
1682
  autonomous_database_id=pulumi.get(__ret__, 'autonomous_database_id'),
1671
1683
  autonomous_maintenance_schedule_type=pulumi.get(__ret__, 'autonomous_maintenance_schedule_type'),
1684
+ availability_domain=pulumi.get(__ret__, 'availability_domain'),
1672
1685
  available_upgrade_versions=pulumi.get(__ret__, 'available_upgrade_versions'),
1673
1686
  backup_configs=pulumi.get(__ret__, 'backup_configs'),
1674
1687
  backup_retention_period_in_days=pulumi.get(__ret__, 'backup_retention_period_in_days'),
@@ -81,9 +81,6 @@ class GetAutonomousDatabasesResult:
81
81
  @property
82
82
  @pulumi.getter(name="autonomousDatabases")
83
83
  def autonomous_databases(self) -> Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseResult']:
84
- """
85
- The list of autonomous_databases.
86
- """
87
84
  return pulumi.get(self, "autonomous_databases")
88
85
 
89
86
  @property
@@ -227,56 +224,26 @@ def get_autonomous_databases(autonomous_container_database_id: Optional[str] = N
227
224
  state: Optional[str] = None,
228
225
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAutonomousDatabasesResult:
229
226
  """
230
- ##
231
-
232
- ***
233
- ## subcategory: "Database"
234
-
235
- layout: "oci"
236
- page_title: "Oracle Cloud Infrastructure: database_get_autonomous_databases"
237
- sidebar_current: "docs-oci-datasource-database-autonomous_databases"
238
- description: |-
239
- Provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service
240
- ---
241
-
242
- # Data Source: database_get_autonomous_databases
243
- This data source provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service.
244
-
245
- Gets a list of Autonomous Databases based on the query parameters specified.
246
-
247
- ## Example Usage
227
+ This data source provides details about a specific Autonomous Database resource in Oracle Cloud Infrastructure Database service.
248
228
 
249
- ```python
250
- import pulumi
251
- import pulumi_oci as oci
252
-
253
- test_autonomous_databases = oci.Database.get_autonomous_databases(compartment_id=compartment_id,
254
- autonomous_container_database_id=test_autonomous_container_database["id"],
255
- db_version=autonomous_database_db_version,
256
- db_workload=autonomous_database_db_workload,
257
- display_name=autonomous_database_display_name,
258
- infrastructure_type=autonomous_database_infrastructure_type,
259
- is_data_guard_enabled=autonomous_database_is_data_guard_enabled,
260
- is_free_tier=autonomous_database_is_free_tier,
261
- is_refreshable_clone=autonomous_database_is_refreshable_clone,
262
- is_resource_pool_leader=autonomous_database_is_resource_pool_leader,
263
- resource_pool_leader_id=test_resource_pool_leader["id"],
264
- state=autonomous_database_state)
265
- ```
229
+ Gets the details of the specified Autonomous Database.
266
230
 
267
231
 
268
232
  :param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
269
- :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
270
- :param str db_version: A filter to return only autonomous database resources that match the specified dbVersion.
271
- :param str db_workload: A filter to return only autonomous database resources that match the specified workload type.
272
- :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
273
- :param str infrastructure_type: A filter to return only resources that match the given Infrastructure Type.
274
- :param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
275
- :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.
276
- :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.
277
- :param bool is_resource_pool_leader: Filter if the resource is the resource pool leader. A value of `true` returns only resource pool leader.
278
- :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.
279
- :param str state: A filter to return only resources that match the given lifecycle state exactly.
233
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
234
+ :param str db_version: A valid Oracle Database version for Autonomous Database.
235
+ :param str db_workload: The Autonomous Database workload type. The following values are valid:
236
+ * OLTP - indicates an Autonomous Transaction Processing database
237
+ * DW - indicates an Autonomous Data Warehouse database
238
+ * AJD - indicates an Autonomous JSON Database
239
+ * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
240
+ :param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
241
+ :param str infrastructure_type: The infrastructure type this resource belongs to.
242
+ :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.
243
+ :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.
244
+ :param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
245
+ :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).
246
+ :param str state: The current state of the Autonomous Database.
280
247
  """
281
248
  __args__ = dict()
282
249
  __args__['autonomousContainerDatabaseId'] = autonomous_container_database_id
@@ -329,55 +296,25 @@ def get_autonomous_databases_output(autonomous_container_database_id: Optional[p
329
296
  state: Optional[pulumi.Input[Optional[str]]] = None,
330
297
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetAutonomousDatabasesResult]:
331
298
  """
332
- ##
333
-
334
- ***
335
- ## subcategory: "Database"
336
-
337
- layout: "oci"
338
- page_title: "Oracle Cloud Infrastructure: database_get_autonomous_databases"
339
- sidebar_current: "docs-oci-datasource-database-autonomous_databases"
340
- description: |-
341
- Provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service
342
- ---
343
-
344
- # Data Source: database_get_autonomous_databases
345
- This data source provides the list of Autonomous Databases in Oracle Cloud Infrastructure Database service.
346
-
347
- Gets a list of Autonomous Databases based on the query parameters specified.
348
-
349
- ## Example Usage
350
-
351
- ```python
352
- import pulumi
353
- import pulumi_oci as oci
299
+ This data source provides details about a specific Autonomous Database resource in Oracle Cloud Infrastructure Database service.
354
300
 
355
- test_autonomous_databases = oci.Database.get_autonomous_databases(compartment_id=compartment_id,
356
- autonomous_container_database_id=test_autonomous_container_database["id"],
357
- db_version=autonomous_database_db_version,
358
- db_workload=autonomous_database_db_workload,
359
- display_name=autonomous_database_display_name,
360
- infrastructure_type=autonomous_database_infrastructure_type,
361
- is_data_guard_enabled=autonomous_database_is_data_guard_enabled,
362
- is_free_tier=autonomous_database_is_free_tier,
363
- is_refreshable_clone=autonomous_database_is_refreshable_clone,
364
- is_resource_pool_leader=autonomous_database_is_resource_pool_leader,
365
- resource_pool_leader_id=test_resource_pool_leader["id"],
366
- state=autonomous_database_state)
367
- ```
301
+ Gets the details of the specified Autonomous Database.
368
302
 
369
303
 
370
304
  :param str autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
371
- :param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
372
- :param str db_version: A filter to return only autonomous database resources that match the specified dbVersion.
373
- :param str db_workload: A filter to return only autonomous database resources that match the specified workload type.
374
- :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
375
- :param str infrastructure_type: A filter to return only resources that match the given Infrastructure Type.
376
- :param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
377
- :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.
378
- :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.
379
- :param bool is_resource_pool_leader: Filter if the resource is the resource pool leader. A value of `true` returns only resource pool leader.
380
- :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.
381
- :param str state: A filter to return only resources that match the given lifecycle state exactly.
305
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
306
+ :param str db_version: A valid Oracle Database version for Autonomous Database.
307
+ :param str db_workload: The Autonomous Database workload type. The following values are valid:
308
+ * OLTP - indicates an Autonomous Transaction Processing database
309
+ * DW - indicates an Autonomous Data Warehouse database
310
+ * AJD - indicates an Autonomous JSON Database
311
+ * APEX - indicates an Autonomous Database with the Oracle APEX Application Development workload type.
312
+ :param str display_name: The user-friendly name for the Autonomous Database. The name does not have to be unique.
313
+ :param str infrastructure_type: The infrastructure type this resource belongs to.
314
+ :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.
315
+ :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.
316
+ :param bool is_refreshable_clone: Indicates if the Autonomous Database is a refreshable clone.
317
+ :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).
318
+ :param str state: The current state of the Autonomous Database.
382
319
  """
383
320
  ...
@@ -22,7 +22,7 @@ class GetDataGuardAssociationResult:
22
22
  """
23
23
  A collection of values returned by getDataGuardAssociation.
24
24
  """
25
- def __init__(__self__, apply_lag=None, apply_rate=None, availability_domain=None, backup_network_nsg_ids=None, cpu_core_count=None, create_async=None, creation_type=None, data_collection_options=None, data_guard_association_id=None, database_admin_password=None, database_defined_tags=None, database_freeform_tags=None, database_id=None, database_software_image_id=None, db_system_defined_tags=None, db_system_freeform_tags=None, delete_standby_db_home_on_delete=None, display_name=None, fault_domains=None, hostname=None, id=None, is_active_data_guard_enabled=None, license_model=None, lifecycle_details=None, node_count=None, nsg_ids=None, peer_data_guard_association_id=None, peer_database_id=None, peer_db_home_id=None, peer_db_system_id=None, peer_db_unique_name=None, peer_role=None, peer_sid_prefix=None, peer_vm_cluster_id=None, private_ip=None, protection_mode=None, role=None, shape=None, state=None, storage_volume_performance_mode=None, subnet_id=None, time_created=None, time_zone=None, transport_type=None):
25
+ def __init__(__self__, apply_lag=None, apply_rate=None, availability_domain=None, backup_network_nsg_ids=None, cpu_core_count=None, create_async=None, creation_type=None, data_collection_options=None, data_guard_association_id=None, database_admin_password=None, database_defined_tags=None, database_freeform_tags=None, database_id=None, database_software_image_id=None, db_system_defined_tags=None, db_system_freeform_tags=None, delete_standby_db_home_on_delete=None, display_name=None, domain=None, fault_domains=None, hostname=None, id=None, is_active_data_guard_enabled=None, license_model=None, lifecycle_details=None, node_count=None, nsg_ids=None, peer_data_guard_association_id=None, peer_database_id=None, peer_db_home_id=None, peer_db_system_id=None, peer_db_unique_name=None, peer_role=None, peer_sid_prefix=None, peer_vm_cluster_id=None, private_ip=None, protection_mode=None, role=None, shape=None, state=None, storage_volume_performance_mode=None, subnet_id=None, time_created=None, time_zone=None, transport_type=None):
26
26
  if apply_lag and not isinstance(apply_lag, str):
27
27
  raise TypeError("Expected argument 'apply_lag' to be a str")
28
28
  pulumi.set(__self__, "apply_lag", apply_lag)
@@ -77,6 +77,9 @@ class GetDataGuardAssociationResult:
77
77
  if display_name and not isinstance(display_name, str):
78
78
  raise TypeError("Expected argument 'display_name' to be a str")
79
79
  pulumi.set(__self__, "display_name", display_name)
80
+ if domain and not isinstance(domain, str):
81
+ raise TypeError("Expected argument 'domain' to be a str")
82
+ pulumi.set(__self__, "domain", domain)
80
83
  if fault_domains and not isinstance(fault_domains, list):
81
84
  raise TypeError("Expected argument 'fault_domains' to be a list")
82
85
  pulumi.set(__self__, "fault_domains", fault_domains)
@@ -255,6 +258,11 @@ class GetDataGuardAssociationResult:
255
258
  def display_name(self) -> str:
256
259
  return pulumi.get(self, "display_name")
257
260
 
261
+ @property
262
+ @pulumi.getter
263
+ def domain(self) -> str:
264
+ return pulumi.get(self, "domain")
265
+
258
266
  @property
259
267
  @pulumi.getter(name="faultDomains")
260
268
  def fault_domains(self) -> Sequence[str]:
@@ -449,6 +457,7 @@ class AwaitableGetDataGuardAssociationResult(GetDataGuardAssociationResult):
449
457
  db_system_freeform_tags=self.db_system_freeform_tags,
450
458
  delete_standby_db_home_on_delete=self.delete_standby_db_home_on_delete,
451
459
  display_name=self.display_name,
460
+ domain=self.domain,
452
461
  fault_domains=self.fault_domains,
453
462
  hostname=self.hostname,
454
463
  id=self.id,
@@ -524,6 +533,7 @@ def get_data_guard_association(data_guard_association_id: Optional[str] = None,
524
533
  db_system_freeform_tags=pulumi.get(__ret__, 'db_system_freeform_tags'),
525
534
  delete_standby_db_home_on_delete=pulumi.get(__ret__, 'delete_standby_db_home_on_delete'),
526
535
  display_name=pulumi.get(__ret__, 'display_name'),
536
+ domain=pulumi.get(__ret__, 'domain'),
527
537
  fault_domains=pulumi.get(__ret__, 'fault_domains'),
528
538
  hostname=pulumi.get(__ret__, 'hostname'),
529
539
  id=pulumi.get(__ret__, 'id'),