pulumi-oci 1.39.0a1717740308__py3-none-any.whl → 1.39.0a1717785264__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 +11 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +44 -4
- pulumi_oci/database/autonomous_database.py +61 -14
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +25 -7
- pulumi_oci/database/get_autonomous_character_sets.py +4 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_database_peers.py +133 -0
- pulumi_oci/database/outputs.py +102 -6
- pulumi_oci/demandsignal/__init__.py +12 -0
- pulumi_oci/demandsignal/_inputs.py +267 -0
- pulumi_oci/demandsignal/get_occ_demand_signal.py +259 -0
- pulumi_oci/demandsignal/get_occ_demand_signals.py +183 -0
- pulumi_oci/demandsignal/occ_demand_signal.py +630 -0
- pulumi_oci/demandsignal/outputs.py +700 -0
- pulumi_oci/goldengate/_inputs.py +219 -6
- pulumi_oci/goldengate/connection.py +334 -0
- pulumi_oci/goldengate/connection_assignment.py +68 -19
- pulumi_oci/goldengate/deployment.py +88 -7
- pulumi_oci/goldengate/deployment_backup.py +122 -3
- pulumi_oci/goldengate/deployment_certificate.py +59 -10
- pulumi_oci/goldengate/get_connection.py +80 -1
- pulumi_oci/goldengate/get_connection_assignment.py +11 -1
- pulumi_oci/goldengate/get_deployment.py +25 -2
- pulumi_oci/goldengate/get_deployment_backup.py +38 -1
- pulumi_oci/goldengate/get_deployment_certificate.py +12 -2
- pulumi_oci/goldengate/get_deployment_certificates.py +3 -0
- pulumi_oci/goldengate/get_trail_files.py +2 -2
- pulumi_oci/goldengate/get_trail_sequences.py +2 -2
- pulumi_oci/goldengate/outputs.py +720 -12
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/METADATA +1 -1
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/RECORD +35 -28
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.39.0a1717740308.dist-info → pulumi_oci-1.39.0a1717785264.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -93,6 +93,8 @@ if typing.TYPE_CHECKING:
|
|
93
93
|
datasafe = __datasafe
|
94
94
|
import pulumi_oci.datascience as __datascience
|
95
95
|
datascience = __datascience
|
96
|
+
import pulumi_oci.demandsignal as __demandsignal
|
97
|
+
demandsignal = __demandsignal
|
96
98
|
import pulumi_oci.devops as __devops
|
97
99
|
devops = __devops
|
98
100
|
import pulumi_oci.disasterrecovery as __disasterrecovery
|
@@ -280,6 +282,7 @@ else:
|
|
280
282
|
datalabellingservice = _utilities.lazy_import('pulumi_oci.datalabellingservice')
|
281
283
|
datasafe = _utilities.lazy_import('pulumi_oci.datasafe')
|
282
284
|
datascience = _utilities.lazy_import('pulumi_oci.datascience')
|
285
|
+
demandsignal = _utilities.lazy_import('pulumi_oci.demandsignal')
|
283
286
|
devops = _utilities.lazy_import('pulumi_oci.devops')
|
284
287
|
disasterrecovery = _utilities.lazy_import('pulumi_oci.disasterrecovery')
|
285
288
|
dns = _utilities.lazy_import('pulumi_oci.dns')
|
@@ -3108,6 +3111,14 @@ _utilities.register(
|
|
3108
3111
|
"oci:DatabaseTools/databaseToolsPrivateEndpoint:DatabaseToolsPrivateEndpoint": "DatabaseToolsPrivateEndpoint"
|
3109
3112
|
}
|
3110
3113
|
},
|
3114
|
+
{
|
3115
|
+
"pkg": "oci",
|
3116
|
+
"mod": "DemandSignal/occDemandSignal",
|
3117
|
+
"fqn": "pulumi_oci.demandsignal",
|
3118
|
+
"classes": {
|
3119
|
+
"oci:DemandSignal/occDemandSignal:OccDemandSignal": "OccDemandSignal"
|
3120
|
+
}
|
3121
|
+
},
|
3111
3122
|
{
|
3112
3123
|
"pkg": "oci",
|
3113
3124
|
"mod": "DevOps/buildPipeline",
|
pulumi_oci/database/__init__.py
CHANGED
@@ -71,6 +71,7 @@ from .get_autonomous_database_backups import *
|
|
71
71
|
from .get_autonomous_database_dataguard_association import *
|
72
72
|
from .get_autonomous_database_dataguard_associations import *
|
73
73
|
from .get_autonomous_database_instance_wallet_management import *
|
74
|
+
from .get_autonomous_database_peers import *
|
74
75
|
from .get_autonomous_database_refreshable_clones import *
|
75
76
|
from .get_autonomous_database_regional_wallet_management import *
|
76
77
|
from .get_autonomous_database_software_image import *
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -172,6 +172,7 @@ __all__ = [
|
|
172
172
|
'GetAutonomousContainerPatchesFilterArgs',
|
173
173
|
'GetAutonomousDatabaseBackupsFilterArgs',
|
174
174
|
'GetAutonomousDatabaseDataguardAssociationsFilterArgs',
|
175
|
+
'GetAutonomousDatabasePeersFilterArgs',
|
175
176
|
'GetAutonomousDatabaseRefreshableClonesFilterArgs',
|
176
177
|
'GetAutonomousDatabaseSoftwareImagesFilterArgs',
|
177
178
|
'GetAutonomousDatabasesClonesFilterArgs',
|
@@ -1811,7 +1812,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
1811
1812
|
:param pulumi.Input[str] id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
1812
1813
|
:param pulumi.Input[str] kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
1813
1814
|
:param pulumi.Input[str] time_activated: The date and time the kms key activated.
|
1814
|
-
: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).
|
1815
|
+
: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).
|
1815
1816
|
"""
|
1816
1817
|
if id is not None:
|
1817
1818
|
pulumi.set(__self__, "id", id)
|
@@ -1862,7 +1863,7 @@ class AutonomousDatabaseKeyHistoryEntryArgs:
|
|
1862
1863
|
@pulumi.getter(name="vaultId")
|
1863
1864
|
def vault_id(self) -> Optional[pulumi.Input[str]]:
|
1864
1865
|
"""
|
1865
|
-
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).
|
1866
|
+
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).
|
1866
1867
|
"""
|
1867
1868
|
return pulumi.get(self, "vault_id")
|
1868
1869
|
|
@@ -2037,7 +2038,7 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
|
|
2037
2038
|
is_snapshot_standby: Optional[pulumi.Input[bool]] = None,
|
2038
2039
|
time_snapshot_standby_enabled_till: Optional[pulumi.Input[str]] = None):
|
2039
2040
|
"""
|
2040
|
-
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the
|
2041
|
+
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
|
2041
2042
|
:param pulumi.Input[bool] is_replicate_automatic_backups: If true, 7 days worth of backups are replicated across regions for Cross-Region ADB or Backup-Based DR between Primary and Standby. If false, the backups taken on the Primary are not replicated to the Standby database.
|
2042
2043
|
:param pulumi.Input[bool] is_snapshot_standby: Indicates if user wants to convert to a snapshot standby. For example, true would set a standby database to snapshot standby database. False would set a snapshot standby database back to regular standby database.
|
2043
2044
|
:param pulumi.Input[str] time_snapshot_standby_enabled_till: Time and date stored as an RFC 3339 formatted timestamp string. For example, 2022-01-01T12:00:00.000Z would set a limit for the snapshot standby to be converted back to a cross-region standby database.
|
@@ -2055,7 +2056,7 @@ class AutonomousDatabaseRemoteDisasterRecoveryConfigurationArgs:
|
|
2055
2056
|
@pulumi.getter(name="disasterRecoveryType")
|
2056
2057
|
def disaster_recovery_type(self) -> Optional[pulumi.Input[str]]:
|
2057
2058
|
"""
|
2058
|
-
Indicates the disaster recovery (DR) type of the
|
2059
|
+
Indicates the disaster recovery (DR) type of the standby 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.
|
2059
2060
|
"""
|
2060
2061
|
return pulumi.get(self, "disaster_recovery_type")
|
2061
2062
|
|
@@ -11526,6 +11527,45 @@ class GetAutonomousDatabaseDataguardAssociationsFilterArgs:
|
|
11526
11527
|
pulumi.set(self, "regex", value)
|
11527
11528
|
|
11528
11529
|
|
11530
|
+
@pulumi.input_type
|
11531
|
+
class GetAutonomousDatabasePeersFilterArgs:
|
11532
|
+
def __init__(__self__, *,
|
11533
|
+
name: str,
|
11534
|
+
values: Sequence[str],
|
11535
|
+
regex: Optional[bool] = None):
|
11536
|
+
pulumi.set(__self__, "name", name)
|
11537
|
+
pulumi.set(__self__, "values", values)
|
11538
|
+
if regex is not None:
|
11539
|
+
pulumi.set(__self__, "regex", regex)
|
11540
|
+
|
11541
|
+
@property
|
11542
|
+
@pulumi.getter
|
11543
|
+
def name(self) -> str:
|
11544
|
+
return pulumi.get(self, "name")
|
11545
|
+
|
11546
|
+
@name.setter
|
11547
|
+
def name(self, value: str):
|
11548
|
+
pulumi.set(self, "name", value)
|
11549
|
+
|
11550
|
+
@property
|
11551
|
+
@pulumi.getter
|
11552
|
+
def values(self) -> Sequence[str]:
|
11553
|
+
return pulumi.get(self, "values")
|
11554
|
+
|
11555
|
+
@values.setter
|
11556
|
+
def values(self, value: Sequence[str]):
|
11557
|
+
pulumi.set(self, "values", value)
|
11558
|
+
|
11559
|
+
@property
|
11560
|
+
@pulumi.getter
|
11561
|
+
def regex(self) -> Optional[bool]:
|
11562
|
+
return pulumi.get(self, "regex")
|
11563
|
+
|
11564
|
+
@regex.setter
|
11565
|
+
def regex(self, value: Optional[bool]):
|
11566
|
+
pulumi.set(self, "regex", value)
|
11567
|
+
|
11568
|
+
|
11529
11569
|
@pulumi.input_type
|
11530
11570
|
class GetAutonomousDatabaseRefreshableClonesFilterArgs:
|
11531
11571
|
def __init__(__self__, *,
|
@@ -42,6 +42,7 @@ class AutonomousDatabaseArgs:
|
|
42
42
|
db_version: Optional[pulumi.Input[str]] = None,
|
43
43
|
db_workload: Optional[pulumi.Input[str]] = None,
|
44
44
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
45
|
+
disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
45
46
|
display_name: Optional[pulumi.Input[str]] = None,
|
46
47
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
47
48
|
in_memory_percentage: Optional[pulumi.Input[int]] = None,
|
@@ -147,6 +148,7 @@ class AutonomousDatabaseArgs:
|
|
147
148
|
|
148
149
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. *Note: `db_workload` can only be updated from AJD to OLTP or from a free OLTP to AJD.
|
149
150
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
151
|
+
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
|
150
152
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
151
153
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
152
154
|
:param pulumi.Input[int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
|
@@ -240,8 +242,8 @@ class AutonomousDatabaseArgs:
|
|
240
242
|
: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.
|
241
243
|
: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.
|
242
244
|
:param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
|
243
|
-
: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).
|
244
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for [
|
245
|
+
: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).
|
246
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
245
247
|
|
246
248
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
247
249
|
|
@@ -299,6 +301,8 @@ class AutonomousDatabaseArgs:
|
|
299
301
|
pulumi.set(__self__, "db_workload", db_workload)
|
300
302
|
if defined_tags is not None:
|
301
303
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
304
|
+
if disaster_recovery_type is not None:
|
305
|
+
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
302
306
|
if display_name is not None:
|
303
307
|
pulumi.set(__self__, "display_name", display_name)
|
304
308
|
if freeform_tags is not None:
|
@@ -742,6 +746,18 @@ class AutonomousDatabaseArgs:
|
|
742
746
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
743
747
|
pulumi.set(self, "defined_tags", value)
|
744
748
|
|
749
|
+
@property
|
750
|
+
@pulumi.getter(name="disasterRecoveryType")
|
751
|
+
def disaster_recovery_type(self) -> Optional[pulumi.Input[str]]:
|
752
|
+
"""
|
753
|
+
Indicates the disaster recovery (DR) type of the standby 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.
|
754
|
+
"""
|
755
|
+
return pulumi.get(self, "disaster_recovery_type")
|
756
|
+
|
757
|
+
@disaster_recovery_type.setter
|
758
|
+
def disaster_recovery_type(self, value: Optional[pulumi.Input[str]]):
|
759
|
+
pulumi.set(self, "disaster_recovery_type", value)
|
760
|
+
|
745
761
|
@property
|
746
762
|
@pulumi.getter(name="displayName")
|
747
763
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -1368,7 +1384,7 @@ class AutonomousDatabaseArgs:
|
|
1368
1384
|
@pulumi.getter(name="vaultId")
|
1369
1385
|
def vault_id(self) -> Optional[pulumi.Input[str]]:
|
1370
1386
|
"""
|
1371
|
-
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).
|
1387
|
+
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).
|
1372
1388
|
"""
|
1373
1389
|
return pulumi.get(self, "vault_id")
|
1374
1390
|
|
@@ -1380,7 +1396,7 @@ class AutonomousDatabaseArgs:
|
|
1380
1396
|
@pulumi.getter(name="whitelistedIps")
|
1381
1397
|
def whitelisted_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1382
1398
|
"""
|
1383
|
-
(Updatable) The client IP access control list (ACL). This feature is available for [
|
1399
|
+
(Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
1384
1400
|
|
1385
1401
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
1386
1402
|
|
@@ -1433,6 +1449,7 @@ class _AutonomousDatabaseState:
|
|
1433
1449
|
db_workload: Optional[pulumi.Input[str]] = None,
|
1434
1450
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
1435
1451
|
disaster_recovery_region_type: Optional[pulumi.Input[str]] = None,
|
1452
|
+
disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
1436
1453
|
display_name: Optional[pulumi.Input[str]] = None,
|
1437
1454
|
failed_data_recovery_in_seconds: Optional[pulumi.Input[int]] = None,
|
1438
1455
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -1592,6 +1609,7 @@ class _AutonomousDatabaseState:
|
|
1592
1609
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. *Note: `db_workload` can only be updated from AJD to OLTP or from a free OLTP to AJD.
|
1593
1610
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
1594
1611
|
:param pulumi.Input[str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
1612
|
+
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
|
1595
1613
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
1596
1614
|
:param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
1597
1615
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
@@ -1729,8 +1747,8 @@ class _AutonomousDatabaseState:
|
|
1729
1747
|
:param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
|
1730
1748
|
:param pulumi.Input[int] used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
|
1731
1749
|
:param pulumi.Input[int] used_data_storage_size_in_tbs: The amount of storage that has been used, in terabytes.
|
1732
|
-
: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).
|
1733
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for [
|
1750
|
+
: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).
|
1751
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
1734
1752
|
|
1735
1753
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
1736
1754
|
|
@@ -1808,6 +1826,8 @@ class _AutonomousDatabaseState:
|
|
1808
1826
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
1809
1827
|
if disaster_recovery_region_type is not None:
|
1810
1828
|
pulumi.set(__self__, "disaster_recovery_region_type", disaster_recovery_region_type)
|
1829
|
+
if disaster_recovery_type is not None:
|
1830
|
+
pulumi.set(__self__, "disaster_recovery_type", disaster_recovery_type)
|
1811
1831
|
if display_name is not None:
|
1812
1832
|
pulumi.set(__self__, "display_name", display_name)
|
1813
1833
|
if failed_data_recovery_in_seconds is not None:
|
@@ -2449,6 +2469,18 @@ class _AutonomousDatabaseState:
|
|
2449
2469
|
def disaster_recovery_region_type(self, value: Optional[pulumi.Input[str]]):
|
2450
2470
|
pulumi.set(self, "disaster_recovery_region_type", value)
|
2451
2471
|
|
2472
|
+
@property
|
2473
|
+
@pulumi.getter(name="disasterRecoveryType")
|
2474
|
+
def disaster_recovery_type(self) -> Optional[pulumi.Input[str]]:
|
2475
|
+
"""
|
2476
|
+
Indicates the disaster recovery (DR) type of the standby 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.
|
2477
|
+
"""
|
2478
|
+
return pulumi.get(self, "disaster_recovery_type")
|
2479
|
+
|
2480
|
+
@disaster_recovery_type.setter
|
2481
|
+
def disaster_recovery_type(self, value: Optional[pulumi.Input[str]]):
|
2482
|
+
pulumi.set(self, "disaster_recovery_type", value)
|
2483
|
+
|
2452
2484
|
@property
|
2453
2485
|
@pulumi.getter(name="displayName")
|
2454
2486
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
@@ -3612,7 +3644,7 @@ class _AutonomousDatabaseState:
|
|
3612
3644
|
@pulumi.getter(name="vaultId")
|
3613
3645
|
def vault_id(self) -> Optional[pulumi.Input[str]]:
|
3614
3646
|
"""
|
3615
|
-
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).
|
3647
|
+
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).
|
3616
3648
|
"""
|
3617
3649
|
return pulumi.get(self, "vault_id")
|
3618
3650
|
|
@@ -3624,7 +3656,7 @@ class _AutonomousDatabaseState:
|
|
3624
3656
|
@pulumi.getter(name="whitelistedIps")
|
3625
3657
|
def whitelisted_ips(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
3626
3658
|
"""
|
3627
|
-
(Updatable) The client IP access control list (ACL). This feature is available for [
|
3659
|
+
(Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
3628
3660
|
|
3629
3661
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
3630
3662
|
|
@@ -3670,6 +3702,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3670
3702
|
db_version: Optional[pulumi.Input[str]] = None,
|
3671
3703
|
db_workload: Optional[pulumi.Input[str]] = None,
|
3672
3704
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
3705
|
+
disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
3673
3706
|
display_name: Optional[pulumi.Input[str]] = None,
|
3674
3707
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
3675
3708
|
in_memory_percentage: Optional[pulumi.Input[int]] = None,
|
@@ -3791,6 +3824,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3791
3824
|
|
3792
3825
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. *Note: `db_workload` can only be updated from AJD to OLTP or from a free OLTP to AJD.
|
3793
3826
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
3827
|
+
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
|
3794
3828
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
3795
3829
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
3796
3830
|
:param pulumi.Input[int] in_memory_percentage: (Updatable) The percentage of the System Global Area(SGA) assigned to In-Memory tables in Autonomous Database. This property is applicable only to Autonomous Databases on the Exadata Cloud@Customer platform.
|
@@ -3884,8 +3918,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3884
3918
|
: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.
|
3885
3919
|
: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.
|
3886
3920
|
:param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
|
3887
|
-
: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).
|
3888
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for [
|
3921
|
+
: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).
|
3922
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
3889
3923
|
|
3890
3924
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
3891
3925
|
|
@@ -3955,6 +3989,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3955
3989
|
db_version: Optional[pulumi.Input[str]] = None,
|
3956
3990
|
db_workload: Optional[pulumi.Input[str]] = None,
|
3957
3991
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
3992
|
+
disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
3958
3993
|
display_name: Optional[pulumi.Input[str]] = None,
|
3959
3994
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
3960
3995
|
in_memory_percentage: Optional[pulumi.Input[int]] = None,
|
@@ -4044,6 +4079,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4044
4079
|
__props__.__dict__["db_version"] = db_version
|
4045
4080
|
__props__.__dict__["db_workload"] = db_workload
|
4046
4081
|
__props__.__dict__["defined_tags"] = defined_tags
|
4082
|
+
__props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
|
4047
4083
|
__props__.__dict__["display_name"] = display_name
|
4048
4084
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
4049
4085
|
__props__.__dict__["in_memory_percentage"] = in_memory_percentage
|
@@ -4195,6 +4231,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4195
4231
|
db_workload: Optional[pulumi.Input[str]] = None,
|
4196
4232
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
4197
4233
|
disaster_recovery_region_type: Optional[pulumi.Input[str]] = None,
|
4234
|
+
disaster_recovery_type: Optional[pulumi.Input[str]] = None,
|
4198
4235
|
display_name: Optional[pulumi.Input[str]] = None,
|
4199
4236
|
failed_data_recovery_in_seconds: Optional[pulumi.Input[int]] = None,
|
4200
4237
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
@@ -4359,6 +4396,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4359
4396
|
This cannot be updated in parallel with any of the following: licenseModel, dbEdition, cpuCoreCount, computeCount, computeModel, adminPassword, whitelistedIps, isMTLSConnectionRequired, privateEndpointLabel, nsgIds, dbVersion, isRefreshable, dbName, scheduledOperations, dbToolsDetails, isLocalDataGuardEnabled, or isFreeTier. *Note: `db_workload` can only be updated from AJD to OLTP or from a free OLTP to AJD.
|
4360
4397
|
:param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm).
|
4361
4398
|
:param pulumi.Input[str] disaster_recovery_region_type: **Deprecated** The disaster recovery (DR) region type of the Autonomous Database. For Serverless Autonomous Databases, DR associations have designated primary (`PRIMARY`) and standby (`REMOTE`) regions. These region types do not change when the database changes roles. The standby region in DR associations can be the same region as the primary region, or they can be in a remote regions. Some database administration operations may be available only in the primary region of the DR association, and cannot be performed when the database using the primary role is operating in a remote region.
|
4399
|
+
:param pulumi.Input[str] disaster_recovery_type: Indicates the disaster recovery (DR) type of the standby 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.
|
4362
4400
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the Autonomous Database. The name does not have to be unique.
|
4363
4401
|
:param pulumi.Input[int] failed_data_recovery_in_seconds: Indicates the number of seconds of data loss for a Data Guard failover.
|
4364
4402
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
@@ -4496,8 +4534,8 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4496
4534
|
:param pulumi.Input[bool] use_latest_available_backup_time_stamp: Clone from latest available backup timestamp.
|
4497
4535
|
:param pulumi.Input[int] used_data_storage_size_in_gbs: The storage space consumed by Autonomous Database in GBs.
|
4498
4536
|
:param pulumi.Input[int] used_data_storage_size_in_tbs: The amount of storage that has been used, in terabytes.
|
4499
|
-
: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).
|
4500
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for [
|
4537
|
+
: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).
|
4538
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] whitelisted_ips: (Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
4501
4539
|
|
4502
4540
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
4503
4541
|
|
@@ -4544,6 +4582,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4544
4582
|
__props__.__dict__["db_workload"] = db_workload
|
4545
4583
|
__props__.__dict__["defined_tags"] = defined_tags
|
4546
4584
|
__props__.__dict__["disaster_recovery_region_type"] = disaster_recovery_region_type
|
4585
|
+
__props__.__dict__["disaster_recovery_type"] = disaster_recovery_type
|
4547
4586
|
__props__.__dict__["display_name"] = display_name
|
4548
4587
|
__props__.__dict__["failed_data_recovery_in_seconds"] = failed_data_recovery_in_seconds
|
4549
4588
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
@@ -4948,6 +4987,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4948
4987
|
"""
|
4949
4988
|
return pulumi.get(self, "disaster_recovery_region_type")
|
4950
4989
|
|
4990
|
+
@property
|
4991
|
+
@pulumi.getter(name="disasterRecoveryType")
|
4992
|
+
def disaster_recovery_type(self) -> pulumi.Output[str]:
|
4993
|
+
"""
|
4994
|
+
Indicates the disaster recovery (DR) type of the standby 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.
|
4995
|
+
"""
|
4996
|
+
return pulumi.get(self, "disaster_recovery_type")
|
4997
|
+
|
4951
4998
|
@property
|
4952
4999
|
@pulumi.getter(name="displayName")
|
4953
5000
|
def display_name(self) -> pulumi.Output[str]:
|
@@ -5739,7 +5786,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5739
5786
|
@pulumi.getter(name="vaultId")
|
5740
5787
|
def vault_id(self) -> pulumi.Output[str]:
|
5741
5788
|
"""
|
5742
|
-
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).
|
5789
|
+
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).
|
5743
5790
|
"""
|
5744
5791
|
return pulumi.get(self, "vault_id")
|
5745
5792
|
|
@@ -5747,7 +5794,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5747
5794
|
@pulumi.getter(name="whitelistedIps")
|
5748
5795
|
def whitelisted_ips(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
5749
5796
|
"""
|
5750
|
-
(Updatable) The client IP access control list (ACL). This feature is available for [
|
5797
|
+
(Updatable) The client IP access control list (ACL). This feature is available for autonomous databases on [shared Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) and on Exadata Cloud@Customer. Only clients connecting from an IP address included in the ACL may access the Autonomous Database instance.
|
5751
5798
|
|
5752
5799
|
For Autonomous Database Serverless instances, this is an array of CIDR (Classless Inter-Domain Routing) notations for a subnet or VCN OCID. Use a semicolon (;) as a deliminator between the VCN-specific subnets or IPs. Example: `["1.1.1.1","1.1.1.0/24","ocid1.vcn.oc1.sea.<unique_id>","ocid1.vcn.oc1.sea.<unique_id1>;1.1.1.1","ocid1.vcn.oc1.sea.<unique_id2>;1.1.0.0/16"]` For Exadata Cloud@Customer, this is an array of IP addresses or CIDR (Classless Inter-Domain Routing) notations. Example: `["1.1.1.1","1.1.1.0/24","1.1.2.25"]`
|
5753
5800
|
|
@@ -52,7 +52,9 @@ class CloudAutonomousVmClusterArgs:
|
|
52
52
|
:param pulumi.Input[str] description: (Updatable) User defined description of the cloud Autonomous VM cluster.
|
53
53
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
54
54
|
:param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
55
|
-
|
55
|
+
<<<<<<< HEAD
|
56
|
+
: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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
57
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
56
58
|
|
57
59
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
58
60
|
:param pulumi.Input['CloudAutonomousVmClusterMaintenanceWindowDetailsArgs'] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
@@ -255,6 +257,7 @@ class CloudAutonomousVmClusterArgs:
|
|
255
257
|
def is_mtls_enabled_vm_cluster(self) -> Optional[pulumi.Input[bool]]:
|
256
258
|
"""
|
257
259
|
Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
260
|
+
<<<<<<< HEAD
|
258
261
|
"""
|
259
262
|
return pulumi.get(self, "is_mtls_enabled_vm_cluster")
|
260
263
|
|
@@ -266,7 +269,8 @@ class CloudAutonomousVmClusterArgs:
|
|
266
269
|
@pulumi.getter(name="licenseModel")
|
267
270
|
def license_model(self) -> Optional[pulumi.Input[str]]:
|
268
271
|
"""
|
269
|
-
(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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
272
|
+
(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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
273
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
270
274
|
|
271
275
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
272
276
|
"""
|
@@ -450,9 +454,12 @@ class _CloudAutonomousVmClusterState:
|
|
450
454
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
451
455
|
:param pulumi.Input[str] hostname: The hostname for the cloud Autonomous VM cluster.
|
452
456
|
:param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
457
|
+
<<<<<<< HEAD
|
453
458
|
:param pulumi.Input[str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
454
459
|
:param pulumi.Input[str] last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
|
455
|
-
|
460
|
+
<<<<<<< HEAD
|
461
|
+
: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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
462
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
456
463
|
|
457
464
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
458
465
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
@@ -893,6 +900,7 @@ class _CloudAutonomousVmClusterState:
|
|
893
900
|
def is_mtls_enabled_vm_cluster(self) -> Optional[pulumi.Input[bool]]:
|
894
901
|
"""
|
895
902
|
Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
903
|
+
<<<<<<< HEAD
|
896
904
|
"""
|
897
905
|
return pulumi.get(self, "is_mtls_enabled_vm_cluster")
|
898
906
|
|
@@ -917,6 +925,7 @@ class _CloudAutonomousVmClusterState:
|
|
917
925
|
def last_update_history_entry_id(self) -> Optional[pulumi.Input[str]]:
|
918
926
|
"""
|
919
927
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
|
928
|
+
<<<<<<< HEAD
|
920
929
|
"""
|
921
930
|
return pulumi.get(self, "last_update_history_entry_id")
|
922
931
|
|
@@ -928,7 +937,8 @@ class _CloudAutonomousVmClusterState:
|
|
928
937
|
@pulumi.getter(name="licenseModel")
|
929
938
|
def license_model(self) -> Optional[pulumi.Input[str]]:
|
930
939
|
"""
|
931
|
-
(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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
940
|
+
(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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
941
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
932
942
|
|
933
943
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
934
944
|
"""
|
@@ -1369,7 +1379,9 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1369
1379
|
:param pulumi.Input[str] display_name: (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
|
1370
1380
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1371
1381
|
:param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
1372
|
-
|
1382
|
+
<<<<<<< HEAD
|
1383
|
+
: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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
1384
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
1373
1385
|
|
1374
1386
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
1375
1387
|
:param pulumi.Input[pulumi.InputType['CloudAutonomousVmClusterMaintenanceWindowDetailsArgs']] maintenance_window_details: (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
@@ -1655,9 +1667,12 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1655
1667
|
:param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1656
1668
|
:param pulumi.Input[str] hostname: The hostname for the cloud Autonomous VM cluster.
|
1657
1669
|
:param pulumi.Input[bool] is_mtls_enabled_vm_cluster: Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
1670
|
+
<<<<<<< HEAD
|
1658
1671
|
:param pulumi.Input[str] last_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance run.
|
1659
1672
|
:param pulumi.Input[str] last_update_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
|
1660
|
-
|
1673
|
+
<<<<<<< HEAD
|
1674
|
+
: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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
1675
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
1661
1676
|
|
1662
1677
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
1663
1678
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
@@ -1952,6 +1967,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1952
1967
|
def is_mtls_enabled_vm_cluster(self) -> pulumi.Output[bool]:
|
1953
1968
|
"""
|
1954
1969
|
Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
|
1970
|
+
<<<<<<< HEAD
|
1955
1971
|
"""
|
1956
1972
|
return pulumi.get(self, "is_mtls_enabled_vm_cluster")
|
1957
1973
|
|
@@ -1968,6 +1984,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1968
1984
|
def last_update_history_entry_id(self) -> pulumi.Output[str]:
|
1969
1985
|
"""
|
1970
1986
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last maintenance update history. This value is updated when a maintenance update starts.
|
1987
|
+
<<<<<<< HEAD
|
1971
1988
|
"""
|
1972
1989
|
return pulumi.get(self, "last_update_history_entry_id")
|
1973
1990
|
|
@@ -1975,7 +1992,8 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1975
1992
|
@pulumi.getter(name="licenseModel")
|
1976
1993
|
def license_model(self) -> pulumi.Output[str]:
|
1977
1994
|
"""
|
1978
|
-
(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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
1995
|
+
(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 services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an [Autonomous Database on dedicated Exadata infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html), this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to `BRING_YOUR_OWN_LICENSE`.
|
1996
|
+
>>>>>>> ee509575808 (Added - Support for ADB-S: Cross-Tenancy Autonomous Data Guard standby)
|
1979
1997
|
|
1980
1998
|
This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.
|
1981
1999
|
"""
|
@@ -119,6 +119,8 @@ def get_autonomous_character_sets(character_set_type: Optional[str] = None,
|
|
119
119
|
:param str character_set_type: Specifies whether this request pertains to database character sets or national character sets.
|
120
120
|
:param bool is_dedicated: Specifies if the request is for an Autonomous Database Dedicated instance. The default request is for an Autonomous Database Dedicated instance.
|
121
121
|
:param bool is_shared: Specifies whether this request is for Autonomous Database on Shared infrastructure. By default, this request will be for Autonomous Database on Dedicated Exadata Infrastructure.
|
122
|
+
|
123
|
+
:
|
122
124
|
"""
|
123
125
|
__args__ = dict()
|
124
126
|
__args__['characterSetType'] = character_set_type
|
@@ -163,5 +165,7 @@ def get_autonomous_character_sets_output(character_set_type: Optional[pulumi.Inp
|
|
163
165
|
:param str character_set_type: Specifies whether this request pertains to database character sets or national character sets.
|
164
166
|
:param bool is_dedicated: Specifies if the request is for an Autonomous Database Dedicated instance. The default request is for an Autonomous Database Dedicated instance.
|
165
167
|
:param bool is_shared: Specifies whether this request is for Autonomous Database on Shared infrastructure. By default, this request will be for Autonomous Database on Dedicated Exadata Infrastructure.
|
168
|
+
|
169
|
+
:
|
166
170
|
"""
|
167
171
|
...
|