pulumi-oci 3.5.0a1756327653__py3-none-any.whl → 3.5.0a1756440723__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 +80 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/database/_inputs.py +257 -12
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/outputs.py +575 -8
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +68 -2
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +6964 -192
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +35 -2
- pulumi_oci/oci/__init__.py +9 -0
- pulumi_oci/oci/_inputs.py +420 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1009 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -205,10 +205,14 @@ __all__ = [
|
|
205
205
|
'DatabaseDatabaseManagementConfigArgsDict',
|
206
206
|
'DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs',
|
207
207
|
'DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgsDict',
|
208
|
+
'DatabaseDatabaseStorageSizeDetailsArgs',
|
209
|
+
'DatabaseDatabaseStorageSizeDetailsArgsDict',
|
208
210
|
'DatabaseDbBackupConfigArgs',
|
209
211
|
'DatabaseDbBackupConfigArgsDict',
|
210
212
|
'DatabaseDbBackupConfigBackupDestinationDetailArgs',
|
211
213
|
'DatabaseDbBackupConfigBackupDestinationDetailArgsDict',
|
214
|
+
'DatabaseStorageSizeDetailArgs',
|
215
|
+
'DatabaseStorageSizeDetailArgsDict',
|
212
216
|
'DatabaseUpgradeConnectionStringArgs',
|
213
217
|
'DatabaseUpgradeConnectionStringArgsDict',
|
214
218
|
'DatabaseUpgradeDataGuardGroupArgs',
|
@@ -231,6 +235,8 @@ __all__ = [
|
|
231
235
|
'DbHomeDatabaseDbBackupConfigBackupDestinationDetailArgsDict',
|
232
236
|
'DbHomeDatabaseEncryptionKeyLocationDetailsArgs',
|
233
237
|
'DbHomeDatabaseEncryptionKeyLocationDetailsArgsDict',
|
238
|
+
'DbHomeDatabaseStorageSizeDetailsArgs',
|
239
|
+
'DbHomeDatabaseStorageSizeDetailsArgsDict',
|
234
240
|
'DbSystemDataCollectionOptionsArgs',
|
235
241
|
'DbSystemDataCollectionOptionsArgsDict',
|
236
242
|
'DbSystemDbHomeArgs',
|
@@ -10540,6 +10546,10 @@ if not MYPY:
|
|
10540
10546
|
"""
|
10541
10547
|
The TDE wallet password of the source database specified by 'sourceDatabaseId'.
|
10542
10548
|
"""
|
10549
|
+
storage_size_details: NotRequired[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgsDict']]
|
10550
|
+
"""
|
10551
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
10552
|
+
"""
|
10543
10553
|
tde_wallet_password: NotRequired[pulumi.Input[_builtins.str]]
|
10544
10554
|
"""
|
10545
10555
|
The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
|
@@ -10589,6 +10599,7 @@ class DatabaseDatabaseArgs:
|
|
10589
10599
|
source_database_id: Optional[pulumi.Input[_builtins.str]] = None,
|
10590
10600
|
source_encryption_key_location_details: Optional[pulumi.Input['DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs']] = None,
|
10591
10601
|
source_tde_wallet_password: Optional[pulumi.Input[_builtins.str]] = None,
|
10602
|
+
storage_size_details: Optional[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs']] = None,
|
10592
10603
|
tde_wallet_password: Optional[pulumi.Input[_builtins.str]] = None,
|
10593
10604
|
transport_type: Optional[pulumi.Input[_builtins.str]] = None,
|
10594
10605
|
vault_id: Optional[pulumi.Input[_builtins.str]] = None):
|
@@ -10623,6 +10634,7 @@ class DatabaseDatabaseArgs:
|
|
10623
10634
|
:param pulumi.Input[_builtins.str] source_database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the source database.
|
10624
10635
|
:param pulumi.Input['DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs'] source_encryption_key_location_details: Types of providers supported for managing database encryption keys
|
10625
10636
|
:param pulumi.Input[_builtins.str] source_tde_wallet_password: The TDE wallet password of the source database specified by 'sourceDatabaseId'.
|
10637
|
+
:param pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
10626
10638
|
:param pulumi.Input[_builtins.str] tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
|
10627
10639
|
:param pulumi.Input[_builtins.str] transport_type: The redo transport type to use for this Data Guard association. Valid values depend on the specified `protectionMode`:
|
10628
10640
|
* MAXIMUM_AVAILABILITY - SYNC or FASTSYNC
|
@@ -10682,6 +10694,8 @@ class DatabaseDatabaseArgs:
|
|
10682
10694
|
pulumi.set(__self__, "source_encryption_key_location_details", source_encryption_key_location_details)
|
10683
10695
|
if source_tde_wallet_password is not None:
|
10684
10696
|
pulumi.set(__self__, "source_tde_wallet_password", source_tde_wallet_password)
|
10697
|
+
if storage_size_details is not None:
|
10698
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
10685
10699
|
if tde_wallet_password is not None:
|
10686
10700
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
10687
10701
|
if transport_type is not None:
|
@@ -10983,6 +10997,18 @@ class DatabaseDatabaseArgs:
|
|
10983
10997
|
def source_tde_wallet_password(self, value: Optional[pulumi.Input[_builtins.str]]):
|
10984
10998
|
pulumi.set(self, "source_tde_wallet_password", value)
|
10985
10999
|
|
11000
|
+
@_builtins.property
|
11001
|
+
@pulumi.getter(name="storageSizeDetails")
|
11002
|
+
def storage_size_details(self) -> Optional[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs']]:
|
11003
|
+
"""
|
11004
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
11005
|
+
"""
|
11006
|
+
return pulumi.get(self, "storage_size_details")
|
11007
|
+
|
11008
|
+
@storage_size_details.setter
|
11009
|
+
def storage_size_details(self, value: Optional[pulumi.Input['DatabaseDatabaseStorageSizeDetailsArgs']]):
|
11010
|
+
pulumi.set(self, "storage_size_details", value)
|
11011
|
+
|
10986
11012
|
@_builtins.property
|
10987
11013
|
@pulumi.getter(name="tdeWalletPassword")
|
10988
11014
|
def tde_wallet_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -11530,6 +11556,76 @@ class DatabaseDatabaseSourceEncryptionKeyLocationDetailsArgs:
|
|
11530
11556
|
pulumi.set(self, "provider_type", value)
|
11531
11557
|
|
11532
11558
|
|
11559
|
+
if not MYPY:
|
11560
|
+
class DatabaseDatabaseStorageSizeDetailsArgsDict(TypedDict):
|
11561
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int]
|
11562
|
+
"""
|
11563
|
+
(Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
11564
|
+
"""
|
11565
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int]
|
11566
|
+
"""
|
11567
|
+
(Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
11568
|
+
"""
|
11569
|
+
redo_log_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
11570
|
+
"""
|
11571
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11572
|
+
"""
|
11573
|
+
elif False:
|
11574
|
+
DatabaseDatabaseStorageSizeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
11575
|
+
|
11576
|
+
@pulumi.input_type
|
11577
|
+
class DatabaseDatabaseStorageSizeDetailsArgs:
|
11578
|
+
def __init__(__self__, *,
|
11579
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int],
|
11580
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int],
|
11581
|
+
redo_log_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
11582
|
+
"""
|
11583
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: (Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
11584
|
+
:param pulumi.Input[_builtins.int] reco_storage_size_in_gbs: (Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
11585
|
+
:param pulumi.Input[_builtins.int] redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11586
|
+
"""
|
11587
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
11588
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
11589
|
+
if redo_log_storage_size_in_gbs is not None:
|
11590
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
11591
|
+
|
11592
|
+
@_builtins.property
|
11593
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
11594
|
+
def data_storage_size_in_gb(self) -> pulumi.Input[_builtins.int]:
|
11595
|
+
"""
|
11596
|
+
(Updatable) The DATA storage size, in gigabytes, that is applicable for the database.
|
11597
|
+
"""
|
11598
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
11599
|
+
|
11600
|
+
@data_storage_size_in_gb.setter
|
11601
|
+
def data_storage_size_in_gb(self, value: pulumi.Input[_builtins.int]):
|
11602
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
11603
|
+
|
11604
|
+
@_builtins.property
|
11605
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
11606
|
+
def reco_storage_size_in_gbs(self) -> pulumi.Input[_builtins.int]:
|
11607
|
+
"""
|
11608
|
+
(Updatable) The RECO storage size, in gigabytes, that is applicable for the database.
|
11609
|
+
"""
|
11610
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
11611
|
+
|
11612
|
+
@reco_storage_size_in_gbs.setter
|
11613
|
+
def reco_storage_size_in_gbs(self, value: pulumi.Input[_builtins.int]):
|
11614
|
+
pulumi.set(self, "reco_storage_size_in_gbs", value)
|
11615
|
+
|
11616
|
+
@_builtins.property
|
11617
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
11618
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
11619
|
+
"""
|
11620
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11621
|
+
"""
|
11622
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
11623
|
+
|
11624
|
+
@redo_log_storage_size_in_gbs.setter
|
11625
|
+
def redo_log_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
11626
|
+
pulumi.set(self, "redo_log_storage_size_in_gbs", value)
|
11627
|
+
|
11628
|
+
|
11533
11629
|
if not MYPY:
|
11534
11630
|
class DatabaseDbBackupConfigArgsDict(TypedDict):
|
11535
11631
|
auto_backup_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -11854,6 +11950,78 @@ class DatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
11854
11950
|
pulumi.set(self, "vpc_user", value)
|
11855
11951
|
|
11856
11952
|
|
11953
|
+
if not MYPY:
|
11954
|
+
class DatabaseStorageSizeDetailArgsDict(TypedDict):
|
11955
|
+
data_storage_size_in_gb: NotRequired[pulumi.Input[_builtins.int]]
|
11956
|
+
"""
|
11957
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
11958
|
+
"""
|
11959
|
+
reco_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
11960
|
+
"""
|
11961
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
11962
|
+
"""
|
11963
|
+
redo_log_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
11964
|
+
"""
|
11965
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11966
|
+
"""
|
11967
|
+
elif False:
|
11968
|
+
DatabaseStorageSizeDetailArgsDict: TypeAlias = Mapping[str, Any]
|
11969
|
+
|
11970
|
+
@pulumi.input_type
|
11971
|
+
class DatabaseStorageSizeDetailArgs:
|
11972
|
+
def __init__(__self__, *,
|
11973
|
+
data_storage_size_in_gb: Optional[pulumi.Input[_builtins.int]] = None,
|
11974
|
+
reco_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
11975
|
+
redo_log_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
11976
|
+
"""
|
11977
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
11978
|
+
:param pulumi.Input[_builtins.int] reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
11979
|
+
:param pulumi.Input[_builtins.int] redo_log_storage_size_in_gbs: The REDO Log storage size, in gigabytes, that is applicable for the database.
|
11980
|
+
"""
|
11981
|
+
if data_storage_size_in_gb is not None:
|
11982
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
11983
|
+
if reco_storage_size_in_gbs is not None:
|
11984
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
11985
|
+
if redo_log_storage_size_in_gbs is not None:
|
11986
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
11987
|
+
|
11988
|
+
@_builtins.property
|
11989
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
11990
|
+
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
|
11991
|
+
"""
|
11992
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
11993
|
+
"""
|
11994
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
11995
|
+
|
11996
|
+
@data_storage_size_in_gb.setter
|
11997
|
+
def data_storage_size_in_gb(self, value: Optional[pulumi.Input[_builtins.int]]):
|
11998
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
11999
|
+
|
12000
|
+
@_builtins.property
|
12001
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
12002
|
+
def reco_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
12003
|
+
"""
|
12004
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
12005
|
+
"""
|
12006
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
12007
|
+
|
12008
|
+
@reco_storage_size_in_gbs.setter
|
12009
|
+
def reco_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
12010
|
+
pulumi.set(self, "reco_storage_size_in_gbs", value)
|
12011
|
+
|
12012
|
+
@_builtins.property
|
12013
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
12014
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
12015
|
+
"""
|
12016
|
+
The REDO Log storage size, in gigabytes, that is applicable for the database.
|
12017
|
+
"""
|
12018
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
12019
|
+
|
12020
|
+
@redo_log_storage_size_in_gbs.setter
|
12021
|
+
def redo_log_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
12022
|
+
pulumi.set(self, "redo_log_storage_size_in_gbs", value)
|
12023
|
+
|
12024
|
+
|
11857
12025
|
if not MYPY:
|
11858
12026
|
class DatabaseUpgradeConnectionStringArgsDict(TypedDict):
|
11859
12027
|
all_connection_strings: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]]
|
@@ -12739,6 +12907,10 @@ if not MYPY:
|
|
12739
12907
|
"""
|
12740
12908
|
The current state of the Database Home.
|
12741
12909
|
"""
|
12910
|
+
storage_size_details: NotRequired[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgsDict']]
|
12911
|
+
"""
|
12912
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
12913
|
+
"""
|
12742
12914
|
tde_wallet_password: NotRequired[pulumi.Input[_builtins.str]]
|
12743
12915
|
"""
|
12744
12916
|
The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
|
@@ -12786,6 +12958,7 @@ class DbHomeDatabaseArgs:
|
|
12786
12958
|
pluggable_databases: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
12787
12959
|
sid_prefix: Optional[pulumi.Input[_builtins.str]] = None,
|
12788
12960
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
12961
|
+
storage_size_details: Optional[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs']] = None,
|
12789
12962
|
tde_wallet_password: Optional[pulumi.Input[_builtins.str]] = None,
|
12790
12963
|
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
12791
12964
|
time_stamp_for_point_in_time_recovery: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -12818,6 +12991,7 @@ class DbHomeDatabaseArgs:
|
|
12818
12991
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] pluggable_databases: The list of pluggable databases that needs to be restored into new database.
|
12819
12992
|
:param pulumi.Input[_builtins.str] sid_prefix: Specifies a prefix for the `Oracle SID` of the database to be created.
|
12820
12993
|
:param pulumi.Input[_builtins.str] state: The current state of the Database Home.
|
12994
|
+
:param pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs'] storage_size_details: The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
12821
12995
|
:param pulumi.Input[_builtins.str] tde_wallet_password: The optional password to open the TDE wallet. The password must be at least nine characters and contain at least two uppercase, two lowercase, two numeric, and two special characters. The special characters must be _, \\#, or -.
|
12822
12996
|
:param pulumi.Input[_builtins.str] time_created: The date and time the Database Home was created.
|
12823
12997
|
:param pulumi.Input[_builtins.str] time_stamp_for_point_in_time_recovery: The point in time of the original database from which the new database is created. If not specifed, the latest backup is used to create the database.
|
@@ -12872,6 +13046,8 @@ class DbHomeDatabaseArgs:
|
|
12872
13046
|
pulumi.set(__self__, "sid_prefix", sid_prefix)
|
12873
13047
|
if state is not None:
|
12874
13048
|
pulumi.set(__self__, "state", state)
|
13049
|
+
if storage_size_details is not None:
|
13050
|
+
pulumi.set(__self__, "storage_size_details", storage_size_details)
|
12875
13051
|
if tde_wallet_password is not None:
|
12876
13052
|
pulumi.set(__self__, "tde_wallet_password", tde_wallet_password)
|
12877
13053
|
if time_created is not None:
|
@@ -13179,6 +13355,18 @@ class DbHomeDatabaseArgs:
|
|
13179
13355
|
def state(self, value: Optional[pulumi.Input[_builtins.str]]):
|
13180
13356
|
pulumi.set(self, "state", value)
|
13181
13357
|
|
13358
|
+
@_builtins.property
|
13359
|
+
@pulumi.getter(name="storageSizeDetails")
|
13360
|
+
def storage_size_details(self) -> Optional[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs']]:
|
13361
|
+
"""
|
13362
|
+
The database storage size details. This database option is supported for the Exadata VM cluster on Exascale Infrastructure.
|
13363
|
+
"""
|
13364
|
+
return pulumi.get(self, "storage_size_details")
|
13365
|
+
|
13366
|
+
@storage_size_details.setter
|
13367
|
+
def storage_size_details(self, value: Optional[pulumi.Input['DbHomeDatabaseStorageSizeDetailsArgs']]):
|
13368
|
+
pulumi.set(self, "storage_size_details", value)
|
13369
|
+
|
13182
13370
|
@_builtins.property
|
13183
13371
|
@pulumi.getter(name="tdeWalletPassword")
|
13184
13372
|
def tde_wallet_password(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -13664,6 +13852,69 @@ class DbHomeDatabaseEncryptionKeyLocationDetailsArgs:
|
|
13664
13852
|
pulumi.set(self, "hsm_password", value)
|
13665
13853
|
|
13666
13854
|
|
13855
|
+
if not MYPY:
|
13856
|
+
class DbHomeDatabaseStorageSizeDetailsArgsDict(TypedDict):
|
13857
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int]
|
13858
|
+
"""
|
13859
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
13860
|
+
"""
|
13861
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int]
|
13862
|
+
"""
|
13863
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
13864
|
+
"""
|
13865
|
+
redo_log_storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
13866
|
+
elif False:
|
13867
|
+
DbHomeDatabaseStorageSizeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
13868
|
+
|
13869
|
+
@pulumi.input_type
|
13870
|
+
class DbHomeDatabaseStorageSizeDetailsArgs:
|
13871
|
+
def __init__(__self__, *,
|
13872
|
+
data_storage_size_in_gb: pulumi.Input[_builtins.int],
|
13873
|
+
reco_storage_size_in_gbs: pulumi.Input[_builtins.int],
|
13874
|
+
redo_log_storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
13875
|
+
"""
|
13876
|
+
:param pulumi.Input[_builtins.int] data_storage_size_in_gb: The DATA storage size, in gigabytes, that is applicable for the database.
|
13877
|
+
:param pulumi.Input[_builtins.int] reco_storage_size_in_gbs: The RECO storage size, in gigabytes, that is applicable for the database.
|
13878
|
+
"""
|
13879
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
13880
|
+
pulumi.set(__self__, "reco_storage_size_in_gbs", reco_storage_size_in_gbs)
|
13881
|
+
if redo_log_storage_size_in_gbs is not None:
|
13882
|
+
pulumi.set(__self__, "redo_log_storage_size_in_gbs", redo_log_storage_size_in_gbs)
|
13883
|
+
|
13884
|
+
@_builtins.property
|
13885
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
13886
|
+
def data_storage_size_in_gb(self) -> pulumi.Input[_builtins.int]:
|
13887
|
+
"""
|
13888
|
+
The DATA storage size, in gigabytes, that is applicable for the database.
|
13889
|
+
"""
|
13890
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
13891
|
+
|
13892
|
+
@data_storage_size_in_gb.setter
|
13893
|
+
def data_storage_size_in_gb(self, value: pulumi.Input[_builtins.int]):
|
13894
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
13895
|
+
|
13896
|
+
@_builtins.property
|
13897
|
+
@pulumi.getter(name="recoStorageSizeInGbs")
|
13898
|
+
def reco_storage_size_in_gbs(self) -> pulumi.Input[_builtins.int]:
|
13899
|
+
"""
|
13900
|
+
The RECO storage size, in gigabytes, that is applicable for the database.
|
13901
|
+
"""
|
13902
|
+
return pulumi.get(self, "reco_storage_size_in_gbs")
|
13903
|
+
|
13904
|
+
@reco_storage_size_in_gbs.setter
|
13905
|
+
def reco_storage_size_in_gbs(self, value: pulumi.Input[_builtins.int]):
|
13906
|
+
pulumi.set(self, "reco_storage_size_in_gbs", value)
|
13907
|
+
|
13908
|
+
@_builtins.property
|
13909
|
+
@pulumi.getter(name="redoLogStorageSizeInGbs")
|
13910
|
+
def redo_log_storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
13911
|
+
return pulumi.get(self, "redo_log_storage_size_in_gbs")
|
13912
|
+
|
13913
|
+
@redo_log_storage_size_in_gbs.setter
|
13914
|
+
def redo_log_storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
13915
|
+
pulumi.set(self, "redo_log_storage_size_in_gbs", value)
|
13916
|
+
|
13917
|
+
|
13667
13918
|
if not MYPY:
|
13668
13919
|
class DbSystemDataCollectionOptionsArgsDict(TypedDict):
|
13669
13920
|
is_diagnostics_events_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
@@ -14794,13 +15045,11 @@ if not MYPY:
|
|
14794
15045
|
"""
|
14795
15046
|
is_remote: NotRequired[pulumi.Input[_builtins.bool]]
|
14796
15047
|
"""
|
14797
|
-
Indicates whether the backup destination is cross-region or local
|
15048
|
+
Indicates whether the backup destination is cross-region or local.
|
14798
15049
|
"""
|
14799
15050
|
remote_region: NotRequired[pulumi.Input[_builtins.str]]
|
14800
15051
|
"""
|
14801
|
-
The name of the remote region where the remote automatic incremental backups will be stored.
|
14802
|
-
|
14803
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
15052
|
+
The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
14804
15053
|
"""
|
14805
15054
|
type: NotRequired[pulumi.Input[_builtins.str]]
|
14806
15055
|
"""
|
@@ -14820,10 +15069,8 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
14820
15069
|
"""
|
14821
15070
|
:param pulumi.Input[_builtins.str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
14822
15071
|
:param pulumi.Input[_builtins.str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup destination.
|
14823
|
-
:param pulumi.Input[_builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local
|
14824
|
-
:param pulumi.Input[_builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored.
|
14825
|
-
|
14826
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
15072
|
+
:param pulumi.Input[_builtins.bool] is_remote: Indicates whether the backup destination is cross-region or local.
|
15073
|
+
:param pulumi.Input[_builtins.str] remote_region: The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
14827
15074
|
:param pulumi.Input[_builtins.str] type: Type of the database backup destination.
|
14828
15075
|
"""
|
14829
15076
|
if dbrs_policy_id is not None:
|
@@ -14865,7 +15112,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
14865
15112
|
@pulumi.getter(name="isRemote")
|
14866
15113
|
def is_remote(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
14867
15114
|
"""
|
14868
|
-
Indicates whether the backup destination is cross-region or local
|
15115
|
+
Indicates whether the backup destination is cross-region or local.
|
14869
15116
|
"""
|
14870
15117
|
return pulumi.get(self, "is_remote")
|
14871
15118
|
|
@@ -14877,9 +15124,7 @@ class DbSystemDbHomeDatabaseDbBackupConfigBackupDestinationDetailArgs:
|
|
14877
15124
|
@pulumi.getter(name="remoteRegion")
|
14878
15125
|
def remote_region(self) -> Optional[pulumi.Input[_builtins.str]]:
|
14879
15126
|
"""
|
14880
|
-
The name of the remote region where the remote automatic incremental backups will be stored.
|
14881
|
-
|
14882
|
-
For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
15127
|
+
The name of the remote region where the remote automatic incremental backups will be stored. For information about valid region names, see [Regions and Availability Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm).
|
14883
15128
|
"""
|
14884
15129
|
return pulumi.get(self, "remote_region")
|
14885
15130
|
|
@@ -29,6 +29,8 @@ class DataGuardAssociationArgs:
|
|
29
29
|
transport_type: pulumi.Input[_builtins.str],
|
30
30
|
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
31
31
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
32
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
33
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
32
34
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
33
35
|
create_async: Optional[pulumi.Input[_builtins.bool]] = None,
|
34
36
|
data_collection_options: Optional[pulumi.Input['DataGuardAssociationDataCollectionOptionsArgs']] = None,
|
@@ -84,6 +86,8 @@ class DataGuardAssociationArgs:
|
|
84
86
|
**IMPORTANT** - The only transport type currently supported by the Database service is ASYNC.
|
85
87
|
:param pulumi.Input[_builtins.str] availability_domain: The name of the availability domain that the standby database DB system will be located in. For example- "Uocm:PHX-AD-1".
|
86
88
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] backup_network_nsg_ids: A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
89
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the DB system.
|
90
|
+
:param pulumi.Input[_builtins.str] compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
87
91
|
:param pulumi.Input[_builtins.int] cpu_core_count: The number of CPU cores available for AMD-based virtual machine DB systems.
|
88
92
|
:param pulumi.Input['DataGuardAssociationDataCollectionOptionsArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
89
93
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] database_defined_tags: 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).
|
@@ -141,6 +145,10 @@ class DataGuardAssociationArgs:
|
|
141
145
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
142
146
|
if backup_network_nsg_ids is not None:
|
143
147
|
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
148
|
+
if compute_count is not None:
|
149
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
150
|
+
if compute_model is not None:
|
151
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
144
152
|
if cpu_core_count is not None:
|
145
153
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
146
154
|
if create_async is not None:
|
@@ -310,6 +318,30 @@ class DataGuardAssociationArgs:
|
|
310
318
|
def backup_network_nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
311
319
|
pulumi.set(self, "backup_network_nsg_ids", value)
|
312
320
|
|
321
|
+
@_builtins.property
|
322
|
+
@pulumi.getter(name="computeCount")
|
323
|
+
def compute_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
324
|
+
"""
|
325
|
+
The number of compute servers for the DB system.
|
326
|
+
"""
|
327
|
+
return pulumi.get(self, "compute_count")
|
328
|
+
|
329
|
+
@compute_count.setter
|
330
|
+
def compute_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
331
|
+
pulumi.set(self, "compute_count", value)
|
332
|
+
|
333
|
+
@_builtins.property
|
334
|
+
@pulumi.getter(name="computeModel")
|
335
|
+
def compute_model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
336
|
+
"""
|
337
|
+
The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
338
|
+
"""
|
339
|
+
return pulumi.get(self, "compute_model")
|
340
|
+
|
341
|
+
@compute_model.setter
|
342
|
+
def compute_model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
343
|
+
pulumi.set(self, "compute_model", value)
|
344
|
+
|
313
345
|
@_builtins.property
|
314
346
|
@pulumi.getter(name="cpuCoreCount")
|
315
347
|
def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
@@ -681,6 +713,8 @@ class _DataGuardAssociationState:
|
|
681
713
|
apply_rate: Optional[pulumi.Input[_builtins.str]] = None,
|
682
714
|
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
683
715
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
716
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
717
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
684
718
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
685
719
|
create_async: Optional[pulumi.Input[_builtins.bool]] = None,
|
686
720
|
creation_type: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -729,6 +763,8 @@ class _DataGuardAssociationState:
|
|
729
763
|
:param pulumi.Input[_builtins.str] apply_rate: The rate at which redo logs are synced between the associated databases. Example: `180 Mb per second`
|
730
764
|
:param pulumi.Input[_builtins.str] availability_domain: The name of the availability domain that the standby database DB system will be located in. For example- "Uocm:PHX-AD-1".
|
731
765
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] backup_network_nsg_ids: A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
766
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the DB system.
|
767
|
+
:param pulumi.Input[_builtins.str] compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
732
768
|
:param pulumi.Input[_builtins.int] cpu_core_count: The number of CPU cores available for AMD-based virtual machine DB systems.
|
733
769
|
:param pulumi.Input[_builtins.str] creation_type: Specifies whether to create the peer database in an existing DB system or in a new DB system.
|
734
770
|
:param pulumi.Input['DataGuardAssociationDataCollectionOptionsArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
@@ -813,6 +849,10 @@ class _DataGuardAssociationState:
|
|
813
849
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
814
850
|
if backup_network_nsg_ids is not None:
|
815
851
|
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
852
|
+
if compute_count is not None:
|
853
|
+
pulumi.set(__self__, "compute_count", compute_count)
|
854
|
+
if compute_model is not None:
|
855
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
816
856
|
if cpu_core_count is not None:
|
817
857
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
818
858
|
if create_async is not None:
|
@@ -946,6 +986,30 @@ class _DataGuardAssociationState:
|
|
946
986
|
def backup_network_nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
947
987
|
pulumi.set(self, "backup_network_nsg_ids", value)
|
948
988
|
|
989
|
+
@_builtins.property
|
990
|
+
@pulumi.getter(name="computeCount")
|
991
|
+
def compute_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
992
|
+
"""
|
993
|
+
The number of compute servers for the DB system.
|
994
|
+
"""
|
995
|
+
return pulumi.get(self, "compute_count")
|
996
|
+
|
997
|
+
@compute_count.setter
|
998
|
+
def compute_count(self, value: Optional[pulumi.Input[_builtins.int]]):
|
999
|
+
pulumi.set(self, "compute_count", value)
|
1000
|
+
|
1001
|
+
@_builtins.property
|
1002
|
+
@pulumi.getter(name="computeModel")
|
1003
|
+
def compute_model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
1004
|
+
"""
|
1005
|
+
The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
1006
|
+
"""
|
1007
|
+
return pulumi.get(self, "compute_model")
|
1008
|
+
|
1009
|
+
@compute_model.setter
|
1010
|
+
def compute_model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1011
|
+
pulumi.set(self, "compute_model", value)
|
1012
|
+
|
949
1013
|
@_builtins.property
|
950
1014
|
@pulumi.getter(name="cpuCoreCount")
|
951
1015
|
def cpu_core_count(self) -> Optional[pulumi.Input[_builtins.int]]:
|
@@ -1488,6 +1552,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1488
1552
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1489
1553
|
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
1490
1554
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1555
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1556
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
1491
1557
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1492
1558
|
create_async: Optional[pulumi.Input[_builtins.bool]] = None,
|
1493
1559
|
creation_type: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1551,6 +1617,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1551
1617
|
transport_type=data_guard_association_transport_type,
|
1552
1618
|
availability_domain=data_guard_association_availability_domain,
|
1553
1619
|
backup_network_nsg_ids=data_guard_association_backup_network_nsg_ids,
|
1620
|
+
compute_count=data_guard_association_compute_count,
|
1621
|
+
compute_model=data_guard_association_compute_model,
|
1554
1622
|
cpu_core_count=data_guard_association_cpu_core_count,
|
1555
1623
|
database_defined_tags=data_guard_association_database_defined_tags,
|
1556
1624
|
database_freeform_tags=data_guard_association_database_freeform_tags,
|
@@ -1592,6 +1660,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1592
1660
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
1593
1661
|
:param pulumi.Input[_builtins.str] availability_domain: The name of the availability domain that the standby database DB system will be located in. For example- "Uocm:PHX-AD-1".
|
1594
1662
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] backup_network_nsg_ids: A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
1663
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the DB system.
|
1664
|
+
:param pulumi.Input[_builtins.str] compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
1595
1665
|
:param pulumi.Input[_builtins.int] cpu_core_count: The number of CPU cores available for AMD-based virtual machine DB systems.
|
1596
1666
|
:param pulumi.Input[_builtins.str] creation_type: Specifies whether to create the peer database in an existing DB system or in a new DB system.
|
1597
1667
|
:param pulumi.Input[Union['DataGuardAssociationDataCollectionOptionsArgs', 'DataGuardAssociationDataCollectionOptionsArgsDict']] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
@@ -1694,6 +1764,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1694
1764
|
transport_type=data_guard_association_transport_type,
|
1695
1765
|
availability_domain=data_guard_association_availability_domain,
|
1696
1766
|
backup_network_nsg_ids=data_guard_association_backup_network_nsg_ids,
|
1767
|
+
compute_count=data_guard_association_compute_count,
|
1768
|
+
compute_model=data_guard_association_compute_model,
|
1697
1769
|
cpu_core_count=data_guard_association_cpu_core_count,
|
1698
1770
|
database_defined_tags=data_guard_association_database_defined_tags,
|
1699
1771
|
database_freeform_tags=data_guard_association_database_freeform_tags,
|
@@ -1748,6 +1820,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1748
1820
|
opts: Optional[pulumi.ResourceOptions] = None,
|
1749
1821
|
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
1750
1822
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1823
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1824
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
1751
1825
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1752
1826
|
create_async: Optional[pulumi.Input[_builtins.bool]] = None,
|
1753
1827
|
creation_type: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1794,6 +1868,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1794
1868
|
|
1795
1869
|
__props__.__dict__["availability_domain"] = availability_domain
|
1796
1870
|
__props__.__dict__["backup_network_nsg_ids"] = backup_network_nsg_ids
|
1871
|
+
__props__.__dict__["compute_count"] = compute_count
|
1872
|
+
__props__.__dict__["compute_model"] = compute_model
|
1797
1873
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
1798
1874
|
__props__.__dict__["create_async"] = create_async
|
1799
1875
|
if creation_type is None and not opts.urn:
|
@@ -1866,6 +1942,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1866
1942
|
apply_rate: Optional[pulumi.Input[_builtins.str]] = None,
|
1867
1943
|
availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
1868
1944
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
1945
|
+
compute_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1946
|
+
compute_model: Optional[pulumi.Input[_builtins.str]] = None,
|
1869
1947
|
cpu_core_count: Optional[pulumi.Input[_builtins.int]] = None,
|
1870
1948
|
create_async: Optional[pulumi.Input[_builtins.bool]] = None,
|
1871
1949
|
creation_type: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1919,6 +1997,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
1919
1997
|
:param pulumi.Input[_builtins.str] apply_rate: The rate at which redo logs are synced between the associated databases. Example: `180 Mb per second`
|
1920
1998
|
:param pulumi.Input[_builtins.str] availability_domain: The name of the availability domain that the standby database DB system will be located in. For example- "Uocm:PHX-AD-1".
|
1921
1999
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] backup_network_nsg_ids: A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
2000
|
+
:param pulumi.Input[_builtins.int] compute_count: The number of compute servers for the DB system.
|
2001
|
+
:param pulumi.Input[_builtins.str] compute_model: The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
1922
2002
|
:param pulumi.Input[_builtins.int] cpu_core_count: The number of CPU cores available for AMD-based virtual machine DB systems.
|
1923
2003
|
:param pulumi.Input[_builtins.str] creation_type: Specifies whether to create the peer database in an existing DB system or in a new DB system.
|
1924
2004
|
:param pulumi.Input[Union['DataGuardAssociationDataCollectionOptionsArgs', 'DataGuardAssociationDataCollectionOptionsArgsDict']] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
@@ -2003,6 +2083,8 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
2003
2083
|
__props__.__dict__["apply_rate"] = apply_rate
|
2004
2084
|
__props__.__dict__["availability_domain"] = availability_domain
|
2005
2085
|
__props__.__dict__["backup_network_nsg_ids"] = backup_network_nsg_ids
|
2086
|
+
__props__.__dict__["compute_count"] = compute_count
|
2087
|
+
__props__.__dict__["compute_model"] = compute_model
|
2006
2088
|
__props__.__dict__["cpu_core_count"] = cpu_core_count
|
2007
2089
|
__props__.__dict__["create_async"] = create_async
|
2008
2090
|
__props__.__dict__["creation_type"] = creation_type
|
@@ -2079,6 +2161,22 @@ class DataGuardAssociation(pulumi.CustomResource):
|
|
2079
2161
|
"""
|
2080
2162
|
return pulumi.get(self, "backup_network_nsg_ids")
|
2081
2163
|
|
2164
|
+
@_builtins.property
|
2165
|
+
@pulumi.getter(name="computeCount")
|
2166
|
+
def compute_count(self) -> pulumi.Output[_builtins.int]:
|
2167
|
+
"""
|
2168
|
+
The number of compute servers for the DB system.
|
2169
|
+
"""
|
2170
|
+
return pulumi.get(self, "compute_count")
|
2171
|
+
|
2172
|
+
@_builtins.property
|
2173
|
+
@pulumi.getter(name="computeModel")
|
2174
|
+
def compute_model(self) -> pulumi.Output[_builtins.str]:
|
2175
|
+
"""
|
2176
|
+
The compute model for Base Database Service. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. The ECPU compute model is the recommended model, and the OCPU compute model is legacy.
|
2177
|
+
"""
|
2178
|
+
return pulumi.get(self, "compute_model")
|
2179
|
+
|
2082
2180
|
@_builtins.property
|
2083
2181
|
@pulumi.getter(name="cpuCoreCount")
|
2084
2182
|
def cpu_core_count(self) -> pulumi.Output[_builtins.int]:
|