pulumi-oci 2.18.0__py3-none-any.whl → 2.18.0a1731738660__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 +0 -20
- pulumi_oci/database/autonomous_container_database.py +7 -0
- pulumi_oci/database/autonomous_database.py +7 -7
- pulumi_oci/database/get_autonomous_database.py +1 -1
- pulumi_oci/database/outputs.py +4 -27
- pulumi_oci/psql/_inputs.py +0 -20
- pulumi_oci/psql/db_system.py +0 -2
- pulumi_oci/psql/get_db_system_connection_detail.py +4 -18
- pulumi_oci/psql/outputs.py +0 -77
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.18.0.dist-info → pulumi_oci-2.18.0a1731738660.dist-info}/METADATA +5 -5
- {pulumi_oci-2.18.0.dist-info → pulumi_oci-2.18.0a1731738660.dist-info}/RECORD +14 -14
- {pulumi_oci-2.18.0.dist-info → pulumi_oci-2.18.0a1731738660.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.18.0.dist-info → pulumi_oci-2.18.0a1731738660.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -9572,10 +9572,6 @@ 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
|
-
"""
|
9579
9575
|
last_patch_history_entry_id: NotRequired[pulumi.Input[str]]
|
9580
9576
|
"""
|
9581
9577
|
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.
|
@@ -9607,7 +9603,6 @@ class DbSystemDbHomeArgs:
|
|
9607
9603
|
display_name: Optional[pulumi.Input[str]] = None,
|
9608
9604
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
9609
9605
|
id: Optional[pulumi.Input[str]] = None,
|
9610
|
-
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
9611
9606
|
last_patch_history_entry_id: Optional[pulumi.Input[str]] = None,
|
9612
9607
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
9613
9608
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -9624,7 +9619,6 @@ class DbSystemDbHomeArgs:
|
|
9624
9619
|
:param pulumi.Input[str] display_name: The user-provided name of the Database Home.
|
9625
9620
|
: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"}`
|
9626
9621
|
: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
|
9628
9622
|
: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.
|
9629
9623
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
9630
9624
|
:param pulumi.Input[str] state: The current state of the DB system.
|
@@ -9647,8 +9641,6 @@ class DbSystemDbHomeArgs:
|
|
9647
9641
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
9648
9642
|
if id is not None:
|
9649
9643
|
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)
|
9652
9644
|
if last_patch_history_entry_id is not None:
|
9653
9645
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
9654
9646
|
if lifecycle_details is not None:
|
@@ -9764,18 +9756,6 @@ class DbSystemDbHomeArgs:
|
|
9764
9756
|
def id(self, value: Optional[pulumi.Input[str]]):
|
9765
9757
|
pulumi.set(self, "id", value)
|
9766
9758
|
|
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
|
-
|
9779
9759
|
@property
|
9780
9760
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
9781
9761
|
def last_patch_history_entry_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -90,6 +90,7 @@ 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
|
+
|
93
94
|
** IMPORTANT **
|
94
95
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
95
96
|
: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).
|
@@ -548,6 +549,7 @@ class AutonomousContainerDatabaseArgs:
|
|
548
549
|
"""
|
549
550
|
(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.
|
550
551
|
|
552
|
+
|
551
553
|
** IMPORTANT **
|
552
554
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
553
555
|
"""
|
@@ -715,6 +717,7 @@ class _AutonomousContainerDatabaseState:
|
|
715
717
|
: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.
|
716
718
|
: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.
|
717
719
|
|
720
|
+
|
718
721
|
** IMPORTANT **
|
719
722
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
720
723
|
:param pulumi.Input[str] state: The current state of the Autonomous Container Database.
|
@@ -1474,6 +1477,7 @@ class _AutonomousContainerDatabaseState:
|
|
1474
1477
|
"""
|
1475
1478
|
(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.
|
1476
1479
|
|
1480
|
+
|
1477
1481
|
** IMPORTANT **
|
1478
1482
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1479
1483
|
"""
|
@@ -1668,6 +1672,7 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
|
|
1668
1672
|
: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.
|
1669
1673
|
: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.
|
1670
1674
|
|
1675
|
+
|
1671
1676
|
** IMPORTANT **
|
1672
1677
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1673
1678
|
: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).
|
@@ -1951,6 +1956,7 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
|
|
1951
1956
|
: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.
|
1952
1957
|
: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.
|
1953
1958
|
|
1959
|
+
|
1954
1960
|
** IMPORTANT **
|
1955
1961
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1956
1962
|
:param pulumi.Input[str] state: The current state of the Autonomous Container Database.
|
@@ -2446,6 +2452,7 @@ class AutonomousContainerDatabase(pulumi.CustomResource):
|
|
2446
2452
|
"""
|
2447
2453
|
(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.
|
2448
2454
|
|
2455
|
+
|
2449
2456
|
** IMPORTANT **
|
2450
2457
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
2451
2458
|
"""
|
@@ -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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
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 fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
876
876
|
"""
|
877
877
|
return pulumi.get(self, "is_dev_tier")
|
878
878
|
|
pulumi_oci/database/outputs.py
CHANGED
@@ -7655,8 +7655,6 @@ 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"
|
7660
7658
|
elif key == "lastPatchHistoryEntryId":
|
7661
7659
|
suggest = "last_patch_history_entry_id"
|
7662
7660
|
elif key == "lifecycleDetails":
|
@@ -7685,7 +7683,6 @@ class DbSystemDbHome(dict):
|
|
7685
7683
|
display_name: Optional[str] = None,
|
7686
7684
|
freeform_tags: Optional[Mapping[str, str]] = None,
|
7687
7685
|
id: Optional[str] = None,
|
7688
|
-
is_unified_auditing_enabled: Optional[bool] = None,
|
7689
7686
|
last_patch_history_entry_id: Optional[str] = None,
|
7690
7687
|
lifecycle_details: Optional[str] = None,
|
7691
7688
|
state: Optional[str] = None,
|
@@ -7702,7 +7699,6 @@ class DbSystemDbHome(dict):
|
|
7702
7699
|
:param str display_name: The user-provided name of the Database Home.
|
7703
7700
|
: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"}`
|
7704
7701
|
: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
|
7706
7702
|
: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.
|
7707
7703
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
7708
7704
|
:param str state: The current state of the DB system.
|
@@ -7725,8 +7721,6 @@ class DbSystemDbHome(dict):
|
|
7725
7721
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
7726
7722
|
if id is not None:
|
7727
7723
|
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)
|
7730
7724
|
if last_patch_history_entry_id is not None:
|
7731
7725
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
7732
7726
|
if lifecycle_details is not None:
|
@@ -7806,14 +7800,6 @@ class DbSystemDbHome(dict):
|
|
7806
7800
|
"""
|
7807
7801
|
return pulumi.get(self, "id")
|
7808
7802
|
|
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
|
-
|
7817
7803
|
@property
|
7818
7804
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
7819
7805
|
def last_patch_history_entry_id(self) -> Optional[str]:
|
@@ -18933,8 +18919,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
18933
18919
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
18934
18920
|
:param bool is_data_guard_enabled: A filter to return only resources that have Data Guard enabled.
|
18935
18921
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
18936
|
-
:param bool is_dev_tier: Autonomous Database for Developers are
|
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
|
18922
|
+
:param bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
18938
18923
|
: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.
|
18939
18924
|
: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.
|
18940
18925
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -19570,8 +19555,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
19570
19555
|
@pulumi.getter(name="isDevTier")
|
19571
19556
|
def is_dev_tier(self) -> bool:
|
19572
19557
|
"""
|
19573
|
-
Autonomous Database for Developers are
|
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
|
19558
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
19575
19559
|
"""
|
19576
19560
|
return pulumi.get(self, "is_dev_tier")
|
19577
19561
|
|
@@ -21652,7 +21636,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
21652
21636
|
:param bool is_auto_scaling_for_storage_enabled: Indicates if auto scaling is enabled for the Autonomous Database storage. The default value is `FALSE`.
|
21653
21637
|
: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.
|
21654
21638
|
:param bool is_dedicated: True if the database uses [dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html).
|
21655
|
-
:param bool is_dev_tier: Autonomous Database for Developers are
|
21639
|
+
:param bool is_dev_tier: Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
21656
21640
|
: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.
|
21657
21641
|
: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.
|
21658
21642
|
:param bool is_mtls_connection_required: Specifies if the Autonomous Database requires mTLS connections.
|
@@ -22239,7 +22223,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22239
22223
|
@pulumi.getter(name="isDevTier")
|
22240
22224
|
def is_dev_tier(self) -> bool:
|
22241
22225
|
"""
|
22242
|
-
Autonomous Database for Developers are
|
22226
|
+
Autonomous Database for Developers are fixed-shape Autonomous Databases that developers can use to build and test new applications. On Serverless, these are low-cost and billed per instance, on Dedicated and Cloud@Customer there is no additional cost to create Developer databases. Developer databases come with limited resources and is not intended for large-scale testing and production deployments. When you need more compute or storage resources, you may upgrade to a full paid production database.
|
22243
22227
|
"""
|
22244
22228
|
return pulumi.get(self, "is_dev_tier")
|
22245
22229
|
|
@@ -38987,7 +38971,6 @@ class GetDbSystemsDbSystemDbHomeResult(dict):
|
|
38987
38971
|
display_name: str,
|
38988
38972
|
freeform_tags: Mapping[str, str],
|
38989
38973
|
id: str,
|
38990
|
-
is_unified_auditing_enabled: bool,
|
38991
38974
|
last_patch_history_entry_id: str,
|
38992
38975
|
lifecycle_details: str,
|
38993
38976
|
state: str,
|
@@ -39011,7 +38994,6 @@ class GetDbSystemsDbSystemDbHomeResult(dict):
|
|
39011
38994
|
pulumi.set(__self__, "display_name", display_name)
|
39012
38995
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
39013
38996
|
pulumi.set(__self__, "id", id)
|
39014
|
-
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
39015
38997
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
39016
38998
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
39017
38999
|
pulumi.set(__self__, "state", state)
|
@@ -39074,11 +39056,6 @@ class GetDbSystemsDbSystemDbHomeResult(dict):
|
|
39074
39056
|
"""
|
39075
39057
|
return pulumi.get(self, "id")
|
39076
39058
|
|
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
|
-
|
39082
39059
|
@property
|
39083
39060
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
39084
39061
|
def last_patch_history_entry_id(self) -> str:
|
pulumi_oci/psql/_inputs.py
CHANGED
@@ -957,10 +957,6 @@ 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
|
-
"""
|
964
960
|
nsg_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
965
961
|
"""
|
966
962
|
(Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
@@ -976,18 +972,14 @@ elif False:
|
|
976
972
|
class DbSystemNetworkDetailsArgs:
|
977
973
|
def __init__(__self__, *,
|
978
974
|
subnet_id: pulumi.Input[str],
|
979
|
-
is_reader_endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
980
975
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
981
976
|
primary_db_endpoint_private_ip: Optional[pulumi.Input[str]] = None):
|
982
977
|
"""
|
983
978
|
: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.
|
985
979
|
: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.
|
986
980
|
: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.
|
987
981
|
"""
|
988
982
|
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)
|
991
983
|
if nsg_ids is not None:
|
992
984
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
993
985
|
if primary_db_endpoint_private_ip is not None:
|
@@ -1005,18 +997,6 @@ class DbSystemNetworkDetailsArgs:
|
|
1005
997
|
def subnet_id(self, value: pulumi.Input[str]):
|
1006
998
|
pulumi.set(self, "subnet_id", value)
|
1007
999
|
|
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
|
-
|
1020
1000
|
@property
|
1021
1001
|
@pulumi.getter(name="nsgIds")
|
1022
1002
|
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
pulumi_oci/psql/db_system.py
CHANGED
@@ -848,7 +848,6 @@ 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,
|
852
851
|
"nsg_ids": db_system_network_details_nsg_ids,
|
853
852
|
"primary_db_endpoint_private_ip": db_system_network_details_primary_db_endpoint_private_ip,
|
854
853
|
},
|
@@ -965,7 +964,6 @@ class DbSystem(pulumi.CustomResource):
|
|
965
964
|
display_name=db_system_display_name,
|
966
965
|
network_details={
|
967
966
|
"subnet_id": test_subnet["id"],
|
968
|
-
"is_reader_endpoint_enabled": db_system_network_details_is_reader_endpoint_enabled,
|
969
967
|
"nsg_ids": db_system_network_details_nsg_ids,
|
970
968
|
"primary_db_endpoint_private_ip": db_system_network_details_primary_db_endpoint_private_ip,
|
971
969
|
},
|
@@ -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):
|
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,9 +43,6 @@ 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)
|
49
46
|
|
50
47
|
@property
|
51
48
|
@pulumi.getter(name="caCertificate")
|
@@ -84,14 +81,6 @@ class GetDbSystemConnectionDetailResult:
|
|
84
81
|
"""
|
85
82
|
return pulumi.get(self, "primary_db_endpoints")
|
86
83
|
|
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
|
-
|
95
84
|
|
96
85
|
class AwaitableGetDbSystemConnectionDetailResult(GetDbSystemConnectionDetailResult):
|
97
86
|
# pylint: disable=using-constant-test
|
@@ -103,8 +92,7 @@ class AwaitableGetDbSystemConnectionDetailResult(GetDbSystemConnectionDetailResu
|
|
103
92
|
db_system_id=self.db_system_id,
|
104
93
|
id=self.id,
|
105
94
|
instance_endpoints=self.instance_endpoints,
|
106
|
-
primary_db_endpoints=self.primary_db_endpoints
|
107
|
-
reader_endpoints=self.reader_endpoints)
|
95
|
+
primary_db_endpoints=self.primary_db_endpoints)
|
108
96
|
|
109
97
|
|
110
98
|
def get_db_system_connection_detail(db_system_id: Optional[str] = None,
|
@@ -136,8 +124,7 @@ def get_db_system_connection_detail(db_system_id: Optional[str] = None,
|
|
136
124
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
137
125
|
id=pulumi.get(__ret__, 'id'),
|
138
126
|
instance_endpoints=pulumi.get(__ret__, 'instance_endpoints'),
|
139
|
-
primary_db_endpoints=pulumi.get(__ret__, 'primary_db_endpoints')
|
140
|
-
reader_endpoints=pulumi.get(__ret__, 'reader_endpoints'))
|
127
|
+
primary_db_endpoints=pulumi.get(__ret__, 'primary_db_endpoints'))
|
141
128
|
def get_db_system_connection_detail_output(db_system_id: Optional[pulumi.Input[str]] = None,
|
142
129
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDbSystemConnectionDetailResult]:
|
143
130
|
"""
|
@@ -166,5 +153,4 @@ def get_db_system_connection_detail_output(db_system_id: Optional[pulumi.Input[s
|
|
166
153
|
db_system_id=pulumi.get(__response__, 'db_system_id'),
|
167
154
|
id=pulumi.get(__response__, 'id'),
|
168
155
|
instance_endpoints=pulumi.get(__response__, 'instance_endpoints'),
|
169
|
-
primary_db_endpoints=pulumi.get(__response__, 'primary_db_endpoints')
|
170
|
-
reader_endpoints=pulumi.get(__response__, 'reader_endpoints')))
|
156
|
+
primary_db_endpoints=pulumi.get(__response__, 'primary_db_endpoints')))
|
pulumi_oci/psql/outputs.py
CHANGED
@@ -50,7 +50,6 @@ __all__ = [
|
|
50
50
|
'GetDbSystemConnectionDetailInstanceEndpointResult',
|
51
51
|
'GetDbSystemConnectionDetailInstanceEndpointEndpointResult',
|
52
52
|
'GetDbSystemConnectionDetailPrimaryDbEndpointResult',
|
53
|
-
'GetDbSystemConnectionDetailReaderEndpointResult',
|
54
53
|
'GetDbSystemCredentialResult',
|
55
54
|
'GetDbSystemCredentialPasswordDetailResult',
|
56
55
|
'GetDbSystemInstanceResult',
|
@@ -817,8 +816,6 @@ class DbSystemNetworkDetails(dict):
|
|
817
816
|
suggest = None
|
818
817
|
if key == "subnetId":
|
819
818
|
suggest = "subnet_id"
|
820
|
-
elif key == "isReaderEndpointEnabled":
|
821
|
-
suggest = "is_reader_endpoint_enabled"
|
822
819
|
elif key == "nsgIds":
|
823
820
|
suggest = "nsg_ids"
|
824
821
|
elif key == "primaryDbEndpointPrivateIp":
|
@@ -837,18 +834,14 @@ class DbSystemNetworkDetails(dict):
|
|
837
834
|
|
838
835
|
def __init__(__self__, *,
|
839
836
|
subnet_id: str,
|
840
|
-
is_reader_endpoint_enabled: Optional[bool] = None,
|
841
837
|
nsg_ids: Optional[Sequence[str]] = None,
|
842
838
|
primary_db_endpoint_private_ip: Optional[str] = None):
|
843
839
|
"""
|
844
840
|
: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.
|
846
841
|
: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.
|
847
842
|
: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.
|
848
843
|
"""
|
849
844
|
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)
|
852
845
|
if nsg_ids is not None:
|
853
846
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
854
847
|
if primary_db_endpoint_private_ip is not None:
|
@@ -862,14 +855,6 @@ class DbSystemNetworkDetails(dict):
|
|
862
855
|
"""
|
863
856
|
return pulumi.get(self, "subnet_id")
|
864
857
|
|
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
|
-
|
873
858
|
@property
|
874
859
|
@pulumi.getter(name="nsgIds")
|
875
860
|
def nsg_ids(self) -> Optional[Sequence[str]]:
|
@@ -2085,46 +2070,6 @@ class GetDbSystemConnectionDetailPrimaryDbEndpointResult(dict):
|
|
2085
2070
|
return pulumi.get(self, "port")
|
2086
2071
|
|
2087
2072
|
|
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
|
-
|
2128
2073
|
@pulumi.output_type
|
2129
2074
|
class GetDbSystemCredentialResult(dict):
|
2130
2075
|
def __init__(__self__, *,
|
@@ -2402,29 +2347,18 @@ class GetDbSystemManagementPolicyBackupPolicyResult(dict):
|
|
2402
2347
|
@pulumi.output_type
|
2403
2348
|
class GetDbSystemNetworkDetailResult(dict):
|
2404
2349
|
def __init__(__self__, *,
|
2405
|
-
is_reader_endpoint_enabled: bool,
|
2406
2350
|
nsg_ids: Sequence[str],
|
2407
2351
|
primary_db_endpoint_private_ip: str,
|
2408
2352
|
subnet_id: str):
|
2409
2353
|
"""
|
2410
|
-
:param bool is_reader_endpoint_enabled: Specifies if the reader endpoint is enabled on the dbSystem.
|
2411
2354
|
: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.
|
2412
2355
|
: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.
|
2413
2356
|
: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.
|
2414
2357
|
"""
|
2415
|
-
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
2416
2358
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
2417
2359
|
pulumi.set(__self__, "primary_db_endpoint_private_ip", primary_db_endpoint_private_ip)
|
2418
2360
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2419
2361
|
|
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
|
-
|
2428
2362
|
@property
|
2429
2363
|
@pulumi.getter(name="nsgIds")
|
2430
2364
|
def nsg_ids(self) -> Sequence[str]:
|
@@ -3176,29 +3110,18 @@ class GetDbSystemsDbSystemCollectionItemManagementPolicyBackupPolicyResult(dict)
|
|
3176
3110
|
@pulumi.output_type
|
3177
3111
|
class GetDbSystemsDbSystemCollectionItemNetworkDetailResult(dict):
|
3178
3112
|
def __init__(__self__, *,
|
3179
|
-
is_reader_endpoint_enabled: bool,
|
3180
3113
|
nsg_ids: Sequence[str],
|
3181
3114
|
primary_db_endpoint_private_ip: str,
|
3182
3115
|
subnet_id: str):
|
3183
3116
|
"""
|
3184
|
-
:param bool is_reader_endpoint_enabled: Specifies if the reader endpoint is enabled on the dbSystem.
|
3185
3117
|
: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.
|
3186
3118
|
: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.
|
3187
3119
|
: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.
|
3188
3120
|
"""
|
3189
|
-
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
3190
3121
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
3191
3122
|
pulumi.set(__self__, "primary_db_endpoint_private_ip", primary_db_endpoint_private_ip)
|
3192
3123
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
3193
3124
|
|
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
|
-
|
3202
3125
|
@property
|
3203
3126
|
@pulumi.getter(name="nsgIds")
|
3204
3127
|
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.18.
|
3
|
+
Version: 2.18.0a1731738660
|
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>=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"
|
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=5M397iD-2xn1JVxeNfidvISBd1hn1Nz5f8Mr7u-7N0E,80
|
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=lW4JdbWq82gCjZgt8oz74G9kr1ACrBtoYIQZD6Z7WHI,1015966
|
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=1Jwu5GAWZnOUAS3j_OM8yqdfE85k8T_QV4N2OCJUGtg,162192
|
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=oaUgU2fG-VZyZjeNhdKQzGdVhh2zzOvLPpt8mgypNuE,483733
|
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=UvFJTBI3HAHbBUX5pvE8LmCikCiczyUH1FxzIynuKuc,121861
|
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=1xlEsQ71rkbZJdyfETlm1BqAeEstY-RvZeHBR9MLIDM,2414222
|
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=9sI_JxFQGh47OxdOucUMU-1U4NP0kKg20GzUlxGn26g,61284
|
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=PuN0jN4Dg9yGcrPO0wKm3gB69BQ2LG-z_0_6FXWWub8,78069
|
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=865y4uP0autVcaUp7X_vPDqpPKD3uy1-gCeF2RL5Jbk,6648
|
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=Zyds-eDPJhVpr8CHYqdkK-WmsAZgyBQEzkfGAONncWY,154727
|
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.18.
|
2942
|
-
pulumi_oci-2.18.
|
2943
|
-
pulumi_oci-2.18.
|
2944
|
-
pulumi_oci-2.18.
|
2941
|
+
pulumi_oci-2.18.0a1731738660.dist-info/METADATA,sha256=4_G4z8JFtPHjtamyM1odLkExlTLNq_96W_yTiZymzbg,3970
|
2942
|
+
pulumi_oci-2.18.0a1731738660.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
2943
|
+
pulumi_oci-2.18.0a1731738660.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2944
|
+
pulumi_oci-2.18.0a1731738660.dist-info/RECORD,,
|
File without changes
|