pulumi-oci 1.29.0a1711606977__py3-none-any.whl → 1.29.0a1711616250__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 +8 -0
- pulumi_oci/database/autonomous_database.py +155 -14
- pulumi_oci/database/get_autonomous_database.py +41 -2
- pulumi_oci/database/get_autonomous_databases.py +1 -1
- pulumi_oci/database/outputs.py +68 -2
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +111 -6
- pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py +32 -4
- pulumi_oci/databasemanagement/outputs.py +267 -75
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +4504 -0
- pulumi_oci/dataintegration/get_workspace_task.py +443 -0
- pulumi_oci/dataintegration/get_workspace_tasks.py +254 -0
- pulumi_oci/dataintegration/outputs.py +16511 -4723
- pulumi_oci/dataintegration/workspace_task.py +1364 -0
- pulumi_oci/devops/_inputs.py +18 -2
- pulumi_oci/devops/deploy_artifact.py +2 -0
- pulumi_oci/devops/deploy_stage.py +141 -0
- pulumi_oci/devops/get_deploy_stage.py +40 -1
- pulumi_oci/devops/outputs.py +75 -6
- pulumi_oci/logging/_inputs.py +2751 -187
- pulumi_oci/logging/outputs.py +4981 -768
- pulumi_oci/logging/unified_agent_configuration.py +34 -208
- pulumi_oci/monitoring/_inputs.py +136 -0
- pulumi_oci/monitoring/alarm.py +173 -0
- pulumi_oci/monitoring/get_alarm.py +40 -1
- pulumi_oci/monitoring/get_alarm_history_collection.py +2 -2
- pulumi_oci/monitoring/outputs.py +305 -0
- pulumi_oci/networkloadbalancer/_inputs.py +20 -20
- pulumi_oci/networkloadbalancer/backend.py +7 -7
- pulumi_oci/networkloadbalancer/backend_set.py +11 -11
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +1 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/network_load_balancer.py +56 -7
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +7 -7
- pulumi_oci/networkloadbalancer/outputs.py +41 -34
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/METADATA +1 -1
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/RECORD +41 -38
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.29.0a1711606977.dist-info → pulumi_oci-1.29.0a1711616250.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -1801,6 +1801,14 @@ _utilities.register(
|
|
1801
1801
|
"oci:DataIntegration/workspaceProject:WorkspaceProject": "WorkspaceProject"
|
1802
1802
|
}
|
1803
1803
|
},
|
1804
|
+
{
|
1805
|
+
"pkg": "oci",
|
1806
|
+
"mod": "DataIntegration/workspaceTask",
|
1807
|
+
"fqn": "pulumi_oci.dataintegration",
|
1808
|
+
"classes": {
|
1809
|
+
"oci:DataIntegration/workspaceTask:WorkspaceTask": "WorkspaceTask"
|
1810
|
+
}
|
1811
|
+
},
|
1804
1812
|
{
|
1805
1813
|
"pkg": "oci",
|
1806
1814
|
"mod": "DataLabellingService/dataset",
|
@@ -20,6 +20,8 @@ class AutonomousDatabaseArgs:
|
|
20
20
|
db_name: pulumi.Input[str],
|
21
21
|
admin_password: Optional[pulumi.Input[str]] = None,
|
22
22
|
are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
|
23
|
+
auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
|
24
|
+
auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
|
23
25
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
24
26
|
autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
|
25
27
|
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
@@ -85,6 +87,7 @@ class AutonomousDatabaseArgs:
|
|
85
87
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
86
88
|
switchover_to: Optional[pulumi.Input[str]] = None,
|
87
89
|
switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
|
90
|
+
time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
|
88
91
|
timestamp: Optional[pulumi.Input[str]] = None,
|
89
92
|
use_latest_available_backup_time_stamp: Optional[pulumi.Input[bool]] = None,
|
90
93
|
vault_id: Optional[pulumi.Input[str]] = None,
|
@@ -93,9 +96,11 @@ class AutonomousDatabaseArgs:
|
|
93
96
|
The set of arguments for constructing a AutonomousDatabase resource.
|
94
97
|
: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.
|
95
98
|
:param pulumi.Input[str] db_name: The database name. The name must begin with an alphabetic character and can contain a maximum of 14 alphanumeric characters. Special characters are not permitted. The database name must be unique in the tenancy. It is required in all cases except when creating a cross-region Autonomous Data Guard standby instance or a cross-region disaster recovery standby instance.
|
96
|
-
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
99
|
+
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
97
100
|
:param pulumi.Input[bool] are_primary_whitelisted_ips_used: (Updatable) This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
98
|
-
:param pulumi.Input[
|
101
|
+
:param pulumi.Input[int] auto_refresh_frequency_in_seconds: (Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
102
|
+
:param pulumi.Input[int] auto_refresh_point_lag_in_seconds: (Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
103
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
99
104
|
:param pulumi.Input[str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
|
100
105
|
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
|
101
106
|
:param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
|
@@ -230,6 +235,7 @@ class AutonomousDatabaseArgs:
|
|
230
235
|
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
|
231
236
|
:param pulumi.Input[str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
|
232
237
|
:param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
|
238
|
+
:param pulumi.Input[str] time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
233
239
|
:param pulumi.Input[str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
|
234
240
|
:param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
|
235
241
|
: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). This parameter and `secretId` are required for Customer Managed Keys.
|
@@ -247,6 +253,10 @@ class AutonomousDatabaseArgs:
|
|
247
253
|
pulumi.set(__self__, "admin_password", admin_password)
|
248
254
|
if are_primary_whitelisted_ips_used is not None:
|
249
255
|
pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
|
256
|
+
if auto_refresh_frequency_in_seconds is not None:
|
257
|
+
pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
|
258
|
+
if auto_refresh_point_lag_in_seconds is not None:
|
259
|
+
pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
|
250
260
|
if autonomous_container_database_id is not None:
|
251
261
|
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
252
262
|
if autonomous_database_backup_id is not None:
|
@@ -380,6 +390,8 @@ class AutonomousDatabaseArgs:
|
|
380
390
|
pulumi.set(__self__, "switchover_to", switchover_to)
|
381
391
|
if switchover_to_remote_peer_id is not None:
|
382
392
|
pulumi.set(__self__, "switchover_to_remote_peer_id", switchover_to_remote_peer_id)
|
393
|
+
if time_of_auto_refresh_start is not None:
|
394
|
+
pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
|
383
395
|
if timestamp is not None:
|
384
396
|
pulumi.set(__self__, "timestamp", timestamp)
|
385
397
|
if use_latest_available_backup_time_stamp is not None:
|
@@ -417,7 +429,7 @@ class AutonomousDatabaseArgs:
|
|
417
429
|
@pulumi.getter(name="adminPassword")
|
418
430
|
def admin_password(self) -> Optional[pulumi.Input[str]]:
|
419
431
|
"""
|
420
|
-
(Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
432
|
+
(Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
421
433
|
"""
|
422
434
|
return pulumi.get(self, "admin_password")
|
423
435
|
|
@@ -437,11 +449,35 @@ class AutonomousDatabaseArgs:
|
|
437
449
|
def are_primary_whitelisted_ips_used(self, value: Optional[pulumi.Input[bool]]):
|
438
450
|
pulumi.set(self, "are_primary_whitelisted_ips_used", value)
|
439
451
|
|
452
|
+
@property
|
453
|
+
@pulumi.getter(name="autoRefreshFrequencyInSeconds")
|
454
|
+
def auto_refresh_frequency_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
455
|
+
"""
|
456
|
+
(Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
457
|
+
"""
|
458
|
+
return pulumi.get(self, "auto_refresh_frequency_in_seconds")
|
459
|
+
|
460
|
+
@auto_refresh_frequency_in_seconds.setter
|
461
|
+
def auto_refresh_frequency_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
462
|
+
pulumi.set(self, "auto_refresh_frequency_in_seconds", value)
|
463
|
+
|
464
|
+
@property
|
465
|
+
@pulumi.getter(name="autoRefreshPointLagInSeconds")
|
466
|
+
def auto_refresh_point_lag_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
467
|
+
"""
|
468
|
+
(Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
469
|
+
"""
|
470
|
+
return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
|
471
|
+
|
472
|
+
@auto_refresh_point_lag_in_seconds.setter
|
473
|
+
def auto_refresh_point_lag_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
474
|
+
pulumi.set(self, "auto_refresh_point_lag_in_seconds", value)
|
475
|
+
|
440
476
|
@property
|
441
477
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
442
478
|
def autonomous_container_database_id(self) -> Optional[pulumi.Input[str]]:
|
443
479
|
"""
|
444
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
480
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
445
481
|
"""
|
446
482
|
return pulumi.get(self, "autonomous_container_database_id")
|
447
483
|
|
@@ -1288,6 +1324,18 @@ class AutonomousDatabaseArgs:
|
|
1288
1324
|
def switchover_to_remote_peer_id(self, value: Optional[pulumi.Input[str]]):
|
1289
1325
|
pulumi.set(self, "switchover_to_remote_peer_id", value)
|
1290
1326
|
|
1327
|
+
@property
|
1328
|
+
@pulumi.getter(name="timeOfAutoRefreshStart")
|
1329
|
+
def time_of_auto_refresh_start(self) -> Optional[pulumi.Input[str]]:
|
1330
|
+
"""
|
1331
|
+
The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
1332
|
+
"""
|
1333
|
+
return pulumi.get(self, "time_of_auto_refresh_start")
|
1334
|
+
|
1335
|
+
@time_of_auto_refresh_start.setter
|
1336
|
+
def time_of_auto_refresh_start(self, value: Optional[pulumi.Input[str]]):
|
1337
|
+
pulumi.set(self, "time_of_auto_refresh_start", value)
|
1338
|
+
|
1291
1339
|
@property
|
1292
1340
|
@pulumi.getter
|
1293
1341
|
def timestamp(self) -> Optional[pulumi.Input[str]]:
|
@@ -1351,6 +1399,8 @@ class _AutonomousDatabaseState:
|
|
1351
1399
|
allocated_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
1352
1400
|
apex_details: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseApexDetailArgs']]]] = None,
|
1353
1401
|
are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
|
1402
|
+
auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
|
1403
|
+
auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
|
1354
1404
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
1355
1405
|
autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
|
1356
1406
|
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
@@ -1458,6 +1508,7 @@ class _AutonomousDatabaseState:
|
|
1458
1508
|
time_local_data_guard_enabled: Optional[pulumi.Input[str]] = None,
|
1459
1509
|
time_maintenance_begin: Optional[pulumi.Input[str]] = None,
|
1460
1510
|
time_maintenance_end: Optional[pulumi.Input[str]] = None,
|
1511
|
+
time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
|
1461
1512
|
time_of_joining_resource_pool: Optional[pulumi.Input[str]] = None,
|
1462
1513
|
time_of_last_failover: Optional[pulumi.Input[str]] = None,
|
1463
1514
|
time_of_last_refresh: Optional[pulumi.Input[str]] = None,
|
@@ -1476,11 +1527,13 @@ class _AutonomousDatabaseState:
|
|
1476
1527
|
"""
|
1477
1528
|
Input properties used for looking up and filtering AutonomousDatabase resources.
|
1478
1529
|
:param pulumi.Input[float] actual_used_data_storage_size_in_tbs: The current amount of storage in use for user and system data, in terabytes (TB).
|
1479
|
-
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
1530
|
+
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
1480
1531
|
:param pulumi.Input[float] allocated_storage_size_in_tbs: The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the `dataStorageSizeInTBs` value. You can compare this value to the `actualUsedDataStorageSizeInTBs` value to determine if a manual shrink operation is appropriate for your allocated storage.
|
1481
1532
|
:param pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseApexDetailArgs']]] apex_details: Information about Oracle APEX Application Development.
|
1482
1533
|
:param pulumi.Input[bool] are_primary_whitelisted_ips_used: (Updatable) This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
1483
|
-
:param pulumi.Input[
|
1534
|
+
:param pulumi.Input[int] auto_refresh_frequency_in_seconds: (Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
1535
|
+
:param pulumi.Input[int] auto_refresh_point_lag_in_seconds: (Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
1536
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
1484
1537
|
:param pulumi.Input[str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
|
1485
1538
|
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
|
1486
1539
|
:param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
|
@@ -1657,6 +1710,7 @@ class _AutonomousDatabaseState:
|
|
1657
1710
|
:param pulumi.Input[str] time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
|
1658
1711
|
:param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
|
1659
1712
|
:param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
|
1713
|
+
:param pulumi.Input[str] time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
1660
1714
|
:param pulumi.Input[str] time_of_last_failover: The timestamp of the last failover operation.
|
1661
1715
|
:param pulumi.Input[str] time_of_last_refresh: The date and time when last refresh happened.
|
1662
1716
|
:param pulumi.Input[str] time_of_last_refresh_point: The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.
|
@@ -1688,6 +1742,10 @@ class _AutonomousDatabaseState:
|
|
1688
1742
|
pulumi.set(__self__, "apex_details", apex_details)
|
1689
1743
|
if are_primary_whitelisted_ips_used is not None:
|
1690
1744
|
pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
|
1745
|
+
if auto_refresh_frequency_in_seconds is not None:
|
1746
|
+
pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
|
1747
|
+
if auto_refresh_point_lag_in_seconds is not None:
|
1748
|
+
pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
|
1691
1749
|
if autonomous_container_database_id is not None:
|
1692
1750
|
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
1693
1751
|
if autonomous_database_backup_id is not None:
|
@@ -1905,6 +1963,8 @@ class _AutonomousDatabaseState:
|
|
1905
1963
|
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
1906
1964
|
if time_maintenance_end is not None:
|
1907
1965
|
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
1966
|
+
if time_of_auto_refresh_start is not None:
|
1967
|
+
pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
|
1908
1968
|
if time_of_joining_resource_pool is not None:
|
1909
1969
|
pulumi.set(__self__, "time_of_joining_resource_pool", time_of_joining_resource_pool)
|
1910
1970
|
if time_of_last_failover is not None:
|
@@ -1952,7 +2012,7 @@ class _AutonomousDatabaseState:
|
|
1952
2012
|
@pulumi.getter(name="adminPassword")
|
1953
2013
|
def admin_password(self) -> Optional[pulumi.Input[str]]:
|
1954
2014
|
"""
|
1955
|
-
(Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
2015
|
+
(Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
1956
2016
|
"""
|
1957
2017
|
return pulumi.get(self, "admin_password")
|
1958
2018
|
|
@@ -1996,11 +2056,35 @@ class _AutonomousDatabaseState:
|
|
1996
2056
|
def are_primary_whitelisted_ips_used(self, value: Optional[pulumi.Input[bool]]):
|
1997
2057
|
pulumi.set(self, "are_primary_whitelisted_ips_used", value)
|
1998
2058
|
|
2059
|
+
@property
|
2060
|
+
@pulumi.getter(name="autoRefreshFrequencyInSeconds")
|
2061
|
+
def auto_refresh_frequency_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
2062
|
+
"""
|
2063
|
+
(Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
2064
|
+
"""
|
2065
|
+
return pulumi.get(self, "auto_refresh_frequency_in_seconds")
|
2066
|
+
|
2067
|
+
@auto_refresh_frequency_in_seconds.setter
|
2068
|
+
def auto_refresh_frequency_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
2069
|
+
pulumi.set(self, "auto_refresh_frequency_in_seconds", value)
|
2070
|
+
|
2071
|
+
@property
|
2072
|
+
@pulumi.getter(name="autoRefreshPointLagInSeconds")
|
2073
|
+
def auto_refresh_point_lag_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
2074
|
+
"""
|
2075
|
+
(Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
2076
|
+
"""
|
2077
|
+
return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
|
2078
|
+
|
2079
|
+
@auto_refresh_point_lag_in_seconds.setter
|
2080
|
+
def auto_refresh_point_lag_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
2081
|
+
pulumi.set(self, "auto_refresh_point_lag_in_seconds", value)
|
2082
|
+
|
1999
2083
|
@property
|
2000
2084
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
2001
2085
|
def autonomous_container_database_id(self) -> Optional[pulumi.Input[str]]:
|
2002
2086
|
"""
|
2003
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
2087
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
2004
2088
|
"""
|
2005
2089
|
return pulumi.get(self, "autonomous_container_database_id")
|
2006
2090
|
|
@@ -3351,6 +3435,18 @@ class _AutonomousDatabaseState:
|
|
3351
3435
|
def time_maintenance_end(self, value: Optional[pulumi.Input[str]]):
|
3352
3436
|
pulumi.set(self, "time_maintenance_end", value)
|
3353
3437
|
|
3438
|
+
@property
|
3439
|
+
@pulumi.getter(name="timeOfAutoRefreshStart")
|
3440
|
+
def time_of_auto_refresh_start(self) -> Optional[pulumi.Input[str]]:
|
3441
|
+
"""
|
3442
|
+
The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
3443
|
+
"""
|
3444
|
+
return pulumi.get(self, "time_of_auto_refresh_start")
|
3445
|
+
|
3446
|
+
@time_of_auto_refresh_start.setter
|
3447
|
+
def time_of_auto_refresh_start(self, value: Optional[pulumi.Input[str]]):
|
3448
|
+
pulumi.set(self, "time_of_auto_refresh_start", value)
|
3449
|
+
|
3354
3450
|
@property
|
3355
3451
|
@pulumi.getter(name="timeOfJoiningResourcePool")
|
3356
3452
|
def time_of_joining_resource_pool(self) -> Optional[pulumi.Input[str]]:
|
@@ -3542,6 +3638,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3542
3638
|
opts: Optional[pulumi.ResourceOptions] = None,
|
3543
3639
|
admin_password: Optional[pulumi.Input[str]] = None,
|
3544
3640
|
are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
|
3641
|
+
auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
|
3642
|
+
auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
|
3545
3643
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
3546
3644
|
autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
|
3547
3645
|
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
@@ -3609,6 +3707,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3609
3707
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
3610
3708
|
switchover_to: Optional[pulumi.Input[str]] = None,
|
3611
3709
|
switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
|
3710
|
+
time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
|
3612
3711
|
timestamp: Optional[pulumi.Input[str]] = None,
|
3613
3712
|
use_latest_available_backup_time_stamp: Optional[pulumi.Input[bool]] = None,
|
3614
3713
|
vault_id: Optional[pulumi.Input[str]] = None,
|
@@ -3631,9 +3730,11 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3631
3730
|
|
3632
3731
|
:param str resource_name: The name of the resource.
|
3633
3732
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
3634
|
-
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
3733
|
+
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
3635
3734
|
:param pulumi.Input[bool] are_primary_whitelisted_ips_used: (Updatable) This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
3636
|
-
:param pulumi.Input[
|
3735
|
+
:param pulumi.Input[int] auto_refresh_frequency_in_seconds: (Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
3736
|
+
:param pulumi.Input[int] auto_refresh_point_lag_in_seconds: (Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
3737
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
3637
3738
|
:param pulumi.Input[str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
|
3638
3739
|
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
|
3639
3740
|
:param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
|
@@ -3770,6 +3871,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3770
3871
|
These subnets are used by the Oracle Clusterware private interconnect on the database instance. Specifying an overlapping subnet will cause the private interconnect to malfunction. This restriction applies to both the client subnet and the backup subnet.
|
3771
3872
|
:param pulumi.Input[str] switchover_to: It is applicable only when `is_local_data_guard_enabled` is true. Could be set to `PRIMARY` or `STANDBY`. Default value is `PRIMARY`.
|
3772
3873
|
:param pulumi.Input[str] switchover_to_remote_peer_id: (Updatable) It is applicable only when `dataguard_region_type` and `role` are set, and `is_dedicated` is false. For Autonomous Database Serverless instances, Data Guard associations have designated primary and standby regions, and these region types do not change when the database changes roles. It takes the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the remote peer to switchover to and the API is called from the remote region.
|
3874
|
+
:param pulumi.Input[str] time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
3773
3875
|
:param pulumi.Input[str] timestamp: The timestamp specified for the point-in-time clone of the source Autonomous Database. The timestamp must be in the past.
|
3774
3876
|
:param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
|
3775
3877
|
: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). This parameter and `secretId` are required for Customer Managed Keys.
|
@@ -3819,6 +3921,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3819
3921
|
opts: Optional[pulumi.ResourceOptions] = None,
|
3820
3922
|
admin_password: Optional[pulumi.Input[str]] = None,
|
3821
3923
|
are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
|
3924
|
+
auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
|
3925
|
+
auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
|
3822
3926
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
3823
3927
|
autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
|
3824
3928
|
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
@@ -3886,6 +3990,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3886
3990
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
3887
3991
|
switchover_to: Optional[pulumi.Input[str]] = None,
|
3888
3992
|
switchover_to_remote_peer_id: Optional[pulumi.Input[str]] = None,
|
3993
|
+
time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
|
3889
3994
|
timestamp: Optional[pulumi.Input[str]] = None,
|
3890
3995
|
use_latest_available_backup_time_stamp: Optional[pulumi.Input[bool]] = None,
|
3891
3996
|
vault_id: Optional[pulumi.Input[str]] = None,
|
@@ -3901,6 +4006,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3901
4006
|
|
3902
4007
|
__props__.__dict__["admin_password"] = None if admin_password is None else pulumi.Output.secret(admin_password)
|
3903
4008
|
__props__.__dict__["are_primary_whitelisted_ips_used"] = are_primary_whitelisted_ips_used
|
4009
|
+
__props__.__dict__["auto_refresh_frequency_in_seconds"] = auto_refresh_frequency_in_seconds
|
4010
|
+
__props__.__dict__["auto_refresh_point_lag_in_seconds"] = auto_refresh_point_lag_in_seconds
|
3904
4011
|
__props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
|
3905
4012
|
__props__.__dict__["autonomous_database_backup_id"] = autonomous_database_backup_id
|
3906
4013
|
__props__.__dict__["autonomous_database_id"] = autonomous_database_id
|
@@ -3972,6 +4079,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3972
4079
|
__props__.__dict__["subnet_id"] = subnet_id
|
3973
4080
|
__props__.__dict__["switchover_to"] = switchover_to
|
3974
4081
|
__props__.__dict__["switchover_to_remote_peer_id"] = switchover_to_remote_peer_id
|
4082
|
+
__props__.__dict__["time_of_auto_refresh_start"] = time_of_auto_refresh_start
|
3975
4083
|
__props__.__dict__["timestamp"] = timestamp
|
3976
4084
|
__props__.__dict__["use_latest_available_backup_time_stamp"] = use_latest_available_backup_time_stamp
|
3977
4085
|
__props__.__dict__["vault_id"] = vault_id
|
@@ -4047,6 +4155,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4047
4155
|
allocated_storage_size_in_tbs: Optional[pulumi.Input[float]] = None,
|
4048
4156
|
apex_details: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseApexDetailArgs']]]]] = None,
|
4049
4157
|
are_primary_whitelisted_ips_used: Optional[pulumi.Input[bool]] = None,
|
4158
|
+
auto_refresh_frequency_in_seconds: Optional[pulumi.Input[int]] = None,
|
4159
|
+
auto_refresh_point_lag_in_seconds: Optional[pulumi.Input[int]] = None,
|
4050
4160
|
autonomous_container_database_id: Optional[pulumi.Input[str]] = None,
|
4051
4161
|
autonomous_database_backup_id: Optional[pulumi.Input[str]] = None,
|
4052
4162
|
autonomous_database_id: Optional[pulumi.Input[str]] = None,
|
@@ -4154,6 +4264,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4154
4264
|
time_local_data_guard_enabled: Optional[pulumi.Input[str]] = None,
|
4155
4265
|
time_maintenance_begin: Optional[pulumi.Input[str]] = None,
|
4156
4266
|
time_maintenance_end: Optional[pulumi.Input[str]] = None,
|
4267
|
+
time_of_auto_refresh_start: Optional[pulumi.Input[str]] = None,
|
4157
4268
|
time_of_joining_resource_pool: Optional[pulumi.Input[str]] = None,
|
4158
4269
|
time_of_last_failover: Optional[pulumi.Input[str]] = None,
|
4159
4270
|
time_of_last_refresh: Optional[pulumi.Input[str]] = None,
|
@@ -4177,11 +4288,13 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4177
4288
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
4178
4289
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
4179
4290
|
:param pulumi.Input[float] actual_used_data_storage_size_in_tbs: The current amount of storage in use for user and system data, in terabytes (TB).
|
4180
|
-
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
4291
|
+
:param pulumi.Input[str] admin_password: (Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
4181
4292
|
:param pulumi.Input[float] allocated_storage_size_in_tbs: The amount of storage currently allocated for the database tables and billed for, rounded up. When auto-scaling is not enabled, this value is equal to the `dataStorageSizeInTBs` value. You can compare this value to the `actualUsedDataStorageSizeInTBs` value to determine if a manual shrink operation is appropriate for your allocated storage.
|
4182
4293
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['AutonomousDatabaseApexDetailArgs']]]] apex_details: Information about Oracle APEX Application Development.
|
4183
4294
|
:param pulumi.Input[bool] are_primary_whitelisted_ips_used: (Updatable) This field will be null if the Autonomous Database is not Data Guard enabled or Access Control is disabled. It's value would be `TRUE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses primary IP access control list (ACL) for standby. It's value would be `FALSE` if Autonomous Database is Data Guard enabled and Access Control is enabled and if the Autonomous Database uses different IP access control list (ACL) for standby compared to primary.
|
4184
|
-
:param pulumi.Input[
|
4295
|
+
:param pulumi.Input[int] auto_refresh_frequency_in_seconds: (Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
4296
|
+
:param pulumi.Input[int] auto_refresh_point_lag_in_seconds: (Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
4297
|
+
:param pulumi.Input[str] autonomous_container_database_id: The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
4185
4298
|
:param pulumi.Input[str] autonomous_database_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database Backup that you will clone to create a new Autonomous Database.
|
4186
4299
|
:param pulumi.Input[str] autonomous_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source Autonomous Database that you will clone to create a new Autonomous Database.
|
4187
4300
|
:param pulumi.Input[str] autonomous_maintenance_schedule_type: The maintenance schedule type of the Autonomous Database Serverless instances. The EARLY maintenance schedule of this Autonomous Database follows a schedule that applies patches prior to the REGULAR schedule.The REGULAR maintenance schedule of this Autonomous Database follows the normal cycle.
|
@@ -4358,6 +4471,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4358
4471
|
:param pulumi.Input[str] time_local_data_guard_enabled: The date and time that Autonomous Data Guard was enabled for an Autonomous Database where the standby was provisioned in the same region as the primary database.
|
4359
4472
|
:param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
|
4360
4473
|
:param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
|
4474
|
+
:param pulumi.Input[str] time_of_auto_refresh_start: The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
4361
4475
|
:param pulumi.Input[str] time_of_last_failover: The timestamp of the last failover operation.
|
4362
4476
|
:param pulumi.Input[str] time_of_last_refresh: The date and time when last refresh happened.
|
4363
4477
|
:param pulumi.Input[str] time_of_last_refresh_point: The refresh point timestamp (UTC). The refresh point is the time to which the database was most recently refreshed. Data created after the refresh point is not included in the refresh.
|
@@ -4388,6 +4502,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4388
4502
|
__props__.__dict__["allocated_storage_size_in_tbs"] = allocated_storage_size_in_tbs
|
4389
4503
|
__props__.__dict__["apex_details"] = apex_details
|
4390
4504
|
__props__.__dict__["are_primary_whitelisted_ips_used"] = are_primary_whitelisted_ips_used
|
4505
|
+
__props__.__dict__["auto_refresh_frequency_in_seconds"] = auto_refresh_frequency_in_seconds
|
4506
|
+
__props__.__dict__["auto_refresh_point_lag_in_seconds"] = auto_refresh_point_lag_in_seconds
|
4391
4507
|
__props__.__dict__["autonomous_container_database_id"] = autonomous_container_database_id
|
4392
4508
|
__props__.__dict__["autonomous_database_backup_id"] = autonomous_database_backup_id
|
4393
4509
|
__props__.__dict__["autonomous_database_id"] = autonomous_database_id
|
@@ -4495,6 +4611,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4495
4611
|
__props__.__dict__["time_local_data_guard_enabled"] = time_local_data_guard_enabled
|
4496
4612
|
__props__.__dict__["time_maintenance_begin"] = time_maintenance_begin
|
4497
4613
|
__props__.__dict__["time_maintenance_end"] = time_maintenance_end
|
4614
|
+
__props__.__dict__["time_of_auto_refresh_start"] = time_of_auto_refresh_start
|
4498
4615
|
__props__.__dict__["time_of_joining_resource_pool"] = time_of_joining_resource_pool
|
4499
4616
|
__props__.__dict__["time_of_last_failover"] = time_of_last_failover
|
4500
4617
|
__props__.__dict__["time_of_last_refresh"] = time_of_last_refresh
|
@@ -4524,7 +4641,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4524
4641
|
@pulumi.getter(name="adminPassword")
|
4525
4642
|
def admin_password(self) -> pulumi.Output[str]:
|
4526
4643
|
"""
|
4527
|
-
(Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE"
|
4644
|
+
(Updatable) The password must be between 12 and 30 characters long, and must contain at least 1 uppercase, 1 lowercase, and 1 numeric character. It cannot contain the double quote symbol (") or the username "admin", regardless of casing. The password is mandatory if source value is "BACKUP_FROM_ID", "BACKUP_FROM_TIMESTAMP", "DATABASE" or "NONE".
|
4528
4645
|
"""
|
4529
4646
|
return pulumi.get(self, "admin_password")
|
4530
4647
|
|
@@ -4552,11 +4669,27 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4552
4669
|
"""
|
4553
4670
|
return pulumi.get(self, "are_primary_whitelisted_ips_used")
|
4554
4671
|
|
4672
|
+
@property
|
4673
|
+
@pulumi.getter(name="autoRefreshFrequencyInSeconds")
|
4674
|
+
def auto_refresh_frequency_in_seconds(self) -> pulumi.Output[int]:
|
4675
|
+
"""
|
4676
|
+
(Updatable) The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
4677
|
+
"""
|
4678
|
+
return pulumi.get(self, "auto_refresh_frequency_in_seconds")
|
4679
|
+
|
4680
|
+
@property
|
4681
|
+
@pulumi.getter(name="autoRefreshPointLagInSeconds")
|
4682
|
+
def auto_refresh_point_lag_in_seconds(self) -> pulumi.Output[int]:
|
4683
|
+
"""
|
4684
|
+
(Updatable) The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
4685
|
+
"""
|
4686
|
+
return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
|
4687
|
+
|
4555
4688
|
@property
|
4556
4689
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
4557
4690
|
def autonomous_container_database_id(self) -> pulumi.Output[str]:
|
4558
4691
|
"""
|
4559
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
4692
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
4560
4693
|
"""
|
4561
4694
|
return pulumi.get(self, "autonomous_container_database_id")
|
4562
4695
|
|
@@ -5479,6 +5612,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5479
5612
|
"""
|
5480
5613
|
return pulumi.get(self, "time_maintenance_end")
|
5481
5614
|
|
5615
|
+
@property
|
5616
|
+
@pulumi.getter(name="timeOfAutoRefreshStart")
|
5617
|
+
def time_of_auto_refresh_start(self) -> pulumi.Output[str]:
|
5618
|
+
"""
|
5619
|
+
The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
5620
|
+
"""
|
5621
|
+
return pulumi.get(self, "time_of_auto_refresh_start")
|
5622
|
+
|
5482
5623
|
@property
|
5483
5624
|
@pulumi.getter(name="timeOfJoiningResourcePool")
|
5484
5625
|
def time_of_joining_resource_pool(self) -> pulumi.Output[str]:
|
@@ -22,7 +22,7 @@ class GetAutonomousDatabaseResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getAutonomousDatabase.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, character_set=None, clone_type=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
25
|
+
def __init__(__self__, actual_used_data_storage_size_in_tbs=None, admin_password=None, allocated_storage_size_in_tbs=None, apex_details=None, are_primary_whitelisted_ips_used=None, auto_refresh_frequency_in_seconds=None, auto_refresh_point_lag_in_seconds=None, autonomous_container_database_id=None, autonomous_database_backup_id=None, autonomous_database_id=None, autonomous_maintenance_schedule_type=None, available_upgrade_versions=None, backup_configs=None, backup_retention_period_in_days=None, character_set=None, clone_type=None, compartment_id=None, compute_count=None, compute_model=None, connection_strings=None, connection_urls=None, cpu_core_count=None, customer_contacts=None, data_safe_status=None, data_storage_size_in_gb=None, data_storage_size_in_tbs=None, database_edition=None, database_management_status=None, dataguard_region_type=None, db_name=None, db_tools_details=None, db_version=None, db_workload=None, defined_tags=None, disaster_recovery_region_type=None, display_name=None, failed_data_recovery_in_seconds=None, freeform_tags=None, id=None, in_memory_area_in_gbs=None, in_memory_percentage=None, infrastructure_type=None, is_access_control_enabled=None, is_auto_scaling_enabled=None, is_auto_scaling_for_storage_enabled=None, is_data_guard_enabled=None, is_dedicated=None, is_dev_tier=None, is_free_tier=None, is_local_data_guard_enabled=None, is_mtls_connection_required=None, is_preview=None, is_preview_version_with_service_terms_accepted=None, is_reconnect_clone_enabled=None, is_refreshable_clone=None, is_remote_data_guard_enabled=None, is_replicate_automatic_backups=None, is_shrink_only=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, kms_key_id=None, kms_key_lifecycle_details=None, kms_key_version_id=None, license_model=None, lifecycle_details=None, local_adg_auto_failover_max_data_loss_limit=None, local_disaster_recovery_type=None, local_standby_dbs=None, long_term_backup_schedules=None, max_cpu_core_count=None, memory_per_oracle_compute_unit_in_gbs=None, ncharacter_set=None, net_services_architecture=None, next_long_term_backup_time_stamp=None, nsg_ids=None, ocpu_count=None, open_mode=None, operations_insights_status=None, peer_db_ids=None, permission_level=None, private_endpoint=None, private_endpoint_ip=None, private_endpoint_label=None, provisionable_cpuses=None, refreshable_mode=None, refreshable_status=None, remote_disaster_recovery_configurations=None, remote_disaster_recovery_type=None, resource_pool_leader_id=None, resource_pool_summaries=None, role=None, rotate_key_trigger=None, scheduled_operations=None, secret_id=None, secret_version_number=None, service_console_url=None, shrink_adb_trigger=None, source=None, source_id=None, standby_dbs=None, standby_whitelisted_ips=None, state=None, subnet_id=None, supported_regions_to_clone_tos=None, switchover_to=None, switchover_to_remote_peer_id=None, system_tags=None, time_created=None, time_data_guard_role_changed=None, time_deletion_of_free_autonomous_database=None, time_disaster_recovery_role_changed=None, time_local_data_guard_enabled=None, time_maintenance_begin=None, time_maintenance_end=None, time_of_auto_refresh_start=None, time_of_joining_resource_pool=None, time_of_last_failover=None, time_of_last_refresh=None, time_of_last_refresh_point=None, time_of_last_switchover=None, time_of_next_refresh=None, time_reclamation_of_free_autonomous_database=None, time_until_reconnect_clone_enabled=None, timestamp=None, total_backup_storage_size_in_gbs=None, use_latest_available_backup_time_stamp=None, used_data_storage_size_in_gbs=None, used_data_storage_size_in_tbs=None, vault_id=None, whitelisted_ips=None):
|
26
26
|
if actual_used_data_storage_size_in_tbs and not isinstance(actual_used_data_storage_size_in_tbs, float):
|
27
27
|
raise TypeError("Expected argument 'actual_used_data_storage_size_in_tbs' to be a float")
|
28
28
|
pulumi.set(__self__, "actual_used_data_storage_size_in_tbs", actual_used_data_storage_size_in_tbs)
|
@@ -38,6 +38,12 @@ class GetAutonomousDatabaseResult:
|
|
38
38
|
if are_primary_whitelisted_ips_used and not isinstance(are_primary_whitelisted_ips_used, bool):
|
39
39
|
raise TypeError("Expected argument 'are_primary_whitelisted_ips_used' to be a bool")
|
40
40
|
pulumi.set(__self__, "are_primary_whitelisted_ips_used", are_primary_whitelisted_ips_used)
|
41
|
+
if auto_refresh_frequency_in_seconds and not isinstance(auto_refresh_frequency_in_seconds, int):
|
42
|
+
raise TypeError("Expected argument 'auto_refresh_frequency_in_seconds' to be a int")
|
43
|
+
pulumi.set(__self__, "auto_refresh_frequency_in_seconds", auto_refresh_frequency_in_seconds)
|
44
|
+
if auto_refresh_point_lag_in_seconds and not isinstance(auto_refresh_point_lag_in_seconds, int):
|
45
|
+
raise TypeError("Expected argument 'auto_refresh_point_lag_in_seconds' to be a int")
|
46
|
+
pulumi.set(__self__, "auto_refresh_point_lag_in_seconds", auto_refresh_point_lag_in_seconds)
|
41
47
|
if autonomous_container_database_id and not isinstance(autonomous_container_database_id, str):
|
42
48
|
raise TypeError("Expected argument 'autonomous_container_database_id' to be a str")
|
43
49
|
pulumi.set(__self__, "autonomous_container_database_id", autonomous_container_database_id)
|
@@ -362,6 +368,9 @@ class GetAutonomousDatabaseResult:
|
|
362
368
|
if time_maintenance_end and not isinstance(time_maintenance_end, str):
|
363
369
|
raise TypeError("Expected argument 'time_maintenance_end' to be a str")
|
364
370
|
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
371
|
+
if time_of_auto_refresh_start and not isinstance(time_of_auto_refresh_start, str):
|
372
|
+
raise TypeError("Expected argument 'time_of_auto_refresh_start' to be a str")
|
373
|
+
pulumi.set(__self__, "time_of_auto_refresh_start", time_of_auto_refresh_start)
|
365
374
|
if time_of_joining_resource_pool and not isinstance(time_of_joining_resource_pool, str):
|
366
375
|
raise TypeError("Expected argument 'time_of_joining_resource_pool' to be a str")
|
367
376
|
pulumi.set(__self__, "time_of_joining_resource_pool", time_of_joining_resource_pool)
|
@@ -445,11 +454,27 @@ class GetAutonomousDatabaseResult:
|
|
445
454
|
"""
|
446
455
|
return pulumi.get(self, "are_primary_whitelisted_ips_used")
|
447
456
|
|
457
|
+
@property
|
458
|
+
@pulumi.getter(name="autoRefreshFrequencyInSeconds")
|
459
|
+
def auto_refresh_frequency_in_seconds(self) -> int:
|
460
|
+
"""
|
461
|
+
The frequency a refreshable clone is refreshed after auto-refresh is enabled. The minimum is 1 hour. The maximum is 7 days. The date and time that auto-refresh is enabled is controlled by the `timeOfAutoRefreshStart` parameter.
|
462
|
+
"""
|
463
|
+
return pulumi.get(self, "auto_refresh_frequency_in_seconds")
|
464
|
+
|
465
|
+
@property
|
466
|
+
@pulumi.getter(name="autoRefreshPointLagInSeconds")
|
467
|
+
def auto_refresh_point_lag_in_seconds(self) -> int:
|
468
|
+
"""
|
469
|
+
The time, in seconds, the data of the refreshable clone lags the primary database at the point of refresh. The minimum is 0 minutes (0 mins means refresh to the latest available timestamp). The maximum is 7 days. The lag time increases after refreshing until the next data refresh happens.
|
470
|
+
"""
|
471
|
+
return pulumi.get(self, "auto_refresh_point_lag_in_seconds")
|
472
|
+
|
448
473
|
@property
|
449
474
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
450
475
|
def autonomous_container_database_id(self) -> str:
|
451
476
|
"""
|
452
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
477
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
453
478
|
"""
|
454
479
|
return pulumi.get(self, "autonomous_container_database_id")
|
455
480
|
|
@@ -1278,6 +1303,14 @@ class GetAutonomousDatabaseResult:
|
|
1278
1303
|
"""
|
1279
1304
|
return pulumi.get(self, "time_maintenance_end")
|
1280
1305
|
|
1306
|
+
@property
|
1307
|
+
@pulumi.getter(name="timeOfAutoRefreshStart")
|
1308
|
+
def time_of_auto_refresh_start(self) -> str:
|
1309
|
+
"""
|
1310
|
+
The the date and time that auto-refreshing will begin for an Autonomous Database refreshable clone. This value controls only the start time for the first refresh operation. Subsequent (ongoing) refresh operations have start times controlled by the value of the `autoRefreshFrequencyInSeconds` parameter.
|
1311
|
+
"""
|
1312
|
+
return pulumi.get(self, "time_of_auto_refresh_start")
|
1313
|
+
|
1281
1314
|
@property
|
1282
1315
|
@pulumi.getter(name="timeOfJoiningResourcePool")
|
1283
1316
|
def time_of_joining_resource_pool(self) -> str:
|
@@ -1404,6 +1437,8 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1404
1437
|
allocated_storage_size_in_tbs=self.allocated_storage_size_in_tbs,
|
1405
1438
|
apex_details=self.apex_details,
|
1406
1439
|
are_primary_whitelisted_ips_used=self.are_primary_whitelisted_ips_used,
|
1440
|
+
auto_refresh_frequency_in_seconds=self.auto_refresh_frequency_in_seconds,
|
1441
|
+
auto_refresh_point_lag_in_seconds=self.auto_refresh_point_lag_in_seconds,
|
1407
1442
|
autonomous_container_database_id=self.autonomous_container_database_id,
|
1408
1443
|
autonomous_database_backup_id=self.autonomous_database_backup_id,
|
1409
1444
|
autonomous_database_id=self.autonomous_database_id,
|
@@ -1512,6 +1547,7 @@ class AwaitableGetAutonomousDatabaseResult(GetAutonomousDatabaseResult):
|
|
1512
1547
|
time_local_data_guard_enabled=self.time_local_data_guard_enabled,
|
1513
1548
|
time_maintenance_begin=self.time_maintenance_begin,
|
1514
1549
|
time_maintenance_end=self.time_maintenance_end,
|
1550
|
+
time_of_auto_refresh_start=self.time_of_auto_refresh_start,
|
1515
1551
|
time_of_joining_resource_pool=self.time_of_joining_resource_pool,
|
1516
1552
|
time_of_last_failover=self.time_of_last_failover,
|
1517
1553
|
time_of_last_refresh=self.time_of_last_refresh,
|
@@ -1561,6 +1597,8 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
|
|
1561
1597
|
allocated_storage_size_in_tbs=pulumi.get(__ret__, 'allocated_storage_size_in_tbs'),
|
1562
1598
|
apex_details=pulumi.get(__ret__, 'apex_details'),
|
1563
1599
|
are_primary_whitelisted_ips_used=pulumi.get(__ret__, 'are_primary_whitelisted_ips_used'),
|
1600
|
+
auto_refresh_frequency_in_seconds=pulumi.get(__ret__, 'auto_refresh_frequency_in_seconds'),
|
1601
|
+
auto_refresh_point_lag_in_seconds=pulumi.get(__ret__, 'auto_refresh_point_lag_in_seconds'),
|
1564
1602
|
autonomous_container_database_id=pulumi.get(__ret__, 'autonomous_container_database_id'),
|
1565
1603
|
autonomous_database_backup_id=pulumi.get(__ret__, 'autonomous_database_backup_id'),
|
1566
1604
|
autonomous_database_id=pulumi.get(__ret__, 'autonomous_database_id'),
|
@@ -1669,6 +1707,7 @@ def get_autonomous_database(autonomous_database_id: Optional[str] = None,
|
|
1669
1707
|
time_local_data_guard_enabled=pulumi.get(__ret__, 'time_local_data_guard_enabled'),
|
1670
1708
|
time_maintenance_begin=pulumi.get(__ret__, 'time_maintenance_begin'),
|
1671
1709
|
time_maintenance_end=pulumi.get(__ret__, 'time_maintenance_end'),
|
1710
|
+
time_of_auto_refresh_start=pulumi.get(__ret__, 'time_of_auto_refresh_start'),
|
1672
1711
|
time_of_joining_resource_pool=pulumi.get(__ret__, 'time_of_joining_resource_pool'),
|
1673
1712
|
time_of_last_failover=pulumi.get(__ret__, 'time_of_last_failover'),
|
1674
1713
|
time_of_last_refresh=pulumi.get(__ret__, 'time_of_last_refresh'),
|
@@ -74,7 +74,7 @@ class GetAutonomousDatabasesResult:
|
|
74
74
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
75
75
|
def autonomous_container_database_id(self) -> Optional[str]:
|
76
76
|
"""
|
77
|
-
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
77
|
+
The Autonomous Container Database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
78
78
|
"""
|
79
79
|
return pulumi.get(self, "autonomous_container_database_id")
|
80
80
|
|