pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.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 +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -1090,8 +1090,11 @@ class DrProtectionGroupMemberArgs:
|
|
1090
1090
|
def __init__(__self__, *,
|
1091
1091
|
member_id: pulumi.Input[str],
|
1092
1092
|
member_type: pulumi.Input[str],
|
1093
|
+
autonomous_database_standby_type_for_dr_drills: Optional[pulumi.Input[str]] = None,
|
1093
1094
|
backend_set_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberBackendSetMappingArgs']]]] = None,
|
1094
1095
|
block_volume_operations: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberBlockVolumeOperationArgs']]]] = None,
|
1096
|
+
bucket: Optional[pulumi.Input[str]] = None,
|
1097
|
+
connection_string_type: Optional[pulumi.Input[str]] = None,
|
1095
1098
|
destination_availability_domain: Optional[pulumi.Input[str]] = None,
|
1096
1099
|
destination_capacity_reservation_id: Optional[pulumi.Input[str]] = None,
|
1097
1100
|
destination_compartment_id: Optional[pulumi.Input[str]] = None,
|
@@ -1103,14 +1106,18 @@ class DrProtectionGroupMemberArgs:
|
|
1103
1106
|
is_movable: Optional[pulumi.Input[bool]] = None,
|
1104
1107
|
is_retain_fault_domain: Optional[pulumi.Input[bool]] = None,
|
1105
1108
|
is_start_stop_enabled: Optional[pulumi.Input[bool]] = None,
|
1109
|
+
namespace: Optional[pulumi.Input[str]] = None,
|
1106
1110
|
password_vault_secret_id: Optional[pulumi.Input[str]] = None,
|
1107
1111
|
vnic_mapping: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberVnicMappingArgs']]]] = None,
|
1108
1112
|
vnic_mappings: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberVnicMappingArgs']]]] = None):
|
1109
1113
|
"""
|
1110
1114
|
:param pulumi.Input[str] member_id: (Updatable) The OCID of the member. Example: `ocid1.instance.oc1..uniqueID`
|
1111
1115
|
:param pulumi.Input[str] member_type: (Updatable) The type of the member.
|
1116
|
+
:param pulumi.Input[str] autonomous_database_standby_type_for_dr_drills: (Updatable) This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
1112
1117
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberBackendSetMappingArgs']]] backend_set_mappings: (Updatable) A list of backend set mappings that are used to transfer or update backends during DR.
|
1113
1118
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberBlockVolumeOperationArgs']]] block_volume_operations: (Updatable) A list of operations performed on block volumes used by the compute instance.
|
1119
|
+
:param pulumi.Input[str] bucket: (Updatable) The bucket name inside the object storage namespace. Example: `bucket_name`
|
1120
|
+
:param pulumi.Input[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.
|
1114
1121
|
:param pulumi.Input[str] destination_availability_domain: (Updatable) The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
1115
1122
|
:param pulumi.Input[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`
|
1116
1123
|
:param pulumi.Input[str] destination_compartment_id: (Updatable) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`
|
@@ -1122,16 +1129,23 @@ class DrProtectionGroupMemberArgs:
|
|
1122
1129
|
:param pulumi.Input[bool] is_movable: (Updatable) A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
1123
1130
|
:param pulumi.Input[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`
|
1124
1131
|
:param pulumi.Input[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.*
|
1125
|
-
:param pulumi.Input[str]
|
1132
|
+
:param pulumi.Input[str] namespace: (Updatable) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
1133
|
+
:param pulumi.Input[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`
|
1126
1134
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberVnicMappingArgs']]] vnic_mapping: (Updatable) A list of compute instance VNIC mappings.
|
1127
1135
|
:param pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberVnicMappingArgs']]] vnic_mappings: (Updatable) A list of compute instance VNIC mappings.
|
1128
1136
|
"""
|
1129
1137
|
pulumi.set(__self__, "member_id", member_id)
|
1130
1138
|
pulumi.set(__self__, "member_type", member_type)
|
1139
|
+
if autonomous_database_standby_type_for_dr_drills is not None:
|
1140
|
+
pulumi.set(__self__, "autonomous_database_standby_type_for_dr_drills", autonomous_database_standby_type_for_dr_drills)
|
1131
1141
|
if backend_set_mappings is not None:
|
1132
1142
|
pulumi.set(__self__, "backend_set_mappings", backend_set_mappings)
|
1133
1143
|
if block_volume_operations is not None:
|
1134
1144
|
pulumi.set(__self__, "block_volume_operations", block_volume_operations)
|
1145
|
+
if bucket is not None:
|
1146
|
+
pulumi.set(__self__, "bucket", bucket)
|
1147
|
+
if connection_string_type is not None:
|
1148
|
+
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
1135
1149
|
if destination_availability_domain is not None:
|
1136
1150
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
1137
1151
|
if destination_capacity_reservation_id is not None:
|
@@ -1154,6 +1168,8 @@ class DrProtectionGroupMemberArgs:
|
|
1154
1168
|
pulumi.set(__self__, "is_retain_fault_domain", is_retain_fault_domain)
|
1155
1169
|
if is_start_stop_enabled is not None:
|
1156
1170
|
pulumi.set(__self__, "is_start_stop_enabled", is_start_stop_enabled)
|
1171
|
+
if namespace is not None:
|
1172
|
+
pulumi.set(__self__, "namespace", namespace)
|
1157
1173
|
if password_vault_secret_id is not None:
|
1158
1174
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
1159
1175
|
if vnic_mapping is not None:
|
@@ -1185,6 +1201,18 @@ class DrProtectionGroupMemberArgs:
|
|
1185
1201
|
def member_type(self, value: pulumi.Input[str]):
|
1186
1202
|
pulumi.set(self, "member_type", value)
|
1187
1203
|
|
1204
|
+
@property
|
1205
|
+
@pulumi.getter(name="autonomousDatabaseStandbyTypeForDrDrills")
|
1206
|
+
def autonomous_database_standby_type_for_dr_drills(self) -> Optional[pulumi.Input[str]]:
|
1207
|
+
"""
|
1208
|
+
(Updatable) This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
1209
|
+
"""
|
1210
|
+
return pulumi.get(self, "autonomous_database_standby_type_for_dr_drills")
|
1211
|
+
|
1212
|
+
@autonomous_database_standby_type_for_dr_drills.setter
|
1213
|
+
def autonomous_database_standby_type_for_dr_drills(self, value: Optional[pulumi.Input[str]]):
|
1214
|
+
pulumi.set(self, "autonomous_database_standby_type_for_dr_drills", value)
|
1215
|
+
|
1188
1216
|
@property
|
1189
1217
|
@pulumi.getter(name="backendSetMappings")
|
1190
1218
|
def backend_set_mappings(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberBackendSetMappingArgs']]]]:
|
@@ -1209,6 +1237,30 @@ class DrProtectionGroupMemberArgs:
|
|
1209
1237
|
def block_volume_operations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['DrProtectionGroupMemberBlockVolumeOperationArgs']]]]):
|
1210
1238
|
pulumi.set(self, "block_volume_operations", value)
|
1211
1239
|
|
1240
|
+
@property
|
1241
|
+
@pulumi.getter
|
1242
|
+
def bucket(self) -> Optional[pulumi.Input[str]]:
|
1243
|
+
"""
|
1244
|
+
(Updatable) The bucket name inside the object storage namespace. Example: `bucket_name`
|
1245
|
+
"""
|
1246
|
+
return pulumi.get(self, "bucket")
|
1247
|
+
|
1248
|
+
@bucket.setter
|
1249
|
+
def bucket(self, value: Optional[pulumi.Input[str]]):
|
1250
|
+
pulumi.set(self, "bucket", value)
|
1251
|
+
|
1252
|
+
@property
|
1253
|
+
@pulumi.getter(name="connectionStringType")
|
1254
|
+
def connection_string_type(self) -> Optional[pulumi.Input[str]]:
|
1255
|
+
"""
|
1256
|
+
(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.
|
1257
|
+
"""
|
1258
|
+
return pulumi.get(self, "connection_string_type")
|
1259
|
+
|
1260
|
+
@connection_string_type.setter
|
1261
|
+
def connection_string_type(self, value: Optional[pulumi.Input[str]]):
|
1262
|
+
pulumi.set(self, "connection_string_type", value)
|
1263
|
+
|
1212
1264
|
@property
|
1213
1265
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
1214
1266
|
def destination_availability_domain(self) -> Optional[pulumi.Input[str]]:
|
@@ -1341,11 +1393,23 @@ class DrProtectionGroupMemberArgs:
|
|
1341
1393
|
def is_start_stop_enabled(self, value: Optional[pulumi.Input[bool]]):
|
1342
1394
|
pulumi.set(self, "is_start_stop_enabled", value)
|
1343
1395
|
|
1396
|
+
@property
|
1397
|
+
@pulumi.getter
|
1398
|
+
def namespace(self) -> Optional[pulumi.Input[str]]:
|
1399
|
+
"""
|
1400
|
+
(Updatable) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
1401
|
+
"""
|
1402
|
+
return pulumi.get(self, "namespace")
|
1403
|
+
|
1404
|
+
@namespace.setter
|
1405
|
+
def namespace(self, value: Optional[pulumi.Input[str]]):
|
1406
|
+
pulumi.set(self, "namespace", value)
|
1407
|
+
|
1344
1408
|
@property
|
1345
1409
|
@pulumi.getter(name="passwordVaultSecretId")
|
1346
1410
|
def password_vault_secret_id(self) -> Optional[pulumi.Input[str]]:
|
1347
1411
|
"""
|
1348
|
-
(Updatable) The OCID of the vault secret where the database SYSDBA password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
1412
|
+
(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`
|
1349
1413
|
"""
|
1350
1414
|
return pulumi.get(self, "password_vault_secret_id")
|
1351
1415
|
|
@@ -493,6 +493,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
493
493
|
members=[{
|
494
494
|
"member_id": dr_protection_group_members_member_id,
|
495
495
|
"member_type": dr_protection_group_members_member_type,
|
496
|
+
"autonomous_database_standby_type_for_dr_drills": dr_protection_group_members_autonomous_database_standby_type_for_dr_drills,
|
496
497
|
"backend_set_mappings": [{
|
497
498
|
"destination_backend_set_name": test_backend_set["name"],
|
498
499
|
"is_backend_set_for_non_movable": dr_protection_group_members_backend_set_mappings_is_backend_set_for_non_movable,
|
@@ -507,6 +508,8 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
507
508
|
"mount_point": dr_protection_group_members_block_volume_operations_mount_details_mount_point,
|
508
509
|
},
|
509
510
|
}],
|
511
|
+
"connection_string_type": dr_protection_group_members_connection_string_type,
|
512
|
+
"bucket": dr_protection_group_members_bucket,
|
510
513
|
"destination_availability_domain": dr_protection_group_members_destination_availability_domain,
|
511
514
|
"destination_capacity_reservation_id": destination_capacity_reservation_id,
|
512
515
|
"destination_compartment_id": test_compartment["id"],
|
@@ -531,6 +534,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
531
534
|
"is_movable": dr_protection_group_members_is_movable,
|
532
535
|
"is_retain_fault_domain": dr_protection_group_members_is_retain_fault_domain,
|
533
536
|
"is_start_stop_enabled": dr_protection_group_members_is_start_stop_enabled,
|
537
|
+
"namespace": dr_protection_group_members_namespace,
|
534
538
|
"password_vault_secret_id": password_vault_secret_id,
|
535
539
|
"vnic_mappings": [
|
536
540
|
{
|
@@ -625,6 +629,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
625
629
|
members=[{
|
626
630
|
"member_id": dr_protection_group_members_member_id,
|
627
631
|
"member_type": dr_protection_group_members_member_type,
|
632
|
+
"autonomous_database_standby_type_for_dr_drills": dr_protection_group_members_autonomous_database_standby_type_for_dr_drills,
|
628
633
|
"backend_set_mappings": [{
|
629
634
|
"destination_backend_set_name": test_backend_set["name"],
|
630
635
|
"is_backend_set_for_non_movable": dr_protection_group_members_backend_set_mappings_is_backend_set_for_non_movable,
|
@@ -639,6 +644,8 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
639
644
|
"mount_point": dr_protection_group_members_block_volume_operations_mount_details_mount_point,
|
640
645
|
},
|
641
646
|
}],
|
647
|
+
"connection_string_type": dr_protection_group_members_connection_string_type,
|
648
|
+
"bucket": dr_protection_group_members_bucket,
|
642
649
|
"destination_availability_domain": dr_protection_group_members_destination_availability_domain,
|
643
650
|
"destination_capacity_reservation_id": destination_capacity_reservation_id,
|
644
651
|
"destination_compartment_id": test_compartment["id"],
|
@@ -663,6 +670,7 @@ class DrProtectionGroup(pulumi.CustomResource):
|
|
663
670
|
"is_movable": dr_protection_group_members_is_movable,
|
664
671
|
"is_retain_fault_domain": dr_protection_group_members_is_retain_fault_domain,
|
665
672
|
"is_start_stop_enabled": dr_protection_group_members_is_start_stop_enabled,
|
673
|
+
"namespace": dr_protection_group_members_namespace,
|
666
674
|
"password_vault_secret_id": password_vault_secret_id,
|
667
675
|
"vnic_mappings": [
|
668
676
|
{
|
@@ -123,6 +123,18 @@ def get_dr_plan_executions(display_name: Optional[str] = None,
|
|
123
123
|
|
124
124
|
Get a summary list of all DR plan executions for a DR protection group.
|
125
125
|
|
126
|
+
## Example Usage
|
127
|
+
|
128
|
+
```python
|
129
|
+
import pulumi
|
130
|
+
import pulumi_oci as oci
|
131
|
+
|
132
|
+
test_dr_plan_executions = oci.DisasterRecovery.get_dr_plan_executions(dr_protection_group_id=test_dr_protection_group["id"],
|
133
|
+
display_name=dr_plan_execution_display_name,
|
134
|
+
dr_plan_execution_id=test_dr_plan_execution["id"],
|
135
|
+
state=dr_plan_execution_state)
|
136
|
+
```
|
137
|
+
|
126
138
|
|
127
139
|
:param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
|
128
140
|
:param str dr_plan_execution_id: The OCID of the DR plan execution. Example: `ocid1.drplanexecution.oc1..uniqueID`
|
@@ -160,6 +172,18 @@ def get_dr_plan_executions_output(display_name: Optional[pulumi.Input[Optional[s
|
|
160
172
|
|
161
173
|
Get a summary list of all DR plan executions for a DR protection group.
|
162
174
|
|
175
|
+
## Example Usage
|
176
|
+
|
177
|
+
```python
|
178
|
+
import pulumi
|
179
|
+
import pulumi_oci as oci
|
180
|
+
|
181
|
+
test_dr_plan_executions = oci.DisasterRecovery.get_dr_plan_executions(dr_protection_group_id=test_dr_protection_group["id"],
|
182
|
+
display_name=dr_plan_execution_display_name,
|
183
|
+
dr_plan_execution_id=test_dr_plan_execution["id"],
|
184
|
+
state=dr_plan_execution_state)
|
185
|
+
```
|
186
|
+
|
163
187
|
|
164
188
|
:param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
|
165
189
|
:param str dr_plan_execution_id: The OCID of the DR plan execution. Example: `ocid1.drplanexecution.oc1..uniqueID`
|
@@ -1082,10 +1082,14 @@ class DrProtectionGroupMember(dict):
|
|
1082
1082
|
suggest = "member_id"
|
1083
1083
|
elif key == "memberType":
|
1084
1084
|
suggest = "member_type"
|
1085
|
+
elif key == "autonomousDatabaseStandbyTypeForDrDrills":
|
1086
|
+
suggest = "autonomous_database_standby_type_for_dr_drills"
|
1085
1087
|
elif key == "backendSetMappings":
|
1086
1088
|
suggest = "backend_set_mappings"
|
1087
1089
|
elif key == "blockVolumeOperations":
|
1088
1090
|
suggest = "block_volume_operations"
|
1091
|
+
elif key == "connectionStringType":
|
1092
|
+
suggest = "connection_string_type"
|
1089
1093
|
elif key == "destinationAvailabilityDomain":
|
1090
1094
|
suggest = "destination_availability_domain"
|
1091
1095
|
elif key == "destinationCapacityReservationId":
|
@@ -1129,8 +1133,11 @@ class DrProtectionGroupMember(dict):
|
|
1129
1133
|
def __init__(__self__, *,
|
1130
1134
|
member_id: str,
|
1131
1135
|
member_type: str,
|
1136
|
+
autonomous_database_standby_type_for_dr_drills: Optional[str] = None,
|
1132
1137
|
backend_set_mappings: Optional[Sequence['outputs.DrProtectionGroupMemberBackendSetMapping']] = None,
|
1133
1138
|
block_volume_operations: Optional[Sequence['outputs.DrProtectionGroupMemberBlockVolumeOperation']] = None,
|
1139
|
+
bucket: Optional[str] = None,
|
1140
|
+
connection_string_type: Optional[str] = None,
|
1134
1141
|
destination_availability_domain: Optional[str] = None,
|
1135
1142
|
destination_capacity_reservation_id: Optional[str] = None,
|
1136
1143
|
destination_compartment_id: Optional[str] = None,
|
@@ -1142,14 +1149,18 @@ class DrProtectionGroupMember(dict):
|
|
1142
1149
|
is_movable: Optional[bool] = None,
|
1143
1150
|
is_retain_fault_domain: Optional[bool] = None,
|
1144
1151
|
is_start_stop_enabled: Optional[bool] = None,
|
1152
|
+
namespace: Optional[str] = None,
|
1145
1153
|
password_vault_secret_id: Optional[str] = None,
|
1146
1154
|
vnic_mapping: Optional[Sequence['outputs.DrProtectionGroupMemberVnicMapping']] = None,
|
1147
1155
|
vnic_mappings: Optional[Sequence['outputs.DrProtectionGroupMemberVnicMapping']] = None):
|
1148
1156
|
"""
|
1149
1157
|
:param str member_id: (Updatable) The OCID of the member. Example: `ocid1.instance.oc1..uniqueID`
|
1150
1158
|
:param str member_type: (Updatable) The type of the member.
|
1159
|
+
:param str autonomous_database_standby_type_for_dr_drills: (Updatable) This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
1151
1160
|
:param Sequence['DrProtectionGroupMemberBackendSetMappingArgs'] backend_set_mappings: (Updatable) A list of backend set mappings that are used to transfer or update backends during DR.
|
1152
1161
|
:param Sequence['DrProtectionGroupMemberBlockVolumeOperationArgs'] block_volume_operations: (Updatable) A list of operations performed on block volumes used by the compute instance.
|
1162
|
+
:param str bucket: (Updatable) The bucket name inside the object storage namespace. Example: `bucket_name`
|
1163
|
+
:param 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.
|
1153
1164
|
:param str destination_availability_domain: (Updatable) The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
1154
1165
|
:param 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`
|
1155
1166
|
:param str destination_compartment_id: (Updatable) The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`
|
@@ -1161,16 +1172,23 @@ class DrProtectionGroupMember(dict):
|
|
1161
1172
|
:param bool is_movable: (Updatable) A flag indicating if the compute instance should be moved during DR operations. Example: `false`
|
1162
1173
|
:param 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`
|
1163
1174
|
:param 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.*
|
1164
|
-
:param str
|
1175
|
+
:param str namespace: (Updatable) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
1176
|
+
:param 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`
|
1165
1177
|
:param Sequence['DrProtectionGroupMemberVnicMappingArgs'] vnic_mapping: (Updatable) A list of compute instance VNIC mappings.
|
1166
1178
|
:param Sequence['DrProtectionGroupMemberVnicMappingArgs'] vnic_mappings: (Updatable) A list of compute instance VNIC mappings.
|
1167
1179
|
"""
|
1168
1180
|
pulumi.set(__self__, "member_id", member_id)
|
1169
1181
|
pulumi.set(__self__, "member_type", member_type)
|
1182
|
+
if autonomous_database_standby_type_for_dr_drills is not None:
|
1183
|
+
pulumi.set(__self__, "autonomous_database_standby_type_for_dr_drills", autonomous_database_standby_type_for_dr_drills)
|
1170
1184
|
if backend_set_mappings is not None:
|
1171
1185
|
pulumi.set(__self__, "backend_set_mappings", backend_set_mappings)
|
1172
1186
|
if block_volume_operations is not None:
|
1173
1187
|
pulumi.set(__self__, "block_volume_operations", block_volume_operations)
|
1188
|
+
if bucket is not None:
|
1189
|
+
pulumi.set(__self__, "bucket", bucket)
|
1190
|
+
if connection_string_type is not None:
|
1191
|
+
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
1174
1192
|
if destination_availability_domain is not None:
|
1175
1193
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
1176
1194
|
if destination_capacity_reservation_id is not None:
|
@@ -1193,6 +1211,8 @@ class DrProtectionGroupMember(dict):
|
|
1193
1211
|
pulumi.set(__self__, "is_retain_fault_domain", is_retain_fault_domain)
|
1194
1212
|
if is_start_stop_enabled is not None:
|
1195
1213
|
pulumi.set(__self__, "is_start_stop_enabled", is_start_stop_enabled)
|
1214
|
+
if namespace is not None:
|
1215
|
+
pulumi.set(__self__, "namespace", namespace)
|
1196
1216
|
if password_vault_secret_id is not None:
|
1197
1217
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
1198
1218
|
if vnic_mapping is not None:
|
@@ -1216,6 +1236,14 @@ class DrProtectionGroupMember(dict):
|
|
1216
1236
|
"""
|
1217
1237
|
return pulumi.get(self, "member_type")
|
1218
1238
|
|
1239
|
+
@property
|
1240
|
+
@pulumi.getter(name="autonomousDatabaseStandbyTypeForDrDrills")
|
1241
|
+
def autonomous_database_standby_type_for_dr_drills(self) -> Optional[str]:
|
1242
|
+
"""
|
1243
|
+
(Updatable) This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
1244
|
+
"""
|
1245
|
+
return pulumi.get(self, "autonomous_database_standby_type_for_dr_drills")
|
1246
|
+
|
1219
1247
|
@property
|
1220
1248
|
@pulumi.getter(name="backendSetMappings")
|
1221
1249
|
def backend_set_mappings(self) -> Optional[Sequence['outputs.DrProtectionGroupMemberBackendSetMapping']]:
|
@@ -1232,6 +1260,22 @@ class DrProtectionGroupMember(dict):
|
|
1232
1260
|
"""
|
1233
1261
|
return pulumi.get(self, "block_volume_operations")
|
1234
1262
|
|
1263
|
+
@property
|
1264
|
+
@pulumi.getter
|
1265
|
+
def bucket(self) -> Optional[str]:
|
1266
|
+
"""
|
1267
|
+
(Updatable) The bucket name inside the object storage namespace. Example: `bucket_name`
|
1268
|
+
"""
|
1269
|
+
return pulumi.get(self, "bucket")
|
1270
|
+
|
1271
|
+
@property
|
1272
|
+
@pulumi.getter(name="connectionStringType")
|
1273
|
+
def connection_string_type(self) -> Optional[str]:
|
1274
|
+
"""
|
1275
|
+
(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.
|
1276
|
+
"""
|
1277
|
+
return pulumi.get(self, "connection_string_type")
|
1278
|
+
|
1235
1279
|
@property
|
1236
1280
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
1237
1281
|
def destination_availability_domain(self) -> Optional[str]:
|
@@ -1320,11 +1364,19 @@ class DrProtectionGroupMember(dict):
|
|
1320
1364
|
"""
|
1321
1365
|
return pulumi.get(self, "is_start_stop_enabled")
|
1322
1366
|
|
1367
|
+
@property
|
1368
|
+
@pulumi.getter
|
1369
|
+
def namespace(self) -> Optional[str]:
|
1370
|
+
"""
|
1371
|
+
(Updatable) The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
1372
|
+
"""
|
1373
|
+
return pulumi.get(self, "namespace")
|
1374
|
+
|
1323
1375
|
@property
|
1324
1376
|
@pulumi.getter(name="passwordVaultSecretId")
|
1325
1377
|
def password_vault_secret_id(self) -> Optional[str]:
|
1326
1378
|
"""
|
1327
|
-
(Updatable) The OCID of the vault secret where the database SYSDBA password is stored. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
1379
|
+
(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`
|
1328
1380
|
"""
|
1329
1381
|
return pulumi.get(self, "password_vault_secret_id")
|
1330
1382
|
|
@@ -3700,7 +3752,7 @@ class GetDrProtectionGroupLogLocationResult(dict):
|
|
3700
3752
|
namespace: str,
|
3701
3753
|
object: str):
|
3702
3754
|
"""
|
3703
|
-
:param str bucket: The bucket name inside the object storage namespace. Example: `
|
3755
|
+
:param str bucket: The bucket name inside the object storage namespace. Example: `bucket_name`
|
3704
3756
|
:param str namespace: The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
3705
3757
|
:param str object: The object name inside the object storage bucket. Example: `switchover_plan_executions`
|
3706
3758
|
"""
|
@@ -3712,7 +3764,7 @@ class GetDrProtectionGroupLogLocationResult(dict):
|
|
3712
3764
|
@pulumi.getter
|
3713
3765
|
def bucket(self) -> str:
|
3714
3766
|
"""
|
3715
|
-
The bucket name inside the object storage namespace. Example: `
|
3767
|
+
The bucket name inside the object storage namespace. Example: `bucket_name`
|
3716
3768
|
"""
|
3717
3769
|
return pulumi.get(self, "bucket")
|
3718
3770
|
|
@@ -3736,8 +3788,11 @@ class GetDrProtectionGroupLogLocationResult(dict):
|
|
3736
3788
|
@pulumi.output_type
|
3737
3789
|
class GetDrProtectionGroupMemberResult(dict):
|
3738
3790
|
def __init__(__self__, *,
|
3791
|
+
autonomous_database_standby_type_for_dr_drills: str,
|
3739
3792
|
backend_set_mappings: Sequence['outputs.GetDrProtectionGroupMemberBackendSetMappingResult'],
|
3740
3793
|
block_volume_operations: Sequence['outputs.GetDrProtectionGroupMemberBlockVolumeOperationResult'],
|
3794
|
+
bucket: str,
|
3795
|
+
connection_string_type: str,
|
3741
3796
|
destination_availability_domain: str,
|
3742
3797
|
destination_capacity_reservation_id: str,
|
3743
3798
|
destination_compartment_id: str,
|
@@ -3751,12 +3806,16 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
3751
3806
|
is_start_stop_enabled: bool,
|
3752
3807
|
member_id: str,
|
3753
3808
|
member_type: str,
|
3809
|
+
namespace: str,
|
3754
3810
|
password_vault_secret_id: str,
|
3755
3811
|
vnic_mapping: Sequence['outputs.GetDrProtectionGroupMemberVnicMappingResult'],
|
3756
3812
|
vnic_mappings: Sequence['outputs.GetDrProtectionGroupMemberVnicMappingResult']):
|
3757
3813
|
"""
|
3814
|
+
:param str autonomous_database_standby_type_for_dr_drills: This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
3758
3815
|
:param Sequence['GetDrProtectionGroupMemberBackendSetMappingArgs'] backend_set_mappings: A list of backend set mappings that are used to transfer or update backends during DR.
|
3759
3816
|
:param Sequence['GetDrProtectionGroupMemberBlockVolumeOperationArgs'] block_volume_operations: Operations performed on a list of block volumes used on the non-movable compute instance.
|
3817
|
+
:param str bucket: The bucket name inside the object storage namespace. Example: `bucket_name`
|
3818
|
+
:param 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.
|
3760
3819
|
:param str destination_availability_domain: The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
3761
3820
|
:param 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`
|
3762
3821
|
:param str destination_compartment_id: The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`
|
@@ -3770,12 +3829,16 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
3770
3829
|
:param bool is_start_stop_enabled: A flag indicating whether the non-movable compute instance needs to be started and stopped during DR operations.
|
3771
3830
|
:param str member_id: The OCID of the member. Example: `ocid1.instance.oc1..uniqueID`
|
3772
3831
|
:param str member_type: The type of the member.
|
3773
|
-
:param str
|
3832
|
+
:param str namespace: The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
3833
|
+
:param 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`
|
3774
3834
|
:param Sequence['GetDrProtectionGroupMemberVnicMappingArgs'] vnic_mapping: A list of compute instance VNIC mappings.
|
3775
3835
|
:param Sequence['GetDrProtectionGroupMemberVnicMappingArgs'] vnic_mappings: A list of compute instance VNIC mappings.
|
3776
3836
|
"""
|
3837
|
+
pulumi.set(__self__, "autonomous_database_standby_type_for_dr_drills", autonomous_database_standby_type_for_dr_drills)
|
3777
3838
|
pulumi.set(__self__, "backend_set_mappings", backend_set_mappings)
|
3778
3839
|
pulumi.set(__self__, "block_volume_operations", block_volume_operations)
|
3840
|
+
pulumi.set(__self__, "bucket", bucket)
|
3841
|
+
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
3779
3842
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
3780
3843
|
pulumi.set(__self__, "destination_capacity_reservation_id", destination_capacity_reservation_id)
|
3781
3844
|
pulumi.set(__self__, "destination_compartment_id", destination_compartment_id)
|
@@ -3789,10 +3852,19 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
3789
3852
|
pulumi.set(__self__, "is_start_stop_enabled", is_start_stop_enabled)
|
3790
3853
|
pulumi.set(__self__, "member_id", member_id)
|
3791
3854
|
pulumi.set(__self__, "member_type", member_type)
|
3855
|
+
pulumi.set(__self__, "namespace", namespace)
|
3792
3856
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
3793
3857
|
pulumi.set(__self__, "vnic_mapping", vnic_mapping)
|
3794
3858
|
pulumi.set(__self__, "vnic_mappings", vnic_mappings)
|
3795
3859
|
|
3860
|
+
@property
|
3861
|
+
@pulumi.getter(name="autonomousDatabaseStandbyTypeForDrDrills")
|
3862
|
+
def autonomous_database_standby_type_for_dr_drills(self) -> str:
|
3863
|
+
"""
|
3864
|
+
This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
3865
|
+
"""
|
3866
|
+
return pulumi.get(self, "autonomous_database_standby_type_for_dr_drills")
|
3867
|
+
|
3796
3868
|
@property
|
3797
3869
|
@pulumi.getter(name="backendSetMappings")
|
3798
3870
|
def backend_set_mappings(self) -> Sequence['outputs.GetDrProtectionGroupMemberBackendSetMappingResult']:
|
@@ -3809,6 +3881,22 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
3809
3881
|
"""
|
3810
3882
|
return pulumi.get(self, "block_volume_operations")
|
3811
3883
|
|
3884
|
+
@property
|
3885
|
+
@pulumi.getter
|
3886
|
+
def bucket(self) -> str:
|
3887
|
+
"""
|
3888
|
+
The bucket name inside the object storage namespace. Example: `bucket_name`
|
3889
|
+
"""
|
3890
|
+
return pulumi.get(self, "bucket")
|
3891
|
+
|
3892
|
+
@property
|
3893
|
+
@pulumi.getter(name="connectionStringType")
|
3894
|
+
def connection_string_type(self) -> str:
|
3895
|
+
"""
|
3896
|
+
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.
|
3897
|
+
"""
|
3898
|
+
return pulumi.get(self, "connection_string_type")
|
3899
|
+
|
3812
3900
|
@property
|
3813
3901
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
3814
3902
|
def destination_availability_domain(self) -> str:
|
@@ -3913,11 +4001,19 @@ class GetDrProtectionGroupMemberResult(dict):
|
|
3913
4001
|
"""
|
3914
4002
|
return pulumi.get(self, "member_type")
|
3915
4003
|
|
4004
|
+
@property
|
4005
|
+
@pulumi.getter
|
4006
|
+
def namespace(self) -> str:
|
4007
|
+
"""
|
4008
|
+
The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
4009
|
+
"""
|
4010
|
+
return pulumi.get(self, "namespace")
|
4011
|
+
|
3916
4012
|
@property
|
3917
4013
|
@pulumi.getter(name="passwordVaultSecretId")
|
3918
4014
|
def password_vault_secret_id(self) -> str:
|
3919
4015
|
"""
|
3920
|
-
The OCID of the vault secret where the database SYSDBA password is stored. This password is used for performing database DR operations. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
4016
|
+
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`
|
3921
4017
|
"""
|
3922
4018
|
return pulumi.get(self, "password_vault_secret_id")
|
3923
4019
|
|
@@ -4499,7 +4595,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemLogLocationResult(dict
|
|
4499
4595
|
namespace: str,
|
4500
4596
|
object: str):
|
4501
4597
|
"""
|
4502
|
-
:param str bucket: The bucket name inside the object storage namespace. Example: `
|
4598
|
+
:param str bucket: The bucket name inside the object storage namespace. Example: `bucket_name`
|
4503
4599
|
:param str namespace: The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
4504
4600
|
:param str object: The object name inside the object storage bucket. Example: `switchover_plan_executions`
|
4505
4601
|
"""
|
@@ -4511,7 +4607,7 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemLogLocationResult(dict
|
|
4511
4607
|
@pulumi.getter
|
4512
4608
|
def bucket(self) -> str:
|
4513
4609
|
"""
|
4514
|
-
The bucket name inside the object storage namespace. Example: `
|
4610
|
+
The bucket name inside the object storage namespace. Example: `bucket_name`
|
4515
4611
|
"""
|
4516
4612
|
return pulumi.get(self, "bucket")
|
4517
4613
|
|
@@ -4535,8 +4631,11 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemLogLocationResult(dict
|
|
4535
4631
|
@pulumi.output_type
|
4536
4632
|
class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
4537
4633
|
def __init__(__self__, *,
|
4634
|
+
autonomous_database_standby_type_for_dr_drills: str,
|
4538
4635
|
backend_set_mappings: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackendSetMappingResult'],
|
4539
4636
|
block_volume_operations: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBlockVolumeOperationResult'],
|
4637
|
+
bucket: str,
|
4638
|
+
connection_string_type: str,
|
4540
4639
|
destination_availability_domain: str,
|
4541
4640
|
destination_capacity_reservation_id: str,
|
4542
4641
|
destination_compartment_id: str,
|
@@ -4550,12 +4649,16 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
4550
4649
|
is_start_stop_enabled: bool,
|
4551
4650
|
member_id: str,
|
4552
4651
|
member_type: str,
|
4652
|
+
namespace: str,
|
4553
4653
|
password_vault_secret_id: str,
|
4554
4654
|
vnic_mapping: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVnicMappingResult'],
|
4555
4655
|
vnic_mappings: Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVnicMappingResult']):
|
4556
4656
|
"""
|
4657
|
+
:param str autonomous_database_standby_type_for_dr_drills: This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
4557
4658
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackendSetMappingArgs'] backend_set_mappings: A list of backend set mappings that are used to transfer or update backends during DR.
|
4558
4659
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBlockVolumeOperationArgs'] block_volume_operations: Operations performed on a list of block volumes used on the non-movable compute instance.
|
4660
|
+
:param str bucket: The bucket name inside the object storage namespace. Example: `bucket_name`
|
4661
|
+
:param 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.
|
4559
4662
|
:param str destination_availability_domain: The availability domain of the destination mount target. Example: `BBTh:region-AD`
|
4560
4663
|
:param 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`
|
4561
4664
|
:param str destination_compartment_id: The OCID of a compartment in the destination region in which the compute instance should be launched. Example: `ocid1.compartment.oc1..uniqueID`
|
@@ -4569,12 +4672,16 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
4569
4672
|
:param bool is_start_stop_enabled: A flag indicating whether the non-movable compute instance needs to be started and stopped during DR operations.
|
4570
4673
|
:param str member_id: The OCID of the member. Example: `ocid1.instance.oc1..uniqueID`
|
4571
4674
|
:param str member_type: The type of the member.
|
4572
|
-
:param str
|
4675
|
+
:param str namespace: The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
4676
|
+
:param 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`
|
4573
4677
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVnicMappingArgs'] vnic_mapping: A list of compute instance VNIC mappings.
|
4574
4678
|
:param Sequence['GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberVnicMappingArgs'] vnic_mappings: A list of compute instance VNIC mappings.
|
4575
4679
|
"""
|
4680
|
+
pulumi.set(__self__, "autonomous_database_standby_type_for_dr_drills", autonomous_database_standby_type_for_dr_drills)
|
4576
4681
|
pulumi.set(__self__, "backend_set_mappings", backend_set_mappings)
|
4577
4682
|
pulumi.set(__self__, "block_volume_operations", block_volume_operations)
|
4683
|
+
pulumi.set(__self__, "bucket", bucket)
|
4684
|
+
pulumi.set(__self__, "connection_string_type", connection_string_type)
|
4578
4685
|
pulumi.set(__self__, "destination_availability_domain", destination_availability_domain)
|
4579
4686
|
pulumi.set(__self__, "destination_capacity_reservation_id", destination_capacity_reservation_id)
|
4580
4687
|
pulumi.set(__self__, "destination_compartment_id", destination_compartment_id)
|
@@ -4588,10 +4695,19 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
4588
4695
|
pulumi.set(__self__, "is_start_stop_enabled", is_start_stop_enabled)
|
4589
4696
|
pulumi.set(__self__, "member_id", member_id)
|
4590
4697
|
pulumi.set(__self__, "member_type", member_type)
|
4698
|
+
pulumi.set(__self__, "namespace", namespace)
|
4591
4699
|
pulumi.set(__self__, "password_vault_secret_id", password_vault_secret_id)
|
4592
4700
|
pulumi.set(__self__, "vnic_mapping", vnic_mapping)
|
4593
4701
|
pulumi.set(__self__, "vnic_mappings", vnic_mappings)
|
4594
4702
|
|
4703
|
+
@property
|
4704
|
+
@pulumi.getter(name="autonomousDatabaseStandbyTypeForDrDrills")
|
4705
|
+
def autonomous_database_standby_type_for_dr_drills(self) -> str:
|
4706
|
+
"""
|
4707
|
+
This specifies the mechanism used to create a temporary Autonomous Database instance for DR Drills. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-clone-about.html for information about these clone types. See https://docs.oracle.com/en/cloud/paas/autonomous-database/serverless/adbsb/autonomous-data-guard-snapshot-standby.html for information about snapshot standby.
|
4708
|
+
"""
|
4709
|
+
return pulumi.get(self, "autonomous_database_standby_type_for_dr_drills")
|
4710
|
+
|
4595
4711
|
@property
|
4596
4712
|
@pulumi.getter(name="backendSetMappings")
|
4597
4713
|
def backend_set_mappings(self) -> Sequence['outputs.GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberBackendSetMappingResult']:
|
@@ -4608,6 +4724,22 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
4608
4724
|
"""
|
4609
4725
|
return pulumi.get(self, "block_volume_operations")
|
4610
4726
|
|
4727
|
+
@property
|
4728
|
+
@pulumi.getter
|
4729
|
+
def bucket(self) -> str:
|
4730
|
+
"""
|
4731
|
+
The bucket name inside the object storage namespace. Example: `bucket_name`
|
4732
|
+
"""
|
4733
|
+
return pulumi.get(self, "bucket")
|
4734
|
+
|
4735
|
+
@property
|
4736
|
+
@pulumi.getter(name="connectionStringType")
|
4737
|
+
def connection_string_type(self) -> str:
|
4738
|
+
"""
|
4739
|
+
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.
|
4740
|
+
"""
|
4741
|
+
return pulumi.get(self, "connection_string_type")
|
4742
|
+
|
4611
4743
|
@property
|
4612
4744
|
@pulumi.getter(name="destinationAvailabilityDomain")
|
4613
4745
|
def destination_availability_domain(self) -> str:
|
@@ -4712,11 +4844,19 @@ class GetDrProtectionGroupsDrProtectionGroupCollectionItemMemberResult(dict):
|
|
4712
4844
|
"""
|
4713
4845
|
return pulumi.get(self, "member_type")
|
4714
4846
|
|
4847
|
+
@property
|
4848
|
+
@pulumi.getter
|
4849
|
+
def namespace(self) -> str:
|
4850
|
+
"""
|
4851
|
+
The namespace in object storage (Note - this is usually the tenancy name). Example: `myocitenancy`
|
4852
|
+
"""
|
4853
|
+
return pulumi.get(self, "namespace")
|
4854
|
+
|
4715
4855
|
@property
|
4716
4856
|
@pulumi.getter(name="passwordVaultSecretId")
|
4717
4857
|
def password_vault_secret_id(self) -> str:
|
4718
4858
|
"""
|
4719
|
-
The OCID of the vault secret where the database SYSDBA password is stored. This password is used for performing database DR operations. Example: `ocid1.vaultsecret.oc1..uniqueID`
|
4859
|
+
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`
|
4720
4860
|
"""
|
4721
4861
|
return pulumi.get(self, "password_vault_secret_id")
|
4722
4862
|
|