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
@@ -38,6 +38,8 @@ __all__ = [
|
|
38
38
|
'DrProtectionGroupMemberBlockVolumeOperationAttachmentDetails',
|
39
39
|
'DrProtectionGroupMemberBlockVolumeOperationMountDetails',
|
40
40
|
'DrProtectionGroupMemberCommonDestinationKey',
|
41
|
+
'DrProtectionGroupMemberDbSystemAdminUserDetails',
|
42
|
+
'DrProtectionGroupMemberDbSystemReplicationUserDetails',
|
41
43
|
'DrProtectionGroupMemberDestinationEncryptionKey',
|
42
44
|
'DrProtectionGroupMemberExportMapping',
|
43
45
|
'DrProtectionGroupMemberFileSystemOperation',
|
@@ -88,6 +90,8 @@ __all__ = [
|
|
88
90
|
'GetDrProtectionGroupMemberBlockVolumeOperationAttachmentDetailResult',
|
89
91
|
'GetDrProtectionGroupMemberBlockVolumeOperationMountDetailResult',
|
90
92
|
'GetDrProtectionGroupMemberCommonDestinationKeyResult',
|
93
|
+
'GetDrProtectionGroupMemberDbSystemAdminUserDetailResult',
|
94
|
+
'GetDrProtectionGroupMemberDbSystemReplicationUserDetailResult',
|
91
95
|
'GetDrProtectionGroupMemberDestinationEncryptionKeyResult',
|
92
96
|
'GetDrProtectionGroupMemberExportMappingResult',
|
93
97
|
'GetDrProtectionGroupMemberFileSystemOperationResult',
|
@@ -116,6 +120,8 @@ __all__ = [
|
|
116
120
|
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBlockVolumeOperationAttachmentDetailResult',
|
117
121
|
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBlockVolumeOperationMountDetailResult',
|
118
122
|
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberCommonDestinationKeyResult',
|
123
|
+
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemAdminUserDetailResult',
|
124
|
+
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemReplicationUserDetailResult',
|
119
125
|
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDestinationEncryptionKeyResult',
|
120
126
|
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberExportMappingResult',
|
121
127
|
'GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberFileSystemOperationResult',
|
@@ -1185,6 +1191,10 @@ class DrProtectionGroupMember(dict):
|
|
1185
1191
|
suggest = "common_destination_key"
|
1186
1192
|
elif key == "connectionStringType":
|
1187
1193
|
suggest = "connection_string_type"
|
1194
|
+
elif key == "dbSystemAdminUserDetails":
|
1195
|
+
suggest = "db_system_admin_user_details"
|
1196
|
+
elif key == "dbSystemReplicationUserDetails":
|
1197
|
+
suggest = "db_system_replication_user_details"
|
1188
1198
|
elif key == "destinationAvailabilityDomain":
|
1189
1199
|
suggest = "destination_availability_domain"
|
1190
1200
|
elif key == "destinationBackupPolicyId":
|
@@ -1207,6 +1217,10 @@ class DrProtectionGroupMember(dict):
|
|
1207
1217
|
suggest = "export_mappings"
|
1208
1218
|
elif key == "fileSystemOperations":
|
1209
1219
|
suggest = "file_system_operations"
|
1220
|
+
elif key == "gtidReconciliationTimeout":
|
1221
|
+
suggest = "gtid_reconciliation_timeout"
|
1222
|
+
elif key == "isContinueOnGtidReconciliationTimeout":
|
1223
|
+
suggest = "is_continue_on_gtid_reconciliation_timeout"
|
1210
1224
|
elif key == "isMovable":
|
1211
1225
|
suggest = "is_movable"
|
1212
1226
|
elif key == "isRetainFaultDomain":
|
@@ -1225,6 +1239,8 @@ class DrProtectionGroupMember(dict):
|
|
1225
1239
|
suggest = "password_vault_secret_id"
|
1226
1240
|
elif key == "peerClusterId":
|
1227
1241
|
suggest = "peer_cluster_id"
|
1242
|
+
elif key == "peerDbSystemId":
|
1243
|
+
suggest = "peer_db_system_id"
|
1228
1244
|
elif key == "sourceVolumeToDestinationEncryptionKeyMappings":
|
1229
1245
|
suggest = "source_volume_to_destination_encryption_key_mappings"
|
1230
1246
|
elif key == "vaultMappings":
|
@@ -1259,6 +1275,8 @@ class DrProtectionGroupMember(dict):
|
|
1259
1275
|
bucket: Optional[_builtins.str] = None,
|
1260
1276
|
common_destination_key: Optional['outputs.DrProtectionGroupMemberCommonDestinationKey'] = None,
|
1261
1277
|
connection_string_type: Optional[_builtins.str] = None,
|
1278
|
+
db_system_admin_user_details: Optional['outputs.DrProtectionGroupMemberDbSystemAdminUserDetails'] = None,
|
1279
|
+
db_system_replication_user_details: Optional['outputs.DrProtectionGroupMemberDbSystemReplicationUserDetails'] = None,
|
1262
1280
|
destination_availability_domain: Optional[_builtins.str] = None,
|
1263
1281
|
destination_backup_policy_id: Optional[_builtins.str] = None,
|
1264
1282
|
destination_capacity_reservation_id: Optional[_builtins.str] = None,
|
@@ -1270,6 +1288,8 @@ class DrProtectionGroupMember(dict):
|
|
1270
1288
|
destination_snapshot_policy_id: Optional[_builtins.str] = None,
|
1271
1289
|
export_mappings: Optional[Sequence['outputs.DrProtectionGroupMemberExportMapping']] = None,
|
1272
1290
|
file_system_operations: Optional[Sequence['outputs.DrProtectionGroupMemberFileSystemOperation']] = None,
|
1291
|
+
gtid_reconciliation_timeout: Optional[_builtins.int] = None,
|
1292
|
+
is_continue_on_gtid_reconciliation_timeout: Optional[_builtins.bool] = None,
|
1273
1293
|
is_movable: Optional[_builtins.bool] = None,
|
1274
1294
|
is_retain_fault_domain: Optional[_builtins.bool] = None,
|
1275
1295
|
is_start_stop_enabled: Optional[_builtins.bool] = None,
|
@@ -1280,6 +1300,7 @@ class DrProtectionGroupMember(dict):
|
|
1280
1300
|
network_load_balancer_mappings: Optional[Sequence['outputs.DrProtectionGroupMemberNetworkLoadBalancerMapping']] = None,
|
1281
1301
|
password_vault_secret_id: Optional[_builtins.str] = None,
|
1282
1302
|
peer_cluster_id: Optional[_builtins.str] = None,
|
1303
|
+
peer_db_system_id: Optional[_builtins.str] = None,
|
1283
1304
|
source_volume_to_destination_encryption_key_mappings: Optional[Sequence['outputs.DrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMapping']] = None,
|
1284
1305
|
vault_mappings: Optional[Sequence['outputs.DrProtectionGroupMemberVaultMapping']] = None,
|
1285
1306
|
virtual_node_pool_configs: Optional[Sequence['outputs.DrProtectionGroupMemberVirtualNodePoolConfig']] = None,
|
@@ -1297,6 +1318,8 @@ class DrProtectionGroupMember(dict):
|
|
1297
1318
|
:param _builtins.str bucket: (Updatable) The bucket name inside the object storage namespace. Example: `bucket_name`
|
1298
1319
|
:param '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.
|
1299
1320
|
:param _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.
|
1321
|
+
:param '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.
|
1322
|
+
:param '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.
|
1300
1323
|
:param _builtins.str destination_availability_domain: (Updatable) The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
1301
1324
|
:param _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`
|
1302
1325
|
:param _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`
|
@@ -1308,6 +1331,8 @@ class DrProtectionGroupMember(dict):
|
|
1308
1331
|
:param _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`
|
1309
1332
|
:param Sequence['DrProtectionGroupMemberExportMappingArgs'] export_mappings: (Updatable) A list of mappings between file system exports in the primary region and mount targets in the standby region.
|
1310
1333
|
:param Sequence['DrProtectionGroupMemberFileSystemOperationArgs'] file_system_operations: (Updatable) A list of operations performed on file systems used by the compute instance.
|
1334
|
+
:param _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`
|
1335
|
+
:param _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`
|
1311
1336
|
:param _builtins.bool is_movable: (Updatable) A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
1312
1337
|
:param _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`
|
1313
1338
|
:param _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.*
|
@@ -1318,6 +1343,7 @@ class DrProtectionGroupMember(dict):
|
|
1318
1343
|
:param Sequence['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.
|
1319
1344
|
:param _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`
|
1320
1345
|
:param _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`
|
1346
|
+
:param _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`
|
1321
1347
|
:param Sequence['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.
|
1322
1348
|
|
1323
1349
|
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'.
|
@@ -1348,6 +1374,10 @@ class DrProtectionGroupMember(dict):
|
|
1348
1374
|
pulumi.set(__self__, "common_destination_key", common_destination_key)
|
1349
1375
|
if connection_string_type is not None:
|
1350
1376
|
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
1377
|
+
if db_system_admin_user_details is not None:
|
1378
|
+
pulumi.set(__self__, "db_system_admin_user_details", db_system_admin_user_details)
|
1379
|
+
if db_system_replication_user_details is not None:
|
1380
|
+
pulumi.set(__self__, "db_system_replication_user_details", db_system_replication_user_details)
|
1351
1381
|
if destination_availability_domain is not None:
|
1352
1382
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
1353
1383
|
if destination_backup_policy_id is not None:
|
@@ -1370,6 +1400,10 @@ class DrProtectionGroupMember(dict):
|
|
1370
1400
|
pulumi.set(__self__, "export_mappings", export_mappings)
|
1371
1401
|
if file_system_operations is not None:
|
1372
1402
|
pulumi.set(__self__, "file_system_operations", file_system_operations)
|
1403
|
+
if gtid_reconciliation_timeout is not None:
|
1404
|
+
pulumi.set(__self__, "gtid_reconciliation_timeout", gtid_reconciliation_timeout)
|
1405
|
+
if is_continue_on_gtid_reconciliation_timeout is not None:
|
1406
|
+
pulumi.set(__self__, "is_continue_on_gtid_reconciliation_timeout", is_continue_on_gtid_reconciliation_timeout)
|
1373
1407
|
if is_movable is not None:
|
1374
1408
|
pulumi.set(__self__, "is_movable", is_movable)
|
1375
1409
|
if is_retain_fault_domain is not None:
|
@@ -1390,6 +1424,8 @@ class DrProtectionGroupMember(dict):
|
|
1390
1424
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
1391
1425
|
if peer_cluster_id is not None:
|
1392
1426
|
pulumi.set(__self__, "peer_cluster_id", peer_cluster_id)
|
1427
|
+
if peer_db_system_id is not None:
|
1428
|
+
pulumi.set(__self__, "peer_db_system_id", peer_db_system_id)
|
1393
1429
|
if source_volume_to_destination_encryption_key_mappings is not None:
|
1394
1430
|
pulumi.set(__self__, "source_volume_to_destination_encryption_key_mappings", source_volume_to_destination_encryption_key_mappings)
|
1395
1431
|
if vault_mappings is not None:
|
@@ -1489,6 +1525,22 @@ class DrProtectionGroupMember(dict):
|
|
1489
1525
|
"""
|
1490
1526
|
return pulumi.get(self, "connection_string_type")
|
1491
1527
|
|
1528
|
+
@_builtins.property
|
1529
|
+
@pulumi.getter(name="dbSystemAdminUserDetails")
|
1530
|
+
def db_system_admin_user_details(self) -> Optional['outputs.DrProtectionGroupMemberDbSystemAdminUserDetails']:
|
1531
|
+
"""
|
1532
|
+
(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.
|
1533
|
+
"""
|
1534
|
+
return pulumi.get(self, "db_system_admin_user_details")
|
1535
|
+
|
1536
|
+
@_builtins.property
|
1537
|
+
@pulumi.getter(name="dbSystemReplicationUserDetails")
|
1538
|
+
def db_system_replication_user_details(self) -> Optional['outputs.DrProtectionGroupMemberDbSystemReplicationUserDetails']:
|
1539
|
+
"""
|
1540
|
+
(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.
|
1541
|
+
"""
|
1542
|
+
return pulumi.get(self, "db_system_replication_user_details")
|
1543
|
+
|
1492
1544
|
@_builtins.property
|
1493
1545
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
1494
1546
|
def destination_availability_domain(self) -> Optional[_builtins.str]:
|
@@ -1577,6 +1629,22 @@ class DrProtectionGroupMember(dict):
|
|
1577
1629
|
"""
|
1578
1630
|
return pulumi.get(self, "file_system_operations")
|
1579
1631
|
|
1632
|
+
@_builtins.property
|
1633
|
+
@pulumi.getter(name="gtidReconciliationTimeout")
|
1634
|
+
def gtid_reconciliation_timeout(self) -> Optional[_builtins.int]:
|
1635
|
+
"""
|
1636
|
+
(Updatable) The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
1637
|
+
"""
|
1638
|
+
return pulumi.get(self, "gtid_reconciliation_timeout")
|
1639
|
+
|
1640
|
+
@_builtins.property
|
1641
|
+
@pulumi.getter(name="isContinueOnGtidReconciliationTimeout")
|
1642
|
+
def is_continue_on_gtid_reconciliation_timeout(self) -> Optional[_builtins.bool]:
|
1643
|
+
"""
|
1644
|
+
(Updatable) A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
1645
|
+
"""
|
1646
|
+
return pulumi.get(self, "is_continue_on_gtid_reconciliation_timeout")
|
1647
|
+
|
1580
1648
|
@_builtins.property
|
1581
1649
|
@pulumi.getter(name="isMovable")
|
1582
1650
|
def is_movable(self) -> Optional[_builtins.bool]:
|
@@ -1657,6 +1725,14 @@ class DrProtectionGroupMember(dict):
|
|
1657
1725
|
"""
|
1658
1726
|
return pulumi.get(self, "peer_cluster_id")
|
1659
1727
|
|
1728
|
+
@_builtins.property
|
1729
|
+
@pulumi.getter(name="peerDbSystemId")
|
1730
|
+
def peer_db_system_id(self) -> Optional[_builtins.str]:
|
1731
|
+
"""
|
1732
|
+
(Updatable) The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
1733
|
+
"""
|
1734
|
+
return pulumi.get(self, "peer_db_system_id")
|
1735
|
+
|
1660
1736
|
@_builtins.property
|
1661
1737
|
@pulumi.getter(name="sourceVolumeToDestinationEncryptionKeyMappings")
|
1662
1738
|
def source_volume_to_destination_encryption_key_mappings(self) -> Optional[Sequence['outputs.DrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMapping']]:
|
@@ -1773,6 +1849,8 @@ class DrProtectionGroupMemberBackupConfig(dict):
|
|
1773
1849
|
suggest = None
|
1774
1850
|
if key == "backupSchedule":
|
1775
1851
|
suggest = "backup_schedule"
|
1852
|
+
elif key == "excludeNamespaces":
|
1853
|
+
suggest = "exclude_namespaces"
|
1776
1854
|
elif key == "imageReplicationVaultSecretId":
|
1777
1855
|
suggest = "image_replication_vault_secret_id"
|
1778
1856
|
elif key == "maxNumberOfBackupsRetained":
|
@@ -1793,6 +1871,7 @@ class DrProtectionGroupMemberBackupConfig(dict):
|
|
1793
1871
|
|
1794
1872
|
def __init__(__self__, *,
|
1795
1873
|
backup_schedule: Optional[_builtins.str] = None,
|
1874
|
+
exclude_namespaces: Optional[Sequence[_builtins.str]] = None,
|
1796
1875
|
image_replication_vault_secret_id: Optional[_builtins.str] = None,
|
1797
1876
|
max_number_of_backups_retained: Optional[_builtins.int] = None,
|
1798
1877
|
namespaces: Optional[Sequence[_builtins.str]] = None,
|
@@ -1813,13 +1892,16 @@ class DrProtectionGroupMemberBackupConfig(dict):
|
|
1813
1892
|
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).
|
1814
1893
|
|
1815
1894
|
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.
|
1895
|
+
:param Sequence[_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"]
|
1816
1896
|
:param _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.
|
1817
1897
|
:param _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.
|
1818
|
-
:param Sequence[_builtins.str] namespaces: (Updatable) A list of namespaces
|
1898
|
+
:param Sequence[_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"]
|
1819
1899
|
:param _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.
|
1820
1900
|
"""
|
1821
1901
|
if backup_schedule is not None:
|
1822
1902
|
pulumi.set(__self__, "backup_schedule", backup_schedule)
|
1903
|
+
if exclude_namespaces is not None:
|
1904
|
+
pulumi.set(__self__, "exclude_namespaces", exclude_namespaces)
|
1823
1905
|
if image_replication_vault_secret_id is not None:
|
1824
1906
|
pulumi.set(__self__, "image_replication_vault_secret_id", image_replication_vault_secret_id)
|
1825
1907
|
if max_number_of_backups_retained is not None:
|
@@ -1851,6 +1933,14 @@ class DrProtectionGroupMemberBackupConfig(dict):
|
|
1851
1933
|
"""
|
1852
1934
|
return pulumi.get(self, "backup_schedule")
|
1853
1935
|
|
1936
|
+
@_builtins.property
|
1937
|
+
@pulumi.getter(name="excludeNamespaces")
|
1938
|
+
def exclude_namespaces(self) -> Optional[Sequence[_builtins.str]]:
|
1939
|
+
"""
|
1940
|
+
(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"]
|
1941
|
+
"""
|
1942
|
+
return pulumi.get(self, "exclude_namespaces")
|
1943
|
+
|
1854
1944
|
@_builtins.property
|
1855
1945
|
@pulumi.getter(name="imageReplicationVaultSecretId")
|
1856
1946
|
def image_replication_vault_secret_id(self) -> Optional[_builtins.str]:
|
@@ -1871,7 +1961,7 @@ class DrProtectionGroupMemberBackupConfig(dict):
|
|
1871
1961
|
@pulumi.getter
|
1872
1962
|
def namespaces(self) -> Optional[Sequence[_builtins.str]]:
|
1873
1963
|
"""
|
1874
|
-
(Updatable) A list of namespaces
|
1964
|
+
(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"]
|
1875
1965
|
"""
|
1876
1966
|
return pulumi.get(self, "namespaces")
|
1877
1967
|
|
@@ -2230,6 +2320,102 @@ class DrProtectionGroupMemberCommonDestinationKey(dict):
|
|
2230
2320
|
return pulumi.get(self, "vault_id")
|
2231
2321
|
|
2232
2322
|
|
2323
|
+
@pulumi.output_type
|
2324
|
+
class DrProtectionGroupMemberDbSystemAdminUserDetails(dict):
|
2325
|
+
@staticmethod
|
2326
|
+
def __key_warning(key: str):
|
2327
|
+
suggest = None
|
2328
|
+
if key == "passwordVaultSecretId":
|
2329
|
+
suggest = "password_vault_secret_id"
|
2330
|
+
|
2331
|
+
if suggest:
|
2332
|
+
pulumi.log.warn(f"Key '{key}' not found in DrProtectionGroupMemberDbSystemAdminUserDetails. Access the value via the '{suggest}' property getter instead.")
|
2333
|
+
|
2334
|
+
def __getitem__(self, key: str) -> Any:
|
2335
|
+
DrProtectionGroupMemberDbSystemAdminUserDetails.__key_warning(key)
|
2336
|
+
return super().__getitem__(key)
|
2337
|
+
|
2338
|
+
def get(self, key: str, default = None) -> Any:
|
2339
|
+
DrProtectionGroupMemberDbSystemAdminUserDetails.__key_warning(key)
|
2340
|
+
return super().get(key, default)
|
2341
|
+
|
2342
|
+
def __init__(__self__, *,
|
2343
|
+
password_vault_secret_id: Optional[_builtins.str] = None,
|
2344
|
+
username: Optional[_builtins.str] = None):
|
2345
|
+
"""
|
2346
|
+
:param _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`
|
2347
|
+
:param _builtins.str username: (Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
2348
|
+
"""
|
2349
|
+
if password_vault_secret_id is not None:
|
2350
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
2351
|
+
if username is not None:
|
2352
|
+
pulumi.set(__self__, "username", username)
|
2353
|
+
|
2354
|
+
@_builtins.property
|
2355
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
2356
|
+
def password_vault_secret_id(self) -> Optional[_builtins.str]:
|
2357
|
+
"""
|
2358
|
+
(Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
2359
|
+
"""
|
2360
|
+
return pulumi.get(self, "password_vault_secret_id")
|
2361
|
+
|
2362
|
+
@_builtins.property
|
2363
|
+
@pulumi.getter
|
2364
|
+
def username(self) -> Optional[_builtins.str]:
|
2365
|
+
"""
|
2366
|
+
(Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
2367
|
+
"""
|
2368
|
+
return pulumi.get(self, "username")
|
2369
|
+
|
2370
|
+
|
2371
|
+
@pulumi.output_type
|
2372
|
+
class DrProtectionGroupMemberDbSystemReplicationUserDetails(dict):
|
2373
|
+
@staticmethod
|
2374
|
+
def __key_warning(key: str):
|
2375
|
+
suggest = None
|
2376
|
+
if key == "passwordVaultSecretId":
|
2377
|
+
suggest = "password_vault_secret_id"
|
2378
|
+
|
2379
|
+
if suggest:
|
2380
|
+
pulumi.log.warn(f"Key '{key}' not found in DrProtectionGroupMemberDbSystemReplicationUserDetails. Access the value via the '{suggest}' property getter instead.")
|
2381
|
+
|
2382
|
+
def __getitem__(self, key: str) -> Any:
|
2383
|
+
DrProtectionGroupMemberDbSystemReplicationUserDetails.__key_warning(key)
|
2384
|
+
return super().__getitem__(key)
|
2385
|
+
|
2386
|
+
def get(self, key: str, default = None) -> Any:
|
2387
|
+
DrProtectionGroupMemberDbSystemReplicationUserDetails.__key_warning(key)
|
2388
|
+
return super().get(key, default)
|
2389
|
+
|
2390
|
+
def __init__(__self__, *,
|
2391
|
+
password_vault_secret_id: Optional[_builtins.str] = None,
|
2392
|
+
username: Optional[_builtins.str] = None):
|
2393
|
+
"""
|
2394
|
+
:param _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`
|
2395
|
+
:param _builtins.str username: (Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
2396
|
+
"""
|
2397
|
+
if password_vault_secret_id is not None:
|
2398
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
2399
|
+
if username is not None:
|
2400
|
+
pulumi.set(__self__, "username", username)
|
2401
|
+
|
2402
|
+
@_builtins.property
|
2403
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
2404
|
+
def password_vault_secret_id(self) -> Optional[_builtins.str]:
|
2405
|
+
"""
|
2406
|
+
(Updatable) The OCID of the vault secret where the HeatWave MySQL DB System password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
2407
|
+
"""
|
2408
|
+
return pulumi.get(self, "password_vault_secret_id")
|
2409
|
+
|
2410
|
+
@_builtins.property
|
2411
|
+
@pulumi.getter
|
2412
|
+
def username(self) -> Optional[_builtins.str]:
|
2413
|
+
"""
|
2414
|
+
(Updatable) The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
2415
|
+
"""
|
2416
|
+
return pulumi.get(self, "username")
|
2417
|
+
|
2418
|
+
|
2233
2419
|
@pulumi.output_type
|
2234
2420
|
class DrProtectionGroupMemberDestinationEncryptionKey(dict):
|
2235
2421
|
@staticmethod
|
@@ -4954,6 +5140,8 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
4954
5140
|
bucket: _builtins.str,
|
4955
5141
|
common_destination_keys: Sequence['outputs.GetDrProtectionGroupMemberCommonDestinationKeyResult'],
|
4956
5142
|
connection_string_type: _builtins.str,
|
5143
|
+
db_system_admin_user_details: Sequence['outputs.GetDrProtectionGroupMemberDbSystemAdminUserDetailResult'],
|
5144
|
+
db_system_replication_user_details: Sequence['outputs.GetDrProtectionGroupMemberDbSystemReplicationUserDetailResult'],
|
4957
5145
|
destination_availability_domain: _builtins.str,
|
4958
5146
|
destination_backup_policy_id: _builtins.str,
|
4959
5147
|
destination_capacity_reservation_id: _builtins.str,
|
@@ -4965,6 +5153,8 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
4965
5153
|
destination_snapshot_policy_id: _builtins.str,
|
4966
5154
|
export_mappings: Sequence['outputs.GetDrProtectionGroupMemberExportMappingResult'],
|
4967
5155
|
file_system_operations: Sequence['outputs.GetDrProtectionGroupMemberFileSystemOperationResult'],
|
5156
|
+
gtid_reconciliation_timeout: _builtins.int,
|
5157
|
+
is_continue_on_gtid_reconciliation_timeout: _builtins.bool,
|
4968
5158
|
is_movable: _builtins.bool,
|
4969
5159
|
is_retain_fault_domain: _builtins.bool,
|
4970
5160
|
is_start_stop_enabled: _builtins.bool,
|
@@ -4977,6 +5167,7 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
4977
5167
|
network_load_balancer_mappings: Sequence['outputs.GetDrProtectionGroupMemberNetworkLoadBalancerMappingResult'],
|
4978
5168
|
password_vault_secret_id: _builtins.str,
|
4979
5169
|
peer_cluster_id: _builtins.str,
|
5170
|
+
peer_db_system_id: _builtins.str,
|
4980
5171
|
source_volume_to_destination_encryption_key_mappings: Sequence['outputs.GetDrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingResult'],
|
4981
5172
|
vault_mappings: Sequence['outputs.GetDrProtectionGroupMemberVaultMappingResult'],
|
4982
5173
|
virtual_node_pool_configs: Sequence['outputs.GetDrProtectionGroupMemberVirtualNodePoolConfigResult'],
|
@@ -4992,6 +5183,8 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
4992
5183
|
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `bucket_name`
|
4993
5184
|
:param Sequence['GetDrProtectionGroupMemberCommonDestinationKeyArgs'] common_destination_keys: The OCID of a vault and customer-managed encryption key in the destination region.
|
4994
5185
|
:param _builtins.str connection_string_type: 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.
|
5186
|
+
:param Sequence['GetDrProtectionGroupMemberDbSystemAdminUserDetailArgs'] db_system_admin_user_details: The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the vault secret that stores the password.
|
5187
|
+
:param Sequence['GetDrProtectionGroupMemberDbSystemReplicationUserDetailArgs'] db_system_replication_user_details: The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the vault secret that stores the password.
|
4995
5188
|
:param _builtins.str destination_availability_domain: The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
4996
5189
|
:param _builtins.str destination_backup_policy_id: 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`
|
4997
5190
|
:param _builtins.str destination_capacity_reservation_id: The OCID of a capacity reservation in the destination region which will be used to launch the compute instance. Example: `ocid1.capacityreservation.oc1..uniqueID`
|
@@ -5003,6 +5196,8 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5003
5196
|
:param _builtins.str destination_snapshot_policy_id: 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`
|
5004
5197
|
:param Sequence['GetDrProtectionGroupMemberExportMappingArgs'] export_mappings: A list of mappings between the primary region file system export and destination region mount target.
|
5005
5198
|
:param Sequence['GetDrProtectionGroupMemberFileSystemOperationArgs'] file_system_operations: Operations performed on a list of file systems used on the non-movable compute instance.
|
5199
|
+
:param _builtins.int gtid_reconciliation_timeout: The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
5200
|
+
:param _builtins.bool is_continue_on_gtid_reconciliation_timeout: A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
5006
5201
|
:param _builtins.bool is_movable: A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
5007
5202
|
:param _builtins.bool is_retain_fault_domain: 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`
|
5008
5203
|
:param _builtins.bool is_start_stop_enabled: A flag indicating whether the non-movable compute instance needs to be started and stopped during DR operations.
|
@@ -5015,6 +5210,7 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5015
5210
|
:param Sequence['GetDrProtectionGroupMemberNetworkLoadBalancerMappingArgs'] network_load_balancer_mappings: 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.
|
5016
5211
|
:param _builtins.str password_vault_secret_id: 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`
|
5017
5212
|
:param _builtins.str peer_cluster_id: 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`
|
5213
|
+
:param _builtins.str peer_db_system_id: The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
5018
5214
|
:param Sequence['GetDrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingArgs'] source_volume_to_destination_encryption_key_mappings: 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.
|
5019
5215
|
:param Sequence['GetDrProtectionGroupMemberVaultMappingArgs'] vault_mappings: The list of source-to-destination vault mappings required for DR operations. This property applies to the OKE cluster member in primary region.
|
5020
5216
|
:param Sequence['GetDrProtectionGroupMemberVirtualNodePoolConfigArgs'] virtual_node_pool_configs: The list of node pools with configurations for minimum and maximum node counts. This property applies to the OKE cluster member in both the primary and standby region.
|
@@ -5030,6 +5226,8 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5030
5226
|
pulumi.set(__self__, "bucket", bucket)
|
5031
5227
|
pulumi.set(__self__, "common_destination_keys", common_destination_keys)
|
5032
5228
|
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
5229
|
+
pulumi.set(__self__, "db_system_admin_user_details", db_system_admin_user_details)
|
5230
|
+
pulumi.set(__self__, "db_system_replication_user_details", db_system_replication_user_details)
|
5033
5231
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
5034
5232
|
pulumi.set(__self__, "destination_backup_policy_id", destination_backup_policy_id)
|
5035
5233
|
pulumi.set(__self__, "destination_capacity_reservation_id", destination_capacity_reservation_id)
|
@@ -5041,6 +5239,8 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5041
5239
|
pulumi.set(__self__, "destination_snapshot_policy_id", destination_snapshot_policy_id)
|
5042
5240
|
pulumi.set(__self__, "export_mappings", export_mappings)
|
5043
5241
|
pulumi.set(__self__, "file_system_operations", file_system_operations)
|
5242
|
+
pulumi.set(__self__, "gtid_reconciliation_timeout", gtid_reconciliation_timeout)
|
5243
|
+
pulumi.set(__self__, "is_continue_on_gtid_reconciliation_timeout", is_continue_on_gtid_reconciliation_timeout)
|
5044
5244
|
pulumi.set(__self__, "is_movable", is_movable)
|
5045
5245
|
pulumi.set(__self__, "is_retain_fault_domain", is_retain_fault_domain)
|
5046
5246
|
pulumi.set(__self__, "is_start_stop_enabled", is_start_stop_enabled)
|
@@ -5053,6 +5253,7 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5053
5253
|
pulumi.set(__self__, "network_load_balancer_mappings", network_load_balancer_mappings)
|
5054
5254
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
5055
5255
|
pulumi.set(__self__, "peer_cluster_id", peer_cluster_id)
|
5256
|
+
pulumi.set(__self__, "peer_db_system_id", peer_db_system_id)
|
5056
5257
|
pulumi.set(__self__, "source_volume_to_destination_encryption_key_mappings", source_volume_to_destination_encryption_key_mappings)
|
5057
5258
|
pulumi.set(__self__, "vault_mappings", vault_mappings)
|
5058
5259
|
pulumi.set(__self__, "virtual_node_pool_configs", virtual_node_pool_configs)
|
@@ -5131,6 +5332,22 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5131
5332
|
"""
|
5132
5333
|
return pulumi.get(self, "connection_string_type")
|
5133
5334
|
|
5335
|
+
@_builtins.property
|
5336
|
+
@pulumi.getter(name="dbSystemAdminUserDetails")
|
5337
|
+
def db_system_admin_user_details(self) -> Sequence['outputs.GetDrProtectionGroupMemberDbSystemAdminUserDetailResult']:
|
5338
|
+
"""
|
5339
|
+
The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the vault secret that stores the password.
|
5340
|
+
"""
|
5341
|
+
return pulumi.get(self, "db_system_admin_user_details")
|
5342
|
+
|
5343
|
+
@_builtins.property
|
5344
|
+
@pulumi.getter(name="dbSystemReplicationUserDetails")
|
5345
|
+
def db_system_replication_user_details(self) -> Sequence['outputs.GetDrProtectionGroupMemberDbSystemReplicationUserDetailResult']:
|
5346
|
+
"""
|
5347
|
+
The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the vault secret that stores the password.
|
5348
|
+
"""
|
5349
|
+
return pulumi.get(self, "db_system_replication_user_details")
|
5350
|
+
|
5134
5351
|
@_builtins.property
|
5135
5352
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
5136
5353
|
def destination_availability_domain(self) -> _builtins.str:
|
@@ -5219,6 +5436,22 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5219
5436
|
"""
|
5220
5437
|
return pulumi.get(self, "file_system_operations")
|
5221
5438
|
|
5439
|
+
@_builtins.property
|
5440
|
+
@pulumi.getter(name="gtidReconciliationTimeout")
|
5441
|
+
def gtid_reconciliation_timeout(self) -> _builtins.int:
|
5442
|
+
"""
|
5443
|
+
The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
5444
|
+
"""
|
5445
|
+
return pulumi.get(self, "gtid_reconciliation_timeout")
|
5446
|
+
|
5447
|
+
@_builtins.property
|
5448
|
+
@pulumi.getter(name="isContinueOnGtidReconciliationTimeout")
|
5449
|
+
def is_continue_on_gtid_reconciliation_timeout(self) -> _builtins.bool:
|
5450
|
+
"""
|
5451
|
+
A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
5452
|
+
"""
|
5453
|
+
return pulumi.get(self, "is_continue_on_gtid_reconciliation_timeout")
|
5454
|
+
|
5222
5455
|
@_builtins.property
|
5223
5456
|
@pulumi.getter(name="isMovable")
|
5224
5457
|
def is_movable(self) -> _builtins.bool:
|
@@ -5315,6 +5548,14 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
5315
5548
|
"""
|
5316
5549
|
return pulumi.get(self, "peer_cluster_id")
|
5317
5550
|
|
5551
|
+
@_builtins.property
|
5552
|
+
@pulumi.getter(name="peerDbSystemId")
|
5553
|
+
def peer_db_system_id(self) -> _builtins.str:
|
5554
|
+
"""
|
5555
|
+
The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
5556
|
+
"""
|
5557
|
+
return pulumi.get(self, "peer_db_system_id")
|
5558
|
+
|
5318
5559
|
@_builtins.property
|
5319
5560
|
@pulumi.getter(name="sourceVolumeToDestinationEncryptionKeyMappings")
|
5320
5561
|
def source_volume_to_destination_encryption_key_mappings(self) -> Sequence['outputs.GetDrProtectionGroupMemberSourceVolumeToDestinationEncryptionKeyMappingResult']:
|
@@ -5400,18 +5641,21 @@ class GetDrProtectionGroupMemberBackendSetMappingResult(dict):
|
|
5400
5641
|
class GetDrProtectionGroupMemberBackupConfigResult(dict):
|
5401
5642
|
def __init__(__self__, *,
|
5402
5643
|
backup_schedule: _builtins.str,
|
5644
|
+
exclude_namespaces: Sequence[_builtins.str],
|
5403
5645
|
image_replication_vault_secret_id: _builtins.str,
|
5404
5646
|
max_number_of_backups_retained: _builtins.int,
|
5405
5647
|
namespaces: Sequence[_builtins.str],
|
5406
5648
|
replicate_images: _builtins.str):
|
5407
5649
|
"""
|
5408
5650
|
:param _builtins.str backup_schedule: The schedule for backing up namespaces to the destination region. If a backup schedule is not specified, only a single backup will be created. This format of the string specifying the backup schedule must conform with RFC-5545. This schedule will use the UTC timezone. This property applies to the OKE cluster member in primary region. Example: FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1
|
5651
|
+
:param Sequence[_builtins.str] exclude_namespaces: 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"]
|
5409
5652
|
:param _builtins.str image_replication_vault_secret_id: 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.
|
5410
5653
|
:param _builtins.int max_number_of_backups_retained: The maximum number of backups that should be retained. This property applies to the OKE cluster member in primary region.
|
5411
|
-
:param Sequence[_builtins.str] namespaces: A list of namespaces
|
5654
|
+
:param Sequence[_builtins.str] namespaces: 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"]
|
5412
5655
|
:param _builtins.str replicate_images: Controls the behaviour of image replication across regions. This property applies to the OKE cluster member in primary region.
|
5413
5656
|
"""
|
5414
5657
|
pulumi.set(__self__, "backup_schedule", backup_schedule)
|
5658
|
+
pulumi.set(__self__, "exclude_namespaces", exclude_namespaces)
|
5415
5659
|
pulumi.set(__self__, "image_replication_vault_secret_id", image_replication_vault_secret_id)
|
5416
5660
|
pulumi.set(__self__, "max_number_of_backups_retained", max_number_of_backups_retained)
|
5417
5661
|
pulumi.set(__self__, "namespaces", namespaces)
|
@@ -5425,6 +5669,14 @@ class GetDrProtectionGroupMemberBackupConfigResult(dict):
|
|
5425
5669
|
"""
|
5426
5670
|
return pulumi.get(self, "backup_schedule")
|
5427
5671
|
|
5672
|
+
@_builtins.property
|
5673
|
+
@pulumi.getter(name="excludeNamespaces")
|
5674
|
+
def exclude_namespaces(self) -> Sequence[_builtins.str]:
|
5675
|
+
"""
|
5676
|
+
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"]
|
5677
|
+
"""
|
5678
|
+
return pulumi.get(self, "exclude_namespaces")
|
5679
|
+
|
5428
5680
|
@_builtins.property
|
5429
5681
|
@pulumi.getter(name="imageReplicationVaultSecretId")
|
5430
5682
|
def image_replication_vault_secret_id(self) -> _builtins.str:
|
@@ -5445,7 +5697,7 @@ class GetDrProtectionGroupMemberBackupConfigResult(dict):
|
|
5445
5697
|
@pulumi.getter
|
5446
5698
|
def namespaces(self) -> Sequence[_builtins.str]:
|
5447
5699
|
"""
|
5448
|
-
A list of namespaces
|
5700
|
+
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"]
|
5449
5701
|
"""
|
5450
5702
|
return pulumi.get(self, "namespaces")
|
5451
5703
|
|
@@ -5679,6 +5931,64 @@ class GetDrProtectionGroupMemberCommonDestinationKeyResult(dict):
|
|
5679
5931
|
return pulumi.get(self, "vault_id")
|
5680
5932
|
|
5681
5933
|
|
5934
|
+
@pulumi.output_type
|
5935
|
+
class GetDrProtectionGroupMemberDbSystemAdminUserDetailResult(dict):
|
5936
|
+
def __init__(__self__, *,
|
5937
|
+
password_vault_secret_id: _builtins.str,
|
5938
|
+
username: _builtins.str):
|
5939
|
+
"""
|
5940
|
+
:param _builtins.str password_vault_secret_id: 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`
|
5941
|
+
:param _builtins.str username: The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
5942
|
+
"""
|
5943
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
5944
|
+
pulumi.set(__self__, "username", username)
|
5945
|
+
|
5946
|
+
@_builtins.property
|
5947
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
5948
|
+
def password_vault_secret_id(self) -> _builtins.str:
|
5949
|
+
"""
|
5950
|
+
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`
|
5951
|
+
"""
|
5952
|
+
return pulumi.get(self, "password_vault_secret_id")
|
5953
|
+
|
5954
|
+
@_builtins.property
|
5955
|
+
@pulumi.getter
|
5956
|
+
def username(self) -> _builtins.str:
|
5957
|
+
"""
|
5958
|
+
The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
5959
|
+
"""
|
5960
|
+
return pulumi.get(self, "username")
|
5961
|
+
|
5962
|
+
|
5963
|
+
@pulumi.output_type
|
5964
|
+
class GetDrProtectionGroupMemberDbSystemReplicationUserDetailResult(dict):
|
5965
|
+
def __init__(__self__, *,
|
5966
|
+
password_vault_secret_id: _builtins.str,
|
5967
|
+
username: _builtins.str):
|
5968
|
+
"""
|
5969
|
+
:param _builtins.str password_vault_secret_id: 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`
|
5970
|
+
:param _builtins.str username: The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
5971
|
+
"""
|
5972
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
5973
|
+
pulumi.set(__self__, "username", username)
|
5974
|
+
|
5975
|
+
@_builtins.property
|
5976
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
5977
|
+
def password_vault_secret_id(self) -> _builtins.str:
|
5978
|
+
"""
|
5979
|
+
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`
|
5980
|
+
"""
|
5981
|
+
return pulumi.get(self, "password_vault_secret_id")
|
5982
|
+
|
5983
|
+
@_builtins.property
|
5984
|
+
@pulumi.getter
|
5985
|
+
def username(self) -> _builtins.str:
|
5986
|
+
"""
|
5987
|
+
The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
5988
|
+
"""
|
5989
|
+
return pulumi.get(self, "username")
|
5990
|
+
|
5991
|
+
|
5682
5992
|
@pulumi.output_type
|
5683
5993
|
class GetDrProtectionGroupMemberDestinationEncryptionKeyResult(dict):
|
5684
5994
|
def __init__(__self__, *,
|
@@ -6389,7 +6699,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemLogLocationResult(dict
|
|
6389
6699
|
namespace: _builtins.str,
|
6390
6700
|
object: _builtins.str):
|
6391
6701
|
"""
|
6392
|
-
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `
|
6702
|
+
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `operation_logs`
|
6393
6703
|
:param _builtins.str namespace: The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
6394
6704
|
:param _builtins.str object: The object name inside the object storage bucket. Example: `switchover_plan_executions`
|
6395
6705
|
"""
|
@@ -6401,7 +6711,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemLogLocationResult(dict
|
|
6401
6711
|
@pulumi.getter
|
6402
6712
|
def bucket(self) -> _builtins.str:
|
6403
6713
|
"""
|
6404
|
-
The bucket name inside the object storage namespace. Example: `
|
6714
|
+
The bucket name inside the object storage namespace. Example: `operation_logs`
|
6405
6715
|
"""
|
6406
6716
|
return pulumi.get(self, "bucket")
|
6407
6717
|
|
@@ -6434,6 +6744,8 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6434
6744
|
bucket: _builtins.str,
|
6435
6745
|
common_destination_keys: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberCommonDestinationKeyResult'],
|
6436
6746
|
connection_string_type: _builtins.str,
|
6747
|
+
db_system_admin_user_details: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemAdminUserDetailResult'],
|
6748
|
+
db_system_replication_user_details: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemReplicationUserDetailResult'],
|
6437
6749
|
destination_availability_domain: _builtins.str,
|
6438
6750
|
destination_backup_policy_id: _builtins.str,
|
6439
6751
|
destination_capacity_reservation_id: _builtins.str,
|
@@ -6445,6 +6757,8 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6445
6757
|
destination_snapshot_policy_id: _builtins.str,
|
6446
6758
|
export_mappings: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberExportMappingResult'],
|
6447
6759
|
file_system_operations: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberFileSystemOperationResult'],
|
6760
|
+
gtid_reconciliation_timeout: _builtins.int,
|
6761
|
+
is_continue_on_gtid_reconciliation_timeout: _builtins.bool,
|
6448
6762
|
is_movable: _builtins.bool,
|
6449
6763
|
is_retain_fault_domain: _builtins.bool,
|
6450
6764
|
is_start_stop_enabled: _builtins.bool,
|
@@ -6457,6 +6771,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6457
6771
|
network_load_balancer_mappings: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberNetworkLoadBalancerMappingResult'],
|
6458
6772
|
password_vault_secret_id: _builtins.str,
|
6459
6773
|
peer_cluster_id: _builtins.str,
|
6774
|
+
peer_db_system_id: _builtins.str,
|
6460
6775
|
source_volume_to_destination_encryption_key_mappings: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberSourceVolumeToDestinationEncryptionKeyMappingResult'],
|
6461
6776
|
vault_mappings: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVaultMappingResult'],
|
6462
6777
|
virtual_node_pool_configs: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVirtualNodePoolConfigResult'],
|
@@ -6469,8 +6784,10 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6469
6784
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackupLocationArgs'] backup_locations: The details for object storage backup location of an OKE Cluster
|
6470
6785
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBlockVolumeAttachAndMountOperationArgs'] block_volume_attach_and_mount_operations: The details of the block volume operations performed on the non-movable compute instance.
|
6471
6786
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBlockVolumeOperationArgs'] block_volume_operations: Deprecated. Use the 'blockVolumeAttachAndMountOperations' attribute instead of this. Operations performed on a list of block volumes used on the non-movable compute instance.
|
6472
|
-
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `
|
6787
|
+
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `operation_logs`
|
6473
6788
|
:param _builtins.str connection_string_type: 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.
|
6789
|
+
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemAdminUserDetailArgs'] db_system_admin_user_details: The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the vault secret that stores the password.
|
6790
|
+
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemReplicationUserDetailArgs'] db_system_replication_user_details: The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the vault secret that stores the password.
|
6474
6791
|
:param _builtins.str destination_availability_domain: The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
6475
6792
|
:param _builtins.str destination_backup_policy_id: 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`
|
6476
6793
|
:param _builtins.str destination_capacity_reservation_id: The OCID of a capacity reservation in the destination region which will be used to launch the compute instance. Example: `ocid1.capacityreservation.oc1..uniqueID`
|
@@ -6482,6 +6799,8 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6482
6799
|
:param _builtins.str destination_snapshot_policy_id: 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`
|
6483
6800
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberExportMappingArgs'] export_mappings: A list of mappings between the primary region file system export and destination region mount target.
|
6484
6801
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberFileSystemOperationArgs'] file_system_operations: Operations performed on a list of file systems used on the non-movable compute instance.
|
6802
|
+
:param _builtins.int gtid_reconciliation_timeout: The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
6803
|
+
:param _builtins.bool is_continue_on_gtid_reconciliation_timeout: A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
6485
6804
|
:param _builtins.bool is_movable: A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
6486
6805
|
:param _builtins.bool is_retain_fault_domain: 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`
|
6487
6806
|
:param _builtins.bool is_start_stop_enabled: A flag indicating whether the non-movable compute instance needs to be started and stopped during DR operations.
|
@@ -6494,6 +6813,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6494
6813
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberNetworkLoadBalancerMappingArgs'] network_load_balancer_mappings: 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.
|
6495
6814
|
:param _builtins.str password_vault_secret_id: 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`
|
6496
6815
|
:param _builtins.str peer_cluster_id: 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`
|
6816
|
+
:param _builtins.str peer_db_system_id: The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
6497
6817
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberSourceVolumeToDestinationEncryptionKeyMappingArgs'] source_volume_to_destination_encryption_key_mappings: 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.
|
6498
6818
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVaultMappingArgs'] vault_mappings: The list of source-to-destination vault mappings required for DR operations. This property applies to the OKE cluster member in primary region.
|
6499
6819
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVirtualNodePoolConfigArgs'] virtual_node_pool_configs: The list of node pools with configurations for minimum and maximum node counts. This property applies to the OKE cluster member in both the primary and standby region.
|
@@ -6509,6 +6829,8 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6509
6829
|
pulumi.set(__self__, "bucket", bucket)
|
6510
6830
|
pulumi.set(__self__, "common_destination_keys", common_destination_keys)
|
6511
6831
|
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
6832
|
+
pulumi.set(__self__, "db_system_admin_user_details", db_system_admin_user_details)
|
6833
|
+
pulumi.set(__self__, "db_system_replication_user_details", db_system_replication_user_details)
|
6512
6834
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
6513
6835
|
pulumi.set(__self__, "destination_backup_policy_id", destination_backup_policy_id)
|
6514
6836
|
pulumi.set(__self__, "destination_capacity_reservation_id", destination_capacity_reservation_id)
|
@@ -6520,6 +6842,8 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6520
6842
|
pulumi.set(__self__, "destination_snapshot_policy_id", destination_snapshot_policy_id)
|
6521
6843
|
pulumi.set(__self__, "export_mappings", export_mappings)
|
6522
6844
|
pulumi.set(__self__, "file_system_operations", file_system_operations)
|
6845
|
+
pulumi.set(__self__, "gtid_reconciliation_timeout", gtid_reconciliation_timeout)
|
6846
|
+
pulumi.set(__self__, "is_continue_on_gtid_reconciliation_timeout", is_continue_on_gtid_reconciliation_timeout)
|
6523
6847
|
pulumi.set(__self__, "is_movable", is_movable)
|
6524
6848
|
pulumi.set(__self__, "is_retain_fault_domain", is_retain_fault_domain)
|
6525
6849
|
pulumi.set(__self__, "is_start_stop_enabled", is_start_stop_enabled)
|
@@ -6532,6 +6856,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6532
6856
|
pulumi.set(__self__, "network_load_balancer_mappings", network_load_balancer_mappings)
|
6533
6857
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
6534
6858
|
pulumi.set(__self__, "peer_cluster_id", peer_cluster_id)
|
6859
|
+
pulumi.set(__self__, "peer_db_system_id", peer_db_system_id)
|
6535
6860
|
pulumi.set(__self__, "source_volume_to_destination_encryption_key_mappings", source_volume_to_destination_encryption_key_mappings)
|
6536
6861
|
pulumi.set(__self__, "vault_mappings", vault_mappings)
|
6537
6862
|
pulumi.set(__self__, "virtual_node_pool_configs", virtual_node_pool_configs)
|
@@ -6590,7 +6915,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6590
6915
|
@pulumi.getter
|
6591
6916
|
def bucket(self) -> _builtins.str:
|
6592
6917
|
"""
|
6593
|
-
The bucket name inside the object storage namespace. Example: `
|
6918
|
+
The bucket name inside the object storage namespace. Example: `operation_logs`
|
6594
6919
|
"""
|
6595
6920
|
return pulumi.get(self, "bucket")
|
6596
6921
|
|
@@ -6607,6 +6932,22 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6607
6932
|
"""
|
6608
6933
|
return pulumi.get(self, "connection_string_type")
|
6609
6934
|
|
6935
|
+
@_builtins.property
|
6936
|
+
@pulumi.getter(name="dbSystemAdminUserDetails")
|
6937
|
+
def db_system_admin_user_details(self) -> Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemAdminUserDetailResult']:
|
6938
|
+
"""
|
6939
|
+
The credentials for the HeatWave MySQL DB System administrator user, containing the username and the OCID of the vault secret that stores the password.
|
6940
|
+
"""
|
6941
|
+
return pulumi.get(self, "db_system_admin_user_details")
|
6942
|
+
|
6943
|
+
@_builtins.property
|
6944
|
+
@pulumi.getter(name="dbSystemReplicationUserDetails")
|
6945
|
+
def db_system_replication_user_details(self) -> Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemReplicationUserDetailResult']:
|
6946
|
+
"""
|
6947
|
+
The credentials for the HeatWave MySQL DB System replication user, containing the username and the OCID of the vault secret that stores the password.
|
6948
|
+
"""
|
6949
|
+
return pulumi.get(self, "db_system_replication_user_details")
|
6950
|
+
|
6610
6951
|
@_builtins.property
|
6611
6952
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
6612
6953
|
def destination_availability_domain(self) -> _builtins.str:
|
@@ -6695,6 +7036,22 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6695
7036
|
"""
|
6696
7037
|
return pulumi.get(self, "file_system_operations")
|
6697
7038
|
|
7039
|
+
@_builtins.property
|
7040
|
+
@pulumi.getter(name="gtidReconciliationTimeout")
|
7041
|
+
def gtid_reconciliation_timeout(self) -> _builtins.int:
|
7042
|
+
"""
|
7043
|
+
The maximum time (in seconds) to wait for the Global Transaction Identifier (GTID) synchronization process to complete before timing out. Example: `600`
|
7044
|
+
"""
|
7045
|
+
return pulumi.get(self, "gtid_reconciliation_timeout")
|
7046
|
+
|
7047
|
+
@_builtins.property
|
7048
|
+
@pulumi.getter(name="isContinueOnGtidReconciliationTimeout")
|
7049
|
+
def is_continue_on_gtid_reconciliation_timeout(self) -> _builtins.bool:
|
7050
|
+
"""
|
7051
|
+
A flag indicating whether to continue with DR operation if the Global Transaction Identifier (GTID) reconciliation operation times out. Example: `false`
|
7052
|
+
"""
|
7053
|
+
return pulumi.get(self, "is_continue_on_gtid_reconciliation_timeout")
|
7054
|
+
|
6698
7055
|
@_builtins.property
|
6699
7056
|
@pulumi.getter(name="isMovable")
|
6700
7057
|
def is_movable(self) -> _builtins.bool:
|
@@ -6791,6 +7148,14 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
6791
7148
|
"""
|
6792
7149
|
return pulumi.get(self, "peer_cluster_id")
|
6793
7150
|
|
7151
|
+
@_builtins.property
|
7152
|
+
@pulumi.getter(name="peerDbSystemId")
|
7153
|
+
def peer_db_system_id(self) -> _builtins.str:
|
7154
|
+
"""
|
7155
|
+
The OCID of the peer HeatWave MySQL DB System from the peer region. Example: `ocid1.mysqldbsystem.oc1..uniqueID`
|
7156
|
+
"""
|
7157
|
+
return pulumi.get(self, "peer_db_system_id")
|
7158
|
+
|
6794
7159
|
@_builtins.property
|
6795
7160
|
@pulumi.getter(name="sourceVolumeToDestinationEncryptionKeyMappings")
|
6796
7161
|
def source_volume_to_destination_encryption_key_mappings(self) -> Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberSourceVolumeToDestinationEncryptionKeyMappingResult']:
|
@@ -6876,18 +7241,21 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackendSetMappin
|
|
6876
7241
|
class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackupConfigResult(dict):
|
6877
7242
|
def __init__(__self__, *,
|
6878
7243
|
backup_schedule: _builtins.str,
|
7244
|
+
exclude_namespaces: Sequence[_builtins.str],
|
6879
7245
|
image_replication_vault_secret_id: _builtins.str,
|
6880
7246
|
max_number_of_backups_retained: _builtins.int,
|
6881
7247
|
namespaces: Sequence[_builtins.str],
|
6882
7248
|
replicate_images: _builtins.str):
|
6883
7249
|
"""
|
6884
7250
|
:param _builtins.str backup_schedule: The schedule for backing up namespaces to the destination region. If a backup schedule is not specified, only a single backup will be created. This format of the string specifying the backup schedule must conform with RFC-5545. This schedule will use the UTC timezone. This property applies to the OKE cluster member in primary region. Example: FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1
|
7251
|
+
:param Sequence[_builtins.str] exclude_namespaces: 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"]
|
6885
7252
|
:param _builtins.str image_replication_vault_secret_id: 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.
|
6886
7253
|
:param _builtins.int max_number_of_backups_retained: The maximum number of backups that should be retained. This property applies to the OKE cluster member in primary region.
|
6887
|
-
:param Sequence[_builtins.str] namespaces: A list of namespaces
|
7254
|
+
:param Sequence[_builtins.str] namespaces: 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"]
|
6888
7255
|
:param _builtins.str replicate_images: Controls the behaviour of image replication across regions. This property applies to the OKE cluster member in primary region.
|
6889
7256
|
"""
|
6890
7257
|
pulumi.set(__self__, "backup_schedule", backup_schedule)
|
7258
|
+
pulumi.set(__self__, "exclude_namespaces", exclude_namespaces)
|
6891
7259
|
pulumi.set(__self__, "image_replication_vault_secret_id", image_replication_vault_secret_id)
|
6892
7260
|
pulumi.set(__self__, "max_number_of_backups_retained", max_number_of_backups_retained)
|
6893
7261
|
pulumi.set(__self__, "namespaces", namespaces)
|
@@ -6901,6 +7269,14 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackupConfigResu
|
|
6901
7269
|
"""
|
6902
7270
|
return pulumi.get(self, "backup_schedule")
|
6903
7271
|
|
7272
|
+
@_builtins.property
|
7273
|
+
@pulumi.getter(name="excludeNamespaces")
|
7274
|
+
def exclude_namespaces(self) -> Sequence[_builtins.str]:
|
7275
|
+
"""
|
7276
|
+
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"]
|
7277
|
+
"""
|
7278
|
+
return pulumi.get(self, "exclude_namespaces")
|
7279
|
+
|
6904
7280
|
@_builtins.property
|
6905
7281
|
@pulumi.getter(name="imageReplicationVaultSecretId")
|
6906
7282
|
def image_replication_vault_secret_id(self) -> _builtins.str:
|
@@ -6921,7 +7297,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackupConfigResu
|
|
6921
7297
|
@pulumi.getter
|
6922
7298
|
def namespaces(self) -> Sequence[_builtins.str]:
|
6923
7299
|
"""
|
6924
|
-
A list of namespaces
|
7300
|
+
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"]
|
6925
7301
|
"""
|
6926
7302
|
return pulumi.get(self, "namespaces")
|
6927
7303
|
|
@@ -6941,7 +7317,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackupLocationRe
|
|
6941
7317
|
namespace: _builtins.str,
|
6942
7318
|
object: _builtins.str):
|
6943
7319
|
"""
|
6944
|
-
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `
|
7320
|
+
:param _builtins.str bucket: The bucket name inside the object storage namespace. Example: `operation_logs`
|
6945
7321
|
:param _builtins.str namespace: The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
6946
7322
|
:param _builtins.str object: The object name inside the object storage bucket. Example: `switchover_plan_executions`
|
6947
7323
|
"""
|
@@ -6953,7 +7329,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackupLocationRe
|
|
6953
7329
|
@pulumi.getter
|
6954
7330
|
def bucket(self) -> _builtins.str:
|
6955
7331
|
"""
|
6956
|
-
The bucket name inside the object storage namespace. Example: `
|
7332
|
+
The bucket name inside the object storage namespace. Example: `operation_logs`
|
6957
7333
|
"""
|
6958
7334
|
return pulumi.get(self, "bucket")
|
6959
7335
|
|
@@ -7155,6 +7531,64 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberCommonDestinatio
|
|
7155
7531
|
return pulumi.get(self, "vault_id")
|
7156
7532
|
|
7157
7533
|
|
7534
|
+
@pulumi.output_type
|
7535
|
+
class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemAdminUserDetailResult(dict):
|
7536
|
+
def __init__(__self__, *,
|
7537
|
+
password_vault_secret_id: _builtins.str,
|
7538
|
+
username: _builtins.str):
|
7539
|
+
"""
|
7540
|
+
:param _builtins.str password_vault_secret_id: 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`
|
7541
|
+
:param _builtins.str username: The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
7542
|
+
"""
|
7543
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
7544
|
+
pulumi.set(__self__, "username", username)
|
7545
|
+
|
7546
|
+
@_builtins.property
|
7547
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
7548
|
+
def password_vault_secret_id(self) -> _builtins.str:
|
7549
|
+
"""
|
7550
|
+
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`
|
7551
|
+
"""
|
7552
|
+
return pulumi.get(self, "password_vault_secret_id")
|
7553
|
+
|
7554
|
+
@_builtins.property
|
7555
|
+
@pulumi.getter
|
7556
|
+
def username(self) -> _builtins.str:
|
7557
|
+
"""
|
7558
|
+
The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
7559
|
+
"""
|
7560
|
+
return pulumi.get(self, "username")
|
7561
|
+
|
7562
|
+
|
7563
|
+
@pulumi.output_type
|
7564
|
+
class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDbSystemReplicationUserDetailResult(dict):
|
7565
|
+
def __init__(__self__, *,
|
7566
|
+
password_vault_secret_id: _builtins.str,
|
7567
|
+
username: _builtins.str):
|
7568
|
+
"""
|
7569
|
+
:param _builtins.str password_vault_secret_id: 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`
|
7570
|
+
:param _builtins.str username: The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
7571
|
+
"""
|
7572
|
+
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
7573
|
+
pulumi.set(__self__, "username", username)
|
7574
|
+
|
7575
|
+
@_builtins.property
|
7576
|
+
@pulumi.getter(name="passwordVaultSecretId")
|
7577
|
+
def password_vault_secret_id(self) -> _builtins.str:
|
7578
|
+
"""
|
7579
|
+
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`
|
7580
|
+
"""
|
7581
|
+
return pulumi.get(self, "password_vault_secret_id")
|
7582
|
+
|
7583
|
+
@_builtins.property
|
7584
|
+
@pulumi.getter
|
7585
|
+
def username(self) -> _builtins.str:
|
7586
|
+
"""
|
7587
|
+
The user name for connecting to the HeatWave MySQL DB System node. Example: `user`
|
7588
|
+
"""
|
7589
|
+
return pulumi.get(self, "username")
|
7590
|
+
|
7591
|
+
|
7158
7592
|
@pulumi.output_type
|
7159
7593
|
class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberDestinationEncryptionKeyResult(dict):
|
7160
7594
|
def __init__(__self__, *,
|