pulumi-oci 2.25.0a1740032973__py3-none-any.whl → 2.25.0a1740096539__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 +35 -0
- pulumi_oci/config/__init__.pyi +2 -0
- pulumi_oci/config/vars.py +4 -0
- pulumi_oci/containerengine/_inputs.py +40 -0
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/outputs.py +70 -0
- pulumi_oci/database/_inputs.py +487 -2
- pulumi_oci/database/autonomous_container_database.py +92 -0
- pulumi_oci/database/autonomous_database.py +97 -8
- pulumi_oci/database/backup_destination.py +84 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +111 -8
- pulumi_oci/database/get_autonomous_container_database.py +43 -1
- pulumi_oci/database/get_autonomous_database.py +32 -1
- pulumi_oci/database/get_autonomous_databases.py +0 -26
- pulumi_oci/database/get_backup_destination.py +43 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_maintenance_runs.py +20 -1
- pulumi_oci/database/outputs.py +1179 -48
- pulumi_oci/filestorage/file_system.py +28 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +28 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +15 -1
- pulumi_oci/filestorage/get_outbound_connector.py +15 -1
- pulumi_oci/filestorage/get_replication.py +15 -1
- pulumi_oci/filestorage/get_replication_target.py +15 -1
- pulumi_oci/filestorage/get_snapshot.py +15 -1
- pulumi_oci/filestorage/mount_target.py +28 -0
- pulumi_oci/filestorage/outbound_connector.py +28 -0
- pulumi_oci/filestorage/outputs.py +77 -0
- pulumi_oci/filestorage/replication.py +28 -0
- pulumi_oci/filestorage/snapshot.py +28 -0
- pulumi_oci/goldengate/connection.py +561 -162
- pulumi_oci/goldengate/database_registration.py +14 -14
- pulumi_oci/goldengate/get_connection.py +117 -6
- pulumi_oci/goldengate/outputs.py +96 -10
- pulumi_oci/jms/__init__.py +4 -0
- pulumi_oci/jms/_inputs.py +196 -0
- pulumi_oci/jms/get_fleet_error_analytics.py +163 -0
- pulumi_oci/jms/get_fleet_errors.py +264 -0
- pulumi_oci/jms/get_fleet_performance_tuning_analysis_results.py +23 -1
- pulumi_oci/jms/get_jms_plugins.py +23 -1
- pulumi_oci/jms/get_plugin_error_analytics.py +163 -0
- pulumi_oci/jms/get_plugin_errors.py +264 -0
- pulumi_oci/jms/outputs.py +566 -6
- pulumi_oci/provider.py +20 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/stackmonitoring/__init__.py +8 -0
- pulumi_oci/stackmonitoring/_inputs.py +372 -1
- pulumi_oci/stackmonitoring/get_defined_monitoring_templates.py +185 -0
- pulumi_oci/stackmonitoring/get_metric_extension.py +1 -1
- pulumi_oci/stackmonitoring/get_monitored_resource_type.py +15 -1
- pulumi_oci/stackmonitoring/get_monitoring_template.py +380 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_condition.py +318 -0
- pulumi_oci/stackmonitoring/get_monitoring_template_alarm_conditions.py +262 -0
- pulumi_oci/stackmonitoring/get_monitoring_templates.py +289 -0
- pulumi_oci/stackmonitoring/metric_extension.py +4 -4
- pulumi_oci/stackmonitoring/monitored_resource_type.py +30 -0
- pulumi_oci/stackmonitoring/monitoring_template.py +954 -0
- pulumi_oci/stackmonitoring/monitoring_template_alarm_condition.py +780 -0
- pulumi_oci/stackmonitoring/monitoring_template_monitoring_template_on_given_resources_management.py +253 -0
- pulumi_oci/stackmonitoring/outputs.py +1305 -118
- pulumi_oci/tenantmanagercontrolplane/__init__.py +33 -0
- pulumi_oci/tenantmanagercontrolplane/_inputs.py +685 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription.py +478 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_assigned_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain.py +253 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governance.py +281 -0
- pulumi_oci/tenantmanagercontrolplane/get_domain_governances.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_domains.py +226 -0
- pulumi_oci/tenantmanagercontrolplane/get_link.py +197 -0
- pulumi_oci/tenantmanagercontrolplane/get_links.py +191 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancies.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_organization_tenancy.py +233 -0
- pulumi_oci/tenantmanagercontrolplane/get_organizations.py +147 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_recipient_invitations.py +213 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitation.py +295 -0
- pulumi_oci/tenantmanagercontrolplane/get_sender_invitations.py +235 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription.py +464 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_available_regions.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_line_items.py +144 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mapping.py +211 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscription_mappings.py +210 -0
- pulumi_oci/tenantmanagercontrolplane/get_subscriptions.py +188 -0
- pulumi_oci/tenantmanagercontrolplane/outputs.py +3257 -0
- pulumi_oci/tenantmanagercontrolplane/subscription_mapping.py +409 -0
- pulumi_oci/vault/__init__.py +1 -1
- pulumi_oci/vault/_inputs.py +92 -0
- pulumi_oci/vault/get_secret.py +40 -1
- pulumi_oci/vault/{get_secret_version.py → get_secret_version_sdk_v2.py} +32 -77
- pulumi_oci/vault/outputs.py +210 -0
- pulumi_oci/vault/secret.py +122 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/METADATA +1 -1
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/RECORD +98 -59
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.25.0a1740032973.dist-info → pulumi_oci-2.25.0a1740096539.dist-info}/top_level.txt +0 -0
pulumi_oci/database/_inputs.py
CHANGED
@@ -15,10 +15,14 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgs',
|
19
|
+
'AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgsDict',
|
18
20
|
'AutonomousContainerDatabaseBackupConfigArgs',
|
19
21
|
'AutonomousContainerDatabaseBackupConfigArgsDict',
|
20
22
|
'AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs',
|
21
23
|
'AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgsDict',
|
24
|
+
'AutonomousContainerDatabaseBackupDestinationPropertiesListArgs',
|
25
|
+
'AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict',
|
22
26
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgs',
|
23
27
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict',
|
24
28
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs',
|
@@ -41,6 +45,8 @@ __all__ = [
|
|
41
45
|
'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigArgsDict',
|
42
46
|
'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs',
|
43
47
|
'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgsDict',
|
48
|
+
'AutonomousContainerDatabaseRecoveryApplianceDetailArgs',
|
49
|
+
'AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict',
|
44
50
|
'AutonomousDatabaseApexDetailArgs',
|
45
51
|
'AutonomousDatabaseApexDetailArgsDict',
|
46
52
|
'AutonomousDatabaseBackupBackupDestinationDetailsArgs',
|
@@ -559,6 +565,218 @@ __all__ = [
|
|
559
565
|
|
560
566
|
MYPY = False
|
561
567
|
|
568
|
+
if not MYPY:
|
569
|
+
class AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgsDict(TypedDict):
|
570
|
+
backup_destination_attach_histories: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
571
|
+
"""
|
572
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
573
|
+
"""
|
574
|
+
dbrs_policy_id: NotRequired[pulumi.Input[str]]
|
575
|
+
"""
|
576
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
577
|
+
"""
|
578
|
+
id: NotRequired[pulumi.Input[str]]
|
579
|
+
"""
|
580
|
+
The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
581
|
+
"""
|
582
|
+
internet_proxy: NotRequired[pulumi.Input[str]]
|
583
|
+
"""
|
584
|
+
Proxy URL to connect to object store.
|
585
|
+
"""
|
586
|
+
recovery_window_in_days: NotRequired[pulumi.Input[int]]
|
587
|
+
"""
|
588
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
589
|
+
"""
|
590
|
+
space_utilized_in_gbs: NotRequired[pulumi.Input[int]]
|
591
|
+
"""
|
592
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
593
|
+
"""
|
594
|
+
time_at_which_storage_details_are_updated: NotRequired[pulumi.Input[str]]
|
595
|
+
"""
|
596
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
597
|
+
"""
|
598
|
+
type: NotRequired[pulumi.Input[str]]
|
599
|
+
"""
|
600
|
+
Type of the database backup destination.
|
601
|
+
"""
|
602
|
+
vpc_password: NotRequired[pulumi.Input[str]]
|
603
|
+
"""
|
604
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
605
|
+
"""
|
606
|
+
vpc_user: NotRequired[pulumi.Input[str]]
|
607
|
+
"""
|
608
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
609
|
+
"""
|
610
|
+
elif False:
|
611
|
+
AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgsDict: TypeAlias = Mapping[str, Any]
|
612
|
+
|
613
|
+
@pulumi.input_type
|
614
|
+
class AutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgs:
|
615
|
+
def __init__(__self__, *,
|
616
|
+
backup_destination_attach_histories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
617
|
+
dbrs_policy_id: Optional[pulumi.Input[str]] = None,
|
618
|
+
id: Optional[pulumi.Input[str]] = None,
|
619
|
+
internet_proxy: Optional[pulumi.Input[str]] = None,
|
620
|
+
recovery_window_in_days: Optional[pulumi.Input[int]] = None,
|
621
|
+
space_utilized_in_gbs: Optional[pulumi.Input[int]] = None,
|
622
|
+
time_at_which_storage_details_are_updated: Optional[pulumi.Input[str]] = None,
|
623
|
+
type: Optional[pulumi.Input[str]] = None,
|
624
|
+
vpc_password: Optional[pulumi.Input[str]] = None,
|
625
|
+
vpc_user: Optional[pulumi.Input[str]] = None):
|
626
|
+
"""
|
627
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
628
|
+
:param pulumi.Input[str] dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
629
|
+
:param pulumi.Input[str] id: The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
630
|
+
:param pulumi.Input[str] internet_proxy: Proxy URL to connect to object store.
|
631
|
+
:param pulumi.Input[int] recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
632
|
+
:param pulumi.Input[int] space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
633
|
+
:param pulumi.Input[str] time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
634
|
+
:param pulumi.Input[str] type: Type of the database backup destination.
|
635
|
+
:param pulumi.Input[str] vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
636
|
+
:param pulumi.Input[str] vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
637
|
+
"""
|
638
|
+
if backup_destination_attach_histories is not None:
|
639
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
640
|
+
if dbrs_policy_id is not None:
|
641
|
+
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
642
|
+
if id is not None:
|
643
|
+
pulumi.set(__self__, "id", id)
|
644
|
+
if internet_proxy is not None:
|
645
|
+
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
646
|
+
if recovery_window_in_days is not None:
|
647
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
648
|
+
if space_utilized_in_gbs is not None:
|
649
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
650
|
+
if time_at_which_storage_details_are_updated is not None:
|
651
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
652
|
+
if type is not None:
|
653
|
+
pulumi.set(__self__, "type", type)
|
654
|
+
if vpc_password is not None:
|
655
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
656
|
+
if vpc_user is not None:
|
657
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
658
|
+
|
659
|
+
@property
|
660
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
661
|
+
def backup_destination_attach_histories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
662
|
+
"""
|
663
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
664
|
+
"""
|
665
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
666
|
+
|
667
|
+
@backup_destination_attach_histories.setter
|
668
|
+
def backup_destination_attach_histories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
669
|
+
pulumi.set(self, "backup_destination_attach_histories", value)
|
670
|
+
|
671
|
+
@property
|
672
|
+
@pulumi.getter(name="dbrsPolicyId")
|
673
|
+
def dbrs_policy_id(self) -> Optional[pulumi.Input[str]]:
|
674
|
+
"""
|
675
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
676
|
+
"""
|
677
|
+
return pulumi.get(self, "dbrs_policy_id")
|
678
|
+
|
679
|
+
@dbrs_policy_id.setter
|
680
|
+
def dbrs_policy_id(self, value: Optional[pulumi.Input[str]]):
|
681
|
+
pulumi.set(self, "dbrs_policy_id", value)
|
682
|
+
|
683
|
+
@property
|
684
|
+
@pulumi.getter
|
685
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
686
|
+
"""
|
687
|
+
The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
688
|
+
"""
|
689
|
+
return pulumi.get(self, "id")
|
690
|
+
|
691
|
+
@id.setter
|
692
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
693
|
+
pulumi.set(self, "id", value)
|
694
|
+
|
695
|
+
@property
|
696
|
+
@pulumi.getter(name="internetProxy")
|
697
|
+
def internet_proxy(self) -> Optional[pulumi.Input[str]]:
|
698
|
+
"""
|
699
|
+
Proxy URL to connect to object store.
|
700
|
+
"""
|
701
|
+
return pulumi.get(self, "internet_proxy")
|
702
|
+
|
703
|
+
@internet_proxy.setter
|
704
|
+
def internet_proxy(self, value: Optional[pulumi.Input[str]]):
|
705
|
+
pulumi.set(self, "internet_proxy", value)
|
706
|
+
|
707
|
+
@property
|
708
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
709
|
+
def recovery_window_in_days(self) -> Optional[pulumi.Input[int]]:
|
710
|
+
"""
|
711
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
712
|
+
"""
|
713
|
+
return pulumi.get(self, "recovery_window_in_days")
|
714
|
+
|
715
|
+
@recovery_window_in_days.setter
|
716
|
+
def recovery_window_in_days(self, value: Optional[pulumi.Input[int]]):
|
717
|
+
pulumi.set(self, "recovery_window_in_days", value)
|
718
|
+
|
719
|
+
@property
|
720
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
721
|
+
def space_utilized_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
722
|
+
"""
|
723
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
724
|
+
"""
|
725
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
726
|
+
|
727
|
+
@space_utilized_in_gbs.setter
|
728
|
+
def space_utilized_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
729
|
+
pulumi.set(self, "space_utilized_in_gbs", value)
|
730
|
+
|
731
|
+
@property
|
732
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
733
|
+
def time_at_which_storage_details_are_updated(self) -> Optional[pulumi.Input[str]]:
|
734
|
+
"""
|
735
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
736
|
+
"""
|
737
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
738
|
+
|
739
|
+
@time_at_which_storage_details_are_updated.setter
|
740
|
+
def time_at_which_storage_details_are_updated(self, value: Optional[pulumi.Input[str]]):
|
741
|
+
pulumi.set(self, "time_at_which_storage_details_are_updated", value)
|
742
|
+
|
743
|
+
@property
|
744
|
+
@pulumi.getter
|
745
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
746
|
+
"""
|
747
|
+
Type of the database backup destination.
|
748
|
+
"""
|
749
|
+
return pulumi.get(self, "type")
|
750
|
+
|
751
|
+
@type.setter
|
752
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
753
|
+
pulumi.set(self, "type", value)
|
754
|
+
|
755
|
+
@property
|
756
|
+
@pulumi.getter(name="vpcPassword")
|
757
|
+
def vpc_password(self) -> Optional[pulumi.Input[str]]:
|
758
|
+
"""
|
759
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
760
|
+
"""
|
761
|
+
return pulumi.get(self, "vpc_password")
|
762
|
+
|
763
|
+
@vpc_password.setter
|
764
|
+
def vpc_password(self, value: Optional[pulumi.Input[str]]):
|
765
|
+
pulumi.set(self, "vpc_password", value)
|
766
|
+
|
767
|
+
@property
|
768
|
+
@pulumi.getter(name="vpcUser")
|
769
|
+
def vpc_user(self) -> Optional[pulumi.Input[str]]:
|
770
|
+
"""
|
771
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
772
|
+
"""
|
773
|
+
return pulumi.get(self, "vpc_user")
|
774
|
+
|
775
|
+
@vpc_user.setter
|
776
|
+
def vpc_user(self, value: Optional[pulumi.Input[str]]):
|
777
|
+
pulumi.set(self, "vpc_user", value)
|
778
|
+
|
779
|
+
|
562
780
|
if not MYPY:
|
563
781
|
class AutonomousContainerDatabaseBackupConfigArgsDict(TypedDict):
|
564
782
|
backup_destination_details: NotRequired[pulumi.Input['AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgsDict']]
|
@@ -722,6 +940,78 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetailsArgs:
|
|
722
940
|
pulumi.set(self, "vpc_user", value)
|
723
941
|
|
724
942
|
|
943
|
+
if not MYPY:
|
944
|
+
class AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict(TypedDict):
|
945
|
+
backup_destination_attach_histories: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
946
|
+
"""
|
947
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
948
|
+
"""
|
949
|
+
space_utilized_in_gbs: NotRequired[pulumi.Input[int]]
|
950
|
+
"""
|
951
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
952
|
+
"""
|
953
|
+
time_at_which_storage_details_are_updated: NotRequired[pulumi.Input[str]]
|
954
|
+
"""
|
955
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
956
|
+
"""
|
957
|
+
elif False:
|
958
|
+
AutonomousContainerDatabaseBackupDestinationPropertiesListArgsDict: TypeAlias = Mapping[str, Any]
|
959
|
+
|
960
|
+
@pulumi.input_type
|
961
|
+
class AutonomousContainerDatabaseBackupDestinationPropertiesListArgs:
|
962
|
+
def __init__(__self__, *,
|
963
|
+
backup_destination_attach_histories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
964
|
+
space_utilized_in_gbs: Optional[pulumi.Input[int]] = None,
|
965
|
+
time_at_which_storage_details_are_updated: Optional[pulumi.Input[str]] = None):
|
966
|
+
"""
|
967
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_destination_attach_histories: The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
968
|
+
:param pulumi.Input[int] space_utilized_in_gbs: The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
969
|
+
:param pulumi.Input[str] time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
970
|
+
"""
|
971
|
+
if backup_destination_attach_histories is not None:
|
972
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
973
|
+
if space_utilized_in_gbs is not None:
|
974
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
975
|
+
if time_at_which_storage_details_are_updated is not None:
|
976
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
977
|
+
|
978
|
+
@property
|
979
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
980
|
+
def backup_destination_attach_histories(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
981
|
+
"""
|
982
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
983
|
+
"""
|
984
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
985
|
+
|
986
|
+
@backup_destination_attach_histories.setter
|
987
|
+
def backup_destination_attach_histories(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
988
|
+
pulumi.set(self, "backup_destination_attach_histories", value)
|
989
|
+
|
990
|
+
@property
|
991
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
992
|
+
def space_utilized_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
993
|
+
"""
|
994
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
995
|
+
"""
|
996
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
997
|
+
|
998
|
+
@space_utilized_in_gbs.setter
|
999
|
+
def space_utilized_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
1000
|
+
pulumi.set(self, "space_utilized_in_gbs", value)
|
1001
|
+
|
1002
|
+
@property
|
1003
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
1004
|
+
def time_at_which_storage_details_are_updated(self) -> Optional[pulumi.Input[str]]:
|
1005
|
+
"""
|
1006
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
1007
|
+
"""
|
1008
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
1009
|
+
|
1010
|
+
@time_at_which_storage_details_are_updated.setter
|
1011
|
+
def time_at_which_storage_details_are_updated(self, value: Optional[pulumi.Input[str]]):
|
1012
|
+
pulumi.set(self, "time_at_which_storage_details_are_updated", value)
|
1013
|
+
|
1014
|
+
|
725
1015
|
if not MYPY:
|
726
1016
|
class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigArgsDict(TypedDict):
|
727
1017
|
backup_destination_details: NotRequired[pulumi.Input[Sequence[pulumi.Input['AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgsDict']]]]
|
@@ -1762,6 +2052,81 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
|
|
1762
2052
|
pulumi.set(self, "vpc_user", value)
|
1763
2053
|
|
1764
2054
|
|
2055
|
+
if not MYPY:
|
2056
|
+
class AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict(TypedDict):
|
2057
|
+
allocated_storage_size_in_gbs: NotRequired[pulumi.Input[int]]
|
2058
|
+
"""
|
2059
|
+
The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
|
2060
|
+
"""
|
2061
|
+
recovery_window_in_days: NotRequired[pulumi.Input[int]]
|
2062
|
+
"""
|
2063
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
2064
|
+
"""
|
2065
|
+
time_recovery_appliance_details_updated: NotRequired[pulumi.Input[str]]
|
2066
|
+
"""
|
2067
|
+
The time when the recovery appliance details are updated.
|
2068
|
+
=======
|
2069
|
+
"""
|
2070
|
+
elif False:
|
2071
|
+
AutonomousContainerDatabaseRecoveryApplianceDetailArgsDict: TypeAlias = Mapping[str, Any]
|
2072
|
+
|
2073
|
+
@pulumi.input_type
|
2074
|
+
class AutonomousContainerDatabaseRecoveryApplianceDetailArgs:
|
2075
|
+
def __init__(__self__, *,
|
2076
|
+
allocated_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
2077
|
+
recovery_window_in_days: Optional[pulumi.Input[int]] = None,
|
2078
|
+
time_recovery_appliance_details_updated: Optional[pulumi.Input[str]] = None):
|
2079
|
+
"""
|
2080
|
+
:param pulumi.Input[int] allocated_storage_size_in_gbs: The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
|
2081
|
+
:param pulumi.Input[int] recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
2082
|
+
:param pulumi.Input[str] time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
|
2083
|
+
=======
|
2084
|
+
"""
|
2085
|
+
if allocated_storage_size_in_gbs is not None:
|
2086
|
+
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
2087
|
+
if recovery_window_in_days is not None:
|
2088
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
2089
|
+
if time_recovery_appliance_details_updated is not None:
|
2090
|
+
pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
|
2091
|
+
|
2092
|
+
@property
|
2093
|
+
@pulumi.getter(name="allocatedStorageSizeInGbs")
|
2094
|
+
def allocated_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
2095
|
+
"""
|
2096
|
+
The storage size of the backup destination allocated for an Autonomous Container Database to store backups on the recovery appliance, in GBs, rounded to the nearest integer.
|
2097
|
+
"""
|
2098
|
+
return pulumi.get(self, "allocated_storage_size_in_gbs")
|
2099
|
+
|
2100
|
+
@allocated_storage_size_in_gbs.setter
|
2101
|
+
def allocated_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
2102
|
+
pulumi.set(self, "allocated_storage_size_in_gbs", value)
|
2103
|
+
|
2104
|
+
@property
|
2105
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
2106
|
+
def recovery_window_in_days(self) -> Optional[pulumi.Input[int]]:
|
2107
|
+
"""
|
2108
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
2109
|
+
"""
|
2110
|
+
return pulumi.get(self, "recovery_window_in_days")
|
2111
|
+
|
2112
|
+
@recovery_window_in_days.setter
|
2113
|
+
def recovery_window_in_days(self, value: Optional[pulumi.Input[int]]):
|
2114
|
+
pulumi.set(self, "recovery_window_in_days", value)
|
2115
|
+
|
2116
|
+
@property
|
2117
|
+
@pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
|
2118
|
+
def time_recovery_appliance_details_updated(self) -> Optional[pulumi.Input[str]]:
|
2119
|
+
"""
|
2120
|
+
The time when the recovery appliance details are updated.
|
2121
|
+
=======
|
2122
|
+
"""
|
2123
|
+
return pulumi.get(self, "time_recovery_appliance_details_updated")
|
2124
|
+
|
2125
|
+
@time_recovery_appliance_details_updated.setter
|
2126
|
+
def time_recovery_appliance_details_updated(self, value: Optional[pulumi.Input[str]]):
|
2127
|
+
pulumi.set(self, "time_recovery_appliance_details_updated", value)
|
2128
|
+
|
2129
|
+
|
1765
2130
|
if not MYPY:
|
1766
2131
|
class AutonomousDatabaseApexDetailArgsDict(TypedDict):
|
1767
2132
|
apex_version: NotRequired[pulumi.Input[str]]
|
@@ -3338,6 +3703,10 @@ if not MYPY:
|
|
3338
3703
|
"""
|
3339
3704
|
Additional information about the current lifecycle state.
|
3340
3705
|
"""
|
3706
|
+
maintenance_target_component: NotRequired[pulumi.Input[str]]
|
3707
|
+
"""
|
3708
|
+
The component chosen for maintenance.
|
3709
|
+
"""
|
3341
3710
|
state: NotRequired[pulumi.Input[str]]
|
3342
3711
|
"""
|
3343
3712
|
The current state of the Autonomous Database.
|
@@ -3350,6 +3719,14 @@ if not MYPY:
|
|
3350
3719
|
"""
|
3351
3720
|
The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
3352
3721
|
"""
|
3722
|
+
time_maintenance_begin: NotRequired[pulumi.Input[str]]
|
3723
|
+
"""
|
3724
|
+
The date and time when maintenance will begin.
|
3725
|
+
"""
|
3726
|
+
time_maintenance_end: NotRequired[pulumi.Input[str]]
|
3727
|
+
"""
|
3728
|
+
The date and time when maintenance will end.
|
3729
|
+
"""
|
3353
3730
|
elif False:
|
3354
3731
|
AutonomousDatabaseLocalStandbyDbArgsDict: TypeAlias = Mapping[str, Any]
|
3355
3732
|
|
@@ -3359,16 +3736,22 @@ class AutonomousDatabaseLocalStandbyDbArgs:
|
|
3359
3736
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
3360
3737
|
lag_time_in_seconds: Optional[pulumi.Input[int]] = None,
|
3361
3738
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
3739
|
+
maintenance_target_component: Optional[pulumi.Input[str]] = None,
|
3362
3740
|
state: Optional[pulumi.Input[str]] = None,
|
3363
3741
|
time_data_guard_role_changed: Optional[pulumi.Input[str]] = None,
|
3364
|
-
time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None
|
3742
|
+
time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None,
|
3743
|
+
time_maintenance_begin: Optional[pulumi.Input[str]] = None,
|
3744
|
+
time_maintenance_end: Optional[pulumi.Input[str]] = None):
|
3365
3745
|
"""
|
3366
3746
|
:param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
3367
3747
|
:param pulumi.Input[int] lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
3368
3748
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
3749
|
+
:param pulumi.Input[str] maintenance_target_component: The component chosen for maintenance.
|
3369
3750
|
:param pulumi.Input[str] state: The current state of the Autonomous Database.
|
3370
3751
|
:param pulumi.Input[str] time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
3371
3752
|
:param pulumi.Input[str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
3753
|
+
:param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
|
3754
|
+
:param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
|
3372
3755
|
"""
|
3373
3756
|
if availability_domain is not None:
|
3374
3757
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -3376,12 +3759,18 @@ class AutonomousDatabaseLocalStandbyDbArgs:
|
|
3376
3759
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
3377
3760
|
if lifecycle_details is not None:
|
3378
3761
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
3762
|
+
if maintenance_target_component is not None:
|
3763
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
3379
3764
|
if state is not None:
|
3380
3765
|
pulumi.set(__self__, "state", state)
|
3381
3766
|
if time_data_guard_role_changed is not None:
|
3382
3767
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
3383
3768
|
if time_disaster_recovery_role_changed is not None:
|
3384
3769
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
3770
|
+
if time_maintenance_begin is not None:
|
3771
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
3772
|
+
if time_maintenance_end is not None:
|
3773
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
3385
3774
|
|
3386
3775
|
@property
|
3387
3776
|
@pulumi.getter(name="availabilityDomain")
|
@@ -3419,6 +3808,18 @@ class AutonomousDatabaseLocalStandbyDbArgs:
|
|
3419
3808
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
3420
3809
|
pulumi.set(self, "lifecycle_details", value)
|
3421
3810
|
|
3811
|
+
@property
|
3812
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
3813
|
+
def maintenance_target_component(self) -> Optional[pulumi.Input[str]]:
|
3814
|
+
"""
|
3815
|
+
The component chosen for maintenance.
|
3816
|
+
"""
|
3817
|
+
return pulumi.get(self, "maintenance_target_component")
|
3818
|
+
|
3819
|
+
@maintenance_target_component.setter
|
3820
|
+
def maintenance_target_component(self, value: Optional[pulumi.Input[str]]):
|
3821
|
+
pulumi.set(self, "maintenance_target_component", value)
|
3822
|
+
|
3422
3823
|
@property
|
3423
3824
|
@pulumi.getter
|
3424
3825
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -3455,6 +3856,30 @@ class AutonomousDatabaseLocalStandbyDbArgs:
|
|
3455
3856
|
def time_disaster_recovery_role_changed(self, value: Optional[pulumi.Input[str]]):
|
3456
3857
|
pulumi.set(self, "time_disaster_recovery_role_changed", value)
|
3457
3858
|
|
3859
|
+
@property
|
3860
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
3861
|
+
def time_maintenance_begin(self) -> Optional[pulumi.Input[str]]:
|
3862
|
+
"""
|
3863
|
+
The date and time when maintenance will begin.
|
3864
|
+
"""
|
3865
|
+
return pulumi.get(self, "time_maintenance_begin")
|
3866
|
+
|
3867
|
+
@time_maintenance_begin.setter
|
3868
|
+
def time_maintenance_begin(self, value: Optional[pulumi.Input[str]]):
|
3869
|
+
pulumi.set(self, "time_maintenance_begin", value)
|
3870
|
+
|
3871
|
+
@property
|
3872
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
3873
|
+
def time_maintenance_end(self) -> Optional[pulumi.Input[str]]:
|
3874
|
+
"""
|
3875
|
+
The date and time when maintenance will end.
|
3876
|
+
"""
|
3877
|
+
return pulumi.get(self, "time_maintenance_end")
|
3878
|
+
|
3879
|
+
@time_maintenance_end.setter
|
3880
|
+
def time_maintenance_end(self, value: Optional[pulumi.Input[str]]):
|
3881
|
+
pulumi.set(self, "time_maintenance_end", value)
|
3882
|
+
|
3458
3883
|
|
3459
3884
|
if not MYPY:
|
3460
3885
|
class AutonomousDatabaseLongTermBackupScheduleArgsDict(TypedDict):
|
@@ -3980,6 +4405,10 @@ if not MYPY:
|
|
3980
4405
|
"""
|
3981
4406
|
Additional information about the current lifecycle state.
|
3982
4407
|
"""
|
4408
|
+
maintenance_target_component: NotRequired[pulumi.Input[str]]
|
4409
|
+
"""
|
4410
|
+
The component chosen for maintenance.
|
4411
|
+
"""
|
3983
4412
|
state: NotRequired[pulumi.Input[str]]
|
3984
4413
|
"""
|
3985
4414
|
The current state of the Autonomous Database.
|
@@ -3992,6 +4421,14 @@ if not MYPY:
|
|
3992
4421
|
"""
|
3993
4422
|
The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
3994
4423
|
"""
|
4424
|
+
time_maintenance_begin: NotRequired[pulumi.Input[str]]
|
4425
|
+
"""
|
4426
|
+
The date and time when maintenance will begin.
|
4427
|
+
"""
|
4428
|
+
time_maintenance_end: NotRequired[pulumi.Input[str]]
|
4429
|
+
"""
|
4430
|
+
The date and time when maintenance will end.
|
4431
|
+
"""
|
3995
4432
|
elif False:
|
3996
4433
|
AutonomousDatabaseStandbyDbArgsDict: TypeAlias = Mapping[str, Any]
|
3997
4434
|
|
@@ -4001,16 +4438,22 @@ class AutonomousDatabaseStandbyDbArgs:
|
|
4001
4438
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
4002
4439
|
lag_time_in_seconds: Optional[pulumi.Input[int]] = None,
|
4003
4440
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
4441
|
+
maintenance_target_component: Optional[pulumi.Input[str]] = None,
|
4004
4442
|
state: Optional[pulumi.Input[str]] = None,
|
4005
4443
|
time_data_guard_role_changed: Optional[pulumi.Input[str]] = None,
|
4006
|
-
time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None
|
4444
|
+
time_disaster_recovery_role_changed: Optional[pulumi.Input[str]] = None,
|
4445
|
+
time_maintenance_begin: Optional[pulumi.Input[str]] = None,
|
4446
|
+
time_maintenance_end: Optional[pulumi.Input[str]] = None):
|
4007
4447
|
"""
|
4008
4448
|
:param pulumi.Input[str] availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
4009
4449
|
:param pulumi.Input[int] lag_time_in_seconds: The amount of time, in seconds, that the data of the standby database lags the data of the primary database. Can be used to determine the potential data loss in the event of a failover.
|
4010
4450
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
4451
|
+
:param pulumi.Input[str] maintenance_target_component: The component chosen for maintenance.
|
4011
4452
|
:param pulumi.Input[str] state: The current state of the Autonomous Database.
|
4012
4453
|
:param pulumi.Input[str] time_data_guard_role_changed: The date and time the Autonomous Data Guard role was switched for the Autonomous Database. For databases that have standbys in both the primary Data Guard region and a remote Data Guard standby region, this is the latest timestamp of either the database using the "primary" role in the primary Data Guard region, or database located in the remote Data Guard standby region.
|
4013
4454
|
:param pulumi.Input[str] time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
4455
|
+
:param pulumi.Input[str] time_maintenance_begin: The date and time when maintenance will begin.
|
4456
|
+
:param pulumi.Input[str] time_maintenance_end: The date and time when maintenance will end.
|
4014
4457
|
"""
|
4015
4458
|
if availability_domain is not None:
|
4016
4459
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -4018,12 +4461,18 @@ class AutonomousDatabaseStandbyDbArgs:
|
|
4018
4461
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
4019
4462
|
if lifecycle_details is not None:
|
4020
4463
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
4464
|
+
if maintenance_target_component is not None:
|
4465
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
4021
4466
|
if state is not None:
|
4022
4467
|
pulumi.set(__self__, "state", state)
|
4023
4468
|
if time_data_guard_role_changed is not None:
|
4024
4469
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
4025
4470
|
if time_disaster_recovery_role_changed is not None:
|
4026
4471
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
4472
|
+
if time_maintenance_begin is not None:
|
4473
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
4474
|
+
if time_maintenance_end is not None:
|
4475
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
4027
4476
|
|
4028
4477
|
@property
|
4029
4478
|
@pulumi.getter(name="availabilityDomain")
|
@@ -4061,6 +4510,18 @@ class AutonomousDatabaseStandbyDbArgs:
|
|
4061
4510
|
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
4062
4511
|
pulumi.set(self, "lifecycle_details", value)
|
4063
4512
|
|
4513
|
+
@property
|
4514
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
4515
|
+
def maintenance_target_component(self) -> Optional[pulumi.Input[str]]:
|
4516
|
+
"""
|
4517
|
+
The component chosen for maintenance.
|
4518
|
+
"""
|
4519
|
+
return pulumi.get(self, "maintenance_target_component")
|
4520
|
+
|
4521
|
+
@maintenance_target_component.setter
|
4522
|
+
def maintenance_target_component(self, value: Optional[pulumi.Input[str]]):
|
4523
|
+
pulumi.set(self, "maintenance_target_component", value)
|
4524
|
+
|
4064
4525
|
@property
|
4065
4526
|
@pulumi.getter
|
4066
4527
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -4097,6 +4558,30 @@ class AutonomousDatabaseStandbyDbArgs:
|
|
4097
4558
|
def time_disaster_recovery_role_changed(self, value: Optional[pulumi.Input[str]]):
|
4098
4559
|
pulumi.set(self, "time_disaster_recovery_role_changed", value)
|
4099
4560
|
|
4561
|
+
@property
|
4562
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
4563
|
+
def time_maintenance_begin(self) -> Optional[pulumi.Input[str]]:
|
4564
|
+
"""
|
4565
|
+
The date and time when maintenance will begin.
|
4566
|
+
"""
|
4567
|
+
return pulumi.get(self, "time_maintenance_begin")
|
4568
|
+
|
4569
|
+
@time_maintenance_begin.setter
|
4570
|
+
def time_maintenance_begin(self, value: Optional[pulumi.Input[str]]):
|
4571
|
+
pulumi.set(self, "time_maintenance_begin", value)
|
4572
|
+
|
4573
|
+
@property
|
4574
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
4575
|
+
def time_maintenance_end(self) -> Optional[pulumi.Input[str]]:
|
4576
|
+
"""
|
4577
|
+
The date and time when maintenance will end.
|
4578
|
+
"""
|
4579
|
+
return pulumi.get(self, "time_maintenance_end")
|
4580
|
+
|
4581
|
+
@time_maintenance_end.setter
|
4582
|
+
def time_maintenance_end(self, value: Optional[pulumi.Input[str]]):
|
4583
|
+
pulumi.set(self, "time_maintenance_end", value)
|
4584
|
+
|
4100
4585
|
|
4101
4586
|
if not MYPY:
|
4102
4587
|
class AutonomousExadataInfrastructureMaintenanceWindowArgsDict(TypedDict):
|