pulumi-oci 2.17.0a1731673476__py3-none-any.whl → 2.18.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/database/_inputs.py +20 -0
- pulumi_oci/database/autonomous_container_database.py +0 -7
- pulumi_oci/database/autonomous_database.py +7 -7
- pulumi_oci/database/get_autonomous_database.py +1 -1
- pulumi_oci/database/outputs.py +27 -4
- pulumi_oci/psql/_inputs.py +20 -0
- pulumi_oci/psql/db_system.py +2 -0
- pulumi_oci/psql/get_db_system_connection_detail.py +18 -4
- pulumi_oci/psql/outputs.py +77 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.17.0a1731673476.dist-info → pulumi_oci-2.18.0.dist-info}/METADATA +5 -5
- {pulumi_oci-2.17.0a1731673476.dist-info → pulumi_oci-2.18.0.dist-info}/RECORD +14 -14
- {pulumi_oci-2.17.0a1731673476.dist-info → pulumi_oci-2.18.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.17.0a1731673476.dist-info → pulumi_oci-2.18.0.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -9572,6 +9572,10 @@ if not MYPY:
|
|
9572
9572
|
"""
|
9573
9573
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
9574
9574
|
"""
|
9575
|
+
is_unified_auditing_enabled: NotRequired[pulumi.Input[bool]]
|
9576
|
+
"""
|
9577
|
+
Indicates whether unified auditing is enabled or not
|
9578
|
+
"""
|
9575
9579
|
last_patch_history_entry_id: NotRequired[pulumi.Input[str]]
|
9576
9580
|
"""
|
9577
9581
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
|
@@ -9603,6 +9607,7 @@ class DbSystemDbHomeArgs:
|
|
9603
9607
|
display_name: Optional[pulumi.Input[str]] = None,
|
9604
9608
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
9605
9609
|
id: Optional[pulumi.Input[str]] = None,
|
9610
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
9606
9611
|
last_patch_history_entry_id: Optional[pulumi.Input[str]] = None,
|
9607
9612
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
9608
9613
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -9619,6 +9624,7 @@ class DbSystemDbHomeArgs:
|
|
9619
9624
|
:param pulumi.Input[str] display_name: The user-provided name of the Database Home.
|
9620
9625
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
9621
9626
|
:param pulumi.Input[str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
9627
|
+
:param pulumi.Input[bool] is_unified_auditing_enabled: Indicates whether unified auditing is enabled or not
|
9622
9628
|
:param pulumi.Input[str] last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
|
9623
9629
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
9624
9630
|
:param pulumi.Input[str] state: The current state of the DB system.
|
@@ -9641,6 +9647,8 @@ class DbSystemDbHomeArgs:
|
|
9641
9647
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
9642
9648
|
if id is not None:
|
9643
9649
|
pulumi.set(__self__, "id", id)
|
9650
|
+
if is_unified_auditing_enabled is not None:
|
9651
|
+
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
9644
9652
|
if last_patch_history_entry_id is not None:
|
9645
9653
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
9646
9654
|
if lifecycle_details is not None:
|
@@ -9756,6 +9764,18 @@ class DbSystemDbHomeArgs:
|
|
9756
9764
|
def id(self, value: Optional[pulumi.Input[str]]):
|
9757
9765
|
pulumi.set(self, "id", value)
|
9758
9766
|
|
9767
|
+
@property
|
9768
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
9769
|
+
def is_unified_auditing_enabled(self) -> Optional[pulumi.Input[bool]]:
|
9770
|
+
"""
|
9771
|
+
Indicates whether unified auditing is enabled or not
|
9772
|
+
"""
|
9773
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
9774
|
+
|
9775
|
+
@is_unified_auditing_enabled.setter
|
9776
|
+
def is_unified_auditing_enabled(self, value: Optional[pulumi.Input[bool]]):
|
9777
|
+
pulumi.set(self, "is_unified_auditing_enabled", value)
|
9778
|
+
|
9759
9779
|
@property
|
9760
9780
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
9761
9781
|
def last_patch_history_entry_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -90,7 +90,6 @@ class AutonomousContainerDatabaseArgs:
|
|
90
90
|
:param pulumi.Input[str] service_level_agreement_type: The service level agreement type of the Autonomous Container Database. The default is STANDARD. For an autonomous dataguard Autonomous Container Database, the specified Autonomous Exadata Infrastructure must be associated with a remote Autonomous Exadata Infrastructure.
|
91
91
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: (Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
92
92
|
|
93
|
-
|
94
93
|
** IMPORTANT **
|
95
94
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
96
95
|
:param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
@@ -549,7 +548,6 @@ class AutonomousContainerDatabaseArgs:
|
|
549
548
|
"""
|
550
549
|
(Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
551
550
|
|
552
|
-
|
553
551
|
** IMPORTANT **
|
554
552
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
555
553
|
"""
|
@@ -717,7 +715,6 @@ class _AutonomousContainerDatabaseState:
|
|
717
715
|
:param pulumi.Input[str] service_level_agreement_type: The service level agreement type of the Autonomous Container Database. The default is STANDARD. For an autonomous dataguard Autonomous Container Database, the specified Autonomous Exadata Infrastructure must be associated with a remote Autonomous Exadata Infrastructure.
|
718
716
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: (Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
719
717
|
|
720
|
-
|
721
718
|
** IMPORTANT **
|
722
719
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
723
720
|
:param pulumi.Input[str] state: The current state of the Autonomous Container Database.
|
@@ -1477,7 +1474,6 @@ class _AutonomousContainerDatabaseState:
|
|
1477
1474
|
"""
|
1478
1475
|
(Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
1479
1476
|
|
1480
|
-
|
1481
1477
|
** IMPORTANT **
|
1482
1478
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1483
1479
|
"""
|
@@ -1672,7 +1668,6 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
|
|
1672
1668
|
:param pulumi.Input[str] service_level_agreement_type: The service level agreement type of the Autonomous Container Database. The default is STANDARD. For an autonomous dataguard Autonomous Container Database, the specified Autonomous Exadata Infrastructure must be associated with a remote Autonomous Exadata Infrastructure.
|
1673
1669
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: (Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
1674
1670
|
|
1675
|
-
|
1676
1671
|
** IMPORTANT **
|
1677
1672
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1678
1673
|
:param pulumi.Input[str] vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts).
|
@@ -1956,7 +1951,6 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
|
|
1956
1951
|
:param pulumi.Input[str] service_level_agreement_type: The service level agreement type of the Autonomous Container Database. The default is STANDARD. For an autonomous dataguard Autonomous Container Database, the specified Autonomous Exadata Infrastructure must be associated with a remote Autonomous Exadata Infrastructure.
|
1957
1952
|
:param pulumi.Input[int] standby_maintenance_buffer_in_days: (Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
1958
1953
|
|
1959
|
-
|
1960
1954
|
** IMPORTANT **
|
1961
1955
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1962
1956
|
:param pulumi.Input[str] state: The current state of the Autonomous Container Database.
|
@@ -2452,7 +2446,6 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
|
|
2452
2446
|
"""
|
2453
2447
|
(Updatable) The scheduling detail for the quarterly maintenance window of standby Autonomous Container Database. This value represents the number of days before the primary database maintenance schedule.
|
2454
2448
|
|
2455
|
-
|
2456
2449
|
** IMPORTANT **
|
2457
2450
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2458
2451
|
"""
|
@@ -169,7 +169,7 @@ class AutonomousDatabaseArgs:
|
|
169
169
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
170
170
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **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.
|
171
171
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
172
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are
|
172
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
173
173
|
:param pulumi.Input[bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
174
174
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
175
175
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -900,7 +900,7 @@ class AutonomousDatabaseArgs:
|
|
900
900
|
@pulumi.getter(name="isDevTier")
|
901
901
|
def is_dev_tier(self) -> Optional[pulumi.Input[bool]]:
|
902
902
|
"""
|
903
|
-
(Updatable) Autonomous Database for Developers are
|
903
|
+
(Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
904
904
|
"""
|
905
905
|
return pulumi.get(self, "is_dev_tier")
|
906
906
|
|
@@ -1698,7 +1698,7 @@ class _AutonomousDatabaseState:
|
|
1698
1698
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
1699
1699
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **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.
|
1700
1700
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
1701
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are
|
1701
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
1702
1702
|
:param pulumi.Input[bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
1703
1703
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
1704
1704
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -2774,7 +2774,7 @@ class _AutonomousDatabaseState:
|
|
2774
2774
|
@pulumi.getter(name="isDevTier")
|
2775
2775
|
def is_dev_tier(self) -> Optional[pulumi.Input[bool]]:
|
2776
2776
|
"""
|
2777
|
-
(Updatable) Autonomous Database for Developers are
|
2777
|
+
(Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
2778
2778
|
"""
|
2779
2779
|
return pulumi.get(self, "is_dev_tier")
|
2780
2780
|
|
@@ -4049,7 +4049,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4049
4049
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
4050
4050
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **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.
|
4051
4051
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
4052
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are
|
4052
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
4053
4053
|
:param pulumi.Input[bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
4054
4054
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4055
4055
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -4653,7 +4653,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4653
4653
|
:param pulumi.Input[bool] is_auto_scaling_for_storage_enabled: (Updatable) Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
4654
4654
|
:param pulumi.Input[bool] is_data_guard_enabled: (Updatable) **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.
|
4655
4655
|
:param pulumi.Input[bool] is_dedicated: True if the database is on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm).
|
4656
|
-
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are
|
4656
|
+
:param pulumi.Input[bool] is_dev_tier: (Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
4657
4657
|
:param pulumi.Input[bool] is_free_tier: (Updatable) 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. When `db_workload` is `AJD` or `APEX` it cannot be `true`.
|
4658
4658
|
:param pulumi.Input[bool] is_local_data_guard_enabled: (Updatable) Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. It takes boolean values. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
4659
4659
|
:param pulumi.Input[bool] is_mtls_connection_required: (Updatable) Indicates whether the Autonomous Database requires mTLS connections.
|
@@ -5382,7 +5382,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5382
5382
|
@pulumi.getter(name="isDevTier")
|
5383
5383
|
def is_dev_tier(self) -> pulumi.Output[bool]:
|
5384
5384
|
"""
|
5385
|
-
(Updatable) Autonomous Database for Developers are
|
5385
|
+
(Updatable) Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
5386
5386
|
"""
|
5387
5387
|
return pulumi.get(self, "is_dev_tier")
|
5388
5388
|
|
@@ -872,7 +872,7 @@ class GetAutonomousDatabaseResult:
|
|
872
872
|
@pulumi.getter(name="isDevTier")
|
873
873
|
def is_dev_tier(self) -> bool:
|
874
874
|
"""
|
875
|
-
Autonomous Database for Developers are
|
875
|
+
Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
876
876
|
"""
|
877
877
|
return pulumi.get(self, "is_dev_tier")
|
878
878
|
|
pulumi_oci/database/outputs.py
CHANGED
@@ -7655,6 +7655,8 @@ class DbSystemDbHome(dict):
|
|
7655
7655
|
suggest = "display_name"
|
7656
7656
|
elif key == "freeformTags":
|
7657
7657
|
suggest = "freeform_tags"
|
7658
|
+
elif key == "isUnifiedAuditingEnabled":
|
7659
|
+
suggest = "is_unified_auditing_enabled"
|
7658
7660
|
elif key == "lastPatchHistoryEntryId":
|
7659
7661
|
suggest = "last_patch_history_entry_id"
|
7660
7662
|
elif key == "lifecycleDetails":
|
@@ -7683,6 +7685,7 @@ class DbSystemDbHome(dict):
|
|
7683
7685
|
display_name: Optional[str] = None,
|
7684
7686
|
freeform_tags: Optional[Mapping[str, str]] = None,
|
7685
7687
|
id: Optional[str] = None,
|
7688
|
+
is_unified_auditing_enabled: Optional[bool] = None,
|
7686
7689
|
last_patch_history_entry_id: Optional[str] = None,
|
7687
7690
|
lifecycle_details: Optional[str] = None,
|
7688
7691
|
state: Optional[str] = None,
|
@@ -7699,6 +7702,7 @@ class DbSystemDbHome(dict):
|
|
7699
7702
|
:param str display_name: The user-provided name of the Database Home.
|
7700
7703
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
7701
7704
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
7705
|
+
:param bool is_unified_auditing_enabled: Indicates whether unified auditing is enabled or not
|
7702
7706
|
:param str last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
|
7703
7707
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
7704
7708
|
:param str state: The current state of the DB system.
|
@@ -7721,6 +7725,8 @@ class DbSystemDbHome(dict):
|
|
7721
7725
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
7722
7726
|
if id is not None:
|
7723
7727
|
pulumi.set(__self__, "id", id)
|
7728
|
+
if is_unified_auditing_enabled is not None:
|
7729
|
+
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
7724
7730
|
if last_patch_history_entry_id is not None:
|
7725
7731
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
7726
7732
|
if lifecycle_details is not None:
|
@@ -7800,6 +7806,14 @@ class DbSystemDbHome(dict):
|
|
7800
7806
|
"""
|
7801
7807
|
return pulumi.get(self, "id")
|
7802
7808
|
|
7809
|
+
@property
|
7810
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
7811
|
+
def is_unified_auditing_enabled(self) -> Optional[bool]:
|
7812
|
+
"""
|
7813
|
+
Indicates whether unified auditing is enabled or not
|
7814
|
+
"""
|
7815
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
7816
|
+
|
7803
7817
|
@property
|
7804
7818
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
7805
7819
|
def last_patch_history_entry_id(self) -> Optional[str]:
|
@@ -18919,7 +18933,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
18919
18933
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
18920
18934
|
:param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
|
18921
18935
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
18922
|
-
:param bool is_dev_tier: Autonomous Database for Developers are
|
18936
|
+
:param bool is_dev_tier: Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
18937
|
+
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled
|
18923
18938
|
: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.
|
18924
18939
|
:param bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
18925
18940
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -19555,7 +19570,8 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
19555
19570
|
@pulumi.getter(name="isDevTier")
|
19556
19571
|
def is_dev_tier(self) -> bool:
|
19557
19572
|
"""
|
19558
|
-
Autonomous Database for Developers are
|
19573
|
+
Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
19574
|
+
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, openMode, permissionLevel, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, or isLocalDataGuardEnabled
|
19559
19575
|
"""
|
19560
19576
|
return pulumi.get(self, "is_dev_tier")
|
19561
19577
|
|
@@ -21636,7 +21652,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
21636
21652
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
21637
21653
|
: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.
|
21638
21654
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
21639
|
-
:param bool is_dev_tier: Autonomous Database for Developers are
|
21655
|
+
:param bool is_dev_tier: Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
21640
21656
|
: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.
|
21641
21657
|
:param bool is_local_data_guard_enabled: Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
21642
21658
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -22223,7 +22239,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22223
22239
|
@pulumi.getter(name="isDevTier")
|
22224
22240
|
def is_dev_tier(self) -> bool:
|
22225
22241
|
"""
|
22226
|
-
Autonomous Database for Developers are
|
22242
|
+
Autonomous Database for Developers are free Autonomous Databases that developers can use to build and test new applications.With Autonomous these database instancess instances, you can try new Autonomous Database features for free and apply them to ongoing or new development projects. Developer database comes with limited resources and is, therefore, not suitable for large-scale testing and production deployments. When you need more compute or storage resources, you can transition to a paid database licensing by cloning your developer database into a regular Autonomous Database. See [Autonomous Database documentation](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/eddjo/index.html) for more details.
|
22227
22243
|
"""
|
22228
22244
|
return pulumi.get(self, "is_dev_tier")
|
22229
22245
|
|
@@ -38971,6 +38987,7 @@ class GetDbSystemsDbSystemDbHomeResult(dict):
|
|
38971
38987
|
display_name: str,
|
38972
38988
|
freeform_tags: Mapping[str, str],
|
38973
38989
|
id: str,
|
38990
|
+
is_unified_auditing_enabled: bool,
|
38974
38991
|
last_patch_history_entry_id: str,
|
38975
38992
|
lifecycle_details: str,
|
38976
38993
|
state: str,
|
@@ -38994,6 +39011,7 @@ class GetDbSystemsDbSystemDbHomeResult(dict):
|
|
38994
39011
|
pulumi.set(__self__, "display_name", display_name)
|
38995
39012
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
38996
39013
|
pulumi.set(__self__, "id", id)
|
39014
|
+
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
38997
39015
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
38998
39016
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
38999
39017
|
pulumi.set(__self__, "state", state)
|
@@ -39056,6 +39074,11 @@ class GetDbSystemsDbSystemDbHomeResult(dict):
|
|
39056
39074
|
"""
|
39057
39075
|
return pulumi.get(self, "id")
|
39058
39076
|
|
39077
|
+
@property
|
39078
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
39079
|
+
def is_unified_auditing_enabled(self) -> bool:
|
39080
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
39081
|
+
|
39059
39082
|
@property
|
39060
39083
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
39061
39084
|
def last_patch_history_entry_id(self) -> str:
|
pulumi_oci/psql/_inputs.py
CHANGED
@@ -957,6 +957,10 @@ if not MYPY:
|
|
957
957
|
"""
|
958
958
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
959
959
|
"""
|
960
|
+
is_reader_endpoint_enabled: NotRequired[pulumi.Input[bool]]
|
961
|
+
"""
|
962
|
+
(Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
963
|
+
"""
|
960
964
|
nsg_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
961
965
|
"""
|
962
966
|
(Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
@@ -972,14 +976,18 @@ elif False:
|
|
972
976
|
class DbSystemNetworkDetailsArgs:
|
973
977
|
def __init__(__self__, *,
|
974
978
|
subnet_id: pulumi.Input[str],
|
979
|
+
is_reader_endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
975
980
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
976
981
|
primary_db_endpoint_private_ip: Optional[pulumi.Input[str]] = None):
|
977
982
|
"""
|
978
983
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
984
|
+
:param pulumi.Input[bool] is_reader_endpoint_enabled: (Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
979
985
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
980
986
|
:param pulumi.Input[str] primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
981
987
|
"""
|
982
988
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
989
|
+
if is_reader_endpoint_enabled is not None:
|
990
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
983
991
|
if nsg_ids is not None:
|
984
992
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
985
993
|
if primary_db_endpoint_private_ip is not None:
|
@@ -997,6 +1005,18 @@ class DbSystemNetworkDetailsArgs:
|
|
997
1005
|
def subnet_id(self, value: pulumi.Input[str]):
|
998
1006
|
pulumi.set(self, "subnet_id", value)
|
999
1007
|
|
1008
|
+
@property
|
1009
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
1010
|
+
def is_reader_endpoint_enabled(self) -> Optional[pulumi.Input[bool]]:
|
1011
|
+
"""
|
1012
|
+
(Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
1013
|
+
"""
|
1014
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
1015
|
+
|
1016
|
+
@is_reader_endpoint_enabled.setter
|
1017
|
+
def is_reader_endpoint_enabled(self, value: Optional[pulumi.Input[bool]]):
|
1018
|
+
pulumi.set(self, "is_reader_endpoint_enabled", value)
|
1019
|
+
|
1000
1020
|
@property
|
1001
1021
|
@pulumi.getter(name="nsgIds")
|
1002
1022
|
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
pulumi_oci/psql/db_system.py
CHANGED
@@ -848,6 +848,7 @@ class DbSystem(pulumi.CustomResource):
|
|
848
848
|
display_name=db_system_display_name,
|
849
849
|
network_details={
|
850
850
|
"subnet_id": test_subnet["id"],
|
851
|
+
"is_reader_endpoint_enabled": db_system_network_details_is_reader_endpoint_enabled,
|
851
852
|
"nsg_ids": db_system_network_details_nsg_ids,
|
852
853
|
"primary_db_endpoint_private_ip": db_system_network_details_primary_db_endpoint_private_ip,
|
853
854
|
},
|
@@ -964,6 +965,7 @@ class DbSystem(pulumi.CustomResource):
|
|
964
965
|
display_name=db_system_display_name,
|
965
966
|
network_details={
|
966
967
|
"subnet_id": test_subnet["id"],
|
968
|
+
"is_reader_endpoint_enabled": db_system_network_details_is_reader_endpoint_enabled,
|
967
969
|
"nsg_ids": db_system_network_details_nsg_ids,
|
968
970
|
"primary_db_endpoint_private_ip": db_system_network_details_primary_db_endpoint_private_ip,
|
969
971
|
},
|
@@ -27,7 +27,7 @@ class GetDbSystemConnectionDetailResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDbSystemConnectionDetail.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, ca_certificate=None, db_system_id=None, id=None, instance_endpoints=None, primary_db_endpoints=None):
|
30
|
+
def __init__(__self__, ca_certificate=None, db_system_id=None, id=None, instance_endpoints=None, primary_db_endpoints=None, reader_endpoints=None):
|
31
31
|
if ca_certificate and not isinstance(ca_certificate, str):
|
32
32
|
raise TypeError("Expected argument 'ca_certificate' to be a str")
|
33
33
|
pulumi.set(__self__, "ca_certificate", ca_certificate)
|
@@ -43,6 +43,9 @@ class GetDbSystemConnectionDetailResult:
|
|
43
43
|
if primary_db_endpoints and not isinstance(primary_db_endpoints, list):
|
44
44
|
raise TypeError("Expected argument 'primary_db_endpoints' to be a list")
|
45
45
|
pulumi.set(__self__, "primary_db_endpoints", primary_db_endpoints)
|
46
|
+
if reader_endpoints and not isinstance(reader_endpoints, list):
|
47
|
+
raise TypeError("Expected argument 'reader_endpoints' to be a list")
|
48
|
+
pulumi.set(__self__, "reader_endpoints", reader_endpoints)
|
46
49
|
|
47
50
|
@property
|
48
51
|
@pulumi.getter(name="caCertificate")
|
@@ -81,6 +84,14 @@ class GetDbSystemConnectionDetailResult:
|
|
81
84
|
"""
|
82
85
|
return pulumi.get(self, "primary_db_endpoints")
|
83
86
|
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="readerEndpoints")
|
89
|
+
def reader_endpoints(self) -> Sequence['outputs.GetDbSystemConnectionDetailReaderEndpointResult']:
|
90
|
+
"""
|
91
|
+
Information about the database instance node endpoint.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "reader_endpoints")
|
94
|
+
|
84
95
|
|
85
96
|
class AwaitableGetDbSystemConnectionDetailResult(GetDbSystemConnectionDetailResult):
|
86
97
|
# pylint: disable=using-constant-test
|
@@ -92,7 +103,8 @@ class AwaitableGetDbSystemConnectionDetailResult(GetDbSystemConnectionDetailResu
|
|
92
103
|
db_system_id=self.db_system_id,
|
93
104
|
id=self.id,
|
94
105
|
instance_endpoints=self.instance_endpoints,
|
95
|
-
primary_db_endpoints=self.primary_db_endpoints
|
106
|
+
primary_db_endpoints=self.primary_db_endpoints,
|
107
|
+
reader_endpoints=self.reader_endpoints)
|
96
108
|
|
97
109
|
|
98
110
|
def get_db_system_connection_detail(db_system_id: Optional[str] = None,
|
@@ -124,7 +136,8 @@ def get_db_system_connection_detail(db_system_id: Optional[str] = None,
|
|
124
136
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
125
137
|
id=pulumi.get(__ret__, 'id'),
|
126
138
|
instance_endpoints=pulumi.get(__ret__, 'instance_endpoints'),
|
127
|
-
primary_db_endpoints=pulumi.get(__ret__, 'primary_db_endpoints')
|
139
|
+
primary_db_endpoints=pulumi.get(__ret__, 'primary_db_endpoints'),
|
140
|
+
reader_endpoints=pulumi.get(__ret__, 'reader_endpoints'))
|
128
141
|
def get_db_system_connection_detail_output(db_system_id: Optional[pulumi.Input[str]] = None,
|
129
142
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDbSystemConnectionDetailResult]:
|
130
143
|
"""
|
@@ -153,4 +166,5 @@ def get_db_system_connection_detail_output(db_system_id: Optional[pulumi.Input[s
|
|
153
166
|
db_system_id=pulumi.get(__response__, 'db_system_id'),
|
154
167
|
id=pulumi.get(__response__, 'id'),
|
155
168
|
instance_endpoints=pulumi.get(__response__, 'instance_endpoints'),
|
156
|
-
primary_db_endpoints=pulumi.get(__response__, 'primary_db_endpoints')
|
169
|
+
primary_db_endpoints=pulumi.get(__response__, 'primary_db_endpoints'),
|
170
|
+
reader_endpoints=pulumi.get(__response__, 'reader_endpoints')))
|
pulumi_oci/psql/outputs.py
CHANGED
@@ -50,6 +50,7 @@ __all__ = [
|
|
50
50
|
'GetDbSystemConnectionDetailInstanceEndpointResult',
|
51
51
|
'GetDbSystemConnectionDetailInstanceEndpointEndpointResult',
|
52
52
|
'GetDbSystemConnectionDetailPrimaryDbEndpointResult',
|
53
|
+
'GetDbSystemConnectionDetailReaderEndpointResult',
|
53
54
|
'GetDbSystemCredentialResult',
|
54
55
|
'GetDbSystemCredentialPasswordDetailResult',
|
55
56
|
'GetDbSystemInstanceResult',
|
@@ -816,6 +817,8 @@ class DbSystemNetworkDetails(dict):
|
|
816
817
|
suggest = None
|
817
818
|
if key == "subnetId":
|
818
819
|
suggest = "subnet_id"
|
820
|
+
elif key == "isReaderEndpointEnabled":
|
821
|
+
suggest = "is_reader_endpoint_enabled"
|
819
822
|
elif key == "nsgIds":
|
820
823
|
suggest = "nsg_ids"
|
821
824
|
elif key == "primaryDbEndpointPrivateIp":
|
@@ -834,14 +837,18 @@ class DbSystemNetworkDetails(dict):
|
|
834
837
|
|
835
838
|
def __init__(__self__, *,
|
836
839
|
subnet_id: str,
|
840
|
+
is_reader_endpoint_enabled: Optional[bool] = None,
|
837
841
|
nsg_ids: Optional[Sequence[str]] = None,
|
838
842
|
primary_db_endpoint_private_ip: Optional[str] = None):
|
839
843
|
"""
|
840
844
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
845
|
+
:param bool is_reader_endpoint_enabled: (Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
841
846
|
:param Sequence[str] nsg_ids: (Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
842
847
|
:param str primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
843
848
|
"""
|
844
849
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
850
|
+
if is_reader_endpoint_enabled is not None:
|
851
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
845
852
|
if nsg_ids is not None:
|
846
853
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
847
854
|
if primary_db_endpoint_private_ip is not None:
|
@@ -855,6 +862,14 @@ class DbSystemNetworkDetails(dict):
|
|
855
862
|
"""
|
856
863
|
return pulumi.get(self, "subnet_id")
|
857
864
|
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
867
|
+
def is_reader_endpoint_enabled(self) -> Optional[bool]:
|
868
|
+
"""
|
869
|
+
(Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
872
|
+
|
858
873
|
@property
|
859
874
|
@pulumi.getter(name="nsgIds")
|
860
875
|
def nsg_ids(self) -> Optional[Sequence[str]]:
|
@@ -2070,6 +2085,46 @@ class GetDbSystemConnectionDetailPrimaryDbEndpointResult(dict):
|
|
2070
2085
|
return pulumi.get(self, "port")
|
2071
2086
|
|
2072
2087
|
|
2088
|
+
@pulumi.output_type
|
2089
|
+
class GetDbSystemConnectionDetailReaderEndpointResult(dict):
|
2090
|
+
def __init__(__self__, *,
|
2091
|
+
fqdn: str,
|
2092
|
+
ip_address: str,
|
2093
|
+
port: int):
|
2094
|
+
"""
|
2095
|
+
:param str fqdn: The FQDN of the endpoint.
|
2096
|
+
:param str ip_address: The IP address of the endpoint.
|
2097
|
+
:param int port: The port address of the endpoint.
|
2098
|
+
"""
|
2099
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
2100
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
2101
|
+
pulumi.set(__self__, "port", port)
|
2102
|
+
|
2103
|
+
@property
|
2104
|
+
@pulumi.getter
|
2105
|
+
def fqdn(self) -> str:
|
2106
|
+
"""
|
2107
|
+
The FQDN of the endpoint.
|
2108
|
+
"""
|
2109
|
+
return pulumi.get(self, "fqdn")
|
2110
|
+
|
2111
|
+
@property
|
2112
|
+
@pulumi.getter(name="ipAddress")
|
2113
|
+
def ip_address(self) -> str:
|
2114
|
+
"""
|
2115
|
+
The IP address of the endpoint.
|
2116
|
+
"""
|
2117
|
+
return pulumi.get(self, "ip_address")
|
2118
|
+
|
2119
|
+
@property
|
2120
|
+
@pulumi.getter
|
2121
|
+
def port(self) -> int:
|
2122
|
+
"""
|
2123
|
+
The port address of the endpoint.
|
2124
|
+
"""
|
2125
|
+
return pulumi.get(self, "port")
|
2126
|
+
|
2127
|
+
|
2073
2128
|
@pulumi.output_type
|
2074
2129
|
class GetDbSystemCredentialResult(dict):
|
2075
2130
|
def __init__(__self__, *,
|
@@ -2347,18 +2402,29 @@ class GetDbSystemManagementPolicyBackupPolicyResult(dict):
|
|
2347
2402
|
@pulumi.output_type
|
2348
2403
|
class GetDbSystemNetworkDetailResult(dict):
|
2349
2404
|
def __init__(__self__, *,
|
2405
|
+
is_reader_endpoint_enabled: bool,
|
2350
2406
|
nsg_ids: Sequence[str],
|
2351
2407
|
primary_db_endpoint_private_ip: str,
|
2352
2408
|
subnet_id: str):
|
2353
2409
|
"""
|
2410
|
+
:param bool is_reader_endpoint_enabled: Specifies if the reader endpoint is enabled on the dbSystem.
|
2354
2411
|
:param Sequence[str] nsg_ids: List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
2355
2412
|
:param str primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
2356
2413
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
2357
2414
|
"""
|
2415
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
2358
2416
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
2359
2417
|
pulumi.set(__self__, "primary_db_endpoint_private_ip", primary_db_endpoint_private_ip)
|
2360
2418
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2361
2419
|
|
2420
|
+
@property
|
2421
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
2422
|
+
def is_reader_endpoint_enabled(self) -> bool:
|
2423
|
+
"""
|
2424
|
+
Specifies if the reader endpoint is enabled on the dbSystem.
|
2425
|
+
"""
|
2426
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
2427
|
+
|
2362
2428
|
@property
|
2363
2429
|
@pulumi.getter(name="nsgIds")
|
2364
2430
|
def nsg_ids(self) -> Sequence[str]:
|
@@ -3110,18 +3176,29 @@ class GetDbSystemsDbSystemCollectionItemManagementPolicyBackupPolicyResult(dict)
|
|
3110
3176
|
@pulumi.output_type
|
3111
3177
|
class GetDbSystemsDbSystemCollectionItemNetworkDetailResult(dict):
|
3112
3178
|
def __init__(__self__, *,
|
3179
|
+
is_reader_endpoint_enabled: bool,
|
3113
3180
|
nsg_ids: Sequence[str],
|
3114
3181
|
primary_db_endpoint_private_ip: str,
|
3115
3182
|
subnet_id: str):
|
3116
3183
|
"""
|
3184
|
+
:param bool is_reader_endpoint_enabled: Specifies if the reader endpoint is enabled on the dbSystem.
|
3117
3185
|
:param Sequence[str] nsg_ids: List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
3118
3186
|
:param str primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
3119
3187
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
3120
3188
|
"""
|
3189
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
3121
3190
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
3122
3191
|
pulumi.set(__self__, "primary_db_endpoint_private_ip", primary_db_endpoint_private_ip)
|
3123
3192
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
3124
3193
|
|
3194
|
+
@property
|
3195
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
3196
|
+
def is_reader_endpoint_enabled(self) -> bool:
|
3197
|
+
"""
|
3198
|
+
Specifies if the reader endpoint is enabled on the dbSystem.
|
3199
|
+
"""
|
3200
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
3201
|
+
|
3125
3202
|
@property
|
3126
3203
|
@pulumi.getter(name="nsgIds")
|
3127
3204
|
def nsg_ids(self) -> Sequence[str]:
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_oci
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.18.0
|
4
4
|
Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumi/pulumi-oci
|
|
8
8
|
Keywords: pulumi,oci,oracle,category/cloud
|
9
9
|
Requires-Python: >=3.8
|
10
10
|
Description-Content-Type: text/markdown
|
11
|
-
Requires-Dist: parver
|
12
|
-
Requires-Dist: pulumi
|
13
|
-
Requires-Dist: semver
|
14
|
-
Requires-Dist: typing-extensions
|
11
|
+
Requires-Dist: parver>=0.2.1
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.136.0
|
13
|
+
Requires-Dist: semver>=2.8.1
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
15
15
|
|
16
16
|
# Oracle Cloud Infrastructure Resource Provider
|
17
17
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=REECRQRrkwfxqAJzBm4qanFJFYJFnOB9Vwht9Q1VJ0I,171917
|
2
2
|
pulumi_oci/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
3
3
|
pulumi_oci/provider.py,sha256=L04-4ahVUIjPUidGY7-4m7y0-gX_oHcgpIJSRYRJET4,24096
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=I6-UFQCyjj23Gt50dOkR3pCrppGv-HSU1OC8ZSP4uz4,63
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
|
@@ -670,13 +670,13 @@ pulumi_oci/core/volume_group.py,sha256=aS0UKsHbRlBWPy_5USzXAjZMs1Ms3ewjXYbnKcag_
|
|
670
670
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
671
671
|
pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
|
672
672
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
673
|
-
pulumi_oci/database/_inputs.py,sha256=
|
673
|
+
pulumi_oci/database/_inputs.py,sha256=1ImW4rSj7tXWyVEZ64g0F9MxYYAGlwIk9G4tAlvEfik,1016938
|
674
674
|
pulumi_oci/database/application_vip.py,sha256=JDVVsM5IEweW_6ArMrPkNxc-ip4taGgoscVO448uUrE,29325
|
675
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
675
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=_O44mxmyvUwPPfqzPRpy3FLH4F-p2LompF_0M0Mvsik,162125
|
676
676
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=Vqr9H2dth2n-aRH0WozgJE33EijV3LzaQXyyfzla5uU,75512
|
677
677
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
678
678
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
679
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
679
|
+
pulumi_oci/database/autonomous_database.py,sha256=6TRXZRssao2kPTWyNO4sL5Xb3mXNVGkz9IWBOo_t2Xc,485322
|
680
680
|
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
681
681
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
682
682
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
|
@@ -733,7 +733,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=k
|
|
733
733
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=XEMaJu55rh2b4BUGIWGHwG9oGSGHCYvEZ3YlFIU9asY,8142
|
734
734
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=J-QU5Ke0b6hnPC9V2Nogh4dWlfygAmptgD9aja_4NTA,18862
|
735
735
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=jkjSmZRtZ7Eou-CjZa2dqHje_XTCeoWkFUtd-luh-AU,9329
|
736
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
736
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=I3xG_bCFXMF_MxuriNojM-iXSUeuqMSxNbPG7qQam9c,122088
|
737
737
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=LpCfBfUGCo1E23TDCcpQZcnjQxLHyz-k9DF6VlKFkkI,19964
|
738
738
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=jQp6P8e5c4GyZORbesOxSjrqbHx5jg8KXAXQxe4CHRE,11432
|
739
739
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xfwAUgWwjSBUCbU8L8FEcvAakmvBLCYC2M64BXI9Gnc,15239
|
@@ -860,7 +860,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=p_OPJhuvFLl4n7-T_3CAiSh9HkFQAz-kfn
|
|
860
860
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
861
861
|
pulumi_oci/database/maintenance_run.py,sha256=8ARRL5E_sID9VZe3D3Szdq4rcRcRgNN2NU6udQdyhyo,62143
|
862
862
|
pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
|
863
|
-
pulumi_oci/database/outputs.py,sha256=
|
863
|
+
pulumi_oci/database/outputs.py,sha256=UxUYmsRMF6BDFVv4UTufAsXvptY6jLZF4F2FytKwmCo,2416849
|
864
864
|
pulumi_oci/database/pluggable_database.py,sha256=OYwfbMsBO58xQigObXCmC9Qez3JJnjaz2blE4tmRrOg,75593
|
865
865
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
866
866
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
@@ -2650,22 +2650,22 @@ pulumi_oci/osubusage/get_computed_usage.py,sha256=F91qtuG2spcmMRm3wsY5cPm3Sl1eL7
|
|
2650
2650
|
pulumi_oci/osubusage/get_computed_usages.py,sha256=g6nzACbnf5KqFKrMGokKVRodgWoqzq7ghyNfkU7Q4PI,11593
|
2651
2651
|
pulumi_oci/osubusage/outputs.py,sha256=b0BicdDMUgAaCwxn1gVkljAdezDCeEqVYmv35oFiKo4,37995
|
2652
2652
|
pulumi_oci/psql/__init__.py,sha256=Ze9Vw0SqWLlOMonve0kvQypQH1rN57OusxmHbnPZ2nk,774
|
2653
|
-
pulumi_oci/psql/_inputs.py,sha256=
|
2653
|
+
pulumi_oci/psql/_inputs.py,sha256=ZpK0437K2BUIDFUtqpsmjVExPrJTdivx940e__oIpu8,62304
|
2654
2654
|
pulumi_oci/psql/backup.py,sha256=eXs-kZ1EnG8LfqKDfCNGuyeRH8Pc6b9OChfG2lEpIkk,38502
|
2655
2655
|
pulumi_oci/psql/configuration.py,sha256=V7uoXpRd59RIgpXEy-K6Zpp6L1rjvGFs8GOrPDGpYuk,47119
|
2656
|
-
pulumi_oci/psql/db_system.py,sha256=
|
2656
|
+
pulumi_oci/psql/db_system.py,sha256=duyeZ49DPvY_aqRSIlUA1STVI2OK06ALi6NM66BE8ak,78269
|
2657
2657
|
pulumi_oci/psql/get_backup.py,sha256=ZDHVHb_yA4wN4q-9fyQRoGIlD1U4wxkPVahfUCY3oOI,15245
|
2658
2658
|
pulumi_oci/psql/get_backups.py,sha256=-hn94T_JNcWUgqcMtBL9I1sv1eF7OxWMwuk7AbtUGMw,11046
|
2659
2659
|
pulumi_oci/psql/get_configuration.py,sha256=HKLjicRTZAnjkrEqZOsNomIN-SYgCV2_OQCZwOfwsTE,15412
|
2660
2660
|
pulumi_oci/psql/get_configurations.py,sha256=6l_gnGo2LiyeBvTlQ6IpiVAwTJS8BQERdjE4DcOR4Fc,11179
|
2661
2661
|
pulumi_oci/psql/get_db_system.py,sha256=CY6h545HCRtUJ80x-MHuMrA9VLsCvK0jqP6Fw0mbAlE,22513
|
2662
|
-
pulumi_oci/psql/get_db_system_connection_detail.py,sha256=
|
2662
|
+
pulumi_oci/psql/get_db_system_connection_detail.py,sha256=TELZegTfvChprTho6jjH4R3H5bI6837S90nsJbwjgWk,7380
|
2663
2663
|
pulumi_oci/psql/get_db_system_primary_db_instance.py,sha256=ZItrC-2sNi6Vn8CZlxN5jSEJhORWRqmQdTbX6ajZ14o,4968
|
2664
2664
|
pulumi_oci/psql/get_db_systems.py,sha256=BTeVv0AbcnKNJGpi_jeqLMH5k5u9Dz1Ajn2XjATxtMA,8180
|
2665
2665
|
pulumi_oci/psql/get_default_configuration.py,sha256=_f_LfOgm6utE5yMWVrmnJ7PjoBhMfZTUDVEvDMD7WGU,11631
|
2666
2666
|
pulumi_oci/psql/get_default_configurations.py,sha256=AJmoTeHCshpM5dWN1-Iaz_XUGkHX9-n2Z-3wpoy4m0Y,10463
|
2667
2667
|
pulumi_oci/psql/get_shapes.py,sha256=TxxZZoniip7mtA9Epp6Zc1UiHvrKj6PhyVgjleE3MyQ,5637
|
2668
|
-
pulumi_oci/psql/outputs.py,sha256=
|
2668
|
+
pulumi_oci/psql/outputs.py,sha256=Oz0spT3oXf-062bNspj-jFzQRZ_pYhow1yr91aKfps8,157603
|
2669
2669
|
pulumi_oci/queue/__init__.py,sha256=jwKK25ETwcG0tqoblRZJX6MN7BKulcDaUyL3ql98tf4,386
|
2670
2670
|
pulumi_oci/queue/_inputs.py,sha256=Y309IljzLWnr4k7SVGurLHOsEOeQvVSI2B2gedww6P4,1811
|
2671
2671
|
pulumi_oci/queue/get_queue.py,sha256=tTQXOdb2Poug-TFowA0HXzcW-4upzuZ1Aj5U93CEymo,16545
|
@@ -2938,7 +2938,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=1QNe4eQ6jyzlwdY9dAhwUIRcRat1B1PDVV1Ier
|
|
2938
2938
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=8T-CGxDxYn1TmAQRwv2mcJpw4kGQmL8pGyUaHfmeAe4,11424
|
2939
2939
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
2940
2940
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
2941
|
-
pulumi_oci-2.
|
2942
|
-
pulumi_oci-2.
|
2943
|
-
pulumi_oci-2.
|
2944
|
-
pulumi_oci-2.
|
2941
|
+
pulumi_oci-2.18.0.dist-info/METADATA,sha256=COp96Hgsobk_0p7NxI75lGr2DAASwb5Nqo-G1uJqRiA,3954
|
2942
|
+
pulumi_oci-2.18.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
2943
|
+
pulumi_oci-2.18.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2944
|
+
pulumi_oci-2.18.0.dist-info/RECORD,,
|
File without changes
|