pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.8.0a1724316519__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/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/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +33 -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/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/mysql/_inputs.py +202 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +55 -0
- pulumi_oci/mysql/outputs.py +503 -10
- pulumi_oci/pulumi-plugin.json +1 -1
- 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-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/RECORD +33 -32
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.8.0a1724316519.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -29943,6 +29943,7 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
29943
29943
|
current_custom_action_timeout_in_mins: int,
|
29944
29944
|
current_patching_component: str,
|
29945
29945
|
custom_action_timeout_in_mins: int,
|
29946
|
+
database_software_image_id: str,
|
29946
29947
|
description: str,
|
29947
29948
|
display_name: str,
|
29948
29949
|
estimated_component_patching_start_time: str,
|
@@ -29973,6 +29974,7 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
29973
29974
|
:param int current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
29974
29975
|
:param str current_patching_component: The name of the current infrastruture component that is getting patched.
|
29975
29976
|
:param int custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
29977
|
+
:param str database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
29976
29978
|
:param str description: Description of the maintenance run.
|
29977
29979
|
:param str display_name: The user-friendly name for the maintenance run.
|
29978
29980
|
:param str estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -30003,6 +30005,7 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
30003
30005
|
pulumi.set(__self__, "current_custom_action_timeout_in_mins", current_custom_action_timeout_in_mins)
|
30004
30006
|
pulumi.set(__self__, "current_patching_component", current_patching_component)
|
30005
30007
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
30008
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
30006
30009
|
pulumi.set(__self__, "description", description)
|
30007
30010
|
pulumi.set(__self__, "display_name", display_name)
|
30008
30011
|
pulumi.set(__self__, "estimated_component_patching_start_time", estimated_component_patching_start_time)
|
@@ -30061,6 +30064,14 @@ class GetDatabaseMaintenanceRunHistoriesMaintenanceRunHistoryMaintenanceRunDetai
|
|
30061
30064
|
"""
|
30062
30065
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
30063
30066
|
|
30067
|
+
@property
|
30068
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
30069
|
+
def database_software_image_id(self) -> str:
|
30070
|
+
"""
|
30071
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
30072
|
+
"""
|
30073
|
+
return pulumi.get(self, "database_software_image_id")
|
30074
|
+
|
30064
30075
|
@property
|
30065
30076
|
@pulumi.getter
|
30066
30077
|
def description(self) -> str:
|
@@ -30411,6 +30422,7 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
30411
30422
|
current_custom_action_timeout_in_mins: int,
|
30412
30423
|
current_patching_component: str,
|
30413
30424
|
custom_action_timeout_in_mins: int,
|
30425
|
+
database_software_image_id: str,
|
30414
30426
|
description: str,
|
30415
30427
|
display_name: str,
|
30416
30428
|
estimated_component_patching_start_time: str,
|
@@ -30441,6 +30453,7 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
30441
30453
|
:param int current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
30442
30454
|
:param str current_patching_component: The name of the current infrastruture component that is getting patched.
|
30443
30455
|
:param int custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
30456
|
+
:param str database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
30444
30457
|
:param str description: Description of the maintenance run.
|
30445
30458
|
:param str display_name: The user-friendly name for the maintenance run.
|
30446
30459
|
:param str estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -30471,6 +30484,7 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
30471
30484
|
pulumi.set(__self__, "current_custom_action_timeout_in_mins", current_custom_action_timeout_in_mins)
|
30472
30485
|
pulumi.set(__self__, "current_patching_component", current_patching_component)
|
30473
30486
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
30487
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
30474
30488
|
pulumi.set(__self__, "description", description)
|
30475
30489
|
pulumi.set(__self__, "display_name", display_name)
|
30476
30490
|
pulumi.set(__self__, "estimated_component_patching_start_time", estimated_component_patching_start_time)
|
@@ -30529,6 +30543,14 @@ class GetDatabaseMaintenanceRunHistoryMaintenanceRunDetailResult(dict):
|
|
30529
30543
|
"""
|
30530
30544
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
30531
30545
|
|
30546
|
+
@property
|
30547
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
30548
|
+
def database_software_image_id(self) -> str:
|
30549
|
+
"""
|
30550
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
30551
|
+
"""
|
30552
|
+
return pulumi.get(self, "database_software_image_id")
|
30553
|
+
|
30532
30554
|
@property
|
30533
30555
|
@pulumi.getter
|
30534
30556
|
def description(self) -> str:
|
@@ -42335,6 +42357,7 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
42335
42357
|
current_custom_action_timeout_in_mins: int,
|
42336
42358
|
current_patching_component: str,
|
42337
42359
|
custom_action_timeout_in_mins: int,
|
42360
|
+
database_software_image_id: str,
|
42338
42361
|
description: str,
|
42339
42362
|
display_name: str,
|
42340
42363
|
estimated_component_patching_start_time: str,
|
@@ -42366,6 +42389,7 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
42366
42389
|
:param int current_custom_action_timeout_in_mins: Extend current custom action timeout between the current database servers during waiting state, from 0 (zero) to 30 minutes.
|
42367
42390
|
:param str current_patching_component: The name of the current infrastruture component that is getting patched.
|
42368
42391
|
:param int custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Specify a number of minutes, from 15 to 120.
|
42392
|
+
:param str database_software_image_id: The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
42369
42393
|
:param str description: Description of the maintenance run.
|
42370
42394
|
:param str display_name: The user-friendly name for the maintenance run.
|
42371
42395
|
:param str estimated_component_patching_start_time: The estimated start time of the next infrastruture component patching operation.
|
@@ -42396,6 +42420,7 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
42396
42420
|
pulumi.set(__self__, "current_custom_action_timeout_in_mins", current_custom_action_timeout_in_mins)
|
42397
42421
|
pulumi.set(__self__, "current_patching_component", current_patching_component)
|
42398
42422
|
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
42423
|
+
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
42399
42424
|
pulumi.set(__self__, "description", description)
|
42400
42425
|
pulumi.set(__self__, "display_name", display_name)
|
42401
42426
|
pulumi.set(__self__, "estimated_component_patching_start_time", estimated_component_patching_start_time)
|
@@ -42455,6 +42480,14 @@ class GetMaintenanceRunsMaintenanceRunResult(dict):
|
|
42455
42480
|
"""
|
42456
42481
|
return pulumi.get(self, "custom_action_timeout_in_mins")
|
42457
42482
|
|
42483
|
+
@property
|
42484
|
+
@pulumi.getter(name="databaseSoftwareImageId")
|
42485
|
+
def database_software_image_id(self) -> str:
|
42486
|
+
"""
|
42487
|
+
The Autonomous Database Software Image [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)
|
42488
|
+
"""
|
42489
|
+
return pulumi.get(self, "database_software_image_id")
|
42490
|
+
|
42458
42491
|
@property
|
42459
42492
|
@pulumi.getter
|
42460
42493
|
def description(self) -> str:
|
@@ -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`
|