pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.25.0a1740096539__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/__init__.py +35 -0
- pulumi_oci/config/__init__.pyi +2 -0
- pulumi_oci/config/vars.py +4 -0
- pulumi_oci/containerengine/_inputs.py +40 -0
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/outputs.py +70 -0
- pulumi_oci/database/_inputs.py +487 -2
- pulumi_oci/database/autonomous_container_database.py +92 -0
- pulumi_oci/database/autonomous_database.py +97 -8
- pulumi_oci/database/backup_destination.py +84 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +111 -8
- pulumi_oci/database/get_autonomous_container_database.py +43 -1
- pulumi_oci/database/get_autonomous_database.py +32 -1
- pulumi_oci/database/get_autonomous_databases.py +0 -26
- pulumi_oci/database/get_backup_destination.py +43 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_maintenance_runs.py +20 -1
- pulumi_oci/database/outputs.py +1179 -48
- pulumi_oci/filestorage/file_system.py +28 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
- pulumi_oci/filestorage/get_outbound_connector.py +15 -1
- pulumi_oci/filestorage/get_replication.py +15 -1
- pulumi_oci/filestorage/get_replication_target.py +15 -1
- pulumi_oci/filestorage/get_snapshot.py +15 -1
- pulumi_oci/filestorage/mount_target.py +28 -0
- pulumi_oci/filestorage/outbound_connector.py +28 -0
- pulumi_oci/filestorage/outputs.py +77 -0
- pulumi_oci/filestorage/replication.py +28 -0
- pulumi_oci/filestorage/snapshot.py +28 -0
- pulumi_oci/goldengate/connection.py +561 -162
- pulumi_oci/goldengate/database_registration.py +14 -14
- pulumi_oci/goldengate/get_connection.py +117 -6
- pulumi_oci/goldengate/outputs.py +96 -10
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +196 -0
- pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
- pulumi_oci/jms/get_fleet_errors.py +264 -0
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
- pulumi_oci/jms/get_jms_plugins.py +23 -1
- pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
- pulumi_oci/jms/get_plugin_errors.py +264 -0
- pulumi_oci/jms/outputs.py +566 -6
- pulumi_oci/provider.py +20 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/__init__.py +8 -0
- pulumi_oci/stackmonitoring/_inputs.py +372 -1
- pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
- pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
- pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
- pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
- pulumi_oci/stackmonitoring/metric_extension.py +4 -4
- pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
- pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
- pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
- pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
- pulumi_oci/stackmonitoring/outputs.py +1305 -118
- pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
- pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
- pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
- pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
- pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
- pulumi_oci/vault/__init__.py +1 -1
- pulumi_oci/vault/_inputs.py +92 -0
- pulumi_oci/vault/get_secret.py +40 -1
- pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
- pulumi_oci/vault/outputs.py +210 -0
- pulumi_oci/vault/secret.py +122 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/METADATA +1 -1
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/RECORD +98 -59
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/top_level.txt +0 -0
@@ -34,6 +34,7 @@ class AutonomousDatabaseArgs:
|
|
34
34
|
backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
|
35
35
|
byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
|
36
36
|
character_set: Optional[pulumi.Input[str]] = None,
|
37
|
+
clone_table_space_lists: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
37
38
|
clone_type: Optional[pulumi.Input[str]] = None,
|
38
39
|
compute_count: Optional[pulumi.Input[float]] = None,
|
39
40
|
compute_model: Optional[pulumi.Input[str]] = None,
|
@@ -123,8 +124,11 @@ class AutonomousDatabaseArgs:
|
|
123
124
|
|
124
125
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
125
126
|
|
127
|
+
<<<<<<< ours
|
126
128
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
129
|
+
:param pulumi.Input[Sequence[pulumi.Input[int]]] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
127
130
|
:param pulumi.Input[str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
131
|
+
>>>>>>> theirs
|
128
132
|
* `FULL` - This option creates a new database that includes all source database data.
|
129
133
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
130
134
|
:param pulumi.Input[float] compute_count: (Updatable) The compute amount available to the database. Minimum and maximum values depend on the compute model and whether the database is an Autonomous Database Serverless instance or an Autonomous Database on Dedicated Exadata Infrastructure. For an Autonomous Database Serverless instance, the 'ECPU' compute model requires a minimum value of one, for databases in the elastic resource pool and minimum value of two, otherwise. Required when using the `computeModel` parameter. When using `cpuCoreCount` parameter, it is an error to specify computeCount to a non-null value. Providing `computeModel` and `computeCount` is the preferred method for both OCPU and ECPU.
|
@@ -294,6 +298,8 @@ class AutonomousDatabaseArgs:
|
|
294
298
|
pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
|
295
299
|
if character_set is not None:
|
296
300
|
pulumi.set(__self__, "character_set", character_set)
|
301
|
+
if clone_table_space_lists is not None:
|
302
|
+
pulumi.set(__self__, "clone_table_space_lists", clone_table_space_lists)
|
297
303
|
if clone_type is not None:
|
298
304
|
pulumi.set(__self__, "clone_type", clone_type)
|
299
305
|
if compute_count is not None:
|
@@ -591,6 +597,7 @@ class AutonomousDatabaseArgs:
|
|
591
597
|
|
592
598
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
593
599
|
|
600
|
+
<<<<<<< ours
|
594
601
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
595
602
|
"""
|
596
603
|
return pulumi.get(self, "character_set")
|
@@ -599,11 +606,24 @@ class AutonomousDatabaseArgs:
|
|
599
606
|
def character_set(self, value: Optional[pulumi.Input[str]]):
|
600
607
|
pulumi.set(self, "character_set", value)
|
601
608
|
|
609
|
+
@property
|
610
|
+
@pulumi.getter(name="cloneTableSpaceLists")
|
611
|
+
def clone_table_space_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
|
612
|
+
"""
|
613
|
+
A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
614
|
+
"""
|
615
|
+
return pulumi.get(self, "clone_table_space_lists")
|
616
|
+
|
617
|
+
@clone_table_space_lists.setter
|
618
|
+
def clone_table_space_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
|
619
|
+
pulumi.set(self, "clone_table_space_lists", value)
|
620
|
+
|
602
621
|
@property
|
603
622
|
@pulumi.getter(name="cloneType")
|
604
623
|
def clone_type(self) -> Optional[pulumi.Input[str]]:
|
605
624
|
"""
|
606
625
|
The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
626
|
+
>>>>>>> theirs
|
607
627
|
* `FULL` - This option creates a new database that includes all source database data.
|
608
628
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
609
629
|
"""
|
@@ -1556,6 +1576,7 @@ class _AutonomousDatabaseState:
|
|
1556
1576
|
backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
|
1557
1577
|
byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
|
1558
1578
|
character_set: Optional[pulumi.Input[str]] = None,
|
1579
|
+
clone_table_space_lists: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
1559
1580
|
clone_type: Optional[pulumi.Input[str]] = None,
|
1560
1581
|
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
1561
1582
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -1617,6 +1638,7 @@ class _AutonomousDatabaseState:
|
|
1617
1638
|
local_disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
1618
1639
|
local_standby_dbs: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLocalStandbyDbArgs']]]] = None,
|
1619
1640
|
long_term_backup_schedules: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]]] = None,
|
1641
|
+
maintenance_target_component: Optional[pulumi.Input[str]] = None,
|
1620
1642
|
max_cpu_core_count: Optional[pulumi.Input[int]] = None,
|
1621
1643
|
memory_per_oracle_compute_unit_in_gbs: Optional[pulumi.Input[int]] = None,
|
1622
1644
|
ncharacter_set: Optional[pulumi.Input[str]] = None,
|
@@ -1705,8 +1727,11 @@ class _AutonomousDatabaseState:
|
|
1705
1727
|
|
1706
1728
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
1707
1729
|
|
1730
|
+
<<<<<<< ours
|
1708
1731
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
1732
|
+
:param pulumi.Input[Sequence[pulumi.Input[int]]] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
1709
1733
|
:param pulumi.Input[str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
1734
|
+
>>>>>>> theirs
|
1710
1735
|
* `FULL` - This option creates a new database that includes all source database data.
|
1711
1736
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
1712
1737
|
:param pulumi.Input[str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
@@ -1792,9 +1817,10 @@ class _AutonomousDatabaseState:
|
|
1792
1817
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
|
1793
1818
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
1794
1819
|
:param pulumi.Input[int] local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
|
1795
|
-
:param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the
|
1796
|
-
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLocalStandbyDbArgs']]] local_standby_dbs: Autonomous Data Guard
|
1820
|
+
:param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
1821
|
+
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLocalStandbyDbArgs']]] local_standby_dbs: Autonomous Data Guard standby database details.
|
1797
1822
|
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]] long_term_backup_schedules: Details for the long-term backup schedule.
|
1823
|
+
:param pulumi.Input[str] maintenance_target_component: The component chosen for maintenance.
|
1798
1824
|
:param pulumi.Input[int] max_cpu_core_count: (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
1799
1825
|
:param pulumi.Input[int] memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per OCPU or ECPU. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details. This parameter is not used for Autonomous database Serverless.
|
1800
1826
|
:param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
@@ -1940,6 +1966,8 @@ class _AutonomousDatabaseState:
|
|
1940
1966
|
pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
|
1941
1967
|
if character_set is not None:
|
1942
1968
|
pulumi.set(__self__, "character_set", character_set)
|
1969
|
+
if clone_table_space_lists is not None:
|
1970
|
+
pulumi.set(__self__, "clone_table_space_lists", clone_table_space_lists)
|
1943
1971
|
if clone_type is not None:
|
1944
1972
|
pulumi.set(__self__, "clone_type", clone_type)
|
1945
1973
|
if cluster_placement_group_id is not None:
|
@@ -2065,6 +2093,8 @@ class _AutonomousDatabaseState:
|
|
2065
2093
|
pulumi.set(__self__, "local_standby_dbs", local_standby_dbs)
|
2066
2094
|
if long_term_backup_schedules is not None:
|
2067
2095
|
pulumi.set(__self__, "long_term_backup_schedules", long_term_backup_schedules)
|
2096
|
+
if maintenance_target_component is not None:
|
2097
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
2068
2098
|
if max_cpu_core_count is not None:
|
2069
2099
|
pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
|
2070
2100
|
if memory_per_oracle_compute_unit_in_gbs is not None:
|
@@ -2397,6 +2427,7 @@ class _AutonomousDatabaseState:
|
|
2397
2427
|
|
2398
2428
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
2399
2429
|
|
2430
|
+
<<<<<<< ours
|
2400
2431
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
2401
2432
|
"""
|
2402
2433
|
return pulumi.get(self, "character_set")
|
@@ -2405,11 +2436,24 @@ class _AutonomousDatabaseState:
|
|
2405
2436
|
def character_set(self, value: Optional[pulumi.Input[str]]):
|
2406
2437
|
pulumi.set(self, "character_set", value)
|
2407
2438
|
|
2439
|
+
@property
|
2440
|
+
@pulumi.getter(name="cloneTableSpaceLists")
|
2441
|
+
def clone_table_space_lists(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
|
2442
|
+
"""
|
2443
|
+
A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
2444
|
+
"""
|
2445
|
+
return pulumi.get(self, "clone_table_space_lists")
|
2446
|
+
|
2447
|
+
@clone_table_space_lists.setter
|
2448
|
+
def clone_table_space_lists(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
|
2449
|
+
pulumi.set(self, "clone_table_space_lists", value)
|
2450
|
+
|
2408
2451
|
@property
|
2409
2452
|
@pulumi.getter(name="cloneType")
|
2410
2453
|
def clone_type(self) -> Optional[pulumi.Input[str]]:
|
2411
2454
|
"""
|
2412
2455
|
The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
2456
|
+
>>>>>>> theirs
|
2413
2457
|
* `FULL` - This option creates a new database that includes all source database data.
|
2414
2458
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
2415
2459
|
"""
|
@@ -3134,7 +3178,7 @@ class _AutonomousDatabaseState:
|
|
3134
3178
|
@pulumi.getter(name="localDisasterRecoveryType")
|
3135
3179
|
def local_disaster_recovery_type(self) -> Optional[pulumi.Input[str]]:
|
3136
3180
|
"""
|
3137
|
-
Indicates the local disaster recovery (DR) type of the
|
3181
|
+
Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
3138
3182
|
"""
|
3139
3183
|
return pulumi.get(self, "local_disaster_recovery_type")
|
3140
3184
|
|
@@ -3146,7 +3190,7 @@ class _AutonomousDatabaseState:
|
|
3146
3190
|
@pulumi.getter(name="localStandbyDbs")
|
3147
3191
|
def local_standby_dbs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLocalStandbyDbArgs']]]]:
|
3148
3192
|
"""
|
3149
|
-
Autonomous Data Guard
|
3193
|
+
Autonomous Data Guard standby database details.
|
3150
3194
|
"""
|
3151
3195
|
return pulumi.get(self, "local_standby_dbs")
|
3152
3196
|
|
@@ -3166,6 +3210,18 @@ class _AutonomousDatabaseState:
|
|
3166
3210
|
def long_term_backup_schedules(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseLongTermBackupScheduleArgs']]]]):
|
3167
3211
|
pulumi.set(self, "long_term_backup_schedules", value)
|
3168
3212
|
|
3213
|
+
@property
|
3214
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
3215
|
+
def maintenance_target_component(self) -> Optional[pulumi.Input[str]]:
|
3216
|
+
"""
|
3217
|
+
The component chosen for maintenance.
|
3218
|
+
"""
|
3219
|
+
return pulumi.get(self, "maintenance_target_component")
|
3220
|
+
|
3221
|
+
@maintenance_target_component.setter
|
3222
|
+
def maintenance_target_component(self, value: Optional[pulumi.Input[str]]):
|
3223
|
+
pulumi.set(self, "maintenance_target_component", value)
|
3224
|
+
|
3169
3225
|
@property
|
3170
3226
|
@pulumi.getter(name="maxCpuCoreCount")
|
3171
3227
|
def max_cpu_core_count(self) -> Optional[pulumi.Input[int]]:
|
@@ -4024,6 +4080,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4024
4080
|
backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
|
4025
4081
|
byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
|
4026
4082
|
character_set: Optional[pulumi.Input[str]] = None,
|
4083
|
+
clone_table_space_lists: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
4027
4084
|
clone_type: Optional[pulumi.Input[str]] = None,
|
4028
4085
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
4029
4086
|
compute_count: Optional[pulumi.Input[float]] = None,
|
@@ -4129,8 +4186,11 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4129
4186
|
|
4130
4187
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
4131
4188
|
|
4189
|
+
<<<<<<< ours
|
4132
4190
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
4191
|
+
:param pulumi.Input[Sequence[pulumi.Input[int]]] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
4133
4192
|
:param pulumi.Input[str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
4193
|
+
>>>>>>> theirs
|
4134
4194
|
* `FULL` - This option creates a new database that includes all source database data.
|
4135
4195
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
4136
4196
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment of the Autonomous Database.
|
@@ -4325,6 +4385,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4325
4385
|
backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
|
4326
4386
|
byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
|
4327
4387
|
character_set: Optional[pulumi.Input[str]] = None,
|
4388
|
+
clone_table_space_lists: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
4328
4389
|
clone_type: Optional[pulumi.Input[str]] = None,
|
4329
4390
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
4330
4391
|
compute_count: Optional[pulumi.Input[float]] = None,
|
@@ -4419,6 +4480,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4419
4480
|
__props__.__dict__["backup_retention_period_in_days"] = backup_retention_period_in_days
|
4420
4481
|
__props__.__dict__["byol_compute_count_limit"] = byol_compute_count_limit
|
4421
4482
|
__props__.__dict__["character_set"] = character_set
|
4483
|
+
__props__.__dict__["clone_table_space_lists"] = clone_table_space_lists
|
4422
4484
|
__props__.__dict__["clone_type"] = clone_type
|
4423
4485
|
if compartment_id is None and not opts.urn:
|
4424
4486
|
raise TypeError("Missing required property 'compartment_id'")
|
@@ -4523,6 +4585,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4523
4585
|
__props__.__dict__["lifecycle_details"] = None
|
4524
4586
|
__props__.__dict__["local_disaster_recovery_type"] = None
|
4525
4587
|
__props__.__dict__["local_standby_dbs"] = None
|
4588
|
+
__props__.__dict__["maintenance_target_component"] = None
|
4526
4589
|
__props__.__dict__["memory_per_oracle_compute_unit_in_gbs"] = None
|
4527
4590
|
__props__.__dict__["net_services_architecture"] = None
|
4528
4591
|
__props__.__dict__["next_long_term_backup_time_stamp"] = None
|
@@ -4586,6 +4649,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4586
4649
|
backup_retention_period_in_days: Optional[pulumi.Input[int]] = None,
|
4587
4650
|
byol_compute_count_limit: Optional[pulumi.Input[float]] = None,
|
4588
4651
|
character_set: Optional[pulumi.Input[str]] = None,
|
4652
|
+
clone_table_space_lists: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
4589
4653
|
clone_type: Optional[pulumi.Input[str]] = None,
|
4590
4654
|
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
4591
4655
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -4647,6 +4711,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4647
4711
|
local_disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
4648
4712
|
local_standby_dbs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLocalStandbyDbArgs', 'AutonomousDatabaseLocalStandbyDbArgsDict']]]]] = None,
|
4649
4713
|
long_term_backup_schedules: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLongTermBackupScheduleArgs', 'AutonomousDatabaseLongTermBackupScheduleArgsDict']]]]] = None,
|
4714
|
+
maintenance_target_component: Optional[pulumi.Input[str]] = None,
|
4650
4715
|
max_cpu_core_count: Optional[pulumi.Input[int]] = None,
|
4651
4716
|
memory_per_oracle_compute_unit_in_gbs: Optional[pulumi.Input[int]] = None,
|
4652
4717
|
ncharacter_set: Optional[pulumi.Input[str]] = None,
|
@@ -4740,8 +4805,11 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4740
4805
|
|
4741
4806
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
4742
4807
|
|
4808
|
+
<<<<<<< ours
|
4743
4809
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
4810
|
+
:param pulumi.Input[Sequence[pulumi.Input[int]]] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
4744
4811
|
:param pulumi.Input[str] clone_type: The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
4812
|
+
>>>>>>> theirs
|
4745
4813
|
* `FULL` - This option creates a new database that includes all source database data.
|
4746
4814
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
4747
4815
|
:param pulumi.Input[str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
@@ -4827,9 +4895,10 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4827
4895
|
:param pulumi.Input[str] license_model: (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle PaaS and IaaS services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Database service. Note that when provisioning an Autonomous Database on [dedicated Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adbddoverview.htm), this attribute must be null because the attribute is already set at the Autonomous Exadata Infrastructure level. When using [shared Exadata infrastructure](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/adboverview.htm#AEI), if a value is not specified, the system will supply the value of `BRING_YOUR_OWN_LICENSE`. It is a required field when `db_workload` is AJD and needs to be set to `LICENSE_INCLUDED` as AJD does not support default `license_model` value `BRING_YOUR_OWN_LICENSE`.
|
4828
4896
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
4829
4897
|
:param pulumi.Input[int] local_adg_auto_failover_max_data_loss_limit: Parameter that allows users to select an acceptable maximum data loss limit in seconds, up to which Automatic Failover will be triggered when necessary for a Local Autonomous Data Guard
|
4830
|
-
:param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the
|
4831
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLocalStandbyDbArgs', 'AutonomousDatabaseLocalStandbyDbArgsDict']]]] local_standby_dbs: Autonomous Data Guard
|
4898
|
+
:param pulumi.Input[str] local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
4899
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLocalStandbyDbArgs', 'AutonomousDatabaseLocalStandbyDbArgsDict']]]] local_standby_dbs: Autonomous Data Guard standby database details.
|
4832
4900
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseLongTermBackupScheduleArgs', 'AutonomousDatabaseLongTermBackupScheduleArgsDict']]]] long_term_backup_schedules: Details for the long-term backup schedule.
|
4901
|
+
:param pulumi.Input[str] maintenance_target_component: The component chosen for maintenance.
|
4833
4902
|
:param pulumi.Input[int] max_cpu_core_count: (Updatable) **Deprecated.** The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
4834
4903
|
:param pulumi.Input[int] memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per OCPU or ECPU. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details. This parameter is not used for Autonomous database Serverless.
|
4835
4904
|
:param pulumi.Input[str] ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
@@ -4962,6 +5031,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4962
5031
|
__props__.__dict__["backup_retention_period_in_days"] = backup_retention_period_in_days
|
4963
5032
|
__props__.__dict__["byol_compute_count_limit"] = byol_compute_count_limit
|
4964
5033
|
__props__.__dict__["character_set"] = character_set
|
5034
|
+
__props__.__dict__["clone_table_space_lists"] = clone_table_space_lists
|
4965
5035
|
__props__.__dict__["clone_type"] = clone_type
|
4966
5036
|
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
4967
5037
|
__props__.__dict__["compartment_id"] = compartment_id
|
@@ -5023,6 +5093,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5023
5093
|
__props__.__dict__["local_disaster_recovery_type"] = local_disaster_recovery_type
|
5024
5094
|
__props__.__dict__["local_standby_dbs"] = local_standby_dbs
|
5025
5095
|
__props__.__dict__["long_term_backup_schedules"] = long_term_backup_schedules
|
5096
|
+
__props__.__dict__["maintenance_target_component"] = maintenance_target_component
|
5026
5097
|
__props__.__dict__["max_cpu_core_count"] = max_cpu_core_count
|
5027
5098
|
__props__.__dict__["memory_per_oracle_compute_unit_in_gbs"] = memory_per_oracle_compute_unit_in_gbs
|
5028
5099
|
__props__.__dict__["ncharacter_set"] = ncharacter_set
|
@@ -5225,15 +5296,25 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5225
5296
|
|
5226
5297
|
For an Autonomous Database on dedicated infrastructure, the allowed values are:
|
5227
5298
|
|
5299
|
+
<<<<<<< ours
|
5228
5300
|
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
5229
5301
|
"""
|
5230
5302
|
return pulumi.get(self, "character_set")
|
5231
5303
|
|
5304
|
+
@property
|
5305
|
+
@pulumi.getter(name="cloneTableSpaceLists")
|
5306
|
+
def clone_table_space_lists(self) -> pulumi.Output[Sequence[int]]:
|
5307
|
+
"""
|
5308
|
+
A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
5309
|
+
"""
|
5310
|
+
return pulumi.get(self, "clone_table_space_lists")
|
5311
|
+
|
5232
5312
|
@property
|
5233
5313
|
@pulumi.getter(name="cloneType")
|
5234
5314
|
def clone_type(self) -> pulumi.Output[str]:
|
5235
5315
|
"""
|
5236
5316
|
The Autonomous Database clone type. This parameter is not used to create a refreshable clone type, and for refreshable clones one must use the (source=CLONE_TO_REFRESHABLE) parameter.
|
5317
|
+
>>>>>>> theirs
|
5237
5318
|
* `FULL` - This option creates a new database that includes all source database data.
|
5238
5319
|
* `METADATA` - This option creates a new database that includes the source database schema and select metadata, but not the source database data.
|
5239
5320
|
"""
|
@@ -5726,7 +5807,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5726
5807
|
@pulumi.getter(name="localDisasterRecoveryType")
|
5727
5808
|
def local_disaster_recovery_type(self) -> pulumi.Output[str]:
|
5728
5809
|
"""
|
5729
|
-
Indicates the local disaster recovery (DR) type of the
|
5810
|
+
Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
5730
5811
|
"""
|
5731
5812
|
return pulumi.get(self, "local_disaster_recovery_type")
|
5732
5813
|
|
@@ -5734,7 +5815,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5734
5815
|
@pulumi.getter(name="localStandbyDbs")
|
5735
5816
|
def local_standby_dbs(self) -> pulumi.Output[Sequence['outputs.AutonomousDatabaseLocalStandbyDb']]:
|
5736
5817
|
"""
|
5737
|
-
Autonomous Data Guard
|
5818
|
+
Autonomous Data Guard standby database details.
|
5738
5819
|
"""
|
5739
5820
|
return pulumi.get(self, "local_standby_dbs")
|
5740
5821
|
|
@@ -5746,6 +5827,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5746
5827
|
"""
|
5747
5828
|
return pulumi.get(self, "long_term_backup_schedules")
|
5748
5829
|
|
5830
|
+
@property
|
5831
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
5832
|
+
def maintenance_target_component(self) -> pulumi.Output[str]:
|
5833
|
+
"""
|
5834
|
+
The component chosen for maintenance.
|
5835
|
+
"""
|
5836
|
+
return pulumi.get(self, "maintenance_target_component")
|
5837
|
+
|
5749
5838
|
@property
|
5750
5839
|
@pulumi.getter(name="maxCpuCoreCount")
|
5751
5840
|
def max_cpu_core_count(self) -> pulumi.Output[int]:
|
@@ -195,8 +195,11 @@ class _BackupDestinationState:
|
|
195
195
|
nfs_server_export: Optional[pulumi.Input[str]] = None,
|
196
196
|
nfs_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
197
197
|
state: Optional[pulumi.Input[str]] = None,
|
198
|
+
time_at_which_storage_details_are_updated: Optional[pulumi.Input[str]] = None,
|
198
199
|
time_created: Optional[pulumi.Input[str]] = None,
|
200
|
+
total_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
199
201
|
type: Optional[pulumi.Input[str]] = None,
|
202
|
+
utilized_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
200
203
|
vpc_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
201
204
|
"""
|
202
205
|
Input properties used for looking up and filtering BackupDestination resources.
|
@@ -213,8 +216,11 @@ class _BackupDestinationState:
|
|
213
216
|
:param pulumi.Input[str] nfs_server_export: Specifies the directory on which to mount the file system
|
214
217
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nfs_servers: Host names or IP addresses for NFS Auto mount.
|
215
218
|
:param pulumi.Input[str] state: The current lifecycle state of the backup destination.
|
219
|
+
:param pulumi.Input[str] time_at_which_storage_details_are_updated: The time when the total storage size and the utilized storage size of the backup destination are updated.
|
216
220
|
:param pulumi.Input[str] time_created: The date and time the backup destination was created.
|
221
|
+
:param pulumi.Input[int] total_storage_size_in_gbs: The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
217
222
|
:param pulumi.Input[str] type: Type of the backup destination.
|
223
|
+
:param pulumi.Input[int] utilized_storage_size_in_gbs: The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
|
218
224
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_users: (Updatable) The Virtual Private Catalog (VPC) users that are used to access the Recovery Appliance.
|
219
225
|
|
220
226
|
|
@@ -250,10 +256,16 @@ class _BackupDestinationState:
|
|
250
256
|
pulumi.set(__self__, "nfs_servers", nfs_servers)
|
251
257
|
if state is not None:
|
252
258
|
pulumi.set(__self__, "state", state)
|
259
|
+
if time_at_which_storage_details_are_updated is not None:
|
260
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
253
261
|
if time_created is not None:
|
254
262
|
pulumi.set(__self__, "time_created", time_created)
|
263
|
+
if total_storage_size_in_gbs is not None:
|
264
|
+
pulumi.set(__self__, "total_storage_size_in_gbs", total_storage_size_in_gbs)
|
255
265
|
if type is not None:
|
256
266
|
pulumi.set(__self__, "type", type)
|
267
|
+
if utilized_storage_size_in_gbs is not None:
|
268
|
+
pulumi.set(__self__, "utilized_storage_size_in_gbs", utilized_storage_size_in_gbs)
|
257
269
|
if vpc_users is not None:
|
258
270
|
pulumi.set(__self__, "vpc_users", vpc_users)
|
259
271
|
|
@@ -414,6 +426,18 @@ class _BackupDestinationState:
|
|
414
426
|
def state(self, value: Optional[pulumi.Input[str]]):
|
415
427
|
pulumi.set(self, "state", value)
|
416
428
|
|
429
|
+
@property
|
430
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
431
|
+
def time_at_which_storage_details_are_updated(self) -> Optional[pulumi.Input[str]]:
|
432
|
+
"""
|
433
|
+
The time when the total storage size and the utilized storage size of the backup destination are updated.
|
434
|
+
"""
|
435
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
436
|
+
|
437
|
+
@time_at_which_storage_details_are_updated.setter
|
438
|
+
def time_at_which_storage_details_are_updated(self, value: Optional[pulumi.Input[str]]):
|
439
|
+
pulumi.set(self, "time_at_which_storage_details_are_updated", value)
|
440
|
+
|
417
441
|
@property
|
418
442
|
@pulumi.getter(name="timeCreated")
|
419
443
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -426,6 +450,18 @@ class _BackupDestinationState:
|
|
426
450
|
def time_created(self, value: Optional[pulumi.Input[str]]):
|
427
451
|
pulumi.set(self, "time_created", value)
|
428
452
|
|
453
|
+
@property
|
454
|
+
@pulumi.getter(name="totalStorageSizeInGbs")
|
455
|
+
def total_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
456
|
+
"""
|
457
|
+
The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "total_storage_size_in_gbs")
|
460
|
+
|
461
|
+
@total_storage_size_in_gbs.setter
|
462
|
+
def total_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
463
|
+
pulumi.set(self, "total_storage_size_in_gbs", value)
|
464
|
+
|
429
465
|
@property
|
430
466
|
@pulumi.getter
|
431
467
|
def type(self) -> Optional[pulumi.Input[str]]:
|
@@ -438,6 +474,18 @@ class _BackupDestinationState:
|
|
438
474
|
def type(self, value: Optional[pulumi.Input[str]]):
|
439
475
|
pulumi.set(self, "type", value)
|
440
476
|
|
477
|
+
@property
|
478
|
+
@pulumi.getter(name="utilizedStorageSizeInGbs")
|
479
|
+
def utilized_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
480
|
+
"""
|
481
|
+
The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
|
482
|
+
"""
|
483
|
+
return pulumi.get(self, "utilized_storage_size_in_gbs")
|
484
|
+
|
485
|
+
@utilized_storage_size_in_gbs.setter
|
486
|
+
def utilized_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
487
|
+
pulumi.set(self, "utilized_storage_size_in_gbs", value)
|
488
|
+
|
441
489
|
@property
|
442
490
|
@pulumi.getter(name="vpcUsers")
|
443
491
|
def vpc_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
@@ -622,7 +670,10 @@ class BackupDestination(pulumi.CustomResource):
|
|
622
670
|
__props__.__dict__["nfs_server_export"] = None
|
623
671
|
__props__.__dict__["nfs_servers"] = None
|
624
672
|
__props__.__dict__["state"] = None
|
673
|
+
__props__.__dict__["time_at_which_storage_details_are_updated"] = None
|
625
674
|
__props__.__dict__["time_created"] = None
|
675
|
+
__props__.__dict__["total_storage_size_in_gbs"] = None
|
676
|
+
__props__.__dict__["utilized_storage_size_in_gbs"] = None
|
626
677
|
super(BackupDestination, __self__).__init__(
|
627
678
|
'oci:Database/backupDestination:BackupDestination',
|
628
679
|
resource_name,
|
@@ -646,8 +697,11 @@ class BackupDestination(pulumi.CustomResource):
|
|
646
697
|
nfs_server_export: Optional[pulumi.Input[str]] = None,
|
647
698
|
nfs_servers: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
648
699
|
state: Optional[pulumi.Input[str]] = None,
|
700
|
+
time_at_which_storage_details_are_updated: Optional[pulumi.Input[str]] = None,
|
649
701
|
time_created: Optional[pulumi.Input[str]] = None,
|
702
|
+
total_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
650
703
|
type: Optional[pulumi.Input[str]] = None,
|
704
|
+
utilized_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
651
705
|
vpc_users: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None) -> 'BackupDestination':
|
652
706
|
"""
|
653
707
|
Get an existing BackupDestination resource's state with the given name, id, and optional extra
|
@@ -669,8 +723,11 @@ class BackupDestination(pulumi.CustomResource):
|
|
669
723
|
:param pulumi.Input[str] nfs_server_export: Specifies the directory on which to mount the file system
|
670
724
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nfs_servers: Host names or IP addresses for NFS Auto mount.
|
671
725
|
:param pulumi.Input[str] state: The current lifecycle state of the backup destination.
|
726
|
+
:param pulumi.Input[str] time_at_which_storage_details_are_updated: The time when the total storage size and the utilized storage size of the backup destination are updated.
|
672
727
|
:param pulumi.Input[str] time_created: The date and time the backup destination was created.
|
728
|
+
:param pulumi.Input[int] total_storage_size_in_gbs: The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
673
729
|
:param pulumi.Input[str] type: Type of the backup destination.
|
730
|
+
:param pulumi.Input[int] utilized_storage_size_in_gbs: The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
|
674
731
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] vpc_users: (Updatable) The Virtual Private Catalog (VPC) users that are used to access the Recovery Appliance.
|
675
732
|
|
676
733
|
|
@@ -694,8 +751,11 @@ class BackupDestination(pulumi.CustomResource):
|
|
694
751
|
__props__.__dict__["nfs_server_export"] = nfs_server_export
|
695
752
|
__props__.__dict__["nfs_servers"] = nfs_servers
|
696
753
|
__props__.__dict__["state"] = state
|
754
|
+
__props__.__dict__["time_at_which_storage_details_are_updated"] = time_at_which_storage_details_are_updated
|
697
755
|
__props__.__dict__["time_created"] = time_created
|
756
|
+
__props__.__dict__["total_storage_size_in_gbs"] = total_storage_size_in_gbs
|
698
757
|
__props__.__dict__["type"] = type
|
758
|
+
__props__.__dict__["utilized_storage_size_in_gbs"] = utilized_storage_size_in_gbs
|
699
759
|
__props__.__dict__["vpc_users"] = vpc_users
|
700
760
|
return BackupDestination(resource_name, opts=opts, __props__=__props__)
|
701
761
|
|
@@ -804,6 +864,14 @@ class BackupDestination(pulumi.CustomResource):
|
|
804
864
|
"""
|
805
865
|
return pulumi.get(self, "state")
|
806
866
|
|
867
|
+
@property
|
868
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
869
|
+
def time_at_which_storage_details_are_updated(self) -> pulumi.Output[str]:
|
870
|
+
"""
|
871
|
+
The time when the total storage size and the utilized storage size of the backup destination are updated.
|
872
|
+
"""
|
873
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
874
|
+
|
807
875
|
@property
|
808
876
|
@pulumi.getter(name="timeCreated")
|
809
877
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -812,6 +880,14 @@ class BackupDestination(pulumi.CustomResource):
|
|
812
880
|
"""
|
813
881
|
return pulumi.get(self, "time_created")
|
814
882
|
|
883
|
+
@property
|
884
|
+
@pulumi.getter(name="totalStorageSizeInGbs")
|
885
|
+
def total_storage_size_in_gbs(self) -> pulumi.Output[int]:
|
886
|
+
"""
|
887
|
+
The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
888
|
+
"""
|
889
|
+
return pulumi.get(self, "total_storage_size_in_gbs")
|
890
|
+
|
815
891
|
@property
|
816
892
|
@pulumi.getter
|
817
893
|
def type(self) -> pulumi.Output[str]:
|
@@ -820,6 +896,14 @@ class BackupDestination(pulumi.CustomResource):
|
|
820
896
|
"""
|
821
897
|
return pulumi.get(self, "type")
|
822
898
|
|
899
|
+
@property
|
900
|
+
@pulumi.getter(name="utilizedStorageSizeInGbs")
|
901
|
+
def utilized_storage_size_in_gbs(self) -> pulumi.Output[int]:
|
902
|
+
"""
|
903
|
+
The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
|
904
|
+
"""
|
905
|
+
return pulumi.get(self, "utilized_storage_size_in_gbs")
|
906
|
+
|
823
907
|
@property
|
824
908
|
@pulumi.getter(name="vpcUsers")
|
825
909
|
def vpc_users(self) -> pulumi.Output[Optional[Sequence[str]]]:
|