pulumi-oci 3.4.0a1755922408__py3-none-any.whl → 3.5.0__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.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/RECORD +133 -100
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.4.0a1755922408.dist-info → pulumi_oci-3.5.0.dist-info}/top_level.txt +0 -0
@@ -59,6 +59,10 @@ __all__ = [
|
|
59
59
|
'DrProtectionGroupMemberBlockVolumeOperationMountDetailsArgsDict',
|
60
60
|
'DrProtectionGroupMemberCommonDestinationKeyArgs',
|
61
61
|
'DrProtectionGroupMemberCommonDestinationKeyArgsDict',
|
62
|
+
'DrProtectionGroupMemberDbSystemAdminUserDetailsArgs',
|
63
|
+
'DrProtectionGroupMemberDbSystemAdminUserDetailsArgsDict',
|
64
|
+
'DrProtectionGroupMemberDbSystemReplicationUserDetailsArgs',
|
65
|
+
'DrProtectionGroupMemberDbSystemReplicationUserDetailsArgsDict',
|
62
66
|
'DrProtectionGroupMemberDestinationEncryptionKeyArgs',
|
63
67
|
'DrProtectionGroupMemberDestinationEncryptionKeyArgsDict',
|
64
68
|
'DrProtectionGroupMemberExportMappingArgs',
|
@@ -1549,6 +1553,14 @@ if not MYPY:
|
|
1549
1553
|
"""
|
1550
1554
|
(Updatable) The type of connection strings used to connect to an Autonomous Container Database snapshot standby created during a DR Drill operation. See https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html for information about these service types.
|
1551
1555
|
"""
|
1556
|
+
db_system_admin_user_details: NotRequired[pulumi.Input['DrProtectionGroupMemberDbSystemAdminUserDetailsArgsDict']]
|
1557
|
+
"""
|
1558
|
+
(Updatable) The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the Vault secret that stores the password.
|
1559
|
+
"""
|
1560
|
+
db_system_replication_user_details: NotRequired[pulumi.Input['DrProtectionGroupMemberDbSystemReplicationUserDetailsArgsDict']]
|
1561
|
+
"""
|
1562
|
+
(Updatable) The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the Vault secret that stores the password.
|
1563
|
+
"""
|
1552
1564
|
destination_availability_domain: NotRequired[pulumi.Input[_builtins.str]]
|
1553
1565
|
"""
|
1554
1566
|
(Updatable) The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
@@ -1593,6 +1605,14 @@ if not MYPY:
|
|
1593
1605
|
"""
|
1594
1606
|
(Updatable) A list of operations performed on file systems used by the compute instance.
|
1595
1607
|
"""
|
1608
|
+
gtid_reconciliation_timeout: NotRequired[pulumi.Input[_builtins.int]]
|
1609
|
+
"""
|
1610
|
+
(Updatable) The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
1611
|
+
"""
|
1612
|
+
is_continue_on_gtid_reconciliation_timeout: NotRequired[pulumi.Input[_builtins.bool]]
|
1613
|
+
"""
|
1614
|
+
(Updatable) A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
1615
|
+
"""
|
1596
1616
|
is_movable: NotRequired[pulumi.Input[_builtins.bool]]
|
1597
1617
|
"""
|
1598
1618
|
(Updatable) A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
@@ -1633,6 +1653,10 @@ if not MYPY:
|
|
1633
1653
|
"""
|
1634
1654
|
(Updatable) The OCID of the peer OKE cluster. This property applies to the OKE cluster member in both the primary and standby region. Example: `ocid1.cluster.oc1..uniqueID`
|
1635
1655
|
"""
|
1656
|
+
peer_db_system_id: NotRequired[pulumi.Input[_builtins.str]]
|
1657
|
+
"""
|
1658
|
+
(Updatable) The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
1659
|
+
"""
|
1636
1660
|
source_volume_to_destination_encryption_key_mappings: NotRequired[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingArgsDict']]]]
|
1637
1661
|
"""
|
1638
1662
|
(Updatable) A list of mappings between source volume IDs in the volume group and customer-managed encryption keys in the destination region which will be used to encrypt the volume after it moves to the destination region.
|
@@ -1674,6 +1698,8 @@ class DrProtectionGroupMemberArgs:
|
|
1674
1698
|
bucket: Optional[pulumi.Input[_builtins.str]] = None,
|
1675
1699
|
common_destination_key: Optional[pulumi.Input['DrProtectionGroupMemberCommonDestinationKeyArgs']] = None,
|
1676
1700
|
connection_string_type: Optional[pulumi.Input[_builtins.str]] = None,
|
1701
|
+
db_system_admin_user_details: Optional[pulumi.Input['DrProtectionGroupMemberDbSystemAdminUserDetailsArgs']] = None,
|
1702
|
+
db_system_replication_user_details: Optional[pulumi.Input['DrProtectionGroupMemberDbSystemReplicationUserDetailsArgs']] = None,
|
1677
1703
|
destination_availability_domain: Optional[pulumi.Input[_builtins.str]] = None,
|
1678
1704
|
destination_backup_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1679
1705
|
destination_capacity_reservation_id: Optional[pulumi.Input[_builtins.str]] = None,
|
@@ -1685,6 +1711,8 @@ class DrProtectionGroupMemberArgs:
|
|
1685
1711
|
destination_snapshot_policy_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1686
1712
|
export_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberExportMappingArgs']]]] = None,
|
1687
1713
|
file_system_operations: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberFileSystemOperationArgs']]]] = None,
|
1714
|
+
gtid_reconciliation_timeout: Optional[pulumi.Input[_builtins.int]] = None,
|
1715
|
+
is_continue_on_gtid_reconciliation_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
1688
1716
|
is_movable: Optional[pulumi.Input[_builtins.bool]] = None,
|
1689
1717
|
is_retain_fault_domain: Optional[pulumi.Input[_builtins.bool]] = None,
|
1690
1718
|
is_start_stop_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
@@ -1695,6 +1723,7 @@ class DrProtectionGroupMemberArgs:
|
|
1695
1723
|
network_load_balancer_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberNetworkLoadBalancerMappingArgs']]]] = None,
|
1696
1724
|
password_vault_secret_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1697
1725
|
peer_cluster_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1726
|
+
peer_db_system_id: Optional[pulumi.Input[_builtins.str]] = None,
|
1698
1727
|
source_volume_to_destination_encryption_key_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingArgs']]]] = None,
|
1699
1728
|
vault_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberVaultMappingArgs']]]] = None,
|
1700
1729
|
virtual_node_pool_configs: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberVirtualNodePoolConfigArgs']]]] = None,
|
@@ -1712,6 +1741,8 @@ class DrProtectionGroupMemberArgs:
|
|
1712
1741
|
:param pulumi.Input[_builtins.str] bucket: (Updatable) The bucket name inside the object storage namespace. Example: `bucket_name`
|
1713
1742
|
:param pulumi.Input['DrProtectionGroupMemberCommonDestinationKeyArgs'] common_destination_key: (Updatable) Create properties for a customer-managed vault and encryption key in the destination region. The customer-managed encryption key in this will be used to encrypt the resource or containing resources after they move to the destination region.
|
1714
1743
|
:param pulumi.Input[_builtins.str] connection_string_type: (Updatable) The type of connection strings used to connect to an Autonomous Container Database snapshot standby created during a DR Drill operation. See https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbcl/index.html for information about these service types.
|
1744
|
+
:param pulumi.Input['DrProtectionGroupMemberDbSystemAdminUserDetailsArgs'] db_system_admin_user_details: (Updatable) The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the Vault secret that stores the password.
|
1745
|
+
:param pulumi.Input['DrProtectionGroupMemberDbSystemReplicationUserDetailsArgs'] db_system_replication_user_details: (Updatable) The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the Vault secret that stores the password.
|
1715
1746
|
:param pulumi.Input[_builtins.str] destination_availability_domain: (Updatable) The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
1716
1747
|
:param pulumi.Input[_builtins.str] destination_backup_policy_id: (Updatable) The OCID of the backup policy to use in the destination region. This policy will be used to create backups for this volume group after it moves the destination region. Example: `ocid1.volumebackuppolicy.oc1..uniqueID`
|
1717
1748
|
:param pulumi.Input[_builtins.str] destination_capacity_reservation_id: (Updatable) The OCID of a capacity reservation in the destination region which will be used to launch the compute instance. Example: `ocid1.capacityreservation.oc1..uniqueID`
|
@@ -1723,6 +1754,8 @@ class DrProtectionGroupMemberArgs:
|
|
1723
1754
|
:param pulumi.Input[_builtins.str] destination_snapshot_policy_id: (Updatable) The OCID of the snapshot policy to use in the destination region. This policy will be attached to the file system after it moves to the destination region. Example: `ocid1.filesystemsnapshotpolicy.oc1..uniqueID`
|
1724
1755
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberExportMappingArgs']]] export_mappings: (Updatable) A list of mappings between file system exports in the primary region and mount targets in the standby region.
|
1725
1756
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberFileSystemOperationArgs']]] file_system_operations: (Updatable) A list of operations performed on file systems used by the compute instance.
|
1757
|
+
:param pulumi.Input[_builtins.int] gtid_reconciliation_timeout: (Updatable) The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
1758
|
+
:param pulumi.Input[_builtins.bool] is_continue_on_gtid_reconciliation_timeout: (Updatable) A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
1726
1759
|
:param pulumi.Input[_builtins.bool] is_movable: (Updatable) A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
1727
1760
|
:param pulumi.Input[_builtins.bool] is_retain_fault_domain: (Updatable) A flag indicating if the compute instance should be moved to the same fault domain in the destination region. The compute instance launch will fail if this flag is set to true and capacity is not available in the specified fault domain in the destination region. Example: `false`
|
1728
1761
|
:param pulumi.Input[_builtins.bool] is_start_stop_enabled: (Updatable) A flag indicating whether the non-movable compute instance should be started and stopped during DR operations. *Prechecks cannot be executed on stopped instances that are configured to be started.*
|
@@ -1733,6 +1766,7 @@ class DrProtectionGroupMemberArgs:
|
|
1733
1766
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberNetworkLoadBalancerMappingArgs']]] network_load_balancer_mappings: (Updatable) The list of source-to-destination network load balancer mappings required for DR operations. This property applies to the OKE cluster member in primary region.
|
1734
1767
|
:param pulumi.Input[_builtins.str] password_vault_secret_id: (Updatable) The OCID of the vault secret where the database SYSDBA password is stored. This password is required and used for performing database DR Drill operations when using full clone. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
1735
1768
|
:param pulumi.Input[_builtins.str] peer_cluster_id: (Updatable) The OCID of the peer OKE cluster. This property applies to the OKE cluster member in both the primary and standby region. Example: `ocid1.cluster.oc1..uniqueID`
|
1769
|
+
:param pulumi.Input[_builtins.str] peer_db_system_id: (Updatable) The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
1736
1770
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingArgs']]] source_volume_to_destination_encryption_key_mappings: (Updatable) A list of mappings between source volume IDs in the volume group and customer-managed encryption keys in the destination region which will be used to encrypt the volume after it moves to the destination region.
|
1737
1771
|
|
1738
1772
|
If you add the entry for source volumes and its corresponding vault and encryption keys here, you can not use 'commonDestinationKey' for encrypting all volumes with common encryption key. Similarly, if you specify common vault and encryption key using 'commonDestinationKey', you cannot specify vaults and encryption keys individually for each volume using 'sourceVolumeToDestinationEncryptionKeyMappings'.
|
@@ -1763,6 +1797,10 @@ class DrProtectionGroupMemberArgs:
|
|
1763
1797
|
pulumi.set(__self__, "common_destination_key", common_destination_key)
|
1764
1798
|
if connection_string_type is not None:
|
1765
1799
|
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
1800
|
+
if db_system_admin_user_details is not None:
|
1801
|
+
pulumi.set(__self__, "db_system_admin_user_details", db_system_admin_user_details)
|
1802
|
+
if db_system_replication_user_details is not None:
|
1803
|
+
pulumi.set(__self__, "db_system_replication_user_details", db_system_replication_user_details)
|
1766
1804
|
if destination_availability_domain is not None:
|
1767
1805
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
1768
1806
|
if destination_backup_policy_id is not None:
|
@@ -1785,6 +1823,10 @@ class DrProtectionGroupMemberArgs:
|
|
1785
1823
|
pulumi.set(__self__, "export_mappings", export_mappings)
|
1786
1824
|
if file_system_operations is not None:
|
1787
1825
|
pulumi.set(__self__, "file_system_operations", file_system_operations)
|
1826
|
+
if gtid_reconciliation_timeout is not None:
|
1827
|
+
pulumi.set(__self__, "gtid_reconciliation_timeout", gtid_reconciliation_timeout)
|
1828
|
+
if is_continue_on_gtid_reconciliation_timeout is not None:
|
1829
|
+
pulumi.set(__self__, "is_continue_on_gtid_reconciliation_timeout", is_continue_on_gtid_reconciliation_timeout)
|
1788
1830
|
if is_movable is not None:
|
1789
1831
|
pulumi.set(__self__, "is_movable", is_movable)
|
1790
1832
|
if is_retain_fault_domain is not None:
|
@@ -1805,6 +1847,8 @@ class DrProtectionGroupMemberArgs:
|
|
1805
1847
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
1806
1848
|
if peer_cluster_id is not None:
|
1807
1849
|
pulumi.set(__self__, "peer_cluster_id", peer_cluster_id)
|
1850
|
+
if peer_db_system_id is not None:
|
1851
|
+
pulumi.set(__self__, "peer_db_system_id", peer_db_system_id)
|
1808
1852
|
if source_volume_to_destination_encryption_key_mappings is not None:
|
1809
1853
|
pulumi.set(__self__, "source_volume_to_destination_encryption_key_mappings", source_volume_to_destination_encryption_key_mappings)
|
1810
1854
|
if vault_mappings is not None:
|
@@ -1948,6 +1992,30 @@ class DrProtectionGroupMemberArgs:
|
|
1948
1992
|
def connection_string_type(self, value: Optional[pulumi.Input[_builtins.str]]):
|
1949
1993
|
pulumi.set(self, "connection_string_type", value)
|
1950
1994
|
|
1995
|
+
@_builtins.property
|
1996
|
+
@pulumi.getter(name="dbSystemAdminUserDetails")
|
1997
|
+
def db_system_admin_user_details(self) -> Optional[pulumi.Input['DrProtectionGroupMemberDbSystemAdminUserDetailsArgs']]:
|
1998
|
+
"""
|
1999
|
+
(Updatable) The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the Vault secret that stores the password.
|
2000
|
+
"""
|
2001
|
+
return pulumi.get(self, "db_system_admin_user_details")
|
2002
|
+
|
2003
|
+
@db_system_admin_user_details.setter
|
2004
|
+
def db_system_admin_user_details(self, value: Optional[pulumi.Input['DrProtectionGroupMemberDbSystemAdminUserDetailsArgs']]):
|
2005
|
+
pulumi.set(self, "db_system_admin_user_details", value)
|
2006
|
+
|
2007
|
+
@_builtins.property
|
2008
|
+
@pulumi.getter(name="dbSystemReplicationUserDetails")
|
2009
|
+
def db_system_replication_user_details(self) -> Optional[pulumi.Input['DrProtectionGroupMemberDbSystemReplicationUserDetailsArgs']]:
|
2010
|
+
"""
|
2011
|
+
(Updatable) The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the Vault secret that stores the password.
|
2012
|
+
"""
|
2013
|
+
return pulumi.get(self, "db_system_replication_user_details")
|
2014
|
+
|
2015
|
+
@db_system_replication_user_details.setter
|
2016
|
+
def db_system_replication_user_details(self, value: Optional[pulumi.Input['DrProtectionGroupMemberDbSystemReplicationUserDetailsArgs']]):
|
2017
|
+
pulumi.set(self, "db_system_replication_user_details", value)
|
2018
|
+
|
1951
2019
|
@_builtins.property
|
1952
2020
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
1953
2021
|
def destination_availability_domain(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -2080,6 +2148,30 @@ class DrProtectionGroupMemberArgs:
|
|
2080
2148
|
def file_system_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberFileSystemOperationArgs']]]]):
|
2081
2149
|
pulumi.set(self, "file_system_operations", value)
|
2082
2150
|
|
2151
|
+
@_builtins.property
|
2152
|
+
@pulumi.getter(name="gtidReconciliationTimeout")
|
2153
|
+
def gtid_reconciliation_timeout(self) -> Optional[pulumi.Input[_builtins.int]]:
|
2154
|
+
"""
|
2155
|
+
(Updatable) The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
2156
|
+
"""
|
2157
|
+
return pulumi.get(self, "gtid_reconciliation_timeout")
|
2158
|
+
|
2159
|
+
@gtid_reconciliation_timeout.setter
|
2160
|
+
def gtid_reconciliation_timeout(self, value: Optional[pulumi.Input[_builtins.int]]):
|
2161
|
+
pulumi.set(self, "gtid_reconciliation_timeout", value)
|
2162
|
+
|
2163
|
+
@_builtins.property
|
2164
|
+
@pulumi.getter(name="isContinueOnGtidReconciliationTimeout")
|
2165
|
+
def is_continue_on_gtid_reconciliation_timeout(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
2166
|
+
"""
|
2167
|
+
(Updatable) A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
2168
|
+
"""
|
2169
|
+
return pulumi.get(self, "is_continue_on_gtid_reconciliation_timeout")
|
2170
|
+
|
2171
|
+
@is_continue_on_gtid_reconciliation_timeout.setter
|
2172
|
+
def is_continue_on_gtid_reconciliation_timeout(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
2173
|
+
pulumi.set(self, "is_continue_on_gtid_reconciliation_timeout", value)
|
2174
|
+
|
2083
2175
|
@_builtins.property
|
2084
2176
|
@pulumi.getter(name="isMovable")
|
2085
2177
|
def is_movable(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
@@ -2200,6 +2292,18 @@ class DrProtectionGroupMemberArgs:
|
|
2200
2292
|
def peer_cluster_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2201
2293
|
pulumi.set(self, "peer_cluster_id", value)
|
2202
2294
|
|
2295
|
+
@_builtins.property
|
2296
|
+
@pulumi.getter(name="peerDbSystemId")
|
2297
|
+
def peer_db_system_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
2298
|
+
"""
|
2299
|
+
(Updatable) The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
2300
|
+
"""
|
2301
|
+
return pulumi.get(self, "peer_db_system_id")
|
2302
|
+
|
2303
|
+
@peer_db_system_id.setter
|
2304
|
+
def peer_db_system_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2305
|
+
pulumi.set(self, "peer_db_system_id", value)
|
2306
|
+
|
2203
2307
|
@_builtins.property
|
2204
2308
|
@pulumi.getter(name="sourceVolumeToDestinationEncryptionKeyMappings")
|
2205
2309
|
def source_volume_to_destination_encryption_key_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingArgs']]]]:
|
@@ -2357,6 +2461,10 @@ if not MYPY:
|
|
2357
2461
|
|
2358
2462
|
FREQ=HOURLY;INTERVAL=25 > Invalid configuration (Cannot specify an interval of 25). FREQ=HOURLY;INTERVAL=0 > Invalid configuration (Cannot specify an interval of 0). FREQ=HOURLY;INTERVAL=24 > Run a backup every 24 hours. FREQ=HOURLY;INTERVAL=1 > Run a backup every hour. FREQ=HOURLY;BYMINUTE=30;INTERVAL=15 > Run a backup every 15 hours at the 30th minute. FREQ=DAILY;INTERVAL=31 > Invalid configuration (Cannot specify an interval of 31). FREQ=DAILY;INTERVAL=0 > Invalid configuration (Cannot specify an interval of 0). FREQ=DAILY;INTERVAL=30 > Run a backup every 30 days at 12:00 midnight. FREQ=DAILY;BYHOUR=17;BYMINUTE=10;INTERVAL=1 > Run a backup daily at 05:10 PM.
|
2359
2463
|
"""
|
2464
|
+
exclude_namespaces: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
2465
|
+
"""
|
2466
|
+
(Updatable) A list of namespaces to be excluded from the backup. The default value is null. If a list of namespaces to exclude is not provided, all namespaces will be backed up. Specify either the `namespaces` or the `excludeNamespaces` parameter, but not both. This property applies to OKE cluster members in the primary region. Example: ["namespace_string_3", "namespace_string_4"]
|
2467
|
+
"""
|
2360
2468
|
image_replication_vault_secret_id: NotRequired[pulumi.Input[_builtins.str]]
|
2361
2469
|
"""
|
2362
2470
|
(Updatable) The OCID of the vault secret that stores the image credential. This property applies to the OKE cluster member in both the primary and standby region.
|
@@ -2367,7 +2475,7 @@ if not MYPY:
|
|
2367
2475
|
"""
|
2368
2476
|
namespaces: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
|
2369
2477
|
"""
|
2370
|
-
(Updatable) A list of namespaces
|
2478
|
+
(Updatable) A list of namespaces to be included in the backup. The default value is null. If a list of namespaces to include is not provided, all namespaces will be backed up. Specify either the `namespaces` or the `excludeNamespaces` parameter, but not both. This property applies to the OKE cluster member in primary region. Example: ["default", "pv-nginx"]
|
2371
2479
|
"""
|
2372
2480
|
replicate_images: NotRequired[pulumi.Input[_builtins.str]]
|
2373
2481
|
"""
|
@@ -2380,6 +2488,7 @@ elif False:
|
|
2380
2488
|
class DrProtectionGroupMemberBackupConfigArgs:
|
2381
2489
|
def __init__(__self__, *,
|
2382
2490
|
backup_schedule: Optional[pulumi.Input[_builtins.str]] = None,
|
2491
|
+
exclude_namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
2383
2492
|
image_replication_vault_secret_id: Optional[pulumi.Input[_builtins.str]] = None,
|
2384
2493
|
max_number_of_backups_retained: Optional[pulumi.Input[_builtins.int]] = None,
|
2385
2494
|
namespaces: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
|
@@ -2400,13 +2509,16 @@ class DrProtectionGroupMemberBackupConfigArgs:
|
|
2400
2509
|
Examples: FREQ=WEEKLY;BYDAY=MO,WE;BYHOUR=10;INTERVAL=1 > Run a backup every Monday and Wednesday at 10:00 AM. FREQ=WEEKLY;BYDAY=MO,WE;BYHOUR=10;INTERVAL=2 > Invalid configuration (Cannot specify an interval of 2).
|
2401
2510
|
|
2402
2511
|
FREQ=HOURLY;INTERVAL=25 > Invalid configuration (Cannot specify an interval of 25). FREQ=HOURLY;INTERVAL=0 > Invalid configuration (Cannot specify an interval of 0). FREQ=HOURLY;INTERVAL=24 > Run a backup every 24 hours. FREQ=HOURLY;INTERVAL=1 > Run a backup every hour. FREQ=HOURLY;BYMINUTE=30;INTERVAL=15 > Run a backup every 15 hours at the 30th minute. FREQ=DAILY;INTERVAL=31 > Invalid configuration (Cannot specify an interval of 31). FREQ=DAILY;INTERVAL=0 > Invalid configuration (Cannot specify an interval of 0). FREQ=DAILY;INTERVAL=30 > Run a backup every 30 days at 12:00 midnight. FREQ=DAILY;BYHOUR=17;BYMINUTE=10;INTERVAL=1 > Run a backup daily at 05:10 PM.
|
2512
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] exclude_namespaces: (Updatable) A list of namespaces to be excluded from the backup. The default value is null. If a list of namespaces to exclude is not provided, all namespaces will be backed up. Specify either the `namespaces` or the `excludeNamespaces` parameter, but not both. This property applies to OKE cluster members in the primary region. Example: ["namespace_string_3", "namespace_string_4"]
|
2403
2513
|
:param pulumi.Input[_builtins.str] image_replication_vault_secret_id: (Updatable) The OCID of the vault secret that stores the image credential. This property applies to the OKE cluster member in both the primary and standby region.
|
2404
2514
|
:param pulumi.Input[_builtins.int] max_number_of_backups_retained: (Updatable) The maximum number of backups that should be retained. This property applies to the OKE cluster member in primary region.
|
2405
|
-
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] namespaces: (Updatable) A list of namespaces
|
2515
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] namespaces: (Updatable) A list of namespaces to be included in the backup. The default value is null. If a list of namespaces to include is not provided, all namespaces will be backed up. Specify either the `namespaces` or the `excludeNamespaces` parameter, but not both. This property applies to the OKE cluster member in primary region. Example: ["default", "pv-nginx"]
|
2406
2516
|
:param pulumi.Input[_builtins.str] replicate_images: (Updatable) Controls the behaviour of image replication across regions. Image replication is enabled by default for DR Protection Groups with a primary role. This property applies to the OKE cluster member in primary region.
|
2407
2517
|
"""
|
2408
2518
|
if backup_schedule is not None:
|
2409
2519
|
pulumi.set(__self__, "backup_schedule", backup_schedule)
|
2520
|
+
if exclude_namespaces is not None:
|
2521
|
+
pulumi.set(__self__, "exclude_namespaces", exclude_namespaces)
|
2410
2522
|
if image_replication_vault_secret_id is not None:
|
2411
2523
|
pulumi.set(__self__, "image_replication_vault_secret_id", image_replication_vault_secret_id)
|
2412
2524
|
if max_number_of_backups_retained is not None:
|
@@ -2442,6 +2554,18 @@ class DrProtectionGroupMemberBackupConfigArgs:
|
|
2442
2554
|
def backup_schedule(self, value: Optional[pulumi.Input[_builtins.str]]):
|
2443
2555
|
pulumi.set(self, "backup_schedule", value)
|
2444
2556
|
|
2557
|
+
@_builtins.property
|
2558
|
+
@pulumi.getter(name="excludeNamespaces")
|
2559
|
+
def exclude_namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
2560
|
+
"""
|
2561
|
+
(Updatable) A list of namespaces to be excluded from the backup. The default value is null. If a list of namespaces to exclude is not provided, all namespaces will be backed up. Specify either the `namespaces` or the `excludeNamespaces` parameter, but not both. This property applies to OKE cluster members in the primary region. Example: ["namespace_string_3", "namespace_string_4"]
|
2562
|
+
"""
|
2563
|
+
return pulumi.get(self, "exclude_namespaces")
|
2564
|
+
|
2565
|
+
@exclude_namespaces.setter
|
2566
|
+
def exclude_namespaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
|
2567
|
+
pulumi.set(self, "exclude_namespaces", value)
|
2568
|
+
|
2445
2569
|
@_builtins.property
|
2446
2570
|
@pulumi.getter(name="imageReplicationVaultSecretId")
|
2447
2571
|
def image_replication_vault_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -2470,7 +2594,7 @@ class DrProtectionGroupMemberBackupConfigArgs:
|
|
2470
2594
|
@pulumi.getter
|
2471
2595
|
def namespaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
|
2472
2596
|
"""
|
2473
|
-
(Updatable) A list of namespaces
|
2597
|
+
(Updatable) A list of namespaces to be included in the backup. The default value is null. If a list of namespaces to include is not provided, all namespaces will be backed up. Specify either the `namespaces` or the `excludeNamespaces` parameter, but not both. This property applies to the OKE cluster member in primary region. Example: ["default", "pv-nginx"]
|
2474
2598
|
"""
|
2475
2599
|
return pulumi.get(self, "namespaces")
|
2476
2600
|
|
@@ -2887,6 +3011,110 @@ class DrProtectionGroupMemberCommonDestinationKeyArgs:
|
|
2887
3011
|
pulumi.set(self, "vault_id", value)
|
2888
3012
|
|
2889
3013
|
|
3014
|
+
if not MYPY:
|
3015
|
+
class DrProtectionGroupMemberDbSystemAdminUserDetailsArgsDict(TypedDict):
|
3016
|
+
password_vault_secret_id: NotRequired[pulumi.Input[_builtins.str]]
|
3017
|
+
"""
|
3018
|
+
(Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
3019
|
+
"""
|
3020
|
+
username: NotRequired[pulumi.Input[_builtins.str]]
|
3021
|
+
"""
|
3022
|
+
(Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
3023
|
+
"""
|
3024
|
+
elif False:
|
3025
|
+
DrProtectionGroupMemberDbSystemAdminUserDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
3026
|
+
|
3027
|
+
@pulumi.input_type
|
3028
|
+
class DrProtectionGroupMemberDbSystemAdminUserDetailsArgs:
|
3029
|
+
def __init__(__self__, *,
|
3030
|
+
password_vault_secret_id: Optional[pulumi.Input[_builtins.str]] = None,
|
3031
|
+
username: Optional[pulumi.Input[_builtins.str]] = None):
|
3032
|
+
"""
|
3033
|
+
:param pulumi.Input[_builtins.str] password_vault_secret_id: (Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
3034
|
+
:param pulumi.Input[_builtins.str] username: (Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
3035
|
+
"""
|
3036
|
+
if password_vault_secret_id is not None:
|
3037
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
3038
|
+
if username is not None:
|
3039
|
+
pulumi.set(__self__, "username", username)
|
3040
|
+
|
3041
|
+
@_builtins.property
|
3042
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
3043
|
+
def password_vault_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3044
|
+
"""
|
3045
|
+
(Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
3046
|
+
"""
|
3047
|
+
return pulumi.get(self, "password_vault_secret_id")
|
3048
|
+
|
3049
|
+
@password_vault_secret_id.setter
|
3050
|
+
def password_vault_secret_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3051
|
+
pulumi.set(self, "password_vault_secret_id", value)
|
3052
|
+
|
3053
|
+
@_builtins.property
|
3054
|
+
@pulumi.getter
|
3055
|
+
def username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3056
|
+
"""
|
3057
|
+
(Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
3058
|
+
"""
|
3059
|
+
return pulumi.get(self, "username")
|
3060
|
+
|
3061
|
+
@username.setter
|
3062
|
+
def username(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3063
|
+
pulumi.set(self, "username", value)
|
3064
|
+
|
3065
|
+
|
3066
|
+
if not MYPY:
|
3067
|
+
class DrProtectionGroupMemberDbSystemReplicationUserDetailsArgsDict(TypedDict):
|
3068
|
+
password_vault_secret_id: NotRequired[pulumi.Input[_builtins.str]]
|
3069
|
+
"""
|
3070
|
+
(Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
3071
|
+
"""
|
3072
|
+
username: NotRequired[pulumi.Input[_builtins.str]]
|
3073
|
+
"""
|
3074
|
+
(Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
3075
|
+
"""
|
3076
|
+
elif False:
|
3077
|
+
DrProtectionGroupMemberDbSystemReplicationUserDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
3078
|
+
|
3079
|
+
@pulumi.input_type
|
3080
|
+
class DrProtectionGroupMemberDbSystemReplicationUserDetailsArgs:
|
3081
|
+
def __init__(__self__, *,
|
3082
|
+
password_vault_secret_id: Optional[pulumi.Input[_builtins.str]] = None,
|
3083
|
+
username: Optional[pulumi.Input[_builtins.str]] = None):
|
3084
|
+
"""
|
3085
|
+
:param pulumi.Input[_builtins.str] password_vault_secret_id: (Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
3086
|
+
:param pulumi.Input[_builtins.str] username: (Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
3087
|
+
"""
|
3088
|
+
if password_vault_secret_id is not None:
|
3089
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
3090
|
+
if username is not None:
|
3091
|
+
pulumi.set(__self__, "username", username)
|
3092
|
+
|
3093
|
+
@_builtins.property
|
3094
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
3095
|
+
def password_vault_secret_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3096
|
+
"""
|
3097
|
+
(Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
3098
|
+
"""
|
3099
|
+
return pulumi.get(self, "password_vault_secret_id")
|
3100
|
+
|
3101
|
+
@password_vault_secret_id.setter
|
3102
|
+
def password_vault_secret_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3103
|
+
pulumi.set(self, "password_vault_secret_id", value)
|
3104
|
+
|
3105
|
+
@_builtins.property
|
3106
|
+
@pulumi.getter
|
3107
|
+
def username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
3108
|
+
"""
|
3109
|
+
(Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
3110
|
+
"""
|
3111
|
+
return pulumi.get(self, "username")
|
3112
|
+
|
3113
|
+
@username.setter
|
3114
|
+
def username(self, value: Optional[pulumi.Input[_builtins.str]]):
|
3115
|
+
pulumi.set(self, "username", value)
|
3116
|
+
|
3117
|
+
|
2890
3118
|
if not MYPY:
|
2891
3119
|
class DrProtectionGroupMemberDestinationEncryptionKeyArgsDict(TypedDict):
|
2892
3120
|
encryption_key_id: NotRequired[pulumi.Input[_builtins.str]]
|
@@ -507,6 +507,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
507
507
|
}],
|
508
508
|
"backup_config": {
|
509
509
|
"backup_schedule": dr_protection_group_members_backup_config_backup_schedule,
|
510
|
+
"exclude_namespaces": dr_protection_group_members_backup_config_exclude_namespaces,
|
510
511
|
"image_replication_vault_secret_id": test_secret["id"],
|
511
512
|
"max_number_of_backups_retained": dr_protection_group_members_backup_config_max_number_of_backups_retained,
|
512
513
|
"namespaces": dr_protection_group_members_backup_config_namespaces,
|
@@ -540,6 +541,14 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
540
541
|
"vault_id": test_vault["id"],
|
541
542
|
},
|
542
543
|
"connection_string_type": dr_protection_group_members_connection_string_type,
|
544
|
+
"db_system_admin_user_details": {
|
545
|
+
"password_vault_secret_id": test_secret["id"],
|
546
|
+
"username": dr_protection_group_members_db_system_admin_user_details_username,
|
547
|
+
},
|
548
|
+
"db_system_replication_user_details": {
|
549
|
+
"password_vault_secret_id": test_secret["id"],
|
550
|
+
"username": dr_protection_group_members_db_system_replication_user_details_username,
|
551
|
+
},
|
543
552
|
"destination_availability_domain": dr_protection_group_members_destination_availability_domain,
|
544
553
|
"destination_backup_policy_id": test_policy["id"],
|
545
554
|
"destination_capacity_reservation_id": destination_capacity_reservation_id,
|
@@ -567,6 +576,8 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
567
576
|
"mount_target_id": test_mount_target["id"],
|
568
577
|
},
|
569
578
|
}],
|
579
|
+
"gtid_reconciliation_timeout": dr_protection_group_members_gtid_reconciliation_timeout,
|
580
|
+
"is_continue_on_gtid_reconciliation_timeout": dr_protection_group_members_is_continue_on_gtid_reconciliation_timeout,
|
570
581
|
"is_movable": dr_protection_group_members_is_movable,
|
571
582
|
"is_retain_fault_domain": dr_protection_group_members_is_retain_fault_domain,
|
572
583
|
"is_start_stop_enabled": dr_protection_group_members_is_start_stop_enabled,
|
@@ -587,6 +598,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
587
598
|
"source_network_load_balancer_id": test_network_load_balancer["id"],
|
588
599
|
}],
|
589
600
|
"peer_cluster_id": test_cluster["id"],
|
601
|
+
"peer_db_system_id": test_db_system["id"],
|
590
602
|
"source_volume_to_destination_encryption_key_mappings": [{
|
591
603
|
"destination_encryption_key": {
|
592
604
|
"encryption_key_id": test_key["id"],
|
@@ -705,6 +717,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
705
717
|
}],
|
706
718
|
"backup_config": {
|
707
719
|
"backup_schedule": dr_protection_group_members_backup_config_backup_schedule,
|
720
|
+
"exclude_namespaces": dr_protection_group_members_backup_config_exclude_namespaces,
|
708
721
|
"image_replication_vault_secret_id": test_secret["id"],
|
709
722
|
"max_number_of_backups_retained": dr_protection_group_members_backup_config_max_number_of_backups_retained,
|
710
723
|
"namespaces": dr_protection_group_members_backup_config_namespaces,
|
@@ -738,6 +751,14 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
738
751
|
"vault_id": test_vault["id"],
|
739
752
|
},
|
740
753
|
"connection_string_type": dr_protection_group_members_connection_string_type,
|
754
|
+
"db_system_admin_user_details": {
|
755
|
+
"password_vault_secret_id": test_secret["id"],
|
756
|
+
"username": dr_protection_group_members_db_system_admin_user_details_username,
|
757
|
+
},
|
758
|
+
"db_system_replication_user_details": {
|
759
|
+
"password_vault_secret_id": test_secret["id"],
|
760
|
+
"username": dr_protection_group_members_db_system_replication_user_details_username,
|
761
|
+
},
|
741
762
|
"destination_availability_domain": dr_protection_group_members_destination_availability_domain,
|
742
763
|
"destination_backup_policy_id": test_policy["id"],
|
743
764
|
"destination_capacity_reservation_id": destination_capacity_reservation_id,
|
@@ -765,6 +786,8 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
765
786
|
"mount_target_id": test_mount_target["id"],
|
766
787
|
},
|
767
788
|
}],
|
789
|
+
"gtid_reconciliation_timeout": dr_protection_group_members_gtid_reconciliation_timeout,
|
790
|
+
"is_continue_on_gtid_reconciliation_timeout": dr_protection_group_members_is_continue_on_gtid_reconciliation_timeout,
|
768
791
|
"is_movable": dr_protection_group_members_is_movable,
|
769
792
|
"is_retain_fault_domain": dr_protection_group_members_is_retain_fault_domain,
|
770
793
|
"is_start_stop_enabled": dr_protection_group_members_is_start_stop_enabled,
|
@@ -785,6 +808,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
785
808
|
"source_network_load_balancer_id": test_network_load_balancer["id"],
|
786
809
|
}],
|
787
810
|
"peer_cluster_id": test_cluster["id"],
|
811
|
+
"peer_db_system_id": test_db_system["id"],
|
788
812
|
"source_volume_to_destination_encryption_key_mappings": [{
|
789
813
|
"destination_encryption_key": {
|
790
814
|
"encryption_key_id": test_key["id"],
|