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/outputs.py
CHANGED
@@ -16,8 +16,10 @@ from .. import _utilities
|
|
16
16
|
from . import outputs
|
17
17
|
|
18
18
|
__all__ = [
|
19
|
+
'AutonomousContainerDatabaseAssociatedBackupConfigurationDetail',
|
19
20
|
'AutonomousContainerDatabaseBackupConfig',
|
20
21
|
'AutonomousContainerDatabaseBackupConfigBackupDestinationDetails',
|
22
|
+
'AutonomousContainerDatabaseBackupDestinationPropertiesList',
|
21
23
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig',
|
22
24
|
'AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail',
|
23
25
|
'AutonomousContainerDatabaseKeyHistoryEntry',
|
@@ -29,6 +31,7 @@ __all__ = [
|
|
29
31
|
'AutonomousContainerDatabaseMaintenanceWindowMonth',
|
30
32
|
'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfig',
|
31
33
|
'AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetail',
|
34
|
+
'AutonomousContainerDatabaseRecoveryApplianceDetail',
|
32
35
|
'AutonomousDatabaseApexDetail',
|
33
36
|
'AutonomousDatabaseBackupBackupDestinationDetails',
|
34
37
|
'AutonomousDatabaseBackupConfig',
|
@@ -210,8 +213,10 @@ __all__ = [
|
|
210
213
|
'GetApplicationVipsFilterResult',
|
211
214
|
'GetAutonomousCharacterSetsAutonomousDatabaseCharacterSetResult',
|
212
215
|
'GetAutonomousCharacterSetsFilterResult',
|
216
|
+
'GetAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult',
|
213
217
|
'GetAutonomousContainerDatabaseBackupConfigResult',
|
214
218
|
'GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
219
|
+
'GetAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
|
215
220
|
'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult',
|
216
221
|
'GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
217
222
|
'GetAutonomousContainerDatabaseDataguardAssociationsAutonomousContainerDatabaseDataguardAssociationResult',
|
@@ -227,13 +232,16 @@ __all__ = [
|
|
227
232
|
'GetAutonomousContainerDatabaseMaintenanceWindowMonthResult',
|
228
233
|
'GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigResult',
|
229
234
|
'GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
235
|
+
'GetAutonomousContainerDatabaseRecoveryApplianceDetailResult',
|
230
236
|
'GetAutonomousContainerDatabaseResourceUsageAutonomousContainerDatabaseVmUsageResult',
|
231
237
|
'GetAutonomousContainerDatabaseVersionsAutonomousContainerDatabaseVersionResult',
|
232
238
|
'GetAutonomousContainerDatabaseVersionsAutonomousContainerDatabaseVersionSupportedAppResult',
|
233
239
|
'GetAutonomousContainerDatabaseVersionsFilterResult',
|
234
240
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult',
|
241
|
+
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult',
|
235
242
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult',
|
236
243
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
244
|
+
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult',
|
237
245
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryResult',
|
238
246
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowResult',
|
239
247
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowDaysOfWeekResult',
|
@@ -243,6 +251,7 @@ __all__ = [
|
|
243
251
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowMonthResult',
|
244
252
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigResult',
|
245
253
|
'GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult',
|
254
|
+
'GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult',
|
246
255
|
'GetAutonomousContainerDatabasesFilterResult',
|
247
256
|
'GetAutonomousContainerPatchesAutonomousPatchResult',
|
248
257
|
'GetAutonomousContainerPatchesFilterResult',
|
@@ -712,6 +721,164 @@ __all__ = [
|
|
712
721
|
'GetVmClustersVmClusterFileSystemConfigurationDetailResult',
|
713
722
|
]
|
714
723
|
|
724
|
+
@pulumi.output_type
|
725
|
+
class AutonomousContainerDatabaseAssociatedBackupConfigurationDetail(dict):
|
726
|
+
@staticmethod
|
727
|
+
def __key_warning(key: str):
|
728
|
+
suggest = None
|
729
|
+
if key == "backupDestinationAttachHistories":
|
730
|
+
suggest = "backup_destination_attach_histories"
|
731
|
+
elif key == "dbrsPolicyId":
|
732
|
+
suggest = "dbrs_policy_id"
|
733
|
+
elif key == "internetProxy":
|
734
|
+
suggest = "internet_proxy"
|
735
|
+
elif key == "recoveryWindowInDays":
|
736
|
+
suggest = "recovery_window_in_days"
|
737
|
+
elif key == "spaceUtilizedInGbs":
|
738
|
+
suggest = "space_utilized_in_gbs"
|
739
|
+
elif key == "timeAtWhichStorageDetailsAreUpdated":
|
740
|
+
suggest = "time_at_which_storage_details_are_updated"
|
741
|
+
elif key == "vpcPassword":
|
742
|
+
suggest = "vpc_password"
|
743
|
+
elif key == "vpcUser":
|
744
|
+
suggest = "vpc_user"
|
745
|
+
|
746
|
+
if suggest:
|
747
|
+
pulumi.log.warn(f"Key '{key}' not found in AutonomousContainerDatabaseAssociatedBackupConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
|
748
|
+
|
749
|
+
def __getitem__(self, key: str) -> Any:
|
750
|
+
AutonomousContainerDatabaseAssociatedBackupConfigurationDetail.__key_warning(key)
|
751
|
+
return super().__getitem__(key)
|
752
|
+
|
753
|
+
def get(self, key: str, default = None) -> Any:
|
754
|
+
AutonomousContainerDatabaseAssociatedBackupConfigurationDetail.__key_warning(key)
|
755
|
+
return super().get(key, default)
|
756
|
+
|
757
|
+
def __init__(__self__, *,
|
758
|
+
backup_destination_attach_histories: Optional[Sequence[str]] = None,
|
759
|
+
dbrs_policy_id: Optional[str] = None,
|
760
|
+
id: Optional[str] = None,
|
761
|
+
internet_proxy: Optional[str] = None,
|
762
|
+
recovery_window_in_days: Optional[int] = None,
|
763
|
+
space_utilized_in_gbs: Optional[int] = None,
|
764
|
+
time_at_which_storage_details_are_updated: Optional[str] = None,
|
765
|
+
type: Optional[str] = None,
|
766
|
+
vpc_password: Optional[str] = None,
|
767
|
+
vpc_user: Optional[str] = None):
|
768
|
+
"""
|
769
|
+
:param Sequence[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.
|
770
|
+
:param str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
771
|
+
:param 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.
|
772
|
+
:param str internet_proxy: Proxy URL to connect to object store.
|
773
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
774
|
+
:param 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.
|
775
|
+
:param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
776
|
+
:param str type: Type of the database backup destination.
|
777
|
+
:param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
778
|
+
:param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
779
|
+
"""
|
780
|
+
if backup_destination_attach_histories is not None:
|
781
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
782
|
+
if dbrs_policy_id is not None:
|
783
|
+
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
784
|
+
if id is not None:
|
785
|
+
pulumi.set(__self__, "id", id)
|
786
|
+
if internet_proxy is not None:
|
787
|
+
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
788
|
+
if recovery_window_in_days is not None:
|
789
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
790
|
+
if space_utilized_in_gbs is not None:
|
791
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
792
|
+
if time_at_which_storage_details_are_updated is not None:
|
793
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
794
|
+
if type is not None:
|
795
|
+
pulumi.set(__self__, "type", type)
|
796
|
+
if vpc_password is not None:
|
797
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
798
|
+
if vpc_user is not None:
|
799
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
800
|
+
|
801
|
+
@property
|
802
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
803
|
+
def backup_destination_attach_histories(self) -> Optional[Sequence[str]]:
|
804
|
+
"""
|
805
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
806
|
+
"""
|
807
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
808
|
+
|
809
|
+
@property
|
810
|
+
@pulumi.getter(name="dbrsPolicyId")
|
811
|
+
def dbrs_policy_id(self) -> Optional[str]:
|
812
|
+
"""
|
813
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
814
|
+
"""
|
815
|
+
return pulumi.get(self, "dbrs_policy_id")
|
816
|
+
|
817
|
+
@property
|
818
|
+
@pulumi.getter
|
819
|
+
def id(self) -> Optional[str]:
|
820
|
+
"""
|
821
|
+
The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
822
|
+
"""
|
823
|
+
return pulumi.get(self, "id")
|
824
|
+
|
825
|
+
@property
|
826
|
+
@pulumi.getter(name="internetProxy")
|
827
|
+
def internet_proxy(self) -> Optional[str]:
|
828
|
+
"""
|
829
|
+
Proxy URL to connect to object store.
|
830
|
+
"""
|
831
|
+
return pulumi.get(self, "internet_proxy")
|
832
|
+
|
833
|
+
@property
|
834
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
835
|
+
def recovery_window_in_days(self) -> Optional[int]:
|
836
|
+
"""
|
837
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
838
|
+
"""
|
839
|
+
return pulumi.get(self, "recovery_window_in_days")
|
840
|
+
|
841
|
+
@property
|
842
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
843
|
+
def space_utilized_in_gbs(self) -> Optional[int]:
|
844
|
+
"""
|
845
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
846
|
+
"""
|
847
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
848
|
+
|
849
|
+
@property
|
850
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
851
|
+
def time_at_which_storage_details_are_updated(self) -> Optional[str]:
|
852
|
+
"""
|
853
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
854
|
+
"""
|
855
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
856
|
+
|
857
|
+
@property
|
858
|
+
@pulumi.getter
|
859
|
+
def type(self) -> Optional[str]:
|
860
|
+
"""
|
861
|
+
Type of the database backup destination.
|
862
|
+
"""
|
863
|
+
return pulumi.get(self, "type")
|
864
|
+
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="vpcPassword")
|
867
|
+
def vpc_password(self) -> Optional[str]:
|
868
|
+
"""
|
869
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "vpc_password")
|
872
|
+
|
873
|
+
@property
|
874
|
+
@pulumi.getter(name="vpcUser")
|
875
|
+
def vpc_user(self) -> Optional[str]:
|
876
|
+
"""
|
877
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
878
|
+
"""
|
879
|
+
return pulumi.get(self, "vpc_user")
|
880
|
+
|
881
|
+
|
715
882
|
@pulumi.output_type
|
716
883
|
class AutonomousContainerDatabaseBackupConfig(dict):
|
717
884
|
@staticmethod
|
@@ -849,6 +1016,70 @@ class AutonomousContainerDatabaseBackupConfigBackupDestinationDetails(dict):
|
|
849
1016
|
return pulumi.get(self, "vpc_user")
|
850
1017
|
|
851
1018
|
|
1019
|
+
@pulumi.output_type
|
1020
|
+
class AutonomousContainerDatabaseBackupDestinationPropertiesList(dict):
|
1021
|
+
@staticmethod
|
1022
|
+
def __key_warning(key: str):
|
1023
|
+
suggest = None
|
1024
|
+
if key == "backupDestinationAttachHistories":
|
1025
|
+
suggest = "backup_destination_attach_histories"
|
1026
|
+
elif key == "spaceUtilizedInGbs":
|
1027
|
+
suggest = "space_utilized_in_gbs"
|
1028
|
+
elif key == "timeAtWhichStorageDetailsAreUpdated":
|
1029
|
+
suggest = "time_at_which_storage_details_are_updated"
|
1030
|
+
|
1031
|
+
if suggest:
|
1032
|
+
pulumi.log.warn(f"Key '{key}' not found in AutonomousContainerDatabaseBackupDestinationPropertiesList. Access the value via the '{suggest}' property getter instead.")
|
1033
|
+
|
1034
|
+
def __getitem__(self, key: str) -> Any:
|
1035
|
+
AutonomousContainerDatabaseBackupDestinationPropertiesList.__key_warning(key)
|
1036
|
+
return super().__getitem__(key)
|
1037
|
+
|
1038
|
+
def get(self, key: str, default = None) -> Any:
|
1039
|
+
AutonomousContainerDatabaseBackupDestinationPropertiesList.__key_warning(key)
|
1040
|
+
return super().get(key, default)
|
1041
|
+
|
1042
|
+
def __init__(__self__, *,
|
1043
|
+
backup_destination_attach_histories: Optional[Sequence[str]] = None,
|
1044
|
+
space_utilized_in_gbs: Optional[int] = None,
|
1045
|
+
time_at_which_storage_details_are_updated: Optional[str] = None):
|
1046
|
+
"""
|
1047
|
+
:param Sequence[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.
|
1048
|
+
:param 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.
|
1049
|
+
:param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
1050
|
+
"""
|
1051
|
+
if backup_destination_attach_histories is not None:
|
1052
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
1053
|
+
if space_utilized_in_gbs is not None:
|
1054
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
1055
|
+
if time_at_which_storage_details_are_updated is not None:
|
1056
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
1057
|
+
|
1058
|
+
@property
|
1059
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
1060
|
+
def backup_destination_attach_histories(self) -> Optional[Sequence[str]]:
|
1061
|
+
"""
|
1062
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
1063
|
+
"""
|
1064
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
1065
|
+
|
1066
|
+
@property
|
1067
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
1068
|
+
def space_utilized_in_gbs(self) -> Optional[int]:
|
1069
|
+
"""
|
1070
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
1071
|
+
"""
|
1072
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
1073
|
+
|
1074
|
+
@property
|
1075
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
1076
|
+
def time_at_which_storage_details_are_updated(self) -> Optional[str]:
|
1077
|
+
"""
|
1078
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
1079
|
+
"""
|
1080
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
1081
|
+
|
1082
|
+
|
852
1083
|
@pulumi.output_type
|
853
1084
|
class AutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfig(dict):
|
854
1085
|
@staticmethod
|
@@ -1639,6 +1870,72 @@ class AutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBack
|
|
1639
1870
|
return pulumi.get(self, "vpc_user")
|
1640
1871
|
|
1641
1872
|
|
1873
|
+
@pulumi.output_type
|
1874
|
+
class AutonomousContainerDatabaseRecoveryApplianceDetail(dict):
|
1875
|
+
@staticmethod
|
1876
|
+
def __key_warning(key: str):
|
1877
|
+
suggest = None
|
1878
|
+
if key == "allocatedStorageSizeInGbs":
|
1879
|
+
suggest = "allocated_storage_size_in_gbs"
|
1880
|
+
elif key == "recoveryWindowInDays":
|
1881
|
+
suggest = "recovery_window_in_days"
|
1882
|
+
elif key == "timeRecoveryApplianceDetailsUpdated":
|
1883
|
+
suggest = "time_recovery_appliance_details_updated"
|
1884
|
+
|
1885
|
+
if suggest:
|
1886
|
+
pulumi.log.warn(f"Key '{key}' not found in AutonomousContainerDatabaseRecoveryApplianceDetail. Access the value via the '{suggest}' property getter instead.")
|
1887
|
+
|
1888
|
+
def __getitem__(self, key: str) -> Any:
|
1889
|
+
AutonomousContainerDatabaseRecoveryApplianceDetail.__key_warning(key)
|
1890
|
+
return super().__getitem__(key)
|
1891
|
+
|
1892
|
+
def get(self, key: str, default = None) -> Any:
|
1893
|
+
AutonomousContainerDatabaseRecoveryApplianceDetail.__key_warning(key)
|
1894
|
+
return super().get(key, default)
|
1895
|
+
|
1896
|
+
def __init__(__self__, *,
|
1897
|
+
allocated_storage_size_in_gbs: Optional[int] = None,
|
1898
|
+
recovery_window_in_days: Optional[int] = None,
|
1899
|
+
time_recovery_appliance_details_updated: Optional[str] = None):
|
1900
|
+
"""
|
1901
|
+
:param 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.
|
1902
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
1903
|
+
:param str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
|
1904
|
+
=======
|
1905
|
+
"""
|
1906
|
+
if allocated_storage_size_in_gbs is not None:
|
1907
|
+
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
1908
|
+
if recovery_window_in_days is not None:
|
1909
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
1910
|
+
if time_recovery_appliance_details_updated is not None:
|
1911
|
+
pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
|
1912
|
+
|
1913
|
+
@property
|
1914
|
+
@pulumi.getter(name="allocatedStorageSizeInGbs")
|
1915
|
+
def allocated_storage_size_in_gbs(self) -> Optional[int]:
|
1916
|
+
"""
|
1917
|
+
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.
|
1918
|
+
"""
|
1919
|
+
return pulumi.get(self, "allocated_storage_size_in_gbs")
|
1920
|
+
|
1921
|
+
@property
|
1922
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
1923
|
+
def recovery_window_in_days(self) -> Optional[int]:
|
1924
|
+
"""
|
1925
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
1926
|
+
"""
|
1927
|
+
return pulumi.get(self, "recovery_window_in_days")
|
1928
|
+
|
1929
|
+
@property
|
1930
|
+
@pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
|
1931
|
+
def time_recovery_appliance_details_updated(self) -> Optional[str]:
|
1932
|
+
"""
|
1933
|
+
The time when the recovery appliance details are updated.
|
1934
|
+
=======
|
1935
|
+
"""
|
1936
|
+
return pulumi.get(self, "time_recovery_appliance_details_updated")
|
1937
|
+
|
1938
|
+
|
1642
1939
|
@pulumi.output_type
|
1643
1940
|
class AutonomousDatabaseApexDetail(dict):
|
1644
1941
|
@staticmethod
|
@@ -2867,10 +3164,16 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2867
3164
|
suggest = "lag_time_in_seconds"
|
2868
3165
|
elif key == "lifecycleDetails":
|
2869
3166
|
suggest = "lifecycle_details"
|
3167
|
+
elif key == "maintenanceTargetComponent":
|
3168
|
+
suggest = "maintenance_target_component"
|
2870
3169
|
elif key == "timeDataGuardRoleChanged":
|
2871
3170
|
suggest = "time_data_guard_role_changed"
|
2872
3171
|
elif key == "timeDisasterRecoveryRoleChanged":
|
2873
3172
|
suggest = "time_disaster_recovery_role_changed"
|
3173
|
+
elif key == "timeMaintenanceBegin":
|
3174
|
+
suggest = "time_maintenance_begin"
|
3175
|
+
elif key == "timeMaintenanceEnd":
|
3176
|
+
suggest = "time_maintenance_end"
|
2874
3177
|
|
2875
3178
|
if suggest:
|
2876
3179
|
pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseLocalStandbyDb. Access the value via the '{suggest}' property getter instead.")
|
@@ -2887,16 +3190,22 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2887
3190
|
availability_domain: Optional[str] = None,
|
2888
3191
|
lag_time_in_seconds: Optional[int] = None,
|
2889
3192
|
lifecycle_details: Optional[str] = None,
|
3193
|
+
maintenance_target_component: Optional[str] = None,
|
2890
3194
|
state: Optional[str] = None,
|
2891
3195
|
time_data_guard_role_changed: Optional[str] = None,
|
2892
|
-
time_disaster_recovery_role_changed: Optional[str] = None
|
3196
|
+
time_disaster_recovery_role_changed: Optional[str] = None,
|
3197
|
+
time_maintenance_begin: Optional[str] = None,
|
3198
|
+
time_maintenance_end: Optional[str] = None):
|
2893
3199
|
"""
|
2894
3200
|
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
2895
3201
|
:param 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.
|
2896
3202
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
3203
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
2897
3204
|
:param str state: The current state of the Autonomous Database.
|
2898
3205
|
:param 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.
|
2899
3206
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
3207
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
3208
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
2900
3209
|
"""
|
2901
3210
|
if availability_domain is not None:
|
2902
3211
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -2904,12 +3213,18 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2904
3213
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
2905
3214
|
if lifecycle_details is not None:
|
2906
3215
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
3216
|
+
if maintenance_target_component is not None:
|
3217
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
2907
3218
|
if state is not None:
|
2908
3219
|
pulumi.set(__self__, "state", state)
|
2909
3220
|
if time_data_guard_role_changed is not None:
|
2910
3221
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
2911
3222
|
if time_disaster_recovery_role_changed is not None:
|
2912
3223
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
3224
|
+
if time_maintenance_begin is not None:
|
3225
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
3226
|
+
if time_maintenance_end is not None:
|
3227
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
2913
3228
|
|
2914
3229
|
@property
|
2915
3230
|
@pulumi.getter(name="availabilityDomain")
|
@@ -2935,6 +3250,14 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2935
3250
|
"""
|
2936
3251
|
return pulumi.get(self, "lifecycle_details")
|
2937
3252
|
|
3253
|
+
@property
|
3254
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
3255
|
+
def maintenance_target_component(self) -> Optional[str]:
|
3256
|
+
"""
|
3257
|
+
The component chosen for maintenance.
|
3258
|
+
"""
|
3259
|
+
return pulumi.get(self, "maintenance_target_component")
|
3260
|
+
|
2938
3261
|
@property
|
2939
3262
|
@pulumi.getter
|
2940
3263
|
def state(self) -> Optional[str]:
|
@@ -2959,6 +3282,22 @@ class AutonomousDatabaseLocalStandbyDb(dict):
|
|
2959
3282
|
"""
|
2960
3283
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
2961
3284
|
|
3285
|
+
@property
|
3286
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
3287
|
+
def time_maintenance_begin(self) -> Optional[str]:
|
3288
|
+
"""
|
3289
|
+
The date and time when maintenance will begin.
|
3290
|
+
"""
|
3291
|
+
return pulumi.get(self, "time_maintenance_begin")
|
3292
|
+
|
3293
|
+
@property
|
3294
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
3295
|
+
def time_maintenance_end(self) -> Optional[str]:
|
3296
|
+
"""
|
3297
|
+
The date and time when maintenance will end.
|
3298
|
+
"""
|
3299
|
+
return pulumi.get(self, "time_maintenance_end")
|
3300
|
+
|
2962
3301
|
|
2963
3302
|
@pulumi.output_type
|
2964
3303
|
class AutonomousDatabaseLongTermBackupSchedule(dict):
|
@@ -3392,10 +3731,16 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
3392
3731
|
suggest = "lag_time_in_seconds"
|
3393
3732
|
elif key == "lifecycleDetails":
|
3394
3733
|
suggest = "lifecycle_details"
|
3734
|
+
elif key == "maintenanceTargetComponent":
|
3735
|
+
suggest = "maintenance_target_component"
|
3395
3736
|
elif key == "timeDataGuardRoleChanged":
|
3396
3737
|
suggest = "time_data_guard_role_changed"
|
3397
3738
|
elif key == "timeDisasterRecoveryRoleChanged":
|
3398
3739
|
suggest = "time_disaster_recovery_role_changed"
|
3740
|
+
elif key == "timeMaintenanceBegin":
|
3741
|
+
suggest = "time_maintenance_begin"
|
3742
|
+
elif key == "timeMaintenanceEnd":
|
3743
|
+
suggest = "time_maintenance_end"
|
3399
3744
|
|
3400
3745
|
if suggest:
|
3401
3746
|
pulumi.log.warn(f"Key '{key}' not found in AutonomousDatabaseStandbyDb. Access the value via the '{suggest}' property getter instead.")
|
@@ -3412,16 +3757,22 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
3412
3757
|
availability_domain: Optional[str] = None,
|
3413
3758
|
lag_time_in_seconds: Optional[int] = None,
|
3414
3759
|
lifecycle_details: Optional[str] = None,
|
3760
|
+
maintenance_target_component: Optional[str] = None,
|
3415
3761
|
state: Optional[str] = None,
|
3416
3762
|
time_data_guard_role_changed: Optional[str] = None,
|
3417
|
-
time_disaster_recovery_role_changed: Optional[str] = None
|
3763
|
+
time_disaster_recovery_role_changed: Optional[str] = None,
|
3764
|
+
time_maintenance_begin: Optional[str] = None,
|
3765
|
+
time_maintenance_end: Optional[str] = None):
|
3418
3766
|
"""
|
3419
3767
|
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
3420
3768
|
:param 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.
|
3421
3769
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
3770
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
3422
3771
|
:param str state: The current state of the Autonomous Database.
|
3423
3772
|
:param 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.
|
3424
3773
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
3774
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
3775
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
3425
3776
|
"""
|
3426
3777
|
if availability_domain is not None:
|
3427
3778
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -3429,12 +3780,18 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
3429
3780
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
3430
3781
|
if lifecycle_details is not None:
|
3431
3782
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
3783
|
+
if maintenance_target_component is not None:
|
3784
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
3432
3785
|
if state is not None:
|
3433
3786
|
pulumi.set(__self__, "state", state)
|
3434
3787
|
if time_data_guard_role_changed is not None:
|
3435
3788
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
3436
3789
|
if time_disaster_recovery_role_changed is not None:
|
3437
3790
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
3791
|
+
if time_maintenance_begin is not None:
|
3792
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
3793
|
+
if time_maintenance_end is not None:
|
3794
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
3438
3795
|
|
3439
3796
|
@property
|
3440
3797
|
@pulumi.getter(name="availabilityDomain")
|
@@ -3460,6 +3817,14 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
3460
3817
|
"""
|
3461
3818
|
return pulumi.get(self, "lifecycle_details")
|
3462
3819
|
|
3820
|
+
@property
|
3821
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
3822
|
+
def maintenance_target_component(self) -> Optional[str]:
|
3823
|
+
"""
|
3824
|
+
The component chosen for maintenance.
|
3825
|
+
"""
|
3826
|
+
return pulumi.get(self, "maintenance_target_component")
|
3827
|
+
|
3463
3828
|
@property
|
3464
3829
|
@pulumi.getter
|
3465
3830
|
def state(self) -> Optional[str]:
|
@@ -3484,6 +3849,22 @@ class AutonomousDatabaseStandbyDb(dict):
|
|
3484
3849
|
"""
|
3485
3850
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
3486
3851
|
|
3852
|
+
@property
|
3853
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
3854
|
+
def time_maintenance_begin(self) -> Optional[str]:
|
3855
|
+
"""
|
3856
|
+
The date and time when maintenance will begin.
|
3857
|
+
"""
|
3858
|
+
return pulumi.get(self, "time_maintenance_begin")
|
3859
|
+
|
3860
|
+
@property
|
3861
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
3862
|
+
def time_maintenance_end(self) -> Optional[str]:
|
3863
|
+
"""
|
3864
|
+
The date and time when maintenance will end.
|
3865
|
+
"""
|
3866
|
+
return pulumi.get(self, "time_maintenance_end")
|
3867
|
+
|
3487
3868
|
|
3488
3869
|
@pulumi.output_type
|
3489
3870
|
class AutonomousExadataInfrastructureMaintenanceWindow(dict):
|
@@ -15089,55 +15470,57 @@ class GetAutonomousCharacterSetsFilterResult(dict):
|
|
15089
15470
|
|
15090
15471
|
|
15091
15472
|
@pulumi.output_type
|
15092
|
-
class
|
15093
|
-
def __init__(__self__, *,
|
15094
|
-
backup_destination_details: Sequence['outputs.GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult'],
|
15095
|
-
recovery_window_in_days: int):
|
15096
|
-
"""
|
15097
|
-
:param Sequence['GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
|
15098
|
-
:param int recovery_window_in_days: Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
|
15099
|
-
"""
|
15100
|
-
pulumi.set(__self__, "backup_destination_details", backup_destination_details)
|
15101
|
-
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
15102
|
-
|
15103
|
-
@property
|
15104
|
-
@pulumi.getter(name="backupDestinationDetails")
|
15105
|
-
def backup_destination_details(self) -> Sequence['outputs.GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult']:
|
15106
|
-
"""
|
15107
|
-
Backup destination details.
|
15108
|
-
"""
|
15109
|
-
return pulumi.get(self, "backup_destination_details")
|
15110
|
-
|
15111
|
-
@property
|
15112
|
-
@pulumi.getter(name="recoveryWindowInDays")
|
15113
|
-
def recovery_window_in_days(self) -> int:
|
15114
|
-
"""
|
15115
|
-
Number of days between the current and the earliest point of recoverability covered by automatic backups. This value applies to automatic backups. After a new automatic backup has been created, Oracle removes old automatic backups that are created before the window. When the value is updated, it is applied to all existing automatic backups. If the number of specified days is 0 then there will be no backups.
|
15116
|
-
"""
|
15117
|
-
return pulumi.get(self, "recovery_window_in_days")
|
15118
|
-
|
15119
|
-
|
15120
|
-
@pulumi.output_type
|
15121
|
-
class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(dict):
|
15473
|
+
class GetAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult(dict):
|
15122
15474
|
def __init__(__self__, *,
|
15475
|
+
backup_destination_attach_histories: Sequence[str],
|
15476
|
+
dbrs_policy_id: str,
|
15123
15477
|
id: str,
|
15124
15478
|
internet_proxy: str,
|
15479
|
+
recovery_window_in_days: int,
|
15480
|
+
space_utilized_in_gbs: int,
|
15481
|
+
time_at_which_storage_details_are_updated: str,
|
15125
15482
|
type: str,
|
15126
15483
|
vpc_password: str,
|
15127
15484
|
vpc_user: str):
|
15128
15485
|
"""
|
15486
|
+
:param Sequence[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.
|
15487
|
+
:param str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
15129
15488
|
:param 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.
|
15130
15489
|
:param str internet_proxy: Proxy URL to connect to object store.
|
15490
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
15491
|
+
:param 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.
|
15492
|
+
:param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
15131
15493
|
:param str type: Type of the database backup destination.
|
15132
15494
|
:param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
15133
15495
|
:param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
15134
15496
|
"""
|
15497
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
15498
|
+
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
15135
15499
|
pulumi.set(__self__, "id", id)
|
15136
15500
|
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
15501
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
15502
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
15503
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
15137
15504
|
pulumi.set(__self__, "type", type)
|
15138
15505
|
pulumi.set(__self__, "vpc_password", vpc_password)
|
15139
15506
|
pulumi.set(__self__, "vpc_user", vpc_user)
|
15140
15507
|
|
15508
|
+
@property
|
15509
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
15510
|
+
def backup_destination_attach_histories(self) -> Sequence[str]:
|
15511
|
+
"""
|
15512
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
15513
|
+
"""
|
15514
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
15515
|
+
|
15516
|
+
@property
|
15517
|
+
@pulumi.getter(name="dbrsPolicyId")
|
15518
|
+
def dbrs_policy_id(self) -> str:
|
15519
|
+
"""
|
15520
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
15521
|
+
"""
|
15522
|
+
return pulumi.get(self, "dbrs_policy_id")
|
15523
|
+
|
15141
15524
|
@property
|
15142
15525
|
@pulumi.getter
|
15143
15526
|
def id(self) -> str:
|
@@ -15154,6 +15537,30 @@ class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(di
|
|
15154
15537
|
"""
|
15155
15538
|
return pulumi.get(self, "internet_proxy")
|
15156
15539
|
|
15540
|
+
@property
|
15541
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
15542
|
+
def recovery_window_in_days(self) -> int:
|
15543
|
+
"""
|
15544
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
15545
|
+
"""
|
15546
|
+
return pulumi.get(self, "recovery_window_in_days")
|
15547
|
+
|
15548
|
+
@property
|
15549
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
15550
|
+
def space_utilized_in_gbs(self) -> int:
|
15551
|
+
"""
|
15552
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
15553
|
+
"""
|
15554
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
15555
|
+
|
15556
|
+
@property
|
15557
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
15558
|
+
def time_at_which_storage_details_are_updated(self) -> str:
|
15559
|
+
"""
|
15560
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
15561
|
+
"""
|
15562
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
15563
|
+
|
15157
15564
|
@property
|
15158
15565
|
@pulumi.getter
|
15159
15566
|
def type(self) -> str:
|
@@ -15179,6 +15586,137 @@ class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(di
|
|
15179
15586
|
return pulumi.get(self, "vpc_user")
|
15180
15587
|
|
15181
15588
|
|
15589
|
+
@pulumi.output_type
|
15590
|
+
class GetAutonomousContainerDatabaseBackupConfigResult(dict):
|
15591
|
+
def __init__(__self__, *,
|
15592
|
+
backup_destination_details: Sequence['outputs.GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult'],
|
15593
|
+
recovery_window_in_days: int):
|
15594
|
+
"""
|
15595
|
+
:param Sequence['GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
|
15596
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
15597
|
+
"""
|
15598
|
+
pulumi.set(__self__, "backup_destination_details", backup_destination_details)
|
15599
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
15600
|
+
|
15601
|
+
@property
|
15602
|
+
@pulumi.getter(name="backupDestinationDetails")
|
15603
|
+
def backup_destination_details(self) -> Sequence['outputs.GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult']:
|
15604
|
+
"""
|
15605
|
+
Backup destination details.
|
15606
|
+
"""
|
15607
|
+
return pulumi.get(self, "backup_destination_details")
|
15608
|
+
|
15609
|
+
@property
|
15610
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
15611
|
+
def recovery_window_in_days(self) -> int:
|
15612
|
+
"""
|
15613
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
15614
|
+
"""
|
15615
|
+
return pulumi.get(self, "recovery_window_in_days")
|
15616
|
+
|
15617
|
+
|
15618
|
+
@pulumi.output_type
|
15619
|
+
class GetAutonomousContainerDatabaseBackupConfigBackupDestinationDetailResult(dict):
|
15620
|
+
def __init__(__self__, *,
|
15621
|
+
id: str,
|
15622
|
+
internet_proxy: str,
|
15623
|
+
type: str,
|
15624
|
+
vpc_password: str,
|
15625
|
+
vpc_user: str):
|
15626
|
+
"""
|
15627
|
+
:param 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.
|
15628
|
+
:param str internet_proxy: Proxy URL to connect to object store.
|
15629
|
+
:param str type: Type of the database backup destination.
|
15630
|
+
:param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
15631
|
+
:param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
15632
|
+
"""
|
15633
|
+
pulumi.set(__self__, "id", id)
|
15634
|
+
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
15635
|
+
pulumi.set(__self__, "type", type)
|
15636
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
15637
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
15638
|
+
|
15639
|
+
@property
|
15640
|
+
@pulumi.getter
|
15641
|
+
def id(self) -> str:
|
15642
|
+
"""
|
15643
|
+
The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
15644
|
+
"""
|
15645
|
+
return pulumi.get(self, "id")
|
15646
|
+
|
15647
|
+
@property
|
15648
|
+
@pulumi.getter(name="internetProxy")
|
15649
|
+
def internet_proxy(self) -> str:
|
15650
|
+
"""
|
15651
|
+
Proxy URL to connect to object store.
|
15652
|
+
"""
|
15653
|
+
return pulumi.get(self, "internet_proxy")
|
15654
|
+
|
15655
|
+
@property
|
15656
|
+
@pulumi.getter
|
15657
|
+
def type(self) -> str:
|
15658
|
+
"""
|
15659
|
+
Type of the database backup destination.
|
15660
|
+
"""
|
15661
|
+
return pulumi.get(self, "type")
|
15662
|
+
|
15663
|
+
@property
|
15664
|
+
@pulumi.getter(name="vpcPassword")
|
15665
|
+
def vpc_password(self) -> str:
|
15666
|
+
"""
|
15667
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
15668
|
+
"""
|
15669
|
+
return pulumi.get(self, "vpc_password")
|
15670
|
+
|
15671
|
+
@property
|
15672
|
+
@pulumi.getter(name="vpcUser")
|
15673
|
+
def vpc_user(self) -> str:
|
15674
|
+
"""
|
15675
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
15676
|
+
"""
|
15677
|
+
return pulumi.get(self, "vpc_user")
|
15678
|
+
|
15679
|
+
|
15680
|
+
@pulumi.output_type
|
15681
|
+
class GetAutonomousContainerDatabaseBackupDestinationPropertiesListResult(dict):
|
15682
|
+
def __init__(__self__, *,
|
15683
|
+
backup_destination_attach_histories: Sequence[str],
|
15684
|
+
space_utilized_in_gbs: int,
|
15685
|
+
time_at_which_storage_details_are_updated: str):
|
15686
|
+
"""
|
15687
|
+
:param Sequence[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.
|
15688
|
+
:param 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.
|
15689
|
+
:param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
15690
|
+
"""
|
15691
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
15692
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
15693
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
15694
|
+
|
15695
|
+
@property
|
15696
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
15697
|
+
def backup_destination_attach_histories(self) -> Sequence[str]:
|
15698
|
+
"""
|
15699
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
15700
|
+
"""
|
15701
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
15702
|
+
|
15703
|
+
@property
|
15704
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
15705
|
+
def space_utilized_in_gbs(self) -> int:
|
15706
|
+
"""
|
15707
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
15708
|
+
"""
|
15709
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
15710
|
+
|
15711
|
+
@property
|
15712
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
15713
|
+
def time_at_which_storage_details_are_updated(self) -> str:
|
15714
|
+
"""
|
15715
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
15716
|
+
"""
|
15717
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
15718
|
+
|
15719
|
+
|
15182
15720
|
@pulumi.output_type
|
15183
15721
|
class GetAutonomousContainerDatabaseDataguardAssociationPeerAutonomousContainerDatabaseBackupConfigResult(dict):
|
15184
15722
|
def __init__(__self__, *,
|
@@ -16001,7 +16539,7 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigR
|
|
16001
16539
|
recovery_window_in_days: int):
|
16002
16540
|
"""
|
16003
16541
|
:param Sequence['GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
|
16004
|
-
:param int recovery_window_in_days: Number of days between the current and
|
16542
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
16005
16543
|
"""
|
16006
16544
|
pulumi.set(__self__, "backup_destination_details", backup_destination_details)
|
16007
16545
|
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
@@ -16018,7 +16556,7 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigR
|
|
16018
16556
|
@pulumi.getter(name="recoveryWindowInDays")
|
16019
16557
|
def recovery_window_in_days(self) -> int:
|
16020
16558
|
"""
|
16021
|
-
Number of days between the current and
|
16559
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
16022
16560
|
"""
|
16023
16561
|
return pulumi.get(self, "recovery_window_in_days")
|
16024
16562
|
|
@@ -16085,6 +16623,46 @@ class GetAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigB
|
|
16085
16623
|
return pulumi.get(self, "vpc_user")
|
16086
16624
|
|
16087
16625
|
|
16626
|
+
@pulumi.output_type
|
16627
|
+
class GetAutonomousContainerDatabaseRecoveryApplianceDetailResult(dict):
|
16628
|
+
def __init__(__self__, *,
|
16629
|
+
allocated_storage_size_in_gbs: int,
|
16630
|
+
recovery_window_in_days: int,
|
16631
|
+
time_recovery_appliance_details_updated: str):
|
16632
|
+
"""
|
16633
|
+
:param 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.
|
16634
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
16635
|
+
:param str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
|
16636
|
+
"""
|
16637
|
+
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
16638
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
16639
|
+
pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
|
16640
|
+
|
16641
|
+
@property
|
16642
|
+
@pulumi.getter(name="allocatedStorageSizeInGbs")
|
16643
|
+
def allocated_storage_size_in_gbs(self) -> int:
|
16644
|
+
"""
|
16645
|
+
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.
|
16646
|
+
"""
|
16647
|
+
return pulumi.get(self, "allocated_storage_size_in_gbs")
|
16648
|
+
|
16649
|
+
@property
|
16650
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
16651
|
+
def recovery_window_in_days(self) -> int:
|
16652
|
+
"""
|
16653
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
16654
|
+
"""
|
16655
|
+
return pulumi.get(self, "recovery_window_in_days")
|
16656
|
+
|
16657
|
+
@property
|
16658
|
+
@pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
|
16659
|
+
def time_recovery_appliance_details_updated(self) -> str:
|
16660
|
+
"""
|
16661
|
+
The time when the recovery appliance details are updated.
|
16662
|
+
"""
|
16663
|
+
return pulumi.get(self, "time_recovery_appliance_details_updated")
|
16664
|
+
|
16665
|
+
|
16088
16666
|
@pulumi.output_type
|
16089
16667
|
class GetAutonomousContainerDatabaseResourceUsageAutonomousContainerDatabaseVmUsageResult(dict):
|
16090
16668
|
def __init__(__self__, *,
|
@@ -16279,11 +16857,13 @@ class GetAutonomousContainerDatabaseVersionsFilterResult(dict):
|
|
16279
16857
|
@pulumi.output_type
|
16280
16858
|
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
16281
16859
|
def __init__(__self__, *,
|
16860
|
+
associated_backup_configuration_details: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult'],
|
16282
16861
|
autonomous_exadata_infrastructure_id: str,
|
16283
16862
|
autonomous_vm_cluster_id: str,
|
16284
16863
|
availability_domain: str,
|
16285
16864
|
available_cpus: float,
|
16286
16865
|
backup_configs: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult'],
|
16866
|
+
backup_destination_properties_lists: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult'],
|
16287
16867
|
cloud_autonomous_vm_cluster_id: str,
|
16288
16868
|
compartment_id: str,
|
16289
16869
|
compute_model: str,
|
@@ -16329,6 +16909,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16329
16909
|
provisionable_cpuses: Sequence[float],
|
16330
16910
|
provisioned_cpus: float,
|
16331
16911
|
reclaimable_cpus: float,
|
16912
|
+
recovery_appliance_details: Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult'],
|
16332
16913
|
reserved_cpus: float,
|
16333
16914
|
role: str,
|
16334
16915
|
rotate_key_trigger: bool,
|
@@ -16343,11 +16924,13 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16343
16924
|
version_preference: str,
|
16344
16925
|
vm_failover_reservation: int):
|
16345
16926
|
"""
|
16927
|
+
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailArgs'] associated_backup_configuration_details: A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
|
16346
16928
|
:param str autonomous_exadata_infrastructure_id: The Autonomous Exadata Infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
16347
16929
|
:param str autonomous_vm_cluster_id: The Autonomous VM Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
16348
16930
|
:param str availability_domain: A filter to return only resources that match the given availability domain exactly.
|
16349
16931
|
:param float available_cpus: Sum of CPUs available on the Autonomous VM Cluster + Sum of reclaimable CPUs available in the Autonomous Container Database.<br> For Autonomous Databases on Dedicated Exadata Infrastructure, the CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
|
16350
16932
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigArgs'] backup_configs: Backup options for the Autonomous Container Database.
|
16933
|
+
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListArgs'] backup_destination_properties_lists: This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
|
16351
16934
|
:param str cloud_autonomous_vm_cluster_id: The cloud Autonomous VM Cluster [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
16352
16935
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
16353
16936
|
:param str compute_model: The compute model of the Autonomous Container Database. For Autonomous Database on Dedicated Exadata Infrastructure, the CPU type (ECPUs or OCPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model. ECPU compute model is the recommended model and OCPU compute model is legacy. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
|
@@ -16379,6 +16962,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16379
16962
|
:param Sequence[float] provisionable_cpuses: An array of CPU values that can be used to successfully provision a single Autonomous Database.
|
16380
16963
|
:param float provisioned_cpus: The number of CPUs provisioned in an Autonomous Container Database.
|
16381
16964
|
:param float reclaimable_cpus: CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
|
16965
|
+
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailArgs'] recovery_appliance_details: Information about the recovery appliance configuration associated with the Autonomous Container Database.
|
16382
16966
|
:param float reserved_cpus: The number of CPUs reserved in an Autonomous Container Database.
|
16383
16967
|
:param str role: The Data Guard role of the Autonomous Container Database or Autonomous Database, if Autonomous Data Guard is enabled.
|
16384
16968
|
:param str service_level_agreement_type: A filter to return only resources that match the given service level agreement type exactly.
|
@@ -16392,11 +16976,13 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16392
16976
|
:param str version_preference: The next maintenance version preference.
|
16393
16977
|
:param int vm_failover_reservation: The percentage of CPUs reserved across nodes to support node failover. Allowed values are 0%, 25%, and 50%, with 50% being the default option.
|
16394
16978
|
"""
|
16979
|
+
pulumi.set(__self__, "associated_backup_configuration_details", associated_backup_configuration_details)
|
16395
16980
|
pulumi.set(__self__, "autonomous_exadata_infrastructure_id", autonomous_exadata_infrastructure_id)
|
16396
16981
|
pulumi.set(__self__, "autonomous_vm_cluster_id", autonomous_vm_cluster_id)
|
16397
16982
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
16398
16983
|
pulumi.set(__self__, "available_cpus", available_cpus)
|
16399
16984
|
pulumi.set(__self__, "backup_configs", backup_configs)
|
16985
|
+
pulumi.set(__self__, "backup_destination_properties_lists", backup_destination_properties_lists)
|
16400
16986
|
pulumi.set(__self__, "cloud_autonomous_vm_cluster_id", cloud_autonomous_vm_cluster_id)
|
16401
16987
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
16402
16988
|
pulumi.set(__self__, "compute_model", compute_model)
|
@@ -16442,6 +17028,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16442
17028
|
pulumi.set(__self__, "provisionable_cpuses", provisionable_cpuses)
|
16443
17029
|
pulumi.set(__self__, "provisioned_cpus", provisioned_cpus)
|
16444
17030
|
pulumi.set(__self__, "reclaimable_cpus", reclaimable_cpus)
|
17031
|
+
pulumi.set(__self__, "recovery_appliance_details", recovery_appliance_details)
|
16445
17032
|
pulumi.set(__self__, "reserved_cpus", reserved_cpus)
|
16446
17033
|
pulumi.set(__self__, "role", role)
|
16447
17034
|
pulumi.set(__self__, "rotate_key_trigger", rotate_key_trigger)
|
@@ -16456,6 +17043,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16456
17043
|
pulumi.set(__self__, "version_preference", version_preference)
|
16457
17044
|
pulumi.set(__self__, "vm_failover_reservation", vm_failover_reservation)
|
16458
17045
|
|
17046
|
+
@property
|
17047
|
+
@pulumi.getter(name="associatedBackupConfigurationDetails")
|
17048
|
+
def associated_backup_configuration_details(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult']:
|
17049
|
+
"""
|
17050
|
+
A backup config object holds information about preferred backup destinations only. This object holds information about the associated backup destinations, such as secondary backup destinations created for local backups or remote replicated backups.
|
17051
|
+
"""
|
17052
|
+
return pulumi.get(self, "associated_backup_configuration_details")
|
17053
|
+
|
16459
17054
|
@property
|
16460
17055
|
@pulumi.getter(name="autonomousExadataInfrastructureId")
|
16461
17056
|
def autonomous_exadata_infrastructure_id(self) -> str:
|
@@ -16496,6 +17091,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16496
17091
|
"""
|
16497
17092
|
return pulumi.get(self, "backup_configs")
|
16498
17093
|
|
17094
|
+
@property
|
17095
|
+
@pulumi.getter(name="backupDestinationPropertiesLists")
|
17096
|
+
def backup_destination_properties_lists(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult']:
|
17097
|
+
"""
|
17098
|
+
This list describes the backup destination properties associated with the Autonomous Container Database (ACD) 's preferred backup destination. The object at a given index is associated with the destination present at the same index in the backup destination details list of the ACD Backup Configuration.
|
17099
|
+
"""
|
17100
|
+
return pulumi.get(self, "backup_destination_properties_lists")
|
17101
|
+
|
16499
17102
|
@property
|
16500
17103
|
@pulumi.getter(name="cloudAutonomousVmClusterId")
|
16501
17104
|
def cloud_autonomous_vm_cluster_id(self) -> str:
|
@@ -16814,6 +17417,14 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16814
17417
|
"""
|
16815
17418
|
return pulumi.get(self, "reclaimable_cpus")
|
16816
17419
|
|
17420
|
+
@property
|
17421
|
+
@pulumi.getter(name="recoveryApplianceDetails")
|
17422
|
+
def recovery_appliance_details(self) -> Sequence['outputs.GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult']:
|
17423
|
+
"""
|
17424
|
+
Information about the recovery appliance configuration associated with the Autonomous Container Database.
|
17425
|
+
"""
|
17426
|
+
return pulumi.get(self, "recovery_appliance_details")
|
17427
|
+
|
16817
17428
|
@property
|
16818
17429
|
@pulumi.getter(name="reservedCpus")
|
16819
17430
|
def reserved_cpus(self) -> float:
|
@@ -16916,6 +17527,123 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
16916
17527
|
return pulumi.get(self, "vm_failover_reservation")
|
16917
17528
|
|
16918
17529
|
|
17530
|
+
@pulumi.output_type
|
17531
|
+
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseAssociatedBackupConfigurationDetailResult(dict):
|
17532
|
+
def __init__(__self__, *,
|
17533
|
+
backup_destination_attach_histories: Sequence[str],
|
17534
|
+
dbrs_policy_id: str,
|
17535
|
+
id: str,
|
17536
|
+
internet_proxy: str,
|
17537
|
+
recovery_window_in_days: int,
|
17538
|
+
space_utilized_in_gbs: int,
|
17539
|
+
time_at_which_storage_details_are_updated: str,
|
17540
|
+
type: str,
|
17541
|
+
vpc_password: str,
|
17542
|
+
vpc_user: str):
|
17543
|
+
"""
|
17544
|
+
:param Sequence[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.
|
17545
|
+
:param str dbrs_policy_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
17546
|
+
:param 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.
|
17547
|
+
:param str internet_proxy: Proxy URL to connect to object store.
|
17548
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
17549
|
+
:param 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.
|
17550
|
+
:param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
17551
|
+
:param str type: Type of the database backup destination.
|
17552
|
+
:param str vpc_password: For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
17553
|
+
:param str vpc_user: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
17554
|
+
"""
|
17555
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
17556
|
+
pulumi.set(__self__, "dbrs_policy_id", dbrs_policy_id)
|
17557
|
+
pulumi.set(__self__, "id", id)
|
17558
|
+
pulumi.set(__self__, "internet_proxy", internet_proxy)
|
17559
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
17560
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
17561
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
17562
|
+
pulumi.set(__self__, "type", type)
|
17563
|
+
pulumi.set(__self__, "vpc_password", vpc_password)
|
17564
|
+
pulumi.set(__self__, "vpc_user", vpc_user)
|
17565
|
+
|
17566
|
+
@property
|
17567
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
17568
|
+
def backup_destination_attach_histories(self) -> Sequence[str]:
|
17569
|
+
"""
|
17570
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
17571
|
+
"""
|
17572
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
17573
|
+
|
17574
|
+
@property
|
17575
|
+
@pulumi.getter(name="dbrsPolicyId")
|
17576
|
+
def dbrs_policy_id(self) -> str:
|
17577
|
+
"""
|
17578
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DBRS policy used for backup.
|
17579
|
+
"""
|
17580
|
+
return pulumi.get(self, "dbrs_policy_id")
|
17581
|
+
|
17582
|
+
@property
|
17583
|
+
@pulumi.getter
|
17584
|
+
def id(self) -> str:
|
17585
|
+
"""
|
17586
|
+
The id of the Autonomous Database [Vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts) service key management history entry.
|
17587
|
+
"""
|
17588
|
+
return pulumi.get(self, "id")
|
17589
|
+
|
17590
|
+
@property
|
17591
|
+
@pulumi.getter(name="internetProxy")
|
17592
|
+
def internet_proxy(self) -> str:
|
17593
|
+
"""
|
17594
|
+
Proxy URL to connect to object store.
|
17595
|
+
"""
|
17596
|
+
return pulumi.get(self, "internet_proxy")
|
17597
|
+
|
17598
|
+
@property
|
17599
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
17600
|
+
def recovery_window_in_days(self) -> int:
|
17601
|
+
"""
|
17602
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
17603
|
+
"""
|
17604
|
+
return pulumi.get(self, "recovery_window_in_days")
|
17605
|
+
|
17606
|
+
@property
|
17607
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
17608
|
+
def space_utilized_in_gbs(self) -> int:
|
17609
|
+
"""
|
17610
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
17611
|
+
"""
|
17612
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
17613
|
+
|
17614
|
+
@property
|
17615
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
17616
|
+
def time_at_which_storage_details_are_updated(self) -> str:
|
17617
|
+
"""
|
17618
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
17619
|
+
"""
|
17620
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
17621
|
+
|
17622
|
+
@property
|
17623
|
+
@pulumi.getter
|
17624
|
+
def type(self) -> str:
|
17625
|
+
"""
|
17626
|
+
Type of the database backup destination.
|
17627
|
+
"""
|
17628
|
+
return pulumi.get(self, "type")
|
17629
|
+
|
17630
|
+
@property
|
17631
|
+
@pulumi.getter(name="vpcPassword")
|
17632
|
+
def vpc_password(self) -> str:
|
17633
|
+
"""
|
17634
|
+
For a RECOVERY_APPLIANCE backup destination, the password for the VPC user that is used to access the Recovery Appliance.
|
17635
|
+
"""
|
17636
|
+
return pulumi.get(self, "vpc_password")
|
17637
|
+
|
17638
|
+
@property
|
17639
|
+
@pulumi.getter(name="vpcUser")
|
17640
|
+
def vpc_user(self) -> str:
|
17641
|
+
"""
|
17642
|
+
For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) user that is used to access the Recovery Appliance.
|
17643
|
+
"""
|
17644
|
+
return pulumi.get(self, "vpc_user")
|
17645
|
+
|
17646
|
+
|
16919
17647
|
@pulumi.output_type
|
16920
17648
|
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResult(dict):
|
16921
17649
|
def __init__(__self__, *,
|
@@ -16923,7 +17651,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResu
|
|
16923
17651
|
recovery_window_in_days: int):
|
16924
17652
|
"""
|
16925
17653
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
|
16926
|
-
:param int recovery_window_in_days: Number of days between the current and
|
17654
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
16927
17655
|
"""
|
16928
17656
|
pulumi.set(__self__, "backup_destination_details", backup_destination_details)
|
16929
17657
|
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
@@ -16940,7 +17668,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigResu
|
|
16940
17668
|
@pulumi.getter(name="recoveryWindowInDays")
|
16941
17669
|
def recovery_window_in_days(self) -> int:
|
16942
17670
|
"""
|
16943
|
-
Number of days between the current and
|
17671
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
16944
17672
|
"""
|
16945
17673
|
return pulumi.get(self, "recovery_window_in_days")
|
16946
17674
|
|
@@ -17007,6 +17735,46 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupConfigBack
|
|
17007
17735
|
return pulumi.get(self, "vpc_user")
|
17008
17736
|
|
17009
17737
|
|
17738
|
+
@pulumi.output_type
|
17739
|
+
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseBackupDestinationPropertiesListResult(dict):
|
17740
|
+
def __init__(__self__, *,
|
17741
|
+
backup_destination_attach_histories: Sequence[str],
|
17742
|
+
space_utilized_in_gbs: int,
|
17743
|
+
time_at_which_storage_details_are_updated: str):
|
17744
|
+
"""
|
17745
|
+
:param Sequence[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.
|
17746
|
+
:param 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.
|
17747
|
+
:param str time_at_which_storage_details_are_updated: The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
17748
|
+
"""
|
17749
|
+
pulumi.set(__self__, "backup_destination_attach_histories", backup_destination_attach_histories)
|
17750
|
+
pulumi.set(__self__, "space_utilized_in_gbs", space_utilized_in_gbs)
|
17751
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
17752
|
+
|
17753
|
+
@property
|
17754
|
+
@pulumi.getter(name="backupDestinationAttachHistories")
|
17755
|
+
def backup_destination_attach_histories(self) -> Sequence[str]:
|
17756
|
+
"""
|
17757
|
+
The timestamps at which this backup destination is used as the preferred destination to host the Autonomous Container Database backups.
|
17758
|
+
"""
|
17759
|
+
return pulumi.get(self, "backup_destination_attach_histories")
|
17760
|
+
|
17761
|
+
@property
|
17762
|
+
@pulumi.getter(name="spaceUtilizedInGbs")
|
17763
|
+
def space_utilized_in_gbs(self) -> int:
|
17764
|
+
"""
|
17765
|
+
The total space utilized (in GBs) by this Autonomous Container Database on this backup destination, rounded to the nearest integer.
|
17766
|
+
"""
|
17767
|
+
return pulumi.get(self, "space_utilized_in_gbs")
|
17768
|
+
|
17769
|
+
@property
|
17770
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
17771
|
+
def time_at_which_storage_details_are_updated(self) -> str:
|
17772
|
+
"""
|
17773
|
+
The latest timestamp when the backup destination details, such as 'spaceUtilized,' are updated.
|
17774
|
+
"""
|
17775
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
17776
|
+
|
17777
|
+
|
17010
17778
|
@pulumi.output_type
|
17011
17779
|
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseKeyHistoryEntryResult(dict):
|
17012
17780
|
def __init__(__self__, *,
|
@@ -17397,7 +18165,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
|
|
17397
18165
|
recovery_window_in_days: int):
|
17398
18166
|
"""
|
17399
18167
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousContainerDatabaseBackupConfigBackupDestinationDetailArgs'] backup_destination_details: Backup destination details.
|
17400
|
-
:param int recovery_window_in_days: Number of days between the current and
|
18168
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
17401
18169
|
"""
|
17402
18170
|
pulumi.set(__self__, "backup_destination_details", backup_destination_details)
|
17403
18171
|
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
@@ -17414,7 +18182,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
|
|
17414
18182
|
@pulumi.getter(name="recoveryWindowInDays")
|
17415
18183
|
def recovery_window_in_days(self) -> int:
|
17416
18184
|
"""
|
17417
|
-
Number of days between the current and
|
18185
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
17418
18186
|
"""
|
17419
18187
|
return pulumi.get(self, "recovery_window_in_days")
|
17420
18188
|
|
@@ -17481,6 +18249,46 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabasePeerAutonomousCo
|
|
17481
18249
|
return pulumi.get(self, "vpc_user")
|
17482
18250
|
|
17483
18251
|
|
18252
|
+
@pulumi.output_type
|
18253
|
+
class GetAutonomousContainerDatabasesAutonomousContainerDatabaseRecoveryApplianceDetailResult(dict):
|
18254
|
+
def __init__(__self__, *,
|
18255
|
+
allocated_storage_size_in_gbs: int,
|
18256
|
+
recovery_window_in_days: int,
|
18257
|
+
time_recovery_appliance_details_updated: str):
|
18258
|
+
"""
|
18259
|
+
:param 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.
|
18260
|
+
:param int recovery_window_in_days: Number of days between the current and earliest point of recoverability covered by automatic backups.
|
18261
|
+
:param str time_recovery_appliance_details_updated: The time when the recovery appliance details are updated.
|
18262
|
+
"""
|
18263
|
+
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
18264
|
+
pulumi.set(__self__, "recovery_window_in_days", recovery_window_in_days)
|
18265
|
+
pulumi.set(__self__, "time_recovery_appliance_details_updated", time_recovery_appliance_details_updated)
|
18266
|
+
|
18267
|
+
@property
|
18268
|
+
@pulumi.getter(name="allocatedStorageSizeInGbs")
|
18269
|
+
def allocated_storage_size_in_gbs(self) -> int:
|
18270
|
+
"""
|
18271
|
+
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.
|
18272
|
+
"""
|
18273
|
+
return pulumi.get(self, "allocated_storage_size_in_gbs")
|
18274
|
+
|
18275
|
+
@property
|
18276
|
+
@pulumi.getter(name="recoveryWindowInDays")
|
18277
|
+
def recovery_window_in_days(self) -> int:
|
18278
|
+
"""
|
18279
|
+
Number of days between the current and earliest point of recoverability covered by automatic backups.
|
18280
|
+
"""
|
18281
|
+
return pulumi.get(self, "recovery_window_in_days")
|
18282
|
+
|
18283
|
+
@property
|
18284
|
+
@pulumi.getter(name="timeRecoveryApplianceDetailsUpdated")
|
18285
|
+
def time_recovery_appliance_details_updated(self) -> str:
|
18286
|
+
"""
|
18287
|
+
The time when the recovery appliance details are updated.
|
18288
|
+
"""
|
18289
|
+
return pulumi.get(self, "time_recovery_appliance_details_updated")
|
18290
|
+
|
18291
|
+
|
17484
18292
|
@pulumi.output_type
|
17485
18293
|
class GetAutonomousContainerDatabasesFilterResult(dict):
|
17486
18294
|
def __init__(__self__, *,
|
@@ -19091,23 +19899,32 @@ class GetAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
19091
19899
|
availability_domain: str,
|
19092
19900
|
lag_time_in_seconds: int,
|
19093
19901
|
lifecycle_details: str,
|
19902
|
+
maintenance_target_component: str,
|
19094
19903
|
state: str,
|
19095
19904
|
time_data_guard_role_changed: str,
|
19096
|
-
time_disaster_recovery_role_changed: str
|
19905
|
+
time_disaster_recovery_role_changed: str,
|
19906
|
+
time_maintenance_begin: str,
|
19907
|
+
time_maintenance_end: str):
|
19097
19908
|
"""
|
19098
19909
|
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19099
19910
|
:param 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.
|
19100
19911
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
19912
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
19101
19913
|
:param str state: The current state of the Autonomous Database.
|
19102
19914
|
:param 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.
|
19103
19915
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
19916
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
19917
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
19104
19918
|
"""
|
19105
19919
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
19106
19920
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
19107
19921
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
19922
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
19108
19923
|
pulumi.set(__self__, "state", state)
|
19109
19924
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
19110
19925
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
19926
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
19927
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
19111
19928
|
|
19112
19929
|
@property
|
19113
19930
|
@pulumi.getter(name="availabilityDomain")
|
@@ -19133,6 +19950,14 @@ class GetAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
19133
19950
|
"""
|
19134
19951
|
return pulumi.get(self, "lifecycle_details")
|
19135
19952
|
|
19953
|
+
@property
|
19954
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
19955
|
+
def maintenance_target_component(self) -> str:
|
19956
|
+
"""
|
19957
|
+
The component chosen for maintenance.
|
19958
|
+
"""
|
19959
|
+
return pulumi.get(self, "maintenance_target_component")
|
19960
|
+
|
19136
19961
|
@property
|
19137
19962
|
@pulumi.getter
|
19138
19963
|
def state(self) -> str:
|
@@ -19157,6 +19982,22 @@ class GetAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
19157
19982
|
"""
|
19158
19983
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
19159
19984
|
|
19985
|
+
@property
|
19986
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
19987
|
+
def time_maintenance_begin(self) -> str:
|
19988
|
+
"""
|
19989
|
+
The date and time when maintenance will begin.
|
19990
|
+
"""
|
19991
|
+
return pulumi.get(self, "time_maintenance_begin")
|
19992
|
+
|
19993
|
+
@property
|
19994
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
19995
|
+
def time_maintenance_end(self) -> str:
|
19996
|
+
"""
|
19997
|
+
The date and time when maintenance will end.
|
19998
|
+
"""
|
19999
|
+
return pulumi.get(self, "time_maintenance_end")
|
20000
|
+
|
19160
20001
|
|
19161
20002
|
@pulumi.output_type
|
19162
20003
|
class GetAutonomousDatabaseLongTermBackupScheduleResult(dict):
|
@@ -19775,23 +20616,32 @@ class GetAutonomousDatabaseStandbyDbResult(dict):
|
|
19775
20616
|
availability_domain: str,
|
19776
20617
|
lag_time_in_seconds: int,
|
19777
20618
|
lifecycle_details: str,
|
20619
|
+
maintenance_target_component: str,
|
19778
20620
|
state: str,
|
19779
20621
|
time_data_guard_role_changed: str,
|
19780
|
-
time_disaster_recovery_role_changed: str
|
20622
|
+
time_disaster_recovery_role_changed: str,
|
20623
|
+
time_maintenance_begin: str,
|
20624
|
+
time_maintenance_end: str):
|
19781
20625
|
"""
|
19782
20626
|
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
19783
20627
|
:param 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.
|
19784
20628
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
20629
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
19785
20630
|
:param str state: The current state of the Autonomous Database.
|
19786
20631
|
:param 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.
|
19787
20632
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
20633
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
20634
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
19788
20635
|
"""
|
19789
20636
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
19790
20637
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
19791
20638
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
20639
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
19792
20640
|
pulumi.set(__self__, "state", state)
|
19793
20641
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
19794
20642
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
20643
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
20644
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
19795
20645
|
|
19796
20646
|
@property
|
19797
20647
|
@pulumi.getter(name="availabilityDomain")
|
@@ -19817,6 +20667,14 @@ class GetAutonomousDatabaseStandbyDbResult(dict):
|
|
19817
20667
|
"""
|
19818
20668
|
return pulumi.get(self, "lifecycle_details")
|
19819
20669
|
|
20670
|
+
@property
|
20671
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
20672
|
+
def maintenance_target_component(self) -> str:
|
20673
|
+
"""
|
20674
|
+
The component chosen for maintenance.
|
20675
|
+
"""
|
20676
|
+
return pulumi.get(self, "maintenance_target_component")
|
20677
|
+
|
19820
20678
|
@property
|
19821
20679
|
@pulumi.getter
|
19822
20680
|
def state(self) -> str:
|
@@ -19841,6 +20699,22 @@ class GetAutonomousDatabaseStandbyDbResult(dict):
|
|
19841
20699
|
"""
|
19842
20700
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
19843
20701
|
|
20702
|
+
@property
|
20703
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
20704
|
+
def time_maintenance_begin(self) -> str:
|
20705
|
+
"""
|
20706
|
+
The date and time when maintenance will begin.
|
20707
|
+
"""
|
20708
|
+
return pulumi.get(self, "time_maintenance_begin")
|
20709
|
+
|
20710
|
+
@property
|
20711
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
20712
|
+
def time_maintenance_end(self) -> str:
|
20713
|
+
"""
|
20714
|
+
The date and time when maintenance will end.
|
20715
|
+
"""
|
20716
|
+
return pulumi.get(self, "time_maintenance_end")
|
20717
|
+
|
19844
20718
|
|
19845
20719
|
@pulumi.output_type
|
19846
20720
|
class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
@@ -19862,6 +20736,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
19862
20736
|
backup_retention_period_in_days: int,
|
19863
20737
|
byol_compute_count_limit: float,
|
19864
20738
|
character_set: str,
|
20739
|
+
clone_table_space_lists: Sequence[int],
|
19865
20740
|
clone_type: str,
|
19866
20741
|
cluster_placement_group_id: str,
|
19867
20742
|
compartment_id: str,
|
@@ -19924,6 +20799,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
19924
20799
|
local_disaster_recovery_type: str,
|
19925
20800
|
local_standby_dbs: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult'],
|
19926
20801
|
long_term_backup_schedules: Sequence['outputs.GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult'],
|
20802
|
+
maintenance_target_component: str,
|
19927
20803
|
max_cpu_core_count: int,
|
19928
20804
|
memory_per_oracle_compute_unit_in_gbs: int,
|
19929
20805
|
ncharacter_set: str,
|
@@ -20005,6 +20881,10 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20005
20881
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
20006
20882
|
:param int backup_retention_period_in_days: Retention period, in days, for backups.
|
20007
20883
|
:param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
20884
|
+
:param Sequence[int] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
20885
|
+
=======
|
20886
|
+
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
20887
|
+
>>>>>>> theirs
|
20008
20888
|
:param str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
20009
20889
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
20010
20890
|
:param float compute_count: Compute used by database tools.
|
@@ -20064,6 +20944,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20064
20944
|
:param str local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
20065
20945
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.
|
20066
20946
|
:param Sequence['GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
|
20947
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
20067
20948
|
:param int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
20068
20949
|
:param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU.
|
20069
20950
|
:param str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
@@ -20141,6 +21022,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20141
21022
|
pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
|
20142
21023
|
pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
|
20143
21024
|
pulumi.set(__self__, "character_set", character_set)
|
21025
|
+
pulumi.set(__self__, "clone_table_space_lists", clone_table_space_lists)
|
20144
21026
|
pulumi.set(__self__, "clone_type", clone_type)
|
20145
21027
|
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
20146
21028
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -20203,6 +21085,7 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20203
21085
|
pulumi.set(__self__, "local_disaster_recovery_type", local_disaster_recovery_type)
|
20204
21086
|
pulumi.set(__self__, "local_standby_dbs", local_standby_dbs)
|
20205
21087
|
pulumi.set(__self__, "long_term_backup_schedules", long_term_backup_schedules)
|
21088
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
20206
21089
|
pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
|
20207
21090
|
pulumi.set(__self__, "memory_per_oracle_compute_unit_in_gbs", memory_per_oracle_compute_unit_in_gbs)
|
20208
21091
|
pulumi.set(__self__, "ncharacter_set", ncharacter_set)
|
@@ -20395,6 +21278,17 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20395
21278
|
"""
|
20396
21279
|
return pulumi.get(self, "character_set")
|
20397
21280
|
|
21281
|
+
@property
|
21282
|
+
@pulumi.getter(name="cloneTableSpaceLists")
|
21283
|
+
def clone_table_space_lists(self) -> Sequence[int]:
|
21284
|
+
"""
|
21285
|
+
A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
21286
|
+
=======
|
21287
|
+
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
21288
|
+
>>>>>>> theirs
|
21289
|
+
"""
|
21290
|
+
return pulumi.get(self, "clone_table_space_lists")
|
21291
|
+
|
20398
21292
|
@property
|
20399
21293
|
@pulumi.getter(name="cloneType")
|
20400
21294
|
def clone_type(self) -> str:
|
@@ -20881,6 +21775,14 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20881
21775
|
"""
|
20882
21776
|
return pulumi.get(self, "long_term_backup_schedules")
|
20883
21777
|
|
21778
|
+
@property
|
21779
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
21780
|
+
def maintenance_target_component(self) -> str:
|
21781
|
+
"""
|
21782
|
+
The component chosen for maintenance.
|
21783
|
+
"""
|
21784
|
+
return pulumi.get(self, "maintenance_target_component")
|
21785
|
+
|
20884
21786
|
@property
|
20885
21787
|
@pulumi.getter(name="maxCpuCoreCount")
|
20886
21788
|
def max_cpu_core_count(self) -> int:
|
@@ -22195,23 +23097,32 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
22195
23097
|
availability_domain: str,
|
22196
23098
|
lag_time_in_seconds: int,
|
22197
23099
|
lifecycle_details: str,
|
23100
|
+
maintenance_target_component: str,
|
22198
23101
|
state: str,
|
22199
23102
|
time_data_guard_role_changed: str,
|
22200
|
-
time_disaster_recovery_role_changed: str
|
23103
|
+
time_disaster_recovery_role_changed: str,
|
23104
|
+
time_maintenance_begin: str,
|
23105
|
+
time_maintenance_end: str):
|
22201
23106
|
"""
|
22202
23107
|
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
22203
23108
|
:param 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.
|
22204
23109
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
23110
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
22205
23111
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
22206
23112
|
:param 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.
|
22207
23113
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
23114
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
23115
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
22208
23116
|
"""
|
22209
23117
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
22210
23118
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
22211
23119
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
23120
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
22212
23121
|
pulumi.set(__self__, "state", state)
|
22213
23122
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
22214
23123
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
23124
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
23125
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
22215
23126
|
|
22216
23127
|
@property
|
22217
23128
|
@pulumi.getter(name="availabilityDomain")
|
@@ -22237,6 +23148,14 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
22237
23148
|
"""
|
22238
23149
|
return pulumi.get(self, "lifecycle_details")
|
22239
23150
|
|
23151
|
+
@property
|
23152
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
23153
|
+
def maintenance_target_component(self) -> str:
|
23154
|
+
"""
|
23155
|
+
The component chosen for maintenance.
|
23156
|
+
"""
|
23157
|
+
return pulumi.get(self, "maintenance_target_component")
|
23158
|
+
|
22240
23159
|
@property
|
22241
23160
|
@pulumi.getter
|
22242
23161
|
def state(self) -> str:
|
@@ -22261,6 +23180,22 @@ class GetAutonomousDatabasesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
22261
23180
|
"""
|
22262
23181
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
22263
23182
|
|
23183
|
+
@property
|
23184
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
23185
|
+
def time_maintenance_begin(self) -> str:
|
23186
|
+
"""
|
23187
|
+
The date and time when maintenance will begin.
|
23188
|
+
"""
|
23189
|
+
return pulumi.get(self, "time_maintenance_begin")
|
23190
|
+
|
23191
|
+
@property
|
23192
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
23193
|
+
def time_maintenance_end(self) -> str:
|
23194
|
+
"""
|
23195
|
+
The date and time when maintenance will end.
|
23196
|
+
"""
|
23197
|
+
return pulumi.get(self, "time_maintenance_end")
|
23198
|
+
|
22264
23199
|
|
22265
23200
|
@pulumi.output_type
|
22266
23201
|
class GetAutonomousDatabasesAutonomousDatabaseLongTermBackupScheduleResult(dict):
|
@@ -22552,23 +23487,32 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
|
|
22552
23487
|
availability_domain: str,
|
22553
23488
|
lag_time_in_seconds: int,
|
22554
23489
|
lifecycle_details: str,
|
23490
|
+
maintenance_target_component: str,
|
22555
23491
|
state: str,
|
22556
23492
|
time_data_guard_role_changed: str,
|
22557
|
-
time_disaster_recovery_role_changed: str
|
23493
|
+
time_disaster_recovery_role_changed: str,
|
23494
|
+
time_maintenance_begin: str,
|
23495
|
+
time_maintenance_end: str):
|
22558
23496
|
"""
|
22559
23497
|
:param str availability_domain: The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
22560
23498
|
:param 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.
|
22561
23499
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
23500
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
22562
23501
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
22563
23502
|
:param 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.
|
22564
23503
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
23504
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
23505
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
22565
23506
|
"""
|
22566
23507
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
22567
23508
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
22568
23509
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
23510
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
22569
23511
|
pulumi.set(__self__, "state", state)
|
22570
23512
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
22571
23513
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
23514
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
23515
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
22572
23516
|
|
22573
23517
|
@property
|
22574
23518
|
@pulumi.getter(name="availabilityDomain")
|
@@ -22594,6 +23538,14 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
|
|
22594
23538
|
"""
|
22595
23539
|
return pulumi.get(self, "lifecycle_details")
|
22596
23540
|
|
23541
|
+
@property
|
23542
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
23543
|
+
def maintenance_target_component(self) -> str:
|
23544
|
+
"""
|
23545
|
+
The component chosen for maintenance.
|
23546
|
+
"""
|
23547
|
+
return pulumi.get(self, "maintenance_target_component")
|
23548
|
+
|
22597
23549
|
@property
|
22598
23550
|
@pulumi.getter
|
22599
23551
|
def state(self) -> str:
|
@@ -22618,6 +23570,22 @@ class GetAutonomousDatabasesAutonomousDatabaseStandbyDbResult(dict):
|
|
22618
23570
|
"""
|
22619
23571
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
22620
23572
|
|
23573
|
+
@property
|
23574
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
23575
|
+
def time_maintenance_begin(self) -> str:
|
23576
|
+
"""
|
23577
|
+
The date and time when maintenance will begin.
|
23578
|
+
"""
|
23579
|
+
return pulumi.get(self, "time_maintenance_begin")
|
23580
|
+
|
23581
|
+
@property
|
23582
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
23583
|
+
def time_maintenance_end(self) -> str:
|
23584
|
+
"""
|
23585
|
+
The date and time when maintenance will end.
|
23586
|
+
"""
|
23587
|
+
return pulumi.get(self, "time_maintenance_end")
|
23588
|
+
|
22621
23589
|
|
22622
23590
|
@pulumi.output_type
|
22623
23591
|
class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
@@ -22636,6 +23604,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22636
23604
|
backup_retention_period_in_days: int,
|
22637
23605
|
byol_compute_count_limit: float,
|
22638
23606
|
character_set: str,
|
23607
|
+
clone_table_space_lists: Sequence[int],
|
22639
23608
|
cluster_placement_group_id: str,
|
22640
23609
|
compartment_id: str,
|
22641
23610
|
compute_count: float,
|
@@ -22691,6 +23660,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22691
23660
|
local_disaster_recovery_type: str,
|
22692
23661
|
local_standby_dbs: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult'],
|
22693
23662
|
long_term_backup_schedules: Sequence['outputs.GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult'],
|
23663
|
+
maintenance_target_component: str,
|
22694
23664
|
max_cpu_core_count: int,
|
22695
23665
|
memory_per_oracle_compute_unit_in_gbs: int,
|
22696
23666
|
ncharacter_set: str,
|
@@ -22758,6 +23728,10 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22758
23728
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseBackupConfigArgs'] backup_configs: Autonomous Database configuration details for storing [manual backups](https://docs.oracle.com/en/cloud/paas/autonomous-database/adbsa/backup-restore.html#GUID-9035DFB8-4702-4CEB-8281-C2A303820809) in the [Object Storage](https://docs.cloud.oracle.com/iaas/Content/Object/Concepts/objectstorageoverview.htm) service.
|
22759
23729
|
:param int backup_retention_period_in_days: Retention period, in days, for backups.
|
22760
23730
|
:param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
23731
|
+
:param Sequence[int] clone_table_space_lists: A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
23732
|
+
=======
|
23733
|
+
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
23734
|
+
>>>>>>> theirs
|
22761
23735
|
:param str cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Autonomous Serverless Database.
|
22762
23736
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
22763
23737
|
:param float compute_count: Compute used by database tools.
|
@@ -22817,6 +23791,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22817
23791
|
:param str local_disaster_recovery_type: Indicates the local disaster recovery (DR) type of the Autonomous Database Serverless instance. Autonomous Data Guard (ADG) DR type provides business critical DR with a faster recovery time objective (RTO) during failover or switchover. Backup-based DR type provides lower cost DR with a slower RTO during failover or switchover.
|
22818
23792
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbArgs'] local_standby_dbs: Autonomous Data Guard standby database details.* `availability_domain` - The availability domain of a local Autonomous Data Guard standby database of an Autonomous Database Serverless instance.
|
22819
23793
|
:param Sequence['GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleArgs'] long_term_backup_schedules: Details for the long-term backup schedule.
|
23794
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
22820
23795
|
:param int max_cpu_core_count: The number of Max OCPU cores to be made available to the autonomous database with auto scaling of cpu enabled.
|
22821
23796
|
:param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per OCPU or ECPU. See [Compute Models in Autonomous Database on Dedicated Exadata Infrastructure](https://docs.oracle.com/en/cloud/paas/autonomous-database/dedicated/adbak) for more details.
|
22822
23797
|
:param str ncharacter_set: The national character set for the autonomous database. The default is AL16UTF16. Allowed values are: AL16UTF16 or UTF8.
|
@@ -22889,6 +23864,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22889
23864
|
pulumi.set(__self__, "backup_retention_period_in_days", backup_retention_period_in_days)
|
22890
23865
|
pulumi.set(__self__, "byol_compute_count_limit", byol_compute_count_limit)
|
22891
23866
|
pulumi.set(__self__, "character_set", character_set)
|
23867
|
+
pulumi.set(__self__, "clone_table_space_lists", clone_table_space_lists)
|
22892
23868
|
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
22893
23869
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
22894
23870
|
pulumi.set(__self__, "compute_count", compute_count)
|
@@ -22944,6 +23920,7 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
22944
23920
|
pulumi.set(__self__, "local_disaster_recovery_type", local_disaster_recovery_type)
|
22945
23921
|
pulumi.set(__self__, "local_standby_dbs", local_standby_dbs)
|
22946
23922
|
pulumi.set(__self__, "long_term_backup_schedules", long_term_backup_schedules)
|
23923
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
22947
23924
|
pulumi.set(__self__, "max_cpu_core_count", max_cpu_core_count)
|
22948
23925
|
pulumi.set(__self__, "memory_per_oracle_compute_unit_in_gbs", memory_per_oracle_compute_unit_in_gbs)
|
22949
23926
|
pulumi.set(__self__, "ncharacter_set", ncharacter_set)
|
@@ -23105,6 +24082,17 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
23105
24082
|
"""
|
23106
24083
|
return pulumi.get(self, "character_set")
|
23107
24084
|
|
24085
|
+
@property
|
24086
|
+
@pulumi.getter(name="cloneTableSpaceLists")
|
24087
|
+
def clone_table_space_lists(self) -> Sequence[int]:
|
24088
|
+
"""
|
24089
|
+
A list of the source Autonomous Database's table space number(s) used to create this partial clone from the backup.
|
24090
|
+
=======
|
24091
|
+
AL32UTF8, AR8ADOS710, AR8ADOS720, AR8APTEC715, AR8ARABICMACS, AR8ASMO8X, AR8ISO8859P6, AR8MSWIN1256, AR8MUSSAD768, AR8NAFITHA711, AR8NAFITHA721, AR8SAKHR706, AR8SAKHR707, AZ8ISO8859P9E, BG8MSWIN, BG8PC437S, BLT8CP921, BLT8ISO8859P13, BLT8MSWIN1257, BLT8PC775, BN8BSCII, CDN8PC863, CEL8ISO8859P14, CL8ISO8859P5, CL8ISOIR111, CL8KOI8R, CL8KOI8U, CL8MACCYRILLICS, CL8MSWIN1251, EE8ISO8859P2, EE8MACCES, EE8MACCROATIANS, EE8MSWIN1250, EE8PC852, EL8DEC, EL8ISO8859P7, EL8MACGREEKS, EL8MSWIN1253, EL8PC437S, EL8PC851, EL8PC869, ET8MSWIN923, HU8ABMOD, HU8CWI2, IN8ISCII, IS8PC861, IW8ISO8859P8, IW8MACHEBREWS, IW8MSWIN1255, IW8PC1507, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE, JA16VMS, KO16KSC5601, KO16KSCCS, KO16MSWIN949, LA8ISO6937, LA8PASSPORT, LT8MSWIN921, LT8PC772, LT8PC774, LV8PC1117, LV8PC8LR, LV8RST104090, N8PC865, NE8ISO8859P10, NEE8ISO8859P4, RU8BESTA, RU8PC855, RU8PC866, SE8ISO8859P3, TH8MACTHAIS, TH8TISASCII, TR8DEC, TR8MACTURKISHS, TR8MSWIN1254, TR8PC857, US7ASCII, US8PC437, UTF8, VN8MSWIN1258, VN8VN3, WE8DEC, WE8DG, WE8ISO8859P1, WE8ISO8859P15, WE8ISO8859P9, WE8MACROMAN8S, WE8MSWIN1252, WE8NCR4970, WE8NEXTSTEP, WE8PC850, WE8PC858, WE8PC860, WE8ROMAN8, ZHS16CGB231280, ZHS16GBK, ZHT16BIG5, ZHT16CCDC, ZHT16DBT, ZHT16HKSCS, ZHT16MSWIN950, ZHT32EUC, ZHT32SOPS, ZHT32TRIS
|
24092
|
+
>>>>>>> theirs
|
24093
|
+
"""
|
24094
|
+
return pulumi.get(self, "clone_table_space_lists")
|
24095
|
+
|
23108
24096
|
@property
|
23109
24097
|
@pulumi.getter(name="clusterPlacementGroupId")
|
23110
24098
|
def cluster_placement_group_id(self) -> str:
|
@@ -23549,6 +24537,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
23549
24537
|
"""
|
23550
24538
|
return pulumi.get(self, "long_term_backup_schedules")
|
23551
24539
|
|
24540
|
+
@property
|
24541
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
24542
|
+
def maintenance_target_component(self) -> str:
|
24543
|
+
"""
|
24544
|
+
The component chosen for maintenance.
|
24545
|
+
"""
|
24546
|
+
return pulumi.get(self, "maintenance_target_component")
|
24547
|
+
|
23552
24548
|
@property
|
23553
24549
|
@pulumi.getter(name="maxCpuCoreCount")
|
23554
24550
|
def max_cpu_core_count(self) -> int:
|
@@ -24792,22 +25788,31 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
24792
25788
|
availability_domain: str,
|
24793
25789
|
lag_time_in_seconds: int,
|
24794
25790
|
lifecycle_details: str,
|
25791
|
+
maintenance_target_component: str,
|
24795
25792
|
state: str,
|
24796
25793
|
time_data_guard_role_changed: str,
|
24797
|
-
time_disaster_recovery_role_changed: str
|
25794
|
+
time_disaster_recovery_role_changed: str,
|
25795
|
+
time_maintenance_begin: str,
|
25796
|
+
time_maintenance_end: str):
|
24798
25797
|
"""
|
24799
25798
|
:param 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.
|
24800
25799
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
25800
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
24801
25801
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
24802
25802
|
:param 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.
|
24803
25803
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
25804
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
25805
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
24804
25806
|
"""
|
24805
25807
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
24806
25808
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
24807
25809
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
25810
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
24808
25811
|
pulumi.set(__self__, "state", state)
|
24809
25812
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
24810
25813
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
25814
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
25815
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
24811
25816
|
|
24812
25817
|
@property
|
24813
25818
|
@pulumi.getter(name="availabilityDomain")
|
@@ -24830,6 +25835,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
24830
25835
|
"""
|
24831
25836
|
return pulumi.get(self, "lifecycle_details")
|
24832
25837
|
|
25838
|
+
@property
|
25839
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
25840
|
+
def maintenance_target_component(self) -> str:
|
25841
|
+
"""
|
25842
|
+
The component chosen for maintenance.
|
25843
|
+
"""
|
25844
|
+
return pulumi.get(self, "maintenance_target_component")
|
25845
|
+
|
24833
25846
|
@property
|
24834
25847
|
@pulumi.getter
|
24835
25848
|
def state(self) -> str:
|
@@ -24854,6 +25867,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseLocalStandbyDbResult(dict):
|
|
24854
25867
|
"""
|
24855
25868
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
24856
25869
|
|
25870
|
+
@property
|
25871
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
25872
|
+
def time_maintenance_begin(self) -> str:
|
25873
|
+
"""
|
25874
|
+
The date and time when maintenance will begin.
|
25875
|
+
"""
|
25876
|
+
return pulumi.get(self, "time_maintenance_begin")
|
25877
|
+
|
25878
|
+
@property
|
25879
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
25880
|
+
def time_maintenance_end(self) -> str:
|
25881
|
+
"""
|
25882
|
+
The date and time when maintenance will end.
|
25883
|
+
"""
|
25884
|
+
return pulumi.get(self, "time_maintenance_end")
|
25885
|
+
|
24857
25886
|
|
24858
25887
|
@pulumi.output_type
|
24859
25888
|
class GetAutonomousDatabasesClonesAutonomousDatabaseLongTermBackupScheduleResult(dict):
|
@@ -25141,22 +26170,31 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
|
25141
26170
|
availability_domain: str,
|
25142
26171
|
lag_time_in_seconds: int,
|
25143
26172
|
lifecycle_details: str,
|
26173
|
+
maintenance_target_component: str,
|
25144
26174
|
state: str,
|
25145
26175
|
time_data_guard_role_changed: str,
|
25146
|
-
time_disaster_recovery_role_changed: str
|
26176
|
+
time_disaster_recovery_role_changed: str,
|
26177
|
+
time_maintenance_begin: str,
|
26178
|
+
time_maintenance_end: str):
|
25147
26179
|
"""
|
25148
26180
|
:param 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.
|
25149
26181
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
26182
|
+
:param str maintenance_target_component: The component chosen for maintenance.
|
25150
26183
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
25151
26184
|
:param 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.
|
25152
26185
|
:param str time_disaster_recovery_role_changed: The date and time the Disaster Recovery role was switched for the standby Autonomous Database.
|
26186
|
+
:param str time_maintenance_begin: The date and time when maintenance will begin.
|
26187
|
+
:param str time_maintenance_end: The date and time when maintenance will end.
|
25153
26188
|
"""
|
25154
26189
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
25155
26190
|
pulumi.set(__self__, "lag_time_in_seconds", lag_time_in_seconds)
|
25156
26191
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
26192
|
+
pulumi.set(__self__, "maintenance_target_component", maintenance_target_component)
|
25157
26193
|
pulumi.set(__self__, "state", state)
|
25158
26194
|
pulumi.set(__self__, "time_data_guard_role_changed", time_data_guard_role_changed)
|
25159
26195
|
pulumi.set(__self__, "time_disaster_recovery_role_changed", time_disaster_recovery_role_changed)
|
26196
|
+
pulumi.set(__self__, "time_maintenance_begin", time_maintenance_begin)
|
26197
|
+
pulumi.set(__self__, "time_maintenance_end", time_maintenance_end)
|
25160
26198
|
|
25161
26199
|
@property
|
25162
26200
|
@pulumi.getter(name="availabilityDomain")
|
@@ -25179,6 +26217,14 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
|
25179
26217
|
"""
|
25180
26218
|
return pulumi.get(self, "lifecycle_details")
|
25181
26219
|
|
26220
|
+
@property
|
26221
|
+
@pulumi.getter(name="maintenanceTargetComponent")
|
26222
|
+
def maintenance_target_component(self) -> str:
|
26223
|
+
"""
|
26224
|
+
The component chosen for maintenance.
|
26225
|
+
"""
|
26226
|
+
return pulumi.get(self, "maintenance_target_component")
|
26227
|
+
|
25182
26228
|
@property
|
25183
26229
|
@pulumi.getter
|
25184
26230
|
def state(self) -> str:
|
@@ -25203,6 +26249,22 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseStandbyDbResult(dict):
|
|
25203
26249
|
"""
|
25204
26250
|
return pulumi.get(self, "time_disaster_recovery_role_changed")
|
25205
26251
|
|
26252
|
+
@property
|
26253
|
+
@pulumi.getter(name="timeMaintenanceBegin")
|
26254
|
+
def time_maintenance_begin(self) -> str:
|
26255
|
+
"""
|
26256
|
+
The date and time when maintenance will begin.
|
26257
|
+
"""
|
26258
|
+
return pulumi.get(self, "time_maintenance_begin")
|
26259
|
+
|
26260
|
+
@property
|
26261
|
+
@pulumi.getter(name="timeMaintenanceEnd")
|
26262
|
+
def time_maintenance_end(self) -> str:
|
26263
|
+
"""
|
26264
|
+
The date and time when maintenance will end.
|
26265
|
+
"""
|
26266
|
+
return pulumi.get(self, "time_maintenance_end")
|
26267
|
+
|
25206
26268
|
|
25207
26269
|
@pulumi.output_type
|
25208
26270
|
class GetAutonomousDatabasesClonesFilterResult(dict):
|
@@ -28406,8 +29468,11 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
28406
29468
|
nfs_server_export: str,
|
28407
29469
|
nfs_servers: Sequence[str],
|
28408
29470
|
state: str,
|
29471
|
+
time_at_which_storage_details_are_updated: str,
|
28409
29472
|
time_created: str,
|
29473
|
+
total_storage_size_in_gbs: int,
|
28410
29474
|
type: str,
|
29475
|
+
utilized_storage_size_in_gbs: int,
|
28411
29476
|
vpc_users: Sequence[str]):
|
28412
29477
|
"""
|
28413
29478
|
:param Sequence['GetBackupDestinationsBackupDestinationAssociatedDatabaseArgs'] associated_databases: List of databases associated with the backup destination.
|
@@ -28423,8 +29488,11 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
28423
29488
|
:param str nfs_server_export: Specifies the directory on which to mount the file system
|
28424
29489
|
:param Sequence[str] nfs_servers: Host names or IP addresses for NFS Auto mount.
|
28425
29490
|
:param str state: The current lifecycle state of the backup destination.
|
29491
|
+
:param str time_at_which_storage_details_are_updated: The time when the total storage size and the utilized storage size of the backup destination are updated.
|
28426
29492
|
:param str time_created: The date and time the backup destination was created.
|
29493
|
+
:param int total_storage_size_in_gbs: The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
28427
29494
|
:param str type: A filter to return only resources that match the given type of the Backup Destination.
|
29495
|
+
:param int utilized_storage_size_in_gbs: The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
|
28428
29496
|
:param Sequence[str] vpc_users: For a RECOVERY_APPLIANCE backup destination, the Virtual Private Catalog (VPC) users that are used to access the Recovery Appliance.
|
28429
29497
|
"""
|
28430
29498
|
pulumi.set(__self__, "associated_databases", associated_databases)
|
@@ -28441,8 +29509,11 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
28441
29509
|
pulumi.set(__self__, "nfs_server_export", nfs_server_export)
|
28442
29510
|
pulumi.set(__self__, "nfs_servers", nfs_servers)
|
28443
29511
|
pulumi.set(__self__, "state", state)
|
29512
|
+
pulumi.set(__self__, "time_at_which_storage_details_are_updated", time_at_which_storage_details_are_updated)
|
28444
29513
|
pulumi.set(__self__, "time_created", time_created)
|
29514
|
+
pulumi.set(__self__, "total_storage_size_in_gbs", total_storage_size_in_gbs)
|
28445
29515
|
pulumi.set(__self__, "type", type)
|
29516
|
+
pulumi.set(__self__, "utilized_storage_size_in_gbs", utilized_storage_size_in_gbs)
|
28446
29517
|
pulumi.set(__self__, "vpc_users", vpc_users)
|
28447
29518
|
|
28448
29519
|
@property
|
@@ -28555,6 +29626,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
28555
29626
|
"""
|
28556
29627
|
return pulumi.get(self, "state")
|
28557
29628
|
|
29629
|
+
@property
|
29630
|
+
@pulumi.getter(name="timeAtWhichStorageDetailsAreUpdated")
|
29631
|
+
def time_at_which_storage_details_are_updated(self) -> str:
|
29632
|
+
"""
|
29633
|
+
The time when the total storage size and the utilized storage size of the backup destination are updated.
|
29634
|
+
"""
|
29635
|
+
return pulumi.get(self, "time_at_which_storage_details_are_updated")
|
29636
|
+
|
28558
29637
|
@property
|
28559
29638
|
@pulumi.getter(name="timeCreated")
|
28560
29639
|
def time_created(self) -> str:
|
@@ -28563,6 +29642,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
28563
29642
|
"""
|
28564
29643
|
return pulumi.get(self, "time_created")
|
28565
29644
|
|
29645
|
+
@property
|
29646
|
+
@pulumi.getter(name="totalStorageSizeInGbs")
|
29647
|
+
def total_storage_size_in_gbs(self) -> int:
|
29648
|
+
"""
|
29649
|
+
The total storage size of the backup destination in GBs, rounded to the nearest integer.
|
29650
|
+
"""
|
29651
|
+
return pulumi.get(self, "total_storage_size_in_gbs")
|
29652
|
+
|
28566
29653
|
@property
|
28567
29654
|
@pulumi.getter
|
28568
29655
|
def type(self) -> str:
|
@@ -28571,6 +29658,14 @@ class GetBackupDestinationsBackupDestinationResult(dict):
|
|
28571
29658
|
"""
|
28572
29659
|
return pulumi.get(self, "type")
|
28573
29660
|
|
29661
|
+
@property
|
29662
|
+
@pulumi.getter(name="utilizedStorageSizeInGbs")
|
29663
|
+
def utilized_storage_size_in_gbs(self) -> int:
|
29664
|
+
"""
|
29665
|
+
The total amount of space utilized on the backup destination (in GBs), rounded to the nearest integer.
|
29666
|
+
"""
|
29667
|
+
return pulumi.get(self, "utilized_storage_size_in_gbs")
|
29668
|
+
|
28574
29669
|
@property
|
28575
29670
|
@pulumi.getter(name="vpcUsers")
|
28576
29671
|
def vpc_users(self) -> Sequence[str]:
|
@@ -32906,6 +34001,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
32906
34001
|
peer_sid_prefix: str,
|
32907
34002
|
peer_vm_cluster_id: str,
|
32908
34003
|
private_ip: str,
|
34004
|
+
private_ip_v6: str,
|
32909
34005
|
protection_mode: str,
|
32910
34006
|
role: str,
|
32911
34007
|
shape: str,
|
@@ -32970,6 +34066,7 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
32970
34066
|
pulumi.set(__self__, "peer_sid_prefix", peer_sid_prefix)
|
32971
34067
|
pulumi.set(__self__, "peer_vm_cluster_id", peer_vm_cluster_id)
|
32972
34068
|
pulumi.set(__self__, "private_ip", private_ip)
|
34069
|
+
pulumi.set(__self__, "private_ip_v6", private_ip_v6)
|
32973
34070
|
pulumi.set(__self__, "protection_mode", protection_mode)
|
32974
34071
|
pulumi.set(__self__, "role", role)
|
32975
34072
|
pulumi.set(__self__, "shape", shape)
|
@@ -33198,6 +34295,11 @@ class GetDataGuardAssociationsDataGuardAssociationResult(dict):
|
|
33198
34295
|
def private_ip(self) -> str:
|
33199
34296
|
return pulumi.get(self, "private_ip")
|
33200
34297
|
|
34298
|
+
@property
|
34299
|
+
@pulumi.getter(name="privateIpV6")
|
34300
|
+
def private_ip_v6(self) -> str:
|
34301
|
+
return pulumi.get(self, "private_ip_v6")
|
34302
|
+
|
33201
34303
|
@property
|
33202
34304
|
@pulumi.getter(name="protectionMode")
|
33203
34305
|
def protection_mode(self) -> str:
|
@@ -41324,10 +42426,12 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41324
42426
|
os_version: str,
|
41325
42427
|
point_in_time_data_disk_clone_timestamp: str,
|
41326
42428
|
private_ip: str,
|
42429
|
+
private_ip_v6: str,
|
41327
42430
|
reco_storage_size_in_gb: int,
|
41328
42431
|
scan_dns_name: str,
|
41329
42432
|
scan_dns_record_id: str,
|
41330
42433
|
scan_ip_ids: Sequence[str],
|
42434
|
+
scan_ipv6ids: Sequence[str],
|
41331
42435
|
security_attributes: Mapping[str, str],
|
41332
42436
|
shape: str,
|
41333
42437
|
source: str,
|
@@ -41341,6 +42445,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41341
42445
|
time_zone: str,
|
41342
42446
|
version: str,
|
41343
42447
|
vip_ids: Sequence[str],
|
42448
|
+
vipv6ids: Sequence[str],
|
41344
42449
|
zone_id: str):
|
41345
42450
|
"""
|
41346
42451
|
:param str availability_domain: A filter to return only resources that match the given availability domain exactly.
|
@@ -41379,7 +42484,8 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41379
42484
|
:param int reco_storage_size_in_gb: The RECO/REDO storage size, in gigabytes, that is currently allocated to the DB system. Applies only for virtual machine DB systems.
|
41380
42485
|
:param str scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the DB system.
|
41381
42486
|
:param str scan_dns_record_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DNS record for the SCAN IP addresses that are associated with the DB system.
|
41382
|
-
:param Sequence[str] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN)
|
42487
|
+
:param Sequence[str] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
42488
|
+
:param Sequence[str] scan_ipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
41383
42489
|
:param Mapping[str, str] security_attributes: Security Attributes for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
41384
42490
|
:param str shape: The shape of the DB system. The shape determines resources to allocate to the DB system.
|
41385
42491
|
* For virtual machine shapes, the number of CPU cores and memory
|
@@ -41393,7 +42499,8 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41393
42499
|
:param str time_created: The date and time the DB system was created.
|
41394
42500
|
:param str time_zone: The time zone of the DB system. For details, see [DB System Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
41395
42501
|
:param str version: The Oracle Database version of the DB system.
|
41396
|
-
:param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual
|
42502
|
+
:param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
|
42503
|
+
:param Sequence[str] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
41397
42504
|
:param str zone_id: The OCID of the zone the DB system is associated with.
|
41398
42505
|
"""
|
41399
42506
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -41433,10 +42540,12 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41433
42540
|
pulumi.set(__self__, "os_version", os_version)
|
41434
42541
|
pulumi.set(__self__, "point_in_time_data_disk_clone_timestamp", point_in_time_data_disk_clone_timestamp)
|
41435
42542
|
pulumi.set(__self__, "private_ip", private_ip)
|
42543
|
+
pulumi.set(__self__, "private_ip_v6", private_ip_v6)
|
41436
42544
|
pulumi.set(__self__, "reco_storage_size_in_gb", reco_storage_size_in_gb)
|
41437
42545
|
pulumi.set(__self__, "scan_dns_name", scan_dns_name)
|
41438
42546
|
pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
|
41439
42547
|
pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
|
42548
|
+
pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
|
41440
42549
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
41441
42550
|
pulumi.set(__self__, "shape", shape)
|
41442
42551
|
pulumi.set(__self__, "source", source)
|
@@ -41450,6 +42559,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41450
42559
|
pulumi.set(__self__, "time_zone", time_zone)
|
41451
42560
|
pulumi.set(__self__, "version", version)
|
41452
42561
|
pulumi.set(__self__, "vip_ids", vip_ids)
|
42562
|
+
pulumi.set(__self__, "vipv6ids", vipv6ids)
|
41453
42563
|
pulumi.set(__self__, "zone_id", zone_id)
|
41454
42564
|
|
41455
42565
|
@property
|
@@ -41734,6 +42844,11 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41734
42844
|
def private_ip(self) -> str:
|
41735
42845
|
return pulumi.get(self, "private_ip")
|
41736
42846
|
|
42847
|
+
@property
|
42848
|
+
@pulumi.getter(name="privateIpV6")
|
42849
|
+
def private_ip_v6(self) -> str:
|
42850
|
+
return pulumi.get(self, "private_ip_v6")
|
42851
|
+
|
41737
42852
|
@property
|
41738
42853
|
@pulumi.getter(name="recoStorageSizeInGb")
|
41739
42854
|
def reco_storage_size_in_gb(self) -> int:
|
@@ -41762,10 +42877,18 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41762
42877
|
@pulumi.getter(name="scanIpIds")
|
41763
42878
|
def scan_ip_ids(self) -> Sequence[str]:
|
41764
42879
|
"""
|
41765
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN)
|
42880
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv4 addresses associated with the DB system. SCAN IPv4 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
41766
42881
|
"""
|
41767
42882
|
return pulumi.get(self, "scan_ip_ids")
|
41768
42883
|
|
42884
|
+
@property
|
42885
|
+
@pulumi.getter(name="scanIpv6ids")
|
42886
|
+
def scan_ipv6ids(self) -> Sequence[str]:
|
42887
|
+
"""
|
42888
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IPv6 addresses associated with the DB system. SCAN IPv6 addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
42889
|
+
"""
|
42890
|
+
return pulumi.get(self, "scan_ipv6ids")
|
42891
|
+
|
41769
42892
|
@property
|
41770
42893
|
@pulumi.getter(name="securityAttributes")
|
41771
42894
|
def security_attributes(self) -> Mapping[str, str]:
|
@@ -41865,10 +42988,18 @@ class GetDbSystemsDbSystemResult(dict):
|
|
41865
42988
|
@pulumi.getter(name="vipIds")
|
41866
42989
|
def vip_ids(self) -> Sequence[str]:
|
41867
42990
|
"""
|
41868
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual
|
42991
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv4 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIPv4 address for each node in the DB system to enable failover. If one node fails, the VIPv4 is reassigned to another active node in the cluster.
|
41869
42992
|
"""
|
41870
42993
|
return pulumi.get(self, "vip_ids")
|
41871
42994
|
|
42995
|
+
@property
|
42996
|
+
@pulumi.getter
|
42997
|
+
def vipv6ids(self) -> Sequence[str]:
|
42998
|
+
"""
|
42999
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IPv6 (VIP) addresses associated with the DB system. The Cluster Ready Services (CRS) creates and maintains one VIP IpV6 address for each node in the DB system to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
43000
|
+
"""
|
43001
|
+
return pulumi.get(self, "vipv6ids")
|
43002
|
+
|
41872
43003
|
@property
|
41873
43004
|
@pulumi.getter(name="zoneId")
|
41874
43005
|
def zone_id(self) -> str:
|