pulumi-oci 2.27.0a1742000109__py3-none-any.whl → 2.27.0a1742444119__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 +144 -0
- pulumi_oci/containerengine/_inputs.py +9 -9
- pulumi_oci/containerengine/outputs.py +18 -22
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +147 -0
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +582 -0
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +2211 -24
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +2747 -225
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/METADATA +2 -2
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/RECORD +84 -57
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.27.0a1742000109.dist-info → pulumi_oci-2.27.0a1742444119.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,7 @@ class GetAutonomousContainerDatabaseResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getAutonomousContainerDatabase.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, associated_backup_configuration_details=None, autonomous_container_database_id=None, autonomous_exadata_infrastructure_id=None, autonomous_vm_cluster_id=None, availability_domain=None, available_cpus=None, backup_configs=None, backup_destination_properties_lists=None, cloud_autonomous_vm_cluster_id=None, compartment_id=None, compute_model=None, database_software_image_id=None, db_name=None, db_split_threshold=None, db_unique_name=None, db_version=None, defined_tags=None, display_name=None, distribution_affinity=None, dst_file_version=None, fast_start_fail_over_lag_limit_in_seconds=None, freeform_tags=None, id=None, infrastructure_type=None, is_automatic_failover_enabled=None, is_dst_file_update_enabled=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, key_version_id=None, kms_key_id=None, largest_provisionable_autonomous_database_in_cpus=None, last_maintenance_run_id=None, lifecycle_details=None, list_one_off_patches=None, maintenance_window_details=None, maintenance_windows=None, memory_per_oracle_compute_unit_in_gbs=None, net_services_architecture=None, next_maintenance_run_id=None, patch_id=None, patch_model=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_exadata_infrastructure_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, protection_mode=None, provisionable_cpuses=None, provisioned_cpus=None, reclaimable_cpus=None, recovery_appliance_details=None, reserved_cpus=None, role=None, rotate_key_trigger=None, service_level_agreement_type=None, standby_maintenance_buffer_in_days=None, state=None, time_created=None, time_of_last_backup=None, time_snapshot_standby_revert=None, total_cpus=None, vault_id=None, version_preference=None, vm_failover_reservation=None):
|
30
|
+
def __init__(__self__, associated_backup_configuration_details=None, autonomous_container_database_id=None, autonomous_exadata_infrastructure_id=None, autonomous_vm_cluster_id=None, availability_domain=None, available_cpus=None, backup_configs=None, backup_destination_properties_lists=None, cloud_autonomous_vm_cluster_id=None, compartment_id=None, compute_model=None, database_software_image_id=None, dataguard_group_members=None, dataguards=None, db_name=None, db_split_threshold=None, db_unique_name=None, db_version=None, defined_tags=None, display_name=None, distribution_affinity=None, dst_file_version=None, failover_trigger=None, fast_start_fail_over_lag_limit_in_seconds=None, freeform_tags=None, id=None, infrastructure_type=None, is_automatic_failover_enabled=None, is_data_guard_enabled=None, is_dst_file_update_enabled=None, is_multiple_standby=None, key_history_entries=None, key_store_id=None, key_store_wallet_name=None, key_version_id=None, kms_key_id=None, largest_provisionable_autonomous_database_in_cpus=None, last_maintenance_run_id=None, lifecycle_details=None, list_one_off_patches=None, maintenance_window_details=None, maintenance_windows=None, memory_per_oracle_compute_unit_in_gbs=None, net_services_architecture=None, next_maintenance_run_id=None, patch_id=None, patch_model=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_exadata_infrastructure_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, protection_mode=None, provisionable_cpuses=None, provisioned_cpus=None, reclaimable_cpus=None, recovery_appliance_details=None, reinstate_trigger=None, reserved_cpus=None, role=None, rotate_key_trigger=None, service_level_agreement_type=None, standby_maintenance_buffer_in_days=None, state=None, switchover_trigger=None, time_created=None, time_of_last_backup=None, time_snapshot_standby_revert=None, total_cpus=None, vault_id=None, version_preference=None, vm_failover_reservation=None):
|
31
31
|
if associated_backup_configuration_details and not isinstance(associated_backup_configuration_details, list):
|
32
32
|
raise TypeError("Expected argument 'associated_backup_configuration_details' to be a list")
|
33
33
|
pulumi.set(__self__, "associated_backup_configuration_details", associated_backup_configuration_details)
|
@@ -64,6 +64,12 @@ class GetAutonomousContainerDatabaseResult:
|
|
64
64
|
if database_software_image_id and not isinstance(database_software_image_id, str):
|
65
65
|
raise TypeError("Expected argument 'database_software_image_id' to be a str")
|
66
66
|
pulumi.set(__self__, "database_software_image_id", database_software_image_id)
|
67
|
+
if dataguard_group_members and not isinstance(dataguard_group_members, list):
|
68
|
+
raise TypeError("Expected argument 'dataguard_group_members' to be a list")
|
69
|
+
pulumi.set(__self__, "dataguard_group_members", dataguard_group_members)
|
70
|
+
if dataguards and not isinstance(dataguards, list):
|
71
|
+
raise TypeError("Expected argument 'dataguards' to be a list")
|
72
|
+
pulumi.set(__self__, "dataguards", dataguards)
|
67
73
|
if db_name and not isinstance(db_name, str):
|
68
74
|
raise TypeError("Expected argument 'db_name' to be a str")
|
69
75
|
pulumi.set(__self__, "db_name", db_name)
|
@@ -88,6 +94,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
88
94
|
if dst_file_version and not isinstance(dst_file_version, str):
|
89
95
|
raise TypeError("Expected argument 'dst_file_version' to be a str")
|
90
96
|
pulumi.set(__self__, "dst_file_version", dst_file_version)
|
97
|
+
if failover_trigger and not isinstance(failover_trigger, int):
|
98
|
+
raise TypeError("Expected argument 'failover_trigger' to be a int")
|
99
|
+
pulumi.set(__self__, "failover_trigger", failover_trigger)
|
91
100
|
if fast_start_fail_over_lag_limit_in_seconds and not isinstance(fast_start_fail_over_lag_limit_in_seconds, int):
|
92
101
|
raise TypeError("Expected argument 'fast_start_fail_over_lag_limit_in_seconds' to be a int")
|
93
102
|
pulumi.set(__self__, "fast_start_fail_over_lag_limit_in_seconds", fast_start_fail_over_lag_limit_in_seconds)
|
@@ -103,9 +112,15 @@ class GetAutonomousContainerDatabaseResult:
|
|
103
112
|
if is_automatic_failover_enabled and not isinstance(is_automatic_failover_enabled, bool):
|
104
113
|
raise TypeError("Expected argument 'is_automatic_failover_enabled' to be a bool")
|
105
114
|
pulumi.set(__self__, "is_automatic_failover_enabled", is_automatic_failover_enabled)
|
115
|
+
if is_data_guard_enabled and not isinstance(is_data_guard_enabled, bool):
|
116
|
+
raise TypeError("Expected argument 'is_data_guard_enabled' to be a bool")
|
117
|
+
pulumi.set(__self__, "is_data_guard_enabled", is_data_guard_enabled)
|
106
118
|
if is_dst_file_update_enabled and not isinstance(is_dst_file_update_enabled, bool):
|
107
119
|
raise TypeError("Expected argument 'is_dst_file_update_enabled' to be a bool")
|
108
120
|
pulumi.set(__self__, "is_dst_file_update_enabled", is_dst_file_update_enabled)
|
121
|
+
if is_multiple_standby and not isinstance(is_multiple_standby, bool):
|
122
|
+
raise TypeError("Expected argument 'is_multiple_standby' to be a bool")
|
123
|
+
pulumi.set(__self__, "is_multiple_standby", is_multiple_standby)
|
109
124
|
if key_history_entries and not isinstance(key_history_entries, list):
|
110
125
|
raise TypeError("Expected argument 'key_history_entries' to be a list")
|
111
126
|
pulumi.set(__self__, "key_history_entries", key_history_entries)
|
@@ -190,6 +205,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
190
205
|
if recovery_appliance_details and not isinstance(recovery_appliance_details, list):
|
191
206
|
raise TypeError("Expected argument 'recovery_appliance_details' to be a list")
|
192
207
|
pulumi.set(__self__, "recovery_appliance_details", recovery_appliance_details)
|
208
|
+
if reinstate_trigger and not isinstance(reinstate_trigger, int):
|
209
|
+
raise TypeError("Expected argument 'reinstate_trigger' to be a int")
|
210
|
+
pulumi.set(__self__, "reinstate_trigger", reinstate_trigger)
|
193
211
|
if reserved_cpus and not isinstance(reserved_cpus, float):
|
194
212
|
raise TypeError("Expected argument 'reserved_cpus' to be a float")
|
195
213
|
pulumi.set(__self__, "reserved_cpus", reserved_cpus)
|
@@ -208,6 +226,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
208
226
|
if state and not isinstance(state, str):
|
209
227
|
raise TypeError("Expected argument 'state' to be a str")
|
210
228
|
pulumi.set(__self__, "state", state)
|
229
|
+
if switchover_trigger and not isinstance(switchover_trigger, int):
|
230
|
+
raise TypeError("Expected argument 'switchover_trigger' to be a int")
|
231
|
+
pulumi.set(__self__, "switchover_trigger", switchover_trigger)
|
211
232
|
if time_created and not isinstance(time_created, str):
|
212
233
|
raise TypeError("Expected argument 'time_created' to be a str")
|
213
234
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -241,6 +262,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
241
262
|
@property
|
242
263
|
@pulumi.getter(name="autonomousContainerDatabaseId")
|
243
264
|
def autonomous_container_database_id(self) -> str:
|
265
|
+
"""
|
266
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Container Database that has a relationship with the peer Autonomous Container Database. Used only by Autonomous Database on Dedicated Exadata Infrastructure.
|
267
|
+
"""
|
244
268
|
return pulumi.get(self, "autonomous_container_database_id")
|
245
269
|
|
246
270
|
@property
|
@@ -263,7 +287,7 @@ class GetAutonomousContainerDatabaseResult:
|
|
263
287
|
@pulumi.getter(name="availabilityDomain")
|
264
288
|
def availability_domain(self) -> str:
|
265
289
|
"""
|
266
|
-
The
|
290
|
+
The domain of the Autonomous Container Database
|
267
291
|
"""
|
268
292
|
return pulumi.get(self, "availability_domain")
|
269
293
|
|
@@ -320,6 +344,22 @@ class GetAutonomousContainerDatabaseResult:
|
|
320
344
|
def database_software_image_id(self) -> str:
|
321
345
|
return pulumi.get(self, "database_software_image_id")
|
322
346
|
|
347
|
+
@property
|
348
|
+
@pulumi.getter(name="dataguardGroupMembers")
|
349
|
+
def dataguard_group_members(self) -> Sequence['outputs.GetAutonomousContainerDatabaseDataguardGroupMemberResult']:
|
350
|
+
"""
|
351
|
+
Array of Dg associations.
|
352
|
+
"""
|
353
|
+
return pulumi.get(self, "dataguard_group_members")
|
354
|
+
|
355
|
+
@property
|
356
|
+
@pulumi.getter
|
357
|
+
def dataguards(self) -> Sequence['outputs.GetAutonomousContainerDatabaseDataguardResult']:
|
358
|
+
"""
|
359
|
+
The properties that define Autonomous Container Databases Dataguard.
|
360
|
+
"""
|
361
|
+
return pulumi.get(self, "dataguards")
|
362
|
+
|
323
363
|
@property
|
324
364
|
@pulumi.getter(name="dbName")
|
325
365
|
def db_name(self) -> str:
|
@@ -381,9 +421,17 @@ class GetAutonomousContainerDatabaseResult:
|
|
381
421
|
"""
|
382
422
|
return pulumi.get(self, "dst_file_version")
|
383
423
|
|
424
|
+
@property
|
425
|
+
@pulumi.getter(name="failoverTrigger")
|
426
|
+
def failover_trigger(self) -> int:
|
427
|
+
return pulumi.get(self, "failover_trigger")
|
428
|
+
|
384
429
|
@property
|
385
430
|
@pulumi.getter(name="fastStartFailOverLagLimitInSeconds")
|
386
431
|
def fast_start_fail_over_lag_limit_in_seconds(self) -> int:
|
432
|
+
"""
|
433
|
+
The lag time for my preference based on data loss tolerance in seconds.
|
434
|
+
"""
|
387
435
|
return pulumi.get(self, "fast_start_fail_over_lag_limit_in_seconds")
|
388
436
|
|
389
437
|
@property
|
@@ -413,8 +461,19 @@ class GetAutonomousContainerDatabaseResult:
|
|
413
461
|
@property
|
414
462
|
@pulumi.getter(name="isAutomaticFailoverEnabled")
|
415
463
|
def is_automatic_failover_enabled(self) -> bool:
|
464
|
+
"""
|
465
|
+
Indicates whether Automatic Failover is enabled for Autonomous Container Database Dataguard Association
|
466
|
+
"""
|
416
467
|
return pulumi.get(self, "is_automatic_failover_enabled")
|
417
468
|
|
469
|
+
@property
|
470
|
+
@pulumi.getter(name="isDataGuardEnabled")
|
471
|
+
def is_data_guard_enabled(self) -> bool:
|
472
|
+
"""
|
473
|
+
**Deprecated.** Indicates whether the Autonomous Database has local (in-region) Data Guard enabled. Not applicable to cross-region Autonomous Data Guard associations, or to Autonomous Databases using dedicated Exadata infrastructure or Exadata Cloud@Customer infrastructure.
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "is_data_guard_enabled")
|
476
|
+
|
418
477
|
@property
|
419
478
|
@pulumi.getter(name="isDstFileUpdateEnabled")
|
420
479
|
def is_dst_file_update_enabled(self) -> bool:
|
@@ -423,6 +482,14 @@ class GetAutonomousContainerDatabaseResult:
|
|
423
482
|
"""
|
424
483
|
return pulumi.get(self, "is_dst_file_update_enabled")
|
425
484
|
|
485
|
+
@property
|
486
|
+
@pulumi.getter(name="isMultipleStandby")
|
487
|
+
def is_multiple_standby(self) -> bool:
|
488
|
+
"""
|
489
|
+
Whether it is multiple standby Autonomous Dataguard
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "is_multiple_standby")
|
492
|
+
|
426
493
|
@property
|
427
494
|
@pulumi.getter(name="keyHistoryEntries")
|
428
495
|
def key_history_entries(self) -> Sequence['outputs.GetAutonomousContainerDatabaseKeyHistoryEntryResult']:
|
@@ -586,6 +653,9 @@ class GetAutonomousContainerDatabaseResult:
|
|
586
653
|
@property
|
587
654
|
@pulumi.getter(name="protectionMode")
|
588
655
|
def protection_mode(self) -> str:
|
656
|
+
"""
|
657
|
+
The protection mode of this Autonomous Data Guard association. For more information, see [Oracle Data Guard Protection Modes](http://docs.oracle.com/database/122/SBYDB/oracle-data-guard-protection-modes.htm#SBYDB02000) in the Oracle Data Guard documentation.
|
658
|
+
"""
|
589
659
|
return pulumi.get(self, "protection_mode")
|
590
660
|
|
591
661
|
@property
|
@@ -620,6 +690,11 @@ class GetAutonomousContainerDatabaseResult:
|
|
620
690
|
"""
|
621
691
|
return pulumi.get(self, "recovery_appliance_details")
|
622
692
|
|
693
|
+
@property
|
694
|
+
@pulumi.getter(name="reinstateTrigger")
|
695
|
+
def reinstate_trigger(self) -> int:
|
696
|
+
return pulumi.get(self, "reinstate_trigger")
|
697
|
+
|
623
698
|
@property
|
624
699
|
@pulumi.getter(name="reservedCpus")
|
625
700
|
def reserved_cpus(self) -> float:
|
@@ -665,6 +740,11 @@ class GetAutonomousContainerDatabaseResult:
|
|
665
740
|
"""
|
666
741
|
return pulumi.get(self, "state")
|
667
742
|
|
743
|
+
@property
|
744
|
+
@pulumi.getter(name="switchoverTrigger")
|
745
|
+
def switchover_trigger(self) -> int:
|
746
|
+
return pulumi.get(self, "switchover_trigger")
|
747
|
+
|
668
748
|
@property
|
669
749
|
@pulumi.getter(name="timeCreated")
|
670
750
|
def time_created(self) -> str:
|
@@ -740,6 +820,8 @@ class AwaitableGetAutonomousContainerDatabaseResult(GetAutonomousContainerDataba
|
|
740
820
|
compartment_id=self.compartment_id,
|
741
821
|
compute_model=self.compute_model,
|
742
822
|
database_software_image_id=self.database_software_image_id,
|
823
|
+
dataguard_group_members=self.dataguard_group_members,
|
824
|
+
dataguards=self.dataguards,
|
743
825
|
db_name=self.db_name,
|
744
826
|
db_split_threshold=self.db_split_threshold,
|
745
827
|
db_unique_name=self.db_unique_name,
|
@@ -748,12 +830,15 @@ class AwaitableGetAutonomousContainerDatabaseResult(GetAutonomousContainerDataba
|
|
748
830
|
display_name=self.display_name,
|
749
831
|
distribution_affinity=self.distribution_affinity,
|
750
832
|
dst_file_version=self.dst_file_version,
|
833
|
+
failover_trigger=self.failover_trigger,
|
751
834
|
fast_start_fail_over_lag_limit_in_seconds=self.fast_start_fail_over_lag_limit_in_seconds,
|
752
835
|
freeform_tags=self.freeform_tags,
|
753
836
|
id=self.id,
|
754
837
|
infrastructure_type=self.infrastructure_type,
|
755
838
|
is_automatic_failover_enabled=self.is_automatic_failover_enabled,
|
839
|
+
is_data_guard_enabled=self.is_data_guard_enabled,
|
756
840
|
is_dst_file_update_enabled=self.is_dst_file_update_enabled,
|
841
|
+
is_multiple_standby=self.is_multiple_standby,
|
757
842
|
key_history_entries=self.key_history_entries,
|
758
843
|
key_store_id=self.key_store_id,
|
759
844
|
key_store_wallet_name=self.key_store_wallet_name,
|
@@ -782,12 +867,14 @@ class AwaitableGetAutonomousContainerDatabaseResult(GetAutonomousContainerDataba
|
|
782
867
|
provisioned_cpus=self.provisioned_cpus,
|
783
868
|
reclaimable_cpus=self.reclaimable_cpus,
|
784
869
|
recovery_appliance_details=self.recovery_appliance_details,
|
870
|
+
reinstate_trigger=self.reinstate_trigger,
|
785
871
|
reserved_cpus=self.reserved_cpus,
|
786
872
|
role=self.role,
|
787
873
|
rotate_key_trigger=self.rotate_key_trigger,
|
788
874
|
service_level_agreement_type=self.service_level_agreement_type,
|
789
875
|
standby_maintenance_buffer_in_days=self.standby_maintenance_buffer_in_days,
|
790
876
|
state=self.state,
|
877
|
+
switchover_trigger=self.switchover_trigger,
|
791
878
|
time_created=self.time_created,
|
792
879
|
time_of_last_backup=self.time_of_last_backup,
|
793
880
|
time_snapshot_standby_revert=self.time_snapshot_standby_revert,
|
@@ -834,6 +921,8 @@ def get_autonomous_container_database(autonomous_container_database_id: Optional
|
|
834
921
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
835
922
|
compute_model=pulumi.get(__ret__, 'compute_model'),
|
836
923
|
database_software_image_id=pulumi.get(__ret__, 'database_software_image_id'),
|
924
|
+
dataguard_group_members=pulumi.get(__ret__, 'dataguard_group_members'),
|
925
|
+
dataguards=pulumi.get(__ret__, 'dataguards'),
|
837
926
|
db_name=pulumi.get(__ret__, 'db_name'),
|
838
927
|
db_split_threshold=pulumi.get(__ret__, 'db_split_threshold'),
|
839
928
|
db_unique_name=pulumi.get(__ret__, 'db_unique_name'),
|
@@ -842,12 +931,15 @@ def get_autonomous_container_database(autonomous_container_database_id: Optional
|
|
842
931
|
display_name=pulumi.get(__ret__, 'display_name'),
|
843
932
|
distribution_affinity=pulumi.get(__ret__, 'distribution_affinity'),
|
844
933
|
dst_file_version=pulumi.get(__ret__, 'dst_file_version'),
|
934
|
+
failover_trigger=pulumi.get(__ret__, 'failover_trigger'),
|
845
935
|
fast_start_fail_over_lag_limit_in_seconds=pulumi.get(__ret__, 'fast_start_fail_over_lag_limit_in_seconds'),
|
846
936
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
847
937
|
id=pulumi.get(__ret__, 'id'),
|
848
938
|
infrastructure_type=pulumi.get(__ret__, 'infrastructure_type'),
|
849
939
|
is_automatic_failover_enabled=pulumi.get(__ret__, 'is_automatic_failover_enabled'),
|
940
|
+
is_data_guard_enabled=pulumi.get(__ret__, 'is_data_guard_enabled'),
|
850
941
|
is_dst_file_update_enabled=pulumi.get(__ret__, 'is_dst_file_update_enabled'),
|
942
|
+
is_multiple_standby=pulumi.get(__ret__, 'is_multiple_standby'),
|
851
943
|
key_history_entries=pulumi.get(__ret__, 'key_history_entries'),
|
852
944
|
key_store_id=pulumi.get(__ret__, 'key_store_id'),
|
853
945
|
key_store_wallet_name=pulumi.get(__ret__, 'key_store_wallet_name'),
|
@@ -876,12 +968,14 @@ def get_autonomous_container_database(autonomous_container_database_id: Optional
|
|
876
968
|
provisioned_cpus=pulumi.get(__ret__, 'provisioned_cpus'),
|
877
969
|
reclaimable_cpus=pulumi.get(__ret__, 'reclaimable_cpus'),
|
878
970
|
recovery_appliance_details=pulumi.get(__ret__, 'recovery_appliance_details'),
|
971
|
+
reinstate_trigger=pulumi.get(__ret__, 'reinstate_trigger'),
|
879
972
|
reserved_cpus=pulumi.get(__ret__, 'reserved_cpus'),
|
880
973
|
role=pulumi.get(__ret__, 'role'),
|
881
974
|
rotate_key_trigger=pulumi.get(__ret__, 'rotate_key_trigger'),
|
882
975
|
service_level_agreement_type=pulumi.get(__ret__, 'service_level_agreement_type'),
|
883
976
|
standby_maintenance_buffer_in_days=pulumi.get(__ret__, 'standby_maintenance_buffer_in_days'),
|
884
977
|
state=pulumi.get(__ret__, 'state'),
|
978
|
+
switchover_trigger=pulumi.get(__ret__, 'switchover_trigger'),
|
885
979
|
time_created=pulumi.get(__ret__, 'time_created'),
|
886
980
|
time_of_last_backup=pulumi.get(__ret__, 'time_of_last_backup'),
|
887
981
|
time_snapshot_standby_revert=pulumi.get(__ret__, 'time_snapshot_standby_revert'),
|
@@ -925,6 +1019,8 @@ def get_autonomous_container_database_output(autonomous_container_database_id: O
|
|
925
1019
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
926
1020
|
compute_model=pulumi.get(__response__, 'compute_model'),
|
927
1021
|
database_software_image_id=pulumi.get(__response__, 'database_software_image_id'),
|
1022
|
+
dataguard_group_members=pulumi.get(__response__, 'dataguard_group_members'),
|
1023
|
+
dataguards=pulumi.get(__response__, 'dataguards'),
|
928
1024
|
db_name=pulumi.get(__response__, 'db_name'),
|
929
1025
|
db_split_threshold=pulumi.get(__response__, 'db_split_threshold'),
|
930
1026
|
db_unique_name=pulumi.get(__response__, 'db_unique_name'),
|
@@ -933,12 +1029,15 @@ def get_autonomous_container_database_output(autonomous_container_database_id: O
|
|
933
1029
|
display_name=pulumi.get(__response__, 'display_name'),
|
934
1030
|
distribution_affinity=pulumi.get(__response__, 'distribution_affinity'),
|
935
1031
|
dst_file_version=pulumi.get(__response__, 'dst_file_version'),
|
1032
|
+
failover_trigger=pulumi.get(__response__, 'failover_trigger'),
|
936
1033
|
fast_start_fail_over_lag_limit_in_seconds=pulumi.get(__response__, 'fast_start_fail_over_lag_limit_in_seconds'),
|
937
1034
|
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
938
1035
|
id=pulumi.get(__response__, 'id'),
|
939
1036
|
infrastructure_type=pulumi.get(__response__, 'infrastructure_type'),
|
940
1037
|
is_automatic_failover_enabled=pulumi.get(__response__, 'is_automatic_failover_enabled'),
|
1038
|
+
is_data_guard_enabled=pulumi.get(__response__, 'is_data_guard_enabled'),
|
941
1039
|
is_dst_file_update_enabled=pulumi.get(__response__, 'is_dst_file_update_enabled'),
|
1040
|
+
is_multiple_standby=pulumi.get(__response__, 'is_multiple_standby'),
|
942
1041
|
key_history_entries=pulumi.get(__response__, 'key_history_entries'),
|
943
1042
|
key_store_id=pulumi.get(__response__, 'key_store_id'),
|
944
1043
|
key_store_wallet_name=pulumi.get(__response__, 'key_store_wallet_name'),
|
@@ -967,12 +1066,14 @@ def get_autonomous_container_database_output(autonomous_container_database_id: O
|
|
967
1066
|
provisioned_cpus=pulumi.get(__response__, 'provisioned_cpus'),
|
968
1067
|
reclaimable_cpus=pulumi.get(__response__, 'reclaimable_cpus'),
|
969
1068
|
recovery_appliance_details=pulumi.get(__response__, 'recovery_appliance_details'),
|
1069
|
+
reinstate_trigger=pulumi.get(__response__, 'reinstate_trigger'),
|
970
1070
|
reserved_cpus=pulumi.get(__response__, 'reserved_cpus'),
|
971
1071
|
role=pulumi.get(__response__, 'role'),
|
972
1072
|
rotate_key_trigger=pulumi.get(__response__, 'rotate_key_trigger'),
|
973
1073
|
service_level_agreement_type=pulumi.get(__response__, 'service_level_agreement_type'),
|
974
1074
|
standby_maintenance_buffer_in_days=pulumi.get(__response__, 'standby_maintenance_buffer_in_days'),
|
975
1075
|
state=pulumi.get(__response__, 'state'),
|
1076
|
+
switchover_trigger=pulumi.get(__response__, 'switchover_trigger'),
|
976
1077
|
time_created=pulumi.get(__response__, 'time_created'),
|
977
1078
|
time_of_last_backup=pulumi.get(__response__, 'time_of_last_backup'),
|
978
1079
|
time_snapshot_standby_revert=pulumi.get(__response__, 'time_snapshot_standby_revert'),
|
@@ -27,7 +27,7 @@ class GetAutonomousContainerDatabaseDataguardAssociationResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getAutonomousContainerDatabaseDataguardAssociation.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, apply_lag=None, apply_rate=None, autonomous_container_database_dataguard_association_id=None, autonomous_container_database_id=None, fast_start_fail_over_lag_limit_in_seconds=None, id=None, is_automatic_failover_enabled=None, lifecycle_details=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_dataguard_association_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_container_database_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, peer_lifecycle_state=None, peer_role=None, protection_mode=None, role=None, standby_maintenance_buffer_in_days=None, state=None, time_created=None, time_last_role_changed=None, time_last_synced=None, transport_lag=None):
|
30
|
+
def __init__(__self__, apply_lag=None, apply_rate=None, autonomous_container_database_dataguard_association_id=None, autonomous_container_database_id=None, fast_start_fail_over_lag_limit_in_seconds=None, id=None, is_automatic_failover_enabled=None, lifecycle_details=None, migrate_trigger=None, peer_autonomous_container_database_backup_configs=None, peer_autonomous_container_database_compartment_id=None, peer_autonomous_container_database_dataguard_association_id=None, peer_autonomous_container_database_display_name=None, peer_autonomous_container_database_id=None, peer_autonomous_vm_cluster_id=None, peer_cloud_autonomous_vm_cluster_id=None, peer_db_unique_name=None, peer_lifecycle_state=None, peer_role=None, protection_mode=None, role=None, standby_maintenance_buffer_in_days=None, state=None, time_created=None, time_last_role_changed=None, time_last_synced=None, transport_lag=None):
|
31
31
|
if apply_lag and not isinstance(apply_lag, str):
|
32
32
|
raise TypeError("Expected argument 'apply_lag' to be a str")
|
33
33
|
pulumi.set(__self__, "apply_lag", apply_lag)
|
@@ -52,6 +52,9 @@ class GetAutonomousContainerDatabaseDataguardAssociationResult:
|
|
52
52
|
if lifecycle_details and not isinstance(lifecycle_details, str):
|
53
53
|
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
54
54
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
55
|
+
if migrate_trigger and not isinstance(migrate_trigger, int):
|
56
|
+
raise TypeError("Expected argument 'migrate_trigger' to be a int")
|
57
|
+
pulumi.set(__self__, "migrate_trigger", migrate_trigger)
|
55
58
|
if peer_autonomous_container_database_backup_configs and not isinstance(peer_autonomous_container_database_backup_configs, list):
|
56
59
|
raise TypeError("Expected argument 'peer_autonomous_container_database_backup_configs' to be a list")
|
57
60
|
pulumi.set(__self__, "peer_autonomous_container_database_backup_configs", peer_autonomous_container_database_backup_configs)
|
@@ -168,6 +171,11 @@ class GetAutonomousContainerDatabaseDataguardAssociationResult:
|
|
168
171
|
"""
|
169
172
|
return pulumi.get(self, "lifecycle_details")
|
170
173
|
|
174
|
+
@property
|
175
|
+
@pulumi.getter(name="migrateTrigger")
|
176
|
+
def migrate_trigger(self) -> int:
|
177
|
+
return pulumi.get(self, "migrate_trigger")
|
178
|
+
|
171
179
|
@property
|
172
180
|
@pulumi.getter(name="peerAutonomousContainerDatabaseBackupConfigs")
|
173
181
|
def peer_autonomous_container_database_backup_configs(self) -> Sequence['outputs.GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult']:
|
@@ -306,6 +314,7 @@ class AwaitableGetAutonomousContainerDatabaseDataguardAssociationResult(GetAuton
|
|
306
314
|
id=self.id,
|
307
315
|
is_automatic_failover_enabled=self.is_automatic_failover_enabled,
|
308
316
|
lifecycle_details=self.lifecycle_details,
|
317
|
+
migrate_trigger=self.migrate_trigger,
|
309
318
|
peer_autonomous_container_database_backup_configs=self.peer_autonomous_container_database_backup_configs,
|
310
319
|
peer_autonomous_container_database_compartment_id=self.peer_autonomous_container_database_compartment_id,
|
311
320
|
peer_autonomous_container_database_dataguard_association_id=self.peer_autonomous_container_database_dataguard_association_id,
|
@@ -363,6 +372,7 @@ def get_autonomous_container_database_dataguard_association(autonomous_container
|
|
363
372
|
id=pulumi.get(__ret__, 'id'),
|
364
373
|
is_automatic_failover_enabled=pulumi.get(__ret__, 'is_automatic_failover_enabled'),
|
365
374
|
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
375
|
+
migrate_trigger=pulumi.get(__ret__, 'migrate_trigger'),
|
366
376
|
peer_autonomous_container_database_backup_configs=pulumi.get(__ret__, 'peer_autonomous_container_database_backup_configs'),
|
367
377
|
peer_autonomous_container_database_compartment_id=pulumi.get(__ret__, 'peer_autonomous_container_database_compartment_id'),
|
368
378
|
peer_autonomous_container_database_dataguard_association_id=pulumi.get(__ret__, 'peer_autonomous_container_database_dataguard_association_id'),
|
@@ -417,6 +427,7 @@ def get_autonomous_container_database_dataguard_association_output(autonomous_co
|
|
417
427
|
id=pulumi.get(__response__, 'id'),
|
418
428
|
is_automatic_failover_enabled=pulumi.get(__response__, 'is_automatic_failover_enabled'),
|
419
429
|
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
430
|
+
migrate_trigger=pulumi.get(__response__, 'migrate_trigger'),
|
420
431
|
peer_autonomous_container_database_backup_configs=pulumi.get(__response__, 'peer_autonomous_container_database_backup_configs'),
|
421
432
|
peer_autonomous_container_database_compartment_id=pulumi.get(__response__, 'peer_autonomous_container_database_compartment_id'),
|
422
433
|
peer_autonomous_container_database_dataguard_association_id=pulumi.get(__response__, 'peer_autonomous_container_database_dataguard_association_id'),
|
@@ -94,7 +94,7 @@ class GetAutonomousContainerDatabasesResult:
|
|
94
94
|
@pulumi.getter(name="availabilityDomain")
|
95
95
|
def availability_domain(self) -> Optional[str]:
|
96
96
|
"""
|
97
|
-
The
|
97
|
+
The domain of the Autonomous Container Database
|
98
98
|
"""
|
99
99
|
return pulumi.get(self, "availability_domain")
|
100
100
|
|
@@ -27,7 +27,7 @@ class GetMaintenanceRunResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getMaintenanceRun.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, database_software_image_id=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, is_maintenance_run_granular=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None, total_time_taken_in_mins=None):
|
30
|
+
def __init__(__self__, compartment_id=None, current_custom_action_timeout_in_mins=None, current_patching_component=None, custom_action_timeout_in_mins=None, database_software_image_id=None, description=None, display_name=None, estimated_component_patching_start_time=None, estimated_patching_times=None, id=None, is_custom_action_timeout_enabled=None, is_dst_file_update_enabled=None, is_maintenance_run_granular=None, lifecycle_details=None, maintenance_run_id=None, maintenance_subtype=None, maintenance_type=None, patch_failure_count=None, patch_id=None, patch_type=None, patching_end_time=None, patching_mode=None, patching_start_time=None, patching_status=None, peer_maintenance_run_id=None, peer_maintenance_run_ids=None, state=None, target_db_server_version=None, target_resource_id=None, target_resource_type=None, target_storage_server_version=None, time_ended=None, time_scheduled=None, time_started=None, total_time_taken_in_mins=None):
|
31
31
|
if compartment_id and not isinstance(compartment_id, str):
|
32
32
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
33
33
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -103,6 +103,9 @@ class GetMaintenanceRunResult:
|
|
103
103
|
if peer_maintenance_run_id and not isinstance(peer_maintenance_run_id, str):
|
104
104
|
raise TypeError("Expected argument 'peer_maintenance_run_id' to be a str")
|
105
105
|
pulumi.set(__self__, "peer_maintenance_run_id", peer_maintenance_run_id)
|
106
|
+
if peer_maintenance_run_ids and not isinstance(peer_maintenance_run_ids, list):
|
107
|
+
raise TypeError("Expected argument 'peer_maintenance_run_ids' to be a list")
|
108
|
+
pulumi.set(__self__, "peer_maintenance_run_ids", peer_maintenance_run_ids)
|
106
109
|
if state and not isinstance(state, str):
|
107
110
|
raise TypeError("Expected argument 'state' to be a str")
|
108
111
|
pulumi.set(__self__, "state", state)
|
@@ -325,6 +328,14 @@ class GetMaintenanceRunResult:
|
|
325
328
|
"""
|
326
329
|
return pulumi.get(self, "peer_maintenance_run_id")
|
327
330
|
|
331
|
+
@property
|
332
|
+
@pulumi.getter(name="peerMaintenanceRunIds")
|
333
|
+
def peer_maintenance_run_ids(self) -> Sequence[str]:
|
334
|
+
"""
|
335
|
+
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
336
|
+
"""
|
337
|
+
return pulumi.get(self, "peer_maintenance_run_ids")
|
338
|
+
|
328
339
|
@property
|
329
340
|
@pulumi.getter
|
330
341
|
def state(self) -> str:
|
@@ -429,6 +440,7 @@ class AwaitableGetMaintenanceRunResult(GetMaintenanceRunResult):
|
|
429
440
|
patching_start_time=self.patching_start_time,
|
430
441
|
patching_status=self.patching_status,
|
431
442
|
peer_maintenance_run_id=self.peer_maintenance_run_id,
|
443
|
+
peer_maintenance_run_ids=self.peer_maintenance_run_ids,
|
432
444
|
state=self.state,
|
433
445
|
target_db_server_version=self.target_db_server_version,
|
434
446
|
target_resource_id=self.target_resource_id,
|
@@ -490,6 +502,7 @@ def get_maintenance_run(maintenance_run_id: Optional[str] = None,
|
|
490
502
|
patching_start_time=pulumi.get(__ret__, 'patching_start_time'),
|
491
503
|
patching_status=pulumi.get(__ret__, 'patching_status'),
|
492
504
|
peer_maintenance_run_id=pulumi.get(__ret__, 'peer_maintenance_run_id'),
|
505
|
+
peer_maintenance_run_ids=pulumi.get(__ret__, 'peer_maintenance_run_ids'),
|
493
506
|
state=pulumi.get(__ret__, 'state'),
|
494
507
|
target_db_server_version=pulumi.get(__ret__, 'target_db_server_version'),
|
495
508
|
target_resource_id=pulumi.get(__ret__, 'target_resource_id'),
|
@@ -548,6 +561,7 @@ def get_maintenance_run_output(maintenance_run_id: Optional[pulumi.Input[str]] =
|
|
548
561
|
patching_start_time=pulumi.get(__response__, 'patching_start_time'),
|
549
562
|
patching_status=pulumi.get(__response__, 'patching_status'),
|
550
563
|
peer_maintenance_run_id=pulumi.get(__response__, 'peer_maintenance_run_id'),
|
564
|
+
peer_maintenance_run_ids=pulumi.get(__response__, 'peer_maintenance_run_ids'),
|
551
565
|
state=pulumi.get(__response__, 'state'),
|
552
566
|
target_db_server_version=pulumi.get(__response__, 'target_db_server_version'),
|
553
567
|
target_resource_id=pulumi.get(__response__, 'target_resource_id'),
|
@@ -173,6 +173,7 @@ class _MaintenanceRunState:
|
|
173
173
|
patching_start_time: Optional[pulumi.Input[str]] = None,
|
174
174
|
patching_status: Optional[pulumi.Input[str]] = None,
|
175
175
|
peer_maintenance_run_id: Optional[pulumi.Input[str]] = None,
|
176
|
+
peer_maintenance_run_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
176
177
|
state: Optional[pulumi.Input[str]] = None,
|
177
178
|
target_db_server_version: Optional[pulumi.Input[str]] = None,
|
178
179
|
target_resource_id: Optional[pulumi.Input[str]] = None,
|
@@ -209,6 +210,7 @@ class _MaintenanceRunState:
|
|
209
210
|
:param pulumi.Input[str] patching_start_time: The time when the patching operation started.
|
210
211
|
:param pulumi.Input[str] patching_status: The status of the patching operation.
|
211
212
|
:param pulumi.Input[str] peer_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance run for the Autonomous Data Guard association's peer container database.
|
213
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] peer_maintenance_run_ids: The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
212
214
|
:param pulumi.Input[str] state: The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
|
213
215
|
:param pulumi.Input[str] target_db_server_version: The target software version for the database server patching operation.
|
214
216
|
:param pulumi.Input[str] target_resource_id: The ID of the target resource for which the maintenance run should be created.
|
@@ -269,6 +271,8 @@ class _MaintenanceRunState:
|
|
269
271
|
pulumi.set(__self__, "patching_status", patching_status)
|
270
272
|
if peer_maintenance_run_id is not None:
|
271
273
|
pulumi.set(__self__, "peer_maintenance_run_id", peer_maintenance_run_id)
|
274
|
+
if peer_maintenance_run_ids is not None:
|
275
|
+
pulumi.set(__self__, "peer_maintenance_run_ids", peer_maintenance_run_ids)
|
272
276
|
if state is not None:
|
273
277
|
pulumi.set(__self__, "state", state)
|
274
278
|
if target_db_server_version is not None:
|
@@ -566,6 +570,18 @@ class _MaintenanceRunState:
|
|
566
570
|
def peer_maintenance_run_id(self, value: Optional[pulumi.Input[str]]):
|
567
571
|
pulumi.set(self, "peer_maintenance_run_id", value)
|
568
572
|
|
573
|
+
@property
|
574
|
+
@pulumi.getter(name="peerMaintenanceRunIds")
|
575
|
+
def peer_maintenance_run_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
576
|
+
"""
|
577
|
+
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
578
|
+
"""
|
579
|
+
return pulumi.get(self, "peer_maintenance_run_ids")
|
580
|
+
|
581
|
+
@peer_maintenance_run_ids.setter
|
582
|
+
def peer_maintenance_run_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
583
|
+
pulumi.set(self, "peer_maintenance_run_ids", value)
|
584
|
+
|
569
585
|
@property
|
570
586
|
@pulumi.getter
|
571
587
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -840,6 +856,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
840
856
|
__props__.__dict__["patching_start_time"] = None
|
841
857
|
__props__.__dict__["patching_status"] = None
|
842
858
|
__props__.__dict__["peer_maintenance_run_id"] = None
|
859
|
+
__props__.__dict__["peer_maintenance_run_ids"] = None
|
843
860
|
__props__.__dict__["state"] = None
|
844
861
|
__props__.__dict__["target_db_server_version"] = None
|
845
862
|
__props__.__dict__["target_resource_type"] = None
|
@@ -880,6 +897,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
880
897
|
patching_start_time: Optional[pulumi.Input[str]] = None,
|
881
898
|
patching_status: Optional[pulumi.Input[str]] = None,
|
882
899
|
peer_maintenance_run_id: Optional[pulumi.Input[str]] = None,
|
900
|
+
peer_maintenance_run_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
883
901
|
state: Optional[pulumi.Input[str]] = None,
|
884
902
|
target_db_server_version: Optional[pulumi.Input[str]] = None,
|
885
903
|
target_resource_id: Optional[pulumi.Input[str]] = None,
|
@@ -921,6 +939,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
921
939
|
:param pulumi.Input[str] patching_start_time: The time when the patching operation started.
|
922
940
|
:param pulumi.Input[str] patching_status: The status of the patching operation.
|
923
941
|
:param pulumi.Input[str] peer_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the maintenance run for the Autonomous Data Guard association's peer container database.
|
942
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] peer_maintenance_run_ids: The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
924
943
|
:param pulumi.Input[str] state: The current state of the maintenance run. For Autonomous Database Serverless instances, valid states are IN_PROGRESS, SUCCEEDED, and FAILED.
|
925
944
|
:param pulumi.Input[str] target_db_server_version: The target software version for the database server patching operation.
|
926
945
|
:param pulumi.Input[str] target_resource_id: The ID of the target resource for which the maintenance run should be created.
|
@@ -962,6 +981,7 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
962
981
|
__props__.__dict__["patching_start_time"] = patching_start_time
|
963
982
|
__props__.__dict__["patching_status"] = patching_status
|
964
983
|
__props__.__dict__["peer_maintenance_run_id"] = peer_maintenance_run_id
|
984
|
+
__props__.__dict__["peer_maintenance_run_ids"] = peer_maintenance_run_ids
|
965
985
|
__props__.__dict__["state"] = state
|
966
986
|
__props__.__dict__["target_db_server_version"] = target_db_server_version
|
967
987
|
__props__.__dict__["target_resource_id"] = target_resource_id
|
@@ -1159,6 +1179,14 @@ class MaintenanceRun(pulumi.CustomResource):
|
|
1159
1179
|
"""
|
1160
1180
|
return pulumi.get(self, "peer_maintenance_run_id")
|
1161
1181
|
|
1182
|
+
@property
|
1183
|
+
@pulumi.getter(name="peerMaintenanceRunIds")
|
1184
|
+
def peer_maintenance_run_ids(self) -> pulumi.Output[Sequence[str]]:
|
1185
|
+
"""
|
1186
|
+
The list of OCIDs for the maintenance runs associated with their Autonomous Data Guard peer container databases.
|
1187
|
+
"""
|
1188
|
+
return pulumi.get(self, "peer_maintenance_run_ids")
|
1189
|
+
|
1162
1190
|
@property
|
1163
1191
|
@pulumi.getter
|
1164
1192
|
def state(self) -> pulumi.Output[str]:
|