pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.0a1742000109__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 +67 -0
- pulumi_oci/containerengine/_inputs.py +34 -35
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +110 -21
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/_inputs.py +21 -33
- pulumi_oci/core/outputs.py +13 -21
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +704 -0
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/outputs.py +1084 -42
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/METADATA +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/RECORD +135 -106
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0a1742000109.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -135,8 +135,16 @@ __all__ = [
|
|
135
135
|
'ExadataInfrastructureComputeMaintenanceWindow',
|
136
136
|
'ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek',
|
137
137
|
'ExadataInfrastructureComputeMaintenanceWindowMonth',
|
138
|
+
'ExadataInfrastructureConfigureExascaleManagementContact',
|
139
|
+
'ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration',
|
140
|
+
'ExadataInfrastructureConfigureExascaleManagementExascaleConfig',
|
141
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow',
|
142
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek',
|
143
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth',
|
144
|
+
'ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail',
|
138
145
|
'ExadataInfrastructureContact',
|
139
146
|
'ExadataInfrastructureDefinedFileSystemConfiguration',
|
147
|
+
'ExadataInfrastructureExascaleConfig',
|
140
148
|
'ExadataInfrastructureMaintenanceWindow',
|
141
149
|
'ExadataInfrastructureMaintenanceWindowDaysOfWeek',
|
142
150
|
'ExadataInfrastructureMaintenanceWindowMonth',
|
@@ -550,6 +558,7 @@ __all__ = [
|
|
550
558
|
'GetDbVersionsFilterResult',
|
551
559
|
'GetExadataInfrastructureContactResult',
|
552
560
|
'GetExadataInfrastructureDefinedFileSystemConfigurationResult',
|
561
|
+
'GetExadataInfrastructureExascaleConfigResult',
|
553
562
|
'GetExadataInfrastructureMaintenanceWindowResult',
|
554
563
|
'GetExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
555
564
|
'GetExadataInfrastructureMaintenanceWindowMonthResult',
|
@@ -558,6 +567,7 @@ __all__ = [
|
|
558
567
|
'GetExadataInfrastructuresExadataInfrastructureResult',
|
559
568
|
'GetExadataInfrastructuresExadataInfrastructureContactResult',
|
560
569
|
'GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult',
|
570
|
+
'GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult',
|
561
571
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult',
|
562
572
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
563
573
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowMonthResult',
|
@@ -10845,6 +10855,504 @@ class ExadataInfrastructureComputeMaintenanceWindowMonth(dict):
|
|
10845
10855
|
return pulumi.get(self, "name")
|
10846
10856
|
|
10847
10857
|
|
10858
|
+
@pulumi.output_type
|
10859
|
+
class ExadataInfrastructureConfigureExascaleManagementContact(dict):
|
10860
|
+
@staticmethod
|
10861
|
+
def __key_warning(key: str):
|
10862
|
+
suggest = None
|
10863
|
+
if key == "isContactMosValidated":
|
10864
|
+
suggest = "is_contact_mos_validated"
|
10865
|
+
elif key == "isPrimary":
|
10866
|
+
suggest = "is_primary"
|
10867
|
+
elif key == "phoneNumber":
|
10868
|
+
suggest = "phone_number"
|
10869
|
+
|
10870
|
+
if suggest:
|
10871
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementContact. Access the value via the '{suggest}' property getter instead.")
|
10872
|
+
|
10873
|
+
def __getitem__(self, key: str) -> Any:
|
10874
|
+
ExadataInfrastructureConfigureExascaleManagementContact.__key_warning(key)
|
10875
|
+
return super().__getitem__(key)
|
10876
|
+
|
10877
|
+
def get(self, key: str, default = None) -> Any:
|
10878
|
+
ExadataInfrastructureConfigureExascaleManagementContact.__key_warning(key)
|
10879
|
+
return super().get(key, default)
|
10880
|
+
|
10881
|
+
def __init__(__self__, *,
|
10882
|
+
email: Optional[str] = None,
|
10883
|
+
is_contact_mos_validated: Optional[bool] = None,
|
10884
|
+
is_primary: Optional[bool] = None,
|
10885
|
+
name: Optional[str] = None,
|
10886
|
+
phone_number: Optional[str] = None):
|
10887
|
+
"""
|
10888
|
+
:param str email: The email for the Exadata Infrastructure contact.
|
10889
|
+
:param bool is_contact_mos_validated: If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
|
10890
|
+
:param bool is_primary: If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
|
10891
|
+
:param str name: Name of the month of the year.
|
10892
|
+
:param str phone_number: The phone number for the Exadata Infrastructure contact.
|
10893
|
+
"""
|
10894
|
+
if email is not None:
|
10895
|
+
pulumi.set(__self__, "email", email)
|
10896
|
+
if is_contact_mos_validated is not None:
|
10897
|
+
pulumi.set(__self__, "is_contact_mos_validated", is_contact_mos_validated)
|
10898
|
+
if is_primary is not None:
|
10899
|
+
pulumi.set(__self__, "is_primary", is_primary)
|
10900
|
+
if name is not None:
|
10901
|
+
pulumi.set(__self__, "name", name)
|
10902
|
+
if phone_number is not None:
|
10903
|
+
pulumi.set(__self__, "phone_number", phone_number)
|
10904
|
+
|
10905
|
+
@property
|
10906
|
+
@pulumi.getter
|
10907
|
+
def email(self) -> Optional[str]:
|
10908
|
+
"""
|
10909
|
+
The email for the Exadata Infrastructure contact.
|
10910
|
+
"""
|
10911
|
+
return pulumi.get(self, "email")
|
10912
|
+
|
10913
|
+
@property
|
10914
|
+
@pulumi.getter(name="isContactMosValidated")
|
10915
|
+
def is_contact_mos_validated(self) -> Optional[bool]:
|
10916
|
+
"""
|
10917
|
+
If `true`, this Exadata Infrastructure contact is a valid My Oracle Support (MOS) contact. If `false`, this Exadata Infrastructure contact is not a valid MOS contact.
|
10918
|
+
"""
|
10919
|
+
return pulumi.get(self, "is_contact_mos_validated")
|
10920
|
+
|
10921
|
+
@property
|
10922
|
+
@pulumi.getter(name="isPrimary")
|
10923
|
+
def is_primary(self) -> Optional[bool]:
|
10924
|
+
"""
|
10925
|
+
If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
|
10926
|
+
"""
|
10927
|
+
return pulumi.get(self, "is_primary")
|
10928
|
+
|
10929
|
+
@property
|
10930
|
+
@pulumi.getter
|
10931
|
+
def name(self) -> Optional[str]:
|
10932
|
+
"""
|
10933
|
+
Name of the month of the year.
|
10934
|
+
"""
|
10935
|
+
return pulumi.get(self, "name")
|
10936
|
+
|
10937
|
+
@property
|
10938
|
+
@pulumi.getter(name="phoneNumber")
|
10939
|
+
def phone_number(self) -> Optional[str]:
|
10940
|
+
"""
|
10941
|
+
The phone number for the Exadata Infrastructure contact.
|
10942
|
+
"""
|
10943
|
+
return pulumi.get(self, "phone_number")
|
10944
|
+
|
10945
|
+
|
10946
|
+
@pulumi.output_type
|
10947
|
+
class ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration(dict):
|
10948
|
+
@staticmethod
|
10949
|
+
def __key_warning(key: str):
|
10950
|
+
suggest = None
|
10951
|
+
if key == "isBackupPartition":
|
10952
|
+
suggest = "is_backup_partition"
|
10953
|
+
elif key == "isResizable":
|
10954
|
+
suggest = "is_resizable"
|
10955
|
+
elif key == "minSizeGb":
|
10956
|
+
suggest = "min_size_gb"
|
10957
|
+
elif key == "mountPoint":
|
10958
|
+
suggest = "mount_point"
|
10959
|
+
|
10960
|
+
if suggest:
|
10961
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
|
10962
|
+
|
10963
|
+
def __getitem__(self, key: str) -> Any:
|
10964
|
+
ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration.__key_warning(key)
|
10965
|
+
return super().__getitem__(key)
|
10966
|
+
|
10967
|
+
def get(self, key: str, default = None) -> Any:
|
10968
|
+
ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfiguration.__key_warning(key)
|
10969
|
+
return super().get(key, default)
|
10970
|
+
|
10971
|
+
def __init__(__self__, *,
|
10972
|
+
is_backup_partition: Optional[bool] = None,
|
10973
|
+
is_resizable: Optional[bool] = None,
|
10974
|
+
min_size_gb: Optional[int] = None,
|
10975
|
+
mount_point: Optional[str] = None):
|
10976
|
+
"""
|
10977
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
10978
|
+
:param bool is_resizable: If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
10979
|
+
:param int min_size_gb: The minimum size of file system.
|
10980
|
+
:param str mount_point: The mount point of file system.
|
10981
|
+
"""
|
10982
|
+
if is_backup_partition is not None:
|
10983
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
10984
|
+
if is_resizable is not None:
|
10985
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
10986
|
+
if min_size_gb is not None:
|
10987
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
10988
|
+
if mount_point is not None:
|
10989
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
10990
|
+
|
10991
|
+
@property
|
10992
|
+
@pulumi.getter(name="isBackupPartition")
|
10993
|
+
def is_backup_partition(self) -> Optional[bool]:
|
10994
|
+
"""
|
10995
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
10996
|
+
"""
|
10997
|
+
return pulumi.get(self, "is_backup_partition")
|
10998
|
+
|
10999
|
+
@property
|
11000
|
+
@pulumi.getter(name="isResizable")
|
11001
|
+
def is_resizable(self) -> Optional[bool]:
|
11002
|
+
"""
|
11003
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
11004
|
+
"""
|
11005
|
+
return pulumi.get(self, "is_resizable")
|
11006
|
+
|
11007
|
+
@property
|
11008
|
+
@pulumi.getter(name="minSizeGb")
|
11009
|
+
def min_size_gb(self) -> Optional[int]:
|
11010
|
+
"""
|
11011
|
+
The minimum size of file system.
|
11012
|
+
"""
|
11013
|
+
return pulumi.get(self, "min_size_gb")
|
11014
|
+
|
11015
|
+
@property
|
11016
|
+
@pulumi.getter(name="mountPoint")
|
11017
|
+
def mount_point(self) -> Optional[str]:
|
11018
|
+
"""
|
11019
|
+
The mount point of file system.
|
11020
|
+
"""
|
11021
|
+
return pulumi.get(self, "mount_point")
|
11022
|
+
|
11023
|
+
|
11024
|
+
@pulumi.output_type
|
11025
|
+
class ExadataInfrastructureConfigureExascaleManagementExascaleConfig(dict):
|
11026
|
+
@staticmethod
|
11027
|
+
def __key_warning(key: str):
|
11028
|
+
suggest = None
|
11029
|
+
if key == "availableStorageInGbs":
|
11030
|
+
suggest = "available_storage_in_gbs"
|
11031
|
+
elif key == "totalStorageInGbs":
|
11032
|
+
suggest = "total_storage_in_gbs"
|
11033
|
+
|
11034
|
+
if suggest:
|
11035
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementExascaleConfig. Access the value via the '{suggest}' property getter instead.")
|
11036
|
+
|
11037
|
+
def __getitem__(self, key: str) -> Any:
|
11038
|
+
ExadataInfrastructureConfigureExascaleManagementExascaleConfig.__key_warning(key)
|
11039
|
+
return super().__getitem__(key)
|
11040
|
+
|
11041
|
+
def get(self, key: str, default = None) -> Any:
|
11042
|
+
ExadataInfrastructureConfigureExascaleManagementExascaleConfig.__key_warning(key)
|
11043
|
+
return super().get(key, default)
|
11044
|
+
|
11045
|
+
def __init__(__self__, *,
|
11046
|
+
available_storage_in_gbs: Optional[int] = None,
|
11047
|
+
total_storage_in_gbs: Optional[int] = None):
|
11048
|
+
"""
|
11049
|
+
:param int available_storage_in_gbs: Available storage size for Exascale in GBs.
|
11050
|
+
:param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
11051
|
+
|
11052
|
+
|
11053
|
+
** IMPORTANT **
|
11054
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
11055
|
+
"""
|
11056
|
+
if available_storage_in_gbs is not None:
|
11057
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
11058
|
+
if total_storage_in_gbs is not None:
|
11059
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
11060
|
+
|
11061
|
+
@property
|
11062
|
+
@pulumi.getter(name="availableStorageInGbs")
|
11063
|
+
def available_storage_in_gbs(self) -> Optional[int]:
|
11064
|
+
"""
|
11065
|
+
Available storage size for Exascale in GBs.
|
11066
|
+
"""
|
11067
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
11068
|
+
|
11069
|
+
@property
|
11070
|
+
@pulumi.getter(name="totalStorageInGbs")
|
11071
|
+
def total_storage_in_gbs(self) -> Optional[int]:
|
11072
|
+
"""
|
11073
|
+
Storage size needed for Exascale in GBs.
|
11074
|
+
|
11075
|
+
|
11076
|
+
** IMPORTANT **
|
11077
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
11078
|
+
"""
|
11079
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
11080
|
+
|
11081
|
+
|
11082
|
+
@pulumi.output_type
|
11083
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow(dict):
|
11084
|
+
@staticmethod
|
11085
|
+
def __key_warning(key: str):
|
11086
|
+
suggest = None
|
11087
|
+
if key == "customActionTimeoutInMins":
|
11088
|
+
suggest = "custom_action_timeout_in_mins"
|
11089
|
+
elif key == "daysOfWeeks":
|
11090
|
+
suggest = "days_of_weeks"
|
11091
|
+
elif key == "hoursOfDays":
|
11092
|
+
suggest = "hours_of_days"
|
11093
|
+
elif key == "isCustomActionTimeoutEnabled":
|
11094
|
+
suggest = "is_custom_action_timeout_enabled"
|
11095
|
+
elif key == "isMonthlyPatchingEnabled":
|
11096
|
+
suggest = "is_monthly_patching_enabled"
|
11097
|
+
elif key == "leadTimeInWeeks":
|
11098
|
+
suggest = "lead_time_in_weeks"
|
11099
|
+
elif key == "patchingMode":
|
11100
|
+
suggest = "patching_mode"
|
11101
|
+
elif key == "skipRus":
|
11102
|
+
suggest = "skip_rus"
|
11103
|
+
elif key == "weeksOfMonths":
|
11104
|
+
suggest = "weeks_of_months"
|
11105
|
+
|
11106
|
+
if suggest:
|
11107
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow. Access the value via the '{suggest}' property getter instead.")
|
11108
|
+
|
11109
|
+
def __getitem__(self, key: str) -> Any:
|
11110
|
+
ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow.__key_warning(key)
|
11111
|
+
return super().__getitem__(key)
|
11112
|
+
|
11113
|
+
def get(self, key: str, default = None) -> Any:
|
11114
|
+
ExadataInfrastructureConfigureExascaleManagementMaintenanceWindow.__key_warning(key)
|
11115
|
+
return super().get(key, default)
|
11116
|
+
|
11117
|
+
def __init__(__self__, *,
|
11118
|
+
custom_action_timeout_in_mins: Optional[int] = None,
|
11119
|
+
days_of_weeks: Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek']] = None,
|
11120
|
+
hours_of_days: Optional[Sequence[int]] = None,
|
11121
|
+
is_custom_action_timeout_enabled: Optional[bool] = None,
|
11122
|
+
is_monthly_patching_enabled: Optional[bool] = None,
|
11123
|
+
lead_time_in_weeks: Optional[int] = None,
|
11124
|
+
months: Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth']] = None,
|
11125
|
+
patching_mode: Optional[str] = None,
|
11126
|
+
preference: Optional[str] = None,
|
11127
|
+
skip_rus: Optional[Sequence[bool]] = None,
|
11128
|
+
weeks_of_months: Optional[Sequence[int]] = None):
|
11129
|
+
"""
|
11130
|
+
:param int custom_action_timeout_in_mins: Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
|
11131
|
+
:param Sequence['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs'] days_of_weeks: Days during the week when maintenance should be performed.
|
11132
|
+
:param Sequence[int] hours_of_days: The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
|
11133
|
+
:param bool is_custom_action_timeout_enabled: If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
11134
|
+
:param bool is_monthly_patching_enabled: If true, enables the monthly patching option.
|
11135
|
+
:param int lead_time_in_weeks: Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
|
11136
|
+
:param Sequence['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs'] months: Months during the year when maintenance should be performed.
|
11137
|
+
:param str patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
11138
|
+
:param str preference: The maintenance window scheduling preference.
|
11139
|
+
:param Sequence[bool] skip_rus: If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
|
11140
|
+
:param Sequence[int] weeks_of_months: Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
|
11141
|
+
"""
|
11142
|
+
if custom_action_timeout_in_mins is not None:
|
11143
|
+
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
11144
|
+
if days_of_weeks is not None:
|
11145
|
+
pulumi.set(__self__, "days_of_weeks", days_of_weeks)
|
11146
|
+
if hours_of_days is not None:
|
11147
|
+
pulumi.set(__self__, "hours_of_days", hours_of_days)
|
11148
|
+
if is_custom_action_timeout_enabled is not None:
|
11149
|
+
pulumi.set(__self__, "is_custom_action_timeout_enabled", is_custom_action_timeout_enabled)
|
11150
|
+
if is_monthly_patching_enabled is not None:
|
11151
|
+
pulumi.set(__self__, "is_monthly_patching_enabled", is_monthly_patching_enabled)
|
11152
|
+
if lead_time_in_weeks is not None:
|
11153
|
+
pulumi.set(__self__, "lead_time_in_weeks", lead_time_in_weeks)
|
11154
|
+
if months is not None:
|
11155
|
+
pulumi.set(__self__, "months", months)
|
11156
|
+
if patching_mode is not None:
|
11157
|
+
pulumi.set(__self__, "patching_mode", patching_mode)
|
11158
|
+
if preference is not None:
|
11159
|
+
pulumi.set(__self__, "preference", preference)
|
11160
|
+
if skip_rus is not None:
|
11161
|
+
pulumi.set(__self__, "skip_rus", skip_rus)
|
11162
|
+
if weeks_of_months is not None:
|
11163
|
+
pulumi.set(__self__, "weeks_of_months", weeks_of_months)
|
11164
|
+
|
11165
|
+
@property
|
11166
|
+
@pulumi.getter(name="customActionTimeoutInMins")
|
11167
|
+
def custom_action_timeout_in_mins(self) -> Optional[int]:
|
11168
|
+
"""
|
11169
|
+
Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
|
11170
|
+
"""
|
11171
|
+
return pulumi.get(self, "custom_action_timeout_in_mins")
|
11172
|
+
|
11173
|
+
@property
|
11174
|
+
@pulumi.getter(name="daysOfWeeks")
|
11175
|
+
def days_of_weeks(self) -> Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek']]:
|
11176
|
+
"""
|
11177
|
+
Days during the week when maintenance should be performed.
|
11178
|
+
"""
|
11179
|
+
return pulumi.get(self, "days_of_weeks")
|
11180
|
+
|
11181
|
+
@property
|
11182
|
+
@pulumi.getter(name="hoursOfDays")
|
11183
|
+
def hours_of_days(self) -> Optional[Sequence[int]]:
|
11184
|
+
"""
|
11185
|
+
The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are - 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
|
11186
|
+
"""
|
11187
|
+
return pulumi.get(self, "hours_of_days")
|
11188
|
+
|
11189
|
+
@property
|
11190
|
+
@pulumi.getter(name="isCustomActionTimeoutEnabled")
|
11191
|
+
def is_custom_action_timeout_enabled(self) -> Optional[bool]:
|
11192
|
+
"""
|
11193
|
+
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
11194
|
+
"""
|
11195
|
+
return pulumi.get(self, "is_custom_action_timeout_enabled")
|
11196
|
+
|
11197
|
+
@property
|
11198
|
+
@pulumi.getter(name="isMonthlyPatchingEnabled")
|
11199
|
+
def is_monthly_patching_enabled(self) -> Optional[bool]:
|
11200
|
+
"""
|
11201
|
+
If true, enables the monthly patching option.
|
11202
|
+
"""
|
11203
|
+
return pulumi.get(self, "is_monthly_patching_enabled")
|
11204
|
+
|
11205
|
+
@property
|
11206
|
+
@pulumi.getter(name="leadTimeInWeeks")
|
11207
|
+
def lead_time_in_weeks(self) -> Optional[int]:
|
11208
|
+
"""
|
11209
|
+
Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
|
11210
|
+
"""
|
11211
|
+
return pulumi.get(self, "lead_time_in_weeks")
|
11212
|
+
|
11213
|
+
@property
|
11214
|
+
@pulumi.getter
|
11215
|
+
def months(self) -> Optional[Sequence['outputs.ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth']]:
|
11216
|
+
"""
|
11217
|
+
Months during the year when maintenance should be performed.
|
11218
|
+
"""
|
11219
|
+
return pulumi.get(self, "months")
|
11220
|
+
|
11221
|
+
@property
|
11222
|
+
@pulumi.getter(name="patchingMode")
|
11223
|
+
def patching_mode(self) -> Optional[str]:
|
11224
|
+
"""
|
11225
|
+
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
11226
|
+
"""
|
11227
|
+
return pulumi.get(self, "patching_mode")
|
11228
|
+
|
11229
|
+
@property
|
11230
|
+
@pulumi.getter
|
11231
|
+
def preference(self) -> Optional[str]:
|
11232
|
+
"""
|
11233
|
+
The maintenance window scheduling preference.
|
11234
|
+
"""
|
11235
|
+
return pulumi.get(self, "preference")
|
11236
|
+
|
11237
|
+
@property
|
11238
|
+
@pulumi.getter(name="skipRus")
|
11239
|
+
def skip_rus(self) -> Optional[Sequence[bool]]:
|
11240
|
+
"""
|
11241
|
+
If true, skips the release update (RU) for the quarter. You cannot skip two consecutive quarters. An RU skip request will only be honoured if the current version of the Autonomous Container Database is supported for current quarter.
|
11242
|
+
"""
|
11243
|
+
return pulumi.get(self, "skip_rus")
|
11244
|
+
|
11245
|
+
@property
|
11246
|
+
@pulumi.getter(name="weeksOfMonths")
|
11247
|
+
def weeks_of_months(self) -> Optional[Sequence[int]]:
|
11248
|
+
"""
|
11249
|
+
Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
|
11250
|
+
"""
|
11251
|
+
return pulumi.get(self, "weeks_of_months")
|
11252
|
+
|
11253
|
+
|
11254
|
+
@pulumi.output_type
|
11255
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeek(dict):
|
11256
|
+
def __init__(__self__, *,
|
11257
|
+
name: Optional[str] = None):
|
11258
|
+
"""
|
11259
|
+
:param str name: Name of the month of the year.
|
11260
|
+
"""
|
11261
|
+
if name is not None:
|
11262
|
+
pulumi.set(__self__, "name", name)
|
11263
|
+
|
11264
|
+
@property
|
11265
|
+
@pulumi.getter
|
11266
|
+
def name(self) -> Optional[str]:
|
11267
|
+
"""
|
11268
|
+
Name of the month of the year.
|
11269
|
+
"""
|
11270
|
+
return pulumi.get(self, "name")
|
11271
|
+
|
11272
|
+
|
11273
|
+
@pulumi.output_type
|
11274
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonth(dict):
|
11275
|
+
def __init__(__self__, *,
|
11276
|
+
name: Optional[str] = None):
|
11277
|
+
"""
|
11278
|
+
:param str name: Name of the month of the year.
|
11279
|
+
"""
|
11280
|
+
if name is not None:
|
11281
|
+
pulumi.set(__self__, "name", name)
|
11282
|
+
|
11283
|
+
@property
|
11284
|
+
@pulumi.getter
|
11285
|
+
def name(self) -> Optional[str]:
|
11286
|
+
"""
|
11287
|
+
Name of the month of the year.
|
11288
|
+
"""
|
11289
|
+
return pulumi.get(self, "name")
|
11290
|
+
|
11291
|
+
|
11292
|
+
@pulumi.output_type
|
11293
|
+
class ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail(dict):
|
11294
|
+
@staticmethod
|
11295
|
+
def __key_warning(key: str):
|
11296
|
+
suggest = None
|
11297
|
+
if key == "backupNetworkBondingMode":
|
11298
|
+
suggest = "backup_network_bonding_mode"
|
11299
|
+
elif key == "clientNetworkBondingMode":
|
11300
|
+
suggest = "client_network_bonding_mode"
|
11301
|
+
elif key == "drNetworkBondingMode":
|
11302
|
+
suggest = "dr_network_bonding_mode"
|
11303
|
+
|
11304
|
+
if suggest:
|
11305
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail. Access the value via the '{suggest}' property getter instead.")
|
11306
|
+
|
11307
|
+
def __getitem__(self, key: str) -> Any:
|
11308
|
+
ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail.__key_warning(key)
|
11309
|
+
return super().__getitem__(key)
|
11310
|
+
|
11311
|
+
def get(self, key: str, default = None) -> Any:
|
11312
|
+
ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetail.__key_warning(key)
|
11313
|
+
return super().get(key, default)
|
11314
|
+
|
11315
|
+
def __init__(__self__, *,
|
11316
|
+
backup_network_bonding_mode: Optional[str] = None,
|
11317
|
+
client_network_bonding_mode: Optional[str] = None,
|
11318
|
+
dr_network_bonding_mode: Optional[str] = None):
|
11319
|
+
"""
|
11320
|
+
:param str backup_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
|
11321
|
+
:param str client_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
|
11322
|
+
:param str dr_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
|
11323
|
+
"""
|
11324
|
+
if backup_network_bonding_mode is not None:
|
11325
|
+
pulumi.set(__self__, "backup_network_bonding_mode", backup_network_bonding_mode)
|
11326
|
+
if client_network_bonding_mode is not None:
|
11327
|
+
pulumi.set(__self__, "client_network_bonding_mode", client_network_bonding_mode)
|
11328
|
+
if dr_network_bonding_mode is not None:
|
11329
|
+
pulumi.set(__self__, "dr_network_bonding_mode", dr_network_bonding_mode)
|
11330
|
+
|
11331
|
+
@property
|
11332
|
+
@pulumi.getter(name="backupNetworkBondingMode")
|
11333
|
+
def backup_network_bonding_mode(self) -> Optional[str]:
|
11334
|
+
"""
|
11335
|
+
The network bonding mode for the Exadata infrastructure.
|
11336
|
+
"""
|
11337
|
+
return pulumi.get(self, "backup_network_bonding_mode")
|
11338
|
+
|
11339
|
+
@property
|
11340
|
+
@pulumi.getter(name="clientNetworkBondingMode")
|
11341
|
+
def client_network_bonding_mode(self) -> Optional[str]:
|
11342
|
+
"""
|
11343
|
+
The network bonding mode for the Exadata infrastructure.
|
11344
|
+
"""
|
11345
|
+
return pulumi.get(self, "client_network_bonding_mode")
|
11346
|
+
|
11347
|
+
@property
|
11348
|
+
@pulumi.getter(name="drNetworkBondingMode")
|
11349
|
+
def dr_network_bonding_mode(self) -> Optional[str]:
|
11350
|
+
"""
|
11351
|
+
The network bonding mode for the Exadata infrastructure.
|
11352
|
+
"""
|
11353
|
+
return pulumi.get(self, "dr_network_bonding_mode")
|
11354
|
+
|
11355
|
+
|
10848
11356
|
@pulumi.output_type
|
10849
11357
|
class ExadataInfrastructureContact(dict):
|
10850
11358
|
@staticmethod
|
@@ -11008,6 +11516,56 @@ class ExadataInfrastructureDefinedFileSystemConfiguration(dict):
|
|
11008
11516
|
return pulumi.get(self, "mount_point")
|
11009
11517
|
|
11010
11518
|
|
11519
|
+
@pulumi.output_type
|
11520
|
+
class ExadataInfrastructureExascaleConfig(dict):
|
11521
|
+
@staticmethod
|
11522
|
+
def __key_warning(key: str):
|
11523
|
+
suggest = None
|
11524
|
+
if key == "availableStorageInGbs":
|
11525
|
+
suggest = "available_storage_in_gbs"
|
11526
|
+
elif key == "totalStorageInGbs":
|
11527
|
+
suggest = "total_storage_in_gbs"
|
11528
|
+
|
11529
|
+
if suggest:
|
11530
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureExascaleConfig. Access the value via the '{suggest}' property getter instead.")
|
11531
|
+
|
11532
|
+
def __getitem__(self, key: str) -> Any:
|
11533
|
+
ExadataInfrastructureExascaleConfig.__key_warning(key)
|
11534
|
+
return super().__getitem__(key)
|
11535
|
+
|
11536
|
+
def get(self, key: str, default = None) -> Any:
|
11537
|
+
ExadataInfrastructureExascaleConfig.__key_warning(key)
|
11538
|
+
return super().get(key, default)
|
11539
|
+
|
11540
|
+
def __init__(__self__, *,
|
11541
|
+
available_storage_in_gbs: Optional[int] = None,
|
11542
|
+
total_storage_in_gbs: Optional[int] = None):
|
11543
|
+
"""
|
11544
|
+
:param int available_storage_in_gbs: Available storage size for Exascale in GBs.
|
11545
|
+
:param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
11546
|
+
"""
|
11547
|
+
if available_storage_in_gbs is not None:
|
11548
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
11549
|
+
if total_storage_in_gbs is not None:
|
11550
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
11551
|
+
|
11552
|
+
@property
|
11553
|
+
@pulumi.getter(name="availableStorageInGbs")
|
11554
|
+
def available_storage_in_gbs(self) -> Optional[int]:
|
11555
|
+
"""
|
11556
|
+
Available storage size for Exascale in GBs.
|
11557
|
+
"""
|
11558
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
11559
|
+
|
11560
|
+
@property
|
11561
|
+
@pulumi.getter(name="totalStorageInGbs")
|
11562
|
+
def total_storage_in_gbs(self) -> Optional[int]:
|
11563
|
+
"""
|
11564
|
+
Storage size needed for Exascale in GBs.
|
11565
|
+
"""
|
11566
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
11567
|
+
|
11568
|
+
|
11011
11569
|
@pulumi.output_type
|
11012
11570
|
class ExadataInfrastructureMaintenanceWindow(dict):
|
11013
11571
|
@staticmethod
|
@@ -15267,6 +15825,7 @@ class GetApplicationVipsApplicationVipResult(dict):
|
|
15267
15825
|
hostname_label: str,
|
15268
15826
|
id: str,
|
15269
15827
|
ip_address: str,
|
15828
|
+
ipv6address: str,
|
15270
15829
|
lifecycle_details: str,
|
15271
15830
|
state: str,
|
15272
15831
|
subnet_id: str,
|
@@ -15278,7 +15837,8 @@ class GetApplicationVipsApplicationVipResult(dict):
|
|
15278
15837
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
15279
15838
|
:param str hostname_label: The hostname of the application virtual IP (VIP) address.
|
15280
15839
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the application virtual IP (VIP) address.
|
15281
|
-
:param str ip_address: The application virtual IP (VIP) address.
|
15840
|
+
:param str ip_address: The application virtual IP (VIP) IPv4 address.
|
15841
|
+
:param str ipv6address: The application virtual IP (VIP) IPv6 address.
|
15282
15842
|
:param str lifecycle_details: Additional information about the current lifecycle state of the application virtual IP (VIP) address.
|
15283
15843
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
15284
15844
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the application virtual IP (VIP) address.
|
@@ -15292,6 +15852,7 @@ class GetApplicationVipsApplicationVipResult(dict):
|
|
15292
15852
|
pulumi.set(__self__, "hostname_label", hostname_label)
|
15293
15853
|
pulumi.set(__self__, "id", id)
|
15294
15854
|
pulumi.set(__self__, "ip_address", ip_address)
|
15855
|
+
pulumi.set(__self__, "ipv6address", ipv6address)
|
15295
15856
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
15296
15857
|
pulumi.set(__self__, "state", state)
|
15297
15858
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
@@ -15354,10 +15915,18 @@ class GetApplicationVipsApplicationVipResult(dict):
|
|
15354
15915
|
@pulumi.getter(name="ipAddress")
|
15355
15916
|
def ip_address(self) -> str:
|
15356
15917
|
"""
|
15357
|
-
The application virtual IP (VIP) address.
|
15918
|
+
The application virtual IP (VIP) IPv4 address.
|
15358
15919
|
"""
|
15359
15920
|
return pulumi.get(self, "ip_address")
|
15360
15921
|
|
15922
|
+
@property
|
15923
|
+
@pulumi.getter
|
15924
|
+
def ipv6address(self) -> str:
|
15925
|
+
"""
|
15926
|
+
The application virtual IP (VIP) IPv6 address.
|
15927
|
+
"""
|
15928
|
+
return pulumi.get(self, "ipv6address")
|
15929
|
+
|
15361
15930
|
@property
|
15362
15931
|
@pulumi.getter(name="lifecycleDetails")
|
15363
15932
|
def lifecycle_details(self) -> str:
|
@@ -20882,9 +21451,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
20882
21451
|
:param int backup_retention_period_in_days: Retention period, in days, for backups.
|
20883
21452
|
:param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
20884
21453
|
: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
|
20888
21454
|
: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.
|
20889
21455
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
20890
21456
|
:param float compute_count: Compute used by database tools.
|
@@ -21283,9 +21849,6 @@ class GetAutonomousDatabasesAutonomousDatabaseResult(dict):
|
|
21283
21849
|
def clone_table_space_lists(self) -> Sequence[int]:
|
21284
21850
|
"""
|
21285
21851
|
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
21852
|
"""
|
21290
21853
|
return pulumi.get(self, "clone_table_space_lists")
|
21291
21854
|
|
@@ -23729,9 +24292,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
23729
24292
|
:param int backup_retention_period_in_days: Retention period, in days, for backups.
|
23730
24293
|
:param str character_set: The character set for the autonomous database. The default is AL32UTF8. Allowed values are:
|
23731
24294
|
: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
|
23735
24295
|
: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.
|
23736
24296
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
23737
24297
|
:param float compute_count: Compute used by database tools.
|
@@ -24087,9 +24647,6 @@ class GetAutonomousDatabasesClonesAutonomousDatabaseResult(dict):
|
|
24087
24647
|
def clone_table_space_lists(self) -> Sequence[int]:
|
24088
24648
|
"""
|
24089
24649
|
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
24650
|
"""
|
24094
24651
|
return pulumi.get(self, "clone_table_space_lists")
|
24095
24652
|
|
@@ -29782,6 +30339,7 @@ class GetBackupDestinationsFilterResult(dict):
|
|
29782
30339
|
class GetBackupsBackupResult(dict):
|
29783
30340
|
def __init__(__self__, *,
|
29784
30341
|
availability_domain: str,
|
30342
|
+
backup_destination_type: str,
|
29785
30343
|
compartment_id: str,
|
29786
30344
|
database_edition: str,
|
29787
30345
|
database_id: str,
|
@@ -29789,41 +30347,53 @@ class GetBackupsBackupResult(dict):
|
|
29789
30347
|
display_name: str,
|
29790
30348
|
encryption_key_location_details: Sequence['outputs.GetBackupsBackupEncryptionKeyLocationDetailResult'],
|
29791
30349
|
id: str,
|
30350
|
+
is_using_oracle_managed_keys: bool,
|
29792
30351
|
key_store_id: str,
|
29793
30352
|
key_store_wallet_name: str,
|
29794
30353
|
kms_key_id: str,
|
29795
30354
|
kms_key_version_id: str,
|
29796
30355
|
lifecycle_details: str,
|
30356
|
+
retention_period_in_days: int,
|
30357
|
+
retention_period_in_years: int,
|
30358
|
+
secondary_kms_key_ids: Sequence[str],
|
29797
30359
|
shape: str,
|
29798
30360
|
state: str,
|
29799
30361
|
time_ended: str,
|
30362
|
+
time_expiry_scheduled: str,
|
29800
30363
|
time_started: str,
|
29801
30364
|
type: str,
|
29802
30365
|
vault_id: str,
|
29803
30366
|
version: str):
|
29804
30367
|
"""
|
29805
30368
|
:param str availability_domain: The name of the availability domain where the database backup is stored.
|
30369
|
+
:param str backup_destination_type: A filter to return only resources that match the given backup destination type.
|
29806
30370
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
29807
|
-
:param str database_edition: The Oracle Database
|
30371
|
+
:param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
29808
30372
|
:param str database_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database.
|
29809
30373
|
:param float database_size_in_gbs: The size of the database in gigabytes at the time the backup was taken.
|
29810
30374
|
:param str display_name: The user-friendly name for the backup. The name does not have to be unique.
|
29811
30375
|
:param Sequence['GetBackupsBackupEncryptionKeyLocationDetailArgs'] encryption_key_location_details: Types of providers supported for managing database encryption keys
|
29812
30376
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup.
|
30377
|
+
:param bool is_using_oracle_managed_keys: True if Oracle Managed Keys is required for restore of the backup.
|
29813
30378
|
:param str key_store_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the key store of Oracle Vault.
|
29814
30379
|
:param str key_store_wallet_name: The wallet name for Oracle Key Vault.
|
29815
30380
|
:param str kms_key_id: The OCID of the key container that is used as the master encryption key in database transparent data encryption (TDE) operations.
|
29816
30381
|
:param str kms_key_version_id: The OCID of the key container version that is used in database transparent data encryption (TDE) operations KMS Key can have multiple key versions. If none is specified, the current key version (latest) of the Key Id is used for the operation. Autonomous Database Serverless does not use key versions, hence is not applicable for Autonomous Database Serverless instances.
|
29817
30382
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
30383
|
+
:param int retention_period_in_days: The retention period of the long term backup in days.
|
30384
|
+
:param int retention_period_in_years: The retention period of the long term backup in years.
|
30385
|
+
:param Sequence[str] secondary_kms_key_ids: List of OCIDs of the key containers used as the secondary encryption key in database transparent data encryption (TDE) operations.
|
29818
30386
|
:param str shape: Shape of the backup's source database.
|
29819
|
-
:param str state:
|
30387
|
+
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
29820
30388
|
:param str time_ended: The date and time the backup was completed.
|
30389
|
+
:param str time_expiry_scheduled: Expiration time of the long term database backup.
|
29821
30390
|
:param str time_started: The date and time the backup started.
|
29822
|
-
:param str type:
|
30391
|
+
:param str type: A filter to return only backups that matches with the given type of Backup.
|
29823
30392
|
:param str vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle Cloud Infrastructure [vault](https://docs.cloud.oracle.com/iaas/Content/KeyManagement/Concepts/keyoverview.htm#concepts). This parameter and `secretId` are required for Customer Managed Keys.
|
29824
|
-
:param str version:
|
30393
|
+
:param str version: A filter to return only resources that match the given database version.
|
29825
30394
|
"""
|
29826
30395
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
30396
|
+
pulumi.set(__self__, "backup_destination_type", backup_destination_type)
|
29827
30397
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
29828
30398
|
pulumi.set(__self__, "database_edition", database_edition)
|
29829
30399
|
pulumi.set(__self__, "database_id", database_id)
|
@@ -29831,14 +30401,19 @@ class GetBackupsBackupResult(dict):
|
|
29831
30401
|
pulumi.set(__self__, "display_name", display_name)
|
29832
30402
|
pulumi.set(__self__, "encryption_key_location_details", encryption_key_location_details)
|
29833
30403
|
pulumi.set(__self__, "id", id)
|
30404
|
+
pulumi.set(__self__, "is_using_oracle_managed_keys", is_using_oracle_managed_keys)
|
29834
30405
|
pulumi.set(__self__, "key_store_id", key_store_id)
|
29835
30406
|
pulumi.set(__self__, "key_store_wallet_name", key_store_wallet_name)
|
29836
30407
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
29837
30408
|
pulumi.set(__self__, "kms_key_version_id", kms_key_version_id)
|
29838
30409
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
30410
|
+
pulumi.set(__self__, "retention_period_in_days", retention_period_in_days)
|
30411
|
+
pulumi.set(__self__, "retention_period_in_years", retention_period_in_years)
|
30412
|
+
pulumi.set(__self__, "secondary_kms_key_ids", secondary_kms_key_ids)
|
29839
30413
|
pulumi.set(__self__, "shape", shape)
|
29840
30414
|
pulumi.set(__self__, "state", state)
|
29841
30415
|
pulumi.set(__self__, "time_ended", time_ended)
|
30416
|
+
pulumi.set(__self__, "time_expiry_scheduled", time_expiry_scheduled)
|
29842
30417
|
pulumi.set(__self__, "time_started", time_started)
|
29843
30418
|
pulumi.set(__self__, "type", type)
|
29844
30419
|
pulumi.set(__self__, "vault_id", vault_id)
|
@@ -29852,6 +30427,14 @@ class GetBackupsBackupResult(dict):
|
|
29852
30427
|
"""
|
29853
30428
|
return pulumi.get(self, "availability_domain")
|
29854
30429
|
|
30430
|
+
@property
|
30431
|
+
@pulumi.getter(name="backupDestinationType")
|
30432
|
+
def backup_destination_type(self) -> str:
|
30433
|
+
"""
|
30434
|
+
A filter to return only resources that match the given backup destination type.
|
30435
|
+
"""
|
30436
|
+
return pulumi.get(self, "backup_destination_type")
|
30437
|
+
|
29855
30438
|
@property
|
29856
30439
|
@pulumi.getter(name="compartmentId")
|
29857
30440
|
def compartment_id(self) -> str:
|
@@ -29864,7 +30447,7 @@ class GetBackupsBackupResult(dict):
|
|
29864
30447
|
@pulumi.getter(name="databaseEdition")
|
29865
30448
|
def database_edition(self) -> str:
|
29866
30449
|
"""
|
29867
|
-
The Oracle Database
|
30450
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
29868
30451
|
"""
|
29869
30452
|
return pulumi.get(self, "database_edition")
|
29870
30453
|
|
@@ -29908,6 +30491,14 @@ class GetBackupsBackupResult(dict):
|
|
29908
30491
|
"""
|
29909
30492
|
return pulumi.get(self, "id")
|
29910
30493
|
|
30494
|
+
@property
|
30495
|
+
@pulumi.getter(name="isUsingOracleManagedKeys")
|
30496
|
+
def is_using_oracle_managed_keys(self) -> bool:
|
30497
|
+
"""
|
30498
|
+
True if Oracle Managed Keys is required for restore of the backup.
|
30499
|
+
"""
|
30500
|
+
return pulumi.get(self, "is_using_oracle_managed_keys")
|
30501
|
+
|
29911
30502
|
@property
|
29912
30503
|
@pulumi.getter(name="keyStoreId")
|
29913
30504
|
def key_store_id(self) -> str:
|
@@ -29948,6 +30539,30 @@ class GetBackupsBackupResult(dict):
|
|
29948
30539
|
"""
|
29949
30540
|
return pulumi.get(self, "lifecycle_details")
|
29950
30541
|
|
30542
|
+
@property
|
30543
|
+
@pulumi.getter(name="retentionPeriodInDays")
|
30544
|
+
def retention_period_in_days(self) -> int:
|
30545
|
+
"""
|
30546
|
+
The retention period of the long term backup in days.
|
30547
|
+
"""
|
30548
|
+
return pulumi.get(self, "retention_period_in_days")
|
30549
|
+
|
30550
|
+
@property
|
30551
|
+
@pulumi.getter(name="retentionPeriodInYears")
|
30552
|
+
def retention_period_in_years(self) -> int:
|
30553
|
+
"""
|
30554
|
+
The retention period of the long term backup in years.
|
30555
|
+
"""
|
30556
|
+
return pulumi.get(self, "retention_period_in_years")
|
30557
|
+
|
30558
|
+
@property
|
30559
|
+
@pulumi.getter(name="secondaryKmsKeyIds")
|
30560
|
+
def secondary_kms_key_ids(self) -> Sequence[str]:
|
30561
|
+
"""
|
30562
|
+
List of OCIDs of the key containers used as the secondary encryption key in database transparent data encryption (TDE) operations.
|
30563
|
+
"""
|
30564
|
+
return pulumi.get(self, "secondary_kms_key_ids")
|
30565
|
+
|
29951
30566
|
@property
|
29952
30567
|
@pulumi.getter
|
29953
30568
|
def shape(self) -> str:
|
@@ -29960,7 +30575,7 @@ class GetBackupsBackupResult(dict):
|
|
29960
30575
|
@pulumi.getter
|
29961
30576
|
def state(self) -> str:
|
29962
30577
|
"""
|
29963
|
-
|
30578
|
+
A filter to return only resources that match the given lifecycle state exactly.
|
29964
30579
|
"""
|
29965
30580
|
return pulumi.get(self, "state")
|
29966
30581
|
|
@@ -29972,6 +30587,14 @@ class GetBackupsBackupResult(dict):
|
|
29972
30587
|
"""
|
29973
30588
|
return pulumi.get(self, "time_ended")
|
29974
30589
|
|
30590
|
+
@property
|
30591
|
+
@pulumi.getter(name="timeExpiryScheduled")
|
30592
|
+
def time_expiry_scheduled(self) -> str:
|
30593
|
+
"""
|
30594
|
+
Expiration time of the long term database backup.
|
30595
|
+
"""
|
30596
|
+
return pulumi.get(self, "time_expiry_scheduled")
|
30597
|
+
|
29975
30598
|
@property
|
29976
30599
|
@pulumi.getter(name="timeStarted")
|
29977
30600
|
def time_started(self) -> str:
|
@@ -29984,7 +30607,7 @@ class GetBackupsBackupResult(dict):
|
|
29984
30607
|
@pulumi.getter
|
29985
30608
|
def type(self) -> str:
|
29986
30609
|
"""
|
29987
|
-
|
30610
|
+
A filter to return only backups that matches with the given type of Backup.
|
29988
30611
|
"""
|
29989
30612
|
return pulumi.get(self, "type")
|
29990
30613
|
|
@@ -30000,7 +30623,7 @@ class GetBackupsBackupResult(dict):
|
|
30000
30623
|
@pulumi.getter
|
30001
30624
|
def version(self) -> str:
|
30002
30625
|
"""
|
30003
|
-
|
30626
|
+
A filter to return only resources that match the given database version.
|
30004
30627
|
"""
|
30005
30628
|
return pulumi.get(self, "version")
|
30006
30629
|
|
@@ -32104,9 +32727,11 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32104
32727
|
cluster_placement_group_id: str,
|
32105
32728
|
compartment_id: str,
|
32106
32729
|
compute_count: int,
|
32730
|
+
compute_model: str,
|
32107
32731
|
cpu_count: int,
|
32108
32732
|
customer_contacts: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactResult'],
|
32109
32733
|
data_storage_size_in_tbs: float,
|
32734
|
+
database_server_type: str,
|
32110
32735
|
db_node_storage_size_in_gbs: int,
|
32111
32736
|
db_server_version: str,
|
32112
32737
|
defined_file_system_configurations: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult'],
|
@@ -32129,6 +32754,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32129
32754
|
shape: str,
|
32130
32755
|
state: str,
|
32131
32756
|
storage_count: int,
|
32757
|
+
storage_server_type: str,
|
32132
32758
|
storage_server_version: str,
|
32133
32759
|
subscription_id: str,
|
32134
32760
|
system_tags: Mapping[str, str],
|
@@ -32142,9 +32768,11 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32142
32768
|
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
32143
32769
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
32144
32770
|
:param int compute_count: The number of compute servers for the cloud Exadata infrastructure.
|
32771
|
+
:param str compute_model: The compute model of the Exadata infrastructure.
|
32145
32772
|
:param int cpu_count: The total number of CPU cores allocated.
|
32146
32773
|
:param Sequence['GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactArgs'] customer_contacts: The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure Database service resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a cloud Exadata infrastructure instance.
|
32147
32774
|
:param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
32775
|
+
:param str database_server_type: The database server type of the Exadata infrastructure.
|
32148
32776
|
:param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
32149
32777
|
:param str db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
32150
32778
|
:param Sequence['GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
@@ -32167,6 +32795,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32167
32795
|
:param str shape: The model name of the cloud Exadata infrastructure resource.
|
32168
32796
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
32169
32797
|
:param int storage_count: The number of storage servers for the cloud Exadata infrastructure.
|
32798
|
+
:param str storage_server_type: The storage server type of the Exadata infrastructure.
|
32170
32799
|
:param str storage_server_version: The software version of the storage servers (cells) in the cloud Exadata infrastructure. Example: 20.1.15
|
32171
32800
|
:param str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
32172
32801
|
:param Mapping[str, str] system_tags: System tags 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).
|
@@ -32180,9 +32809,11 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32180
32809
|
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
32181
32810
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
32182
32811
|
pulumi.set(__self__, "compute_count", compute_count)
|
32812
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
32183
32813
|
pulumi.set(__self__, "cpu_count", cpu_count)
|
32184
32814
|
pulumi.set(__self__, "customer_contacts", customer_contacts)
|
32185
32815
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
32816
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
32186
32817
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
32187
32818
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
32188
32819
|
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
@@ -32205,6 +32836,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32205
32836
|
pulumi.set(__self__, "shape", shape)
|
32206
32837
|
pulumi.set(__self__, "state", state)
|
32207
32838
|
pulumi.set(__self__, "storage_count", storage_count)
|
32839
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
32208
32840
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
32209
32841
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
32210
32842
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -32267,6 +32899,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32267
32899
|
"""
|
32268
32900
|
return pulumi.get(self, "compute_count")
|
32269
32901
|
|
32902
|
+
@property
|
32903
|
+
@pulumi.getter(name="computeModel")
|
32904
|
+
def compute_model(self) -> str:
|
32905
|
+
"""
|
32906
|
+
The compute model of the Exadata infrastructure.
|
32907
|
+
"""
|
32908
|
+
return pulumi.get(self, "compute_model")
|
32909
|
+
|
32270
32910
|
@property
|
32271
32911
|
@pulumi.getter(name="cpuCount")
|
32272
32912
|
def cpu_count(self) -> int:
|
@@ -32291,6 +32931,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32291
32931
|
"""
|
32292
32932
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
32293
32933
|
|
32934
|
+
@property
|
32935
|
+
@pulumi.getter(name="databaseServerType")
|
32936
|
+
def database_server_type(self) -> str:
|
32937
|
+
"""
|
32938
|
+
The database server type of the Exadata infrastructure.
|
32939
|
+
"""
|
32940
|
+
return pulumi.get(self, "database_server_type")
|
32941
|
+
|
32294
32942
|
@property
|
32295
32943
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
32296
32944
|
def db_node_storage_size_in_gbs(self) -> int:
|
@@ -32467,6 +33115,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
32467
33115
|
"""
|
32468
33116
|
return pulumi.get(self, "storage_count")
|
32469
33117
|
|
33118
|
+
@property
|
33119
|
+
@pulumi.getter(name="storageServerType")
|
33120
|
+
def storage_server_type(self) -> str:
|
33121
|
+
"""
|
33122
|
+
The storage server type of the Exadata infrastructure.
|
33123
|
+
"""
|
33124
|
+
return pulumi.get(self, "storage_server_type")
|
33125
|
+
|
32470
33126
|
@property
|
32471
33127
|
@pulumi.getter(name="storageServerVersion")
|
32472
33128
|
def storage_server_version(self) -> str:
|
@@ -33091,6 +33747,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33091
33747
|
cloud_exadata_infrastructure_id: str,
|
33092
33748
|
cluster_name: str,
|
33093
33749
|
compartment_id: str,
|
33750
|
+
compute_model: str,
|
33094
33751
|
cpu_core_count: int,
|
33095
33752
|
create_async: bool,
|
33096
33753
|
data_collection_options: Sequence['outputs.GetCloudVmClustersCloudVmClusterDataCollectionOptionResult'],
|
@@ -33122,6 +33779,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33122
33779
|
scan_dns_name: str,
|
33123
33780
|
scan_dns_record_id: str,
|
33124
33781
|
scan_ip_ids: Sequence[str],
|
33782
|
+
scan_ipv6ids: Sequence[str],
|
33125
33783
|
scan_listener_port_tcp: int,
|
33126
33784
|
scan_listener_port_tcp_ssl: int,
|
33127
33785
|
security_attributes: Mapping[str, str],
|
@@ -33136,6 +33794,8 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33136
33794
|
time_created: str,
|
33137
33795
|
time_zone: str,
|
33138
33796
|
vip_ids: Sequence[str],
|
33797
|
+
vipv6ids: Sequence[str],
|
33798
|
+
vm_cluster_type: str,
|
33139
33799
|
zone_id: str):
|
33140
33800
|
"""
|
33141
33801
|
:param str availability_domain: The name of the availability domain that the cloud Exadata infrastructure resource is located in.
|
@@ -33145,6 +33805,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33145
33805
|
:param str cloud_exadata_infrastructure_id: If provided, filters the results for the specified cloud Exadata infrastructure.
|
33146
33806
|
:param str cluster_name: The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
33147
33807
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
33808
|
+
:param str compute_model: The compute model of the cloud VM cluster.
|
33148
33809
|
:param int cpu_core_count: The number of CPU cores enabled on the cloud VM cluster.
|
33149
33810
|
:param Sequence['GetCloudVmClustersCloudVmClusterDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
33150
33811
|
:param int data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See [Storage Configuration](https://docs.cloud.oracle.com/iaas/Content/Database/Concepts/exaoverview.htm#Exadata) in the Exadata documentation for details on the impact of the configuration settings on storage.
|
@@ -33173,7 +33834,8 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33173
33834
|
:param float ocpu_count: The number of OCPU cores to enable on the cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
|
33174
33835
|
:param str scan_dns_name: The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
|
33175
33836
|
: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 cloud VM cluster.
|
33176
|
-
: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)
|
33837
|
+
: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 cloud VM cluster. 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.
|
33838
|
+
: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 cloud VM cluster. 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.
|
33177
33839
|
:param int scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
33178
33840
|
:param int scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
33179
33841
|
: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"}}}`
|
@@ -33187,7 +33849,9 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33187
33849
|
:param str system_version: Operating system version of the image.
|
33188
33850
|
:param str time_created: The date and time that the cloud VM cluster was created.
|
33189
33851
|
:param str time_zone: The time zone of the cloud VM cluster. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
33190
|
-
:param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
33852
|
+
:param Sequence[str] vip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
33853
|
+
:param Sequence[str] vipv6ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
33854
|
+
:param str vm_cluster_type: A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
|
33191
33855
|
:param str zone_id: The OCID of the zone the cloud VM cluster is associated with.
|
33192
33856
|
"""
|
33193
33857
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
@@ -33197,6 +33861,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33197
33861
|
pulumi.set(__self__, "cloud_exadata_infrastructure_id", cloud_exadata_infrastructure_id)
|
33198
33862
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
33199
33863
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
33864
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
33200
33865
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
33201
33866
|
pulumi.set(__self__, "create_async", create_async)
|
33202
33867
|
pulumi.set(__self__, "data_collection_options", data_collection_options)
|
@@ -33228,6 +33893,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33228
33893
|
pulumi.set(__self__, "scan_dns_name", scan_dns_name)
|
33229
33894
|
pulumi.set(__self__, "scan_dns_record_id", scan_dns_record_id)
|
33230
33895
|
pulumi.set(__self__, "scan_ip_ids", scan_ip_ids)
|
33896
|
+
pulumi.set(__self__, "scan_ipv6ids", scan_ipv6ids)
|
33231
33897
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
33232
33898
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
33233
33899
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
@@ -33242,6 +33908,8 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33242
33908
|
pulumi.set(__self__, "time_created", time_created)
|
33243
33909
|
pulumi.set(__self__, "time_zone", time_zone)
|
33244
33910
|
pulumi.set(__self__, "vip_ids", vip_ids)
|
33911
|
+
pulumi.set(__self__, "vipv6ids", vipv6ids)
|
33912
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
33245
33913
|
pulumi.set(__self__, "zone_id", zone_id)
|
33246
33914
|
|
33247
33915
|
@property
|
@@ -33300,6 +33968,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33300
33968
|
"""
|
33301
33969
|
return pulumi.get(self, "compartment_id")
|
33302
33970
|
|
33971
|
+
@property
|
33972
|
+
@pulumi.getter(name="computeModel")
|
33973
|
+
def compute_model(self) -> str:
|
33974
|
+
"""
|
33975
|
+
The compute model of the cloud VM cluster.
|
33976
|
+
"""
|
33977
|
+
return pulumi.get(self, "compute_model")
|
33978
|
+
|
33303
33979
|
@property
|
33304
33980
|
@pulumi.getter(name="cpuCoreCount")
|
33305
33981
|
def cpu_core_count(self) -> int:
|
@@ -33536,10 +34212,18 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33536
34212
|
@pulumi.getter(name="scanIpIds")
|
33537
34213
|
def scan_ip_ids(self) -> Sequence[str]:
|
33538
34214
|
"""
|
33539
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN)
|
34215
|
+
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 cloud VM cluster. 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.
|
33540
34216
|
"""
|
33541
34217
|
return pulumi.get(self, "scan_ip_ids")
|
33542
34218
|
|
34219
|
+
@property
|
34220
|
+
@pulumi.getter(name="scanIpv6ids")
|
34221
|
+
def scan_ipv6ids(self) -> Sequence[str]:
|
34222
|
+
"""
|
34223
|
+
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 cloud VM cluster. 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.
|
34224
|
+
"""
|
34225
|
+
return pulumi.get(self, "scan_ipv6ids")
|
34226
|
+
|
33543
34227
|
@property
|
33544
34228
|
@pulumi.getter(name="scanListenerPortTcp")
|
33545
34229
|
def scan_listener_port_tcp(self) -> int:
|
@@ -33648,10 +34332,26 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
33648
34332
|
@pulumi.getter(name="vipIds")
|
33649
34333
|
def vip_ids(self) -> Sequence[str]:
|
33650
34334
|
"""
|
33651
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
34335
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv4 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv4 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
33652
34336
|
"""
|
33653
34337
|
return pulumi.get(self, "vip_ids")
|
33654
34338
|
|
34339
|
+
@property
|
34340
|
+
@pulumi.getter
|
34341
|
+
def vipv6ids(self) -> Sequence[str]:
|
34342
|
+
"""
|
34343
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the virtual IP (VIP) IPv6 addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP IPv6 address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
|
34344
|
+
"""
|
34345
|
+
return pulumi.get(self, "vipv6ids")
|
34346
|
+
|
34347
|
+
@property
|
34348
|
+
@pulumi.getter(name="vmClusterType")
|
34349
|
+
def vm_cluster_type(self) -> str:
|
34350
|
+
"""
|
34351
|
+
A filter to return only cloud vmclusters that match the given cloud vmcluster type exactly.
|
34352
|
+
"""
|
34353
|
+
return pulumi.get(self, "vm_cluster_type")
|
34354
|
+
|
33655
34355
|
@property
|
33656
34356
|
@pulumi.getter(name="zoneId")
|
33657
34357
|
def zone_id(self) -> str:
|
@@ -40798,6 +41498,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
40798
41498
|
def __init__(__self__, *,
|
40799
41499
|
additional_details: str,
|
40800
41500
|
backup_ip_id: str,
|
41501
|
+
backup_ipv6id: str,
|
40801
41502
|
backup_vnic2id: str,
|
40802
41503
|
backup_vnic_id: str,
|
40803
41504
|
cpu_core_count: int,
|
@@ -40809,6 +41510,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
40809
41510
|
fault_domain: str,
|
40810
41511
|
freeform_tags: Mapping[str, str],
|
40811
41512
|
host_ip_id: str,
|
41513
|
+
host_ipv6id: str,
|
40812
41514
|
hostname: str,
|
40813
41515
|
id: str,
|
40814
41516
|
lifecycle_details: str,
|
@@ -40824,7 +41526,8 @@ class GetDbNodesDbNodeResult(dict):
|
|
40824
41526
|
vnic_id: str):
|
40825
41527
|
"""
|
40826
41528
|
:param str additional_details: Additional information about the planned maintenance.
|
40827
|
-
:param str backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
41529
|
+
:param str backup_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
41530
|
+
:param str backup_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
40828
41531
|
:param str backup_vnic2id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the second backup VNIC.
|
40829
41532
|
:param str backup_vnic_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup VNIC.
|
40830
41533
|
:param int cpu_core_count: The number of CPU cores enabled on the Db node.
|
@@ -40834,8 +41537,8 @@ class GetDbNodesDbNodeResult(dict):
|
|
40834
41537
|
:param Mapping[str, str] defined_tags: Defined tags 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).
|
40835
41538
|
:param str fault_domain: The name of the Fault Domain the instance is contained in.
|
40836
41539
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
40837
|
-
:param str host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
40838
|
-
|
41540
|
+
:param str host_ip_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
41541
|
+
:param str host_ipv6id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
40839
41542
|
:param str hostname: The host name for the database node.
|
40840
41543
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the database node.
|
40841
41544
|
:param str lifecycle_details: Information about the current lifecycle state.
|
@@ -40852,6 +41555,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
40852
41555
|
"""
|
40853
41556
|
pulumi.set(__self__, "additional_details", additional_details)
|
40854
41557
|
pulumi.set(__self__, "backup_ip_id", backup_ip_id)
|
41558
|
+
pulumi.set(__self__, "backup_ipv6id", backup_ipv6id)
|
40855
41559
|
pulumi.set(__self__, "backup_vnic2id", backup_vnic2id)
|
40856
41560
|
pulumi.set(__self__, "backup_vnic_id", backup_vnic_id)
|
40857
41561
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -40863,6 +41567,7 @@ class GetDbNodesDbNodeResult(dict):
|
|
40863
41567
|
pulumi.set(__self__, "fault_domain", fault_domain)
|
40864
41568
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
40865
41569
|
pulumi.set(__self__, "host_ip_id", host_ip_id)
|
41570
|
+
pulumi.set(__self__, "host_ipv6id", host_ipv6id)
|
40866
41571
|
pulumi.set(__self__, "hostname", hostname)
|
40867
41572
|
pulumi.set(__self__, "id", id)
|
40868
41573
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
@@ -40889,10 +41594,18 @@ class GetDbNodesDbNodeResult(dict):
|
|
40889
41594
|
@pulumi.getter(name="backupIpId")
|
40890
41595
|
def backup_ip_id(self) -> str:
|
40891
41596
|
"""
|
40892
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup
|
41597
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
40893
41598
|
"""
|
40894
41599
|
return pulumi.get(self, "backup_ip_id")
|
40895
41600
|
|
41601
|
+
@property
|
41602
|
+
@pulumi.getter(name="backupIpv6id")
|
41603
|
+
def backup_ipv6id(self) -> str:
|
41604
|
+
"""
|
41605
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
41606
|
+
"""
|
41607
|
+
return pulumi.get(self, "backup_ipv6id")
|
41608
|
+
|
40896
41609
|
@property
|
40897
41610
|
@pulumi.getter(name="backupVnic2id")
|
40898
41611
|
def backup_vnic2id(self) -> str:
|
@@ -40974,11 +41687,18 @@ class GetDbNodesDbNodeResult(dict):
|
|
40974
41687
|
@pulumi.getter(name="hostIpId")
|
40975
41688
|
def host_ip_id(self) -> str:
|
40976
41689
|
"""
|
40977
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host
|
40978
|
-
**Note:** Applies only to Exadata Cloud Service.
|
41690
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv4 address associated with the database node. Use this OCID with either the [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PrivateIp/GetPrivateIp) or the [GetPublicIpByPrivateIpId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/PublicIp/GetPublicIpByPrivateIpId) API to get the IPv4 address needed to make a database connection.
|
40979
41691
|
"""
|
40980
41692
|
return pulumi.get(self, "host_ip_id")
|
40981
41693
|
|
41694
|
+
@property
|
41695
|
+
@pulumi.getter(name="hostIpv6id")
|
41696
|
+
def host_ipv6id(self) -> str:
|
41697
|
+
"""
|
41698
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the host IPv6 address associated with the database node. Use this OCID with the [GetIpv6](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Ipv6/GetIpv6) API to get the IPv6 address needed to make a database connection.
|
41699
|
+
"""
|
41700
|
+
return pulumi.get(self, "host_ipv6id")
|
41701
|
+
|
40982
41702
|
@property
|
40983
41703
|
@pulumi.getter
|
40984
41704
|
def hostname(self) -> str:
|
@@ -41168,6 +41888,7 @@ class GetDbServersDbServerResult(dict):
|
|
41168
41888
|
autonomous_virtual_machine_ids: Sequence[str],
|
41169
41889
|
autonomous_vm_cluster_ids: Sequence[str],
|
41170
41890
|
compartment_id: str,
|
41891
|
+
compute_model: str,
|
41171
41892
|
cpu_core_count: int,
|
41172
41893
|
db_node_ids: Sequence[str],
|
41173
41894
|
db_node_storage_size_in_gbs: int,
|
@@ -41190,6 +41911,7 @@ class GetDbServersDbServerResult(dict):
|
|
41190
41911
|
:param Sequence[str] autonomous_virtual_machine_ids: The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous Virtual Machines associated with the Db server.
|
41191
41912
|
:param Sequence[str] autonomous_vm_cluster_ids: The list of [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Autonomous VM Clusters associated with the Db server.
|
41192
41913
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
41914
|
+
:param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
41193
41915
|
:param int cpu_core_count: The number of CPU cores enabled on the Db server.
|
41194
41916
|
:param Sequence[str] db_node_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Db nodes associated with the Db server.
|
41195
41917
|
:param int db_node_storage_size_in_gbs: The allocated local node storage in GBs on the Db server.
|
@@ -41212,6 +41934,7 @@ class GetDbServersDbServerResult(dict):
|
|
41212
41934
|
pulumi.set(__self__, "autonomous_virtual_machine_ids", autonomous_virtual_machine_ids)
|
41213
41935
|
pulumi.set(__self__, "autonomous_vm_cluster_ids", autonomous_vm_cluster_ids)
|
41214
41936
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
41937
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
41215
41938
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
41216
41939
|
pulumi.set(__self__, "db_node_ids", db_node_ids)
|
41217
41940
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
@@ -41255,6 +41978,14 @@ class GetDbServersDbServerResult(dict):
|
|
41255
41978
|
"""
|
41256
41979
|
return pulumi.get(self, "compartment_id")
|
41257
41980
|
|
41981
|
+
@property
|
41982
|
+
@pulumi.getter(name="computeModel")
|
41983
|
+
def compute_model(self) -> str:
|
41984
|
+
"""
|
41985
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
41986
|
+
"""
|
41987
|
+
return pulumi.get(self, "compute_model")
|
41988
|
+
|
41258
41989
|
@property
|
41259
41990
|
@pulumi.getter(name="cpuCoreCount")
|
41260
41991
|
def cpu_core_count(self) -> int:
|
@@ -41843,6 +42574,7 @@ class GetDbSystemPatchesPatchResult(dict):
|
|
41843
42574
|
@pulumi.output_type
|
41844
42575
|
class GetDbSystemShapesDbSystemShapeResult(dict):
|
41845
42576
|
def __init__(__self__, *,
|
42577
|
+
are_server_types_supported: bool,
|
41846
42578
|
available_core_count: int,
|
41847
42579
|
available_core_count_per_node: int,
|
41848
42580
|
available_data_storage_in_tbs: int,
|
@@ -41851,7 +42583,9 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41851
42583
|
available_db_node_storage_in_gbs: int,
|
41852
42584
|
available_memory_in_gbs: int,
|
41853
42585
|
available_memory_per_node_in_gbs: int,
|
42586
|
+
compute_model: str,
|
41854
42587
|
core_count_increment: int,
|
42588
|
+
display_name: str,
|
41855
42589
|
max_storage_count: int,
|
41856
42590
|
maximum_node_count: int,
|
41857
42591
|
min_core_count_per_node: int,
|
@@ -41866,6 +42600,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41866
42600
|
shape_family: str,
|
41867
42601
|
shape_type: str):
|
41868
42602
|
"""
|
42603
|
+
:param bool are_server_types_supported: If true, the shape supports configurable DB and Storage Server types.
|
41869
42604
|
:param int available_core_count: The maximum number of CPU cores that can be enabled on the DB system for this shape.
|
41870
42605
|
:param int available_core_count_per_node: The maximum number of CPU cores per database node that can be enabled for this shape. Only applicable to the flex Exadata shape, ExaCC Elastic shapes and VM Flex shapes.
|
41871
42606
|
:param int available_data_storage_in_tbs: The maximum DATA storage that can be enabled for this shape.
|
@@ -41874,7 +42609,9 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41874
42609
|
:param int available_db_node_storage_in_gbs: The maximum Db Node storage that can be enabled for this shape.
|
41875
42610
|
:param int available_memory_in_gbs: The maximum memory that can be enabled for this shape.
|
41876
42611
|
:param int available_memory_per_node_in_gbs: The maximum memory available per database node for this shape. Only applicable to ExaCC Elastic shapes.
|
42612
|
+
:param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
41877
42613
|
:param int core_count_increment: The discrete number by which the CPU core count for this shape can be increased or decreased.
|
42614
|
+
:param str display_name: The display name of the shape used for the DB system.
|
41878
42615
|
:param int max_storage_count: The maximum number of Exadata storage servers available for the Exadata infrastructure.
|
41879
42616
|
:param int maximum_node_count: The maximum number of compute servers available for this shape.
|
41880
42617
|
:param int min_core_count_per_node: The minimum number of CPU cores that can be enabled per node for this shape.
|
@@ -41889,6 +42626,7 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41889
42626
|
:param str shape_family: The family of the shape used for the DB system.
|
41890
42627
|
:param str shape_type: The shape type for the virtual machine DB system. Shape type is determined by CPU hardware. Valid values are `AMD` , `INTEL` or `INTEL_FLEX_X9`.
|
41891
42628
|
"""
|
42629
|
+
pulumi.set(__self__, "are_server_types_supported", are_server_types_supported)
|
41892
42630
|
pulumi.set(__self__, "available_core_count", available_core_count)
|
41893
42631
|
pulumi.set(__self__, "available_core_count_per_node", available_core_count_per_node)
|
41894
42632
|
pulumi.set(__self__, "available_data_storage_in_tbs", available_data_storage_in_tbs)
|
@@ -41897,7 +42635,9 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41897
42635
|
pulumi.set(__self__, "available_db_node_storage_in_gbs", available_db_node_storage_in_gbs)
|
41898
42636
|
pulumi.set(__self__, "available_memory_in_gbs", available_memory_in_gbs)
|
41899
42637
|
pulumi.set(__self__, "available_memory_per_node_in_gbs", available_memory_per_node_in_gbs)
|
42638
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
41900
42639
|
pulumi.set(__self__, "core_count_increment", core_count_increment)
|
42640
|
+
pulumi.set(__self__, "display_name", display_name)
|
41901
42641
|
pulumi.set(__self__, "max_storage_count", max_storage_count)
|
41902
42642
|
pulumi.set(__self__, "maximum_node_count", maximum_node_count)
|
41903
42643
|
pulumi.set(__self__, "min_core_count_per_node", min_core_count_per_node)
|
@@ -41912,6 +42652,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41912
42652
|
pulumi.set(__self__, "shape_family", shape_family)
|
41913
42653
|
pulumi.set(__self__, "shape_type", shape_type)
|
41914
42654
|
|
42655
|
+
@property
|
42656
|
+
@pulumi.getter(name="areServerTypesSupported")
|
42657
|
+
def are_server_types_supported(self) -> bool:
|
42658
|
+
"""
|
42659
|
+
If true, the shape supports configurable DB and Storage Server types.
|
42660
|
+
"""
|
42661
|
+
return pulumi.get(self, "are_server_types_supported")
|
42662
|
+
|
41915
42663
|
@property
|
41916
42664
|
@pulumi.getter(name="availableCoreCount")
|
41917
42665
|
def available_core_count(self) -> int:
|
@@ -41976,6 +42724,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41976
42724
|
"""
|
41977
42725
|
return pulumi.get(self, "available_memory_per_node_in_gbs")
|
41978
42726
|
|
42727
|
+
@property
|
42728
|
+
@pulumi.getter(name="computeModel")
|
42729
|
+
def compute_model(self) -> str:
|
42730
|
+
"""
|
42731
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
42732
|
+
"""
|
42733
|
+
return pulumi.get(self, "compute_model")
|
42734
|
+
|
41979
42735
|
@property
|
41980
42736
|
@pulumi.getter(name="coreCountIncrement")
|
41981
42737
|
def core_count_increment(self) -> int:
|
@@ -41984,6 +42740,14 @@ class GetDbSystemShapesDbSystemShapeResult(dict):
|
|
41984
42740
|
"""
|
41985
42741
|
return pulumi.get(self, "core_count_increment")
|
41986
42742
|
|
42743
|
+
@property
|
42744
|
+
@pulumi.getter(name="displayName")
|
42745
|
+
def display_name(self) -> str:
|
42746
|
+
"""
|
42747
|
+
The display name of the shape used for the DB system.
|
42748
|
+
"""
|
42749
|
+
return pulumi.get(self, "display_name")
|
42750
|
+
|
41987
42751
|
@property
|
41988
42752
|
@pulumi.getter(name="maxStorageCount")
|
41989
42753
|
def max_storage_count(self) -> int:
|
@@ -42457,7 +43221,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
42457
43221
|
:param Sequence['GetDbSystemsDbSystemDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
42458
43222
|
:param int data_storage_percentage: The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 40 and 80. The default is 80 percent assigned to DATA storage. Not applicable for virtual machine DB systems. Required for BMDBs.
|
42459
43223
|
:param int data_storage_size_in_gb: The data storage size, in gigabytes, that is currently available to the DB system. Applies only for virtual machine DB systems. Required for VMDBs.
|
42460
|
-
:param str database_edition: The Oracle Database
|
43224
|
+
:param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
42461
43225
|
:param Sequence['GetDbSystemsDbSystemDbSystemOptionArgs'] db_system_options: The DB system options.
|
42462
43226
|
:param Mapping[str, str] defined_tags: Defined tags 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).
|
42463
43227
|
:param str disk_redundancy: The type of redundancy configured for the DB system. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
|
@@ -42638,7 +43402,7 @@ class GetDbSystemsDbSystemResult(dict):
|
|
42638
43402
|
@pulumi.getter(name="databaseEdition")
|
42639
43403
|
def database_edition(self) -> str:
|
42640
43404
|
"""
|
42641
|
-
The Oracle Database
|
43405
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
42642
43406
|
"""
|
42643
43407
|
return pulumi.get(self, "database_edition")
|
42644
43408
|
|
@@ -44334,6 +45098,35 @@ class GetExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
|
|
44334
45098
|
return pulumi.get(self, "mount_point")
|
44335
45099
|
|
44336
45100
|
|
45101
|
+
@pulumi.output_type
|
45102
|
+
class GetExadataInfrastructureExascaleConfigResult(dict):
|
45103
|
+
def __init__(__self__, *,
|
45104
|
+
available_storage_in_gbs: int,
|
45105
|
+
total_storage_in_gbs: int):
|
45106
|
+
"""
|
45107
|
+
:param int available_storage_in_gbs: Available storage size for Exascale in GBs.
|
45108
|
+
:param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
45109
|
+
"""
|
45110
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
45111
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
45112
|
+
|
45113
|
+
@property
|
45114
|
+
@pulumi.getter(name="availableStorageInGbs")
|
45115
|
+
def available_storage_in_gbs(self) -> int:
|
45116
|
+
"""
|
45117
|
+
Available storage size for Exascale in GBs.
|
45118
|
+
"""
|
45119
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
45120
|
+
|
45121
|
+
@property
|
45122
|
+
@pulumi.getter(name="totalStorageInGbs")
|
45123
|
+
def total_storage_in_gbs(self) -> int:
|
45124
|
+
"""
|
45125
|
+
Storage size needed for Exascale in GBs.
|
45126
|
+
"""
|
45127
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
45128
|
+
|
45129
|
+
|
44337
45130
|
@pulumi.output_type
|
44338
45131
|
class GetExadataInfrastructureMaintenanceWindowResult(dict):
|
44339
45132
|
def __init__(__self__, *,
|
@@ -44579,18 +45372,21 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44579
45372
|
cloud_control_plane_server2: str,
|
44580
45373
|
compartment_id: str,
|
44581
45374
|
compute_count: int,
|
45375
|
+
compute_model: str,
|
44582
45376
|
contacts: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureContactResult'],
|
44583
45377
|
corporate_proxy: str,
|
44584
45378
|
cpus_enabled: int,
|
44585
45379
|
create_async: bool,
|
44586
45380
|
csi_number: str,
|
44587
45381
|
data_storage_size_in_tbs: float,
|
45382
|
+
database_server_type: str,
|
44588
45383
|
db_node_storage_size_in_gbs: int,
|
44589
45384
|
db_server_version: str,
|
44590
45385
|
defined_file_system_configurations: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult'],
|
44591
45386
|
defined_tags: Mapping[str, str],
|
44592
45387
|
display_name: str,
|
44593
45388
|
dns_servers: Sequence[str],
|
45389
|
+
exascale_configs: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult'],
|
44594
45390
|
freeform_tags: Mapping[str, str],
|
44595
45391
|
gateway: str,
|
44596
45392
|
id: str,
|
@@ -44615,6 +45411,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44615
45411
|
shape: str,
|
44616
45412
|
state: str,
|
44617
45413
|
storage_count: int,
|
45414
|
+
storage_server_type: str,
|
44618
45415
|
storage_server_version: str,
|
44619
45416
|
time_created: str,
|
44620
45417
|
time_zone: str):
|
@@ -44629,17 +45426,20 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44629
45426
|
:param str cloud_control_plane_server2: The IP address for the second control plane server.
|
44630
45427
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
44631
45428
|
:param int compute_count: The number of compute servers for the Exadata infrastructure.
|
45429
|
+
:param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
44632
45430
|
:param Sequence['GetExadataInfrastructuresExadataInfrastructureContactArgs'] contacts: The list of contacts for the Exadata infrastructure.
|
44633
45431
|
:param str corporate_proxy: The corporate network proxy for access to the control plane network.
|
44634
45432
|
:param int cpus_enabled: The number of enabled CPU cores.
|
44635
45433
|
:param str csi_number: The CSI Number of the Exadata infrastructure.
|
44636
45434
|
:param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
45435
|
+
:param str database_server_type: The database server type of the Exadata infrastructure.
|
44637
45436
|
:param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
44638
45437
|
:param str db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
|
44639
45438
|
:param Sequence['GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
44640
45439
|
:param Mapping[str, str] defined_tags: Defined tags 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).
|
44641
45440
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
44642
45441
|
:param Sequence[str] dns_servers: The list of DNS server IP addresses. Maximum of 3 allowed.
|
45442
|
+
:param Sequence['GetExadataInfrastructuresExadataInfrastructureExascaleConfigArgs'] exascale_configs: The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
44643
45443
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
44644
45444
|
:param str gateway: The gateway for the control plane network.
|
44645
45445
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure.
|
@@ -44664,6 +45464,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44664
45464
|
:param str shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
|
44665
45465
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
44666
45466
|
:param int storage_count: The number of Exadata storage servers for the Exadata infrastructure.
|
45467
|
+
:param str storage_server_type: The storage server type of the Exadata infrastructure.
|
44667
45468
|
:param str storage_server_version: The software version of the storage servers (cells) in the Exadata infrastructure.
|
44668
45469
|
:param str time_created: The date and time the Exadata infrastructure was created.
|
44669
45470
|
:param str time_zone: The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -44679,18 +45480,21 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44679
45480
|
pulumi.set(__self__, "cloud_control_plane_server2", cloud_control_plane_server2)
|
44680
45481
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
44681
45482
|
pulumi.set(__self__, "compute_count", compute_count)
|
45483
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
44682
45484
|
pulumi.set(__self__, "contacts", contacts)
|
44683
45485
|
pulumi.set(__self__, "corporate_proxy", corporate_proxy)
|
44684
45486
|
pulumi.set(__self__, "cpus_enabled", cpus_enabled)
|
44685
45487
|
pulumi.set(__self__, "create_async", create_async)
|
44686
45488
|
pulumi.set(__self__, "csi_number", csi_number)
|
44687
45489
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
45490
|
+
pulumi.set(__self__, "database_server_type", database_server_type)
|
44688
45491
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
44689
45492
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
44690
45493
|
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
44691
45494
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
44692
45495
|
pulumi.set(__self__, "display_name", display_name)
|
44693
45496
|
pulumi.set(__self__, "dns_servers", dns_servers)
|
45497
|
+
pulumi.set(__self__, "exascale_configs", exascale_configs)
|
44694
45498
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
44695
45499
|
pulumi.set(__self__, "gateway", gateway)
|
44696
45500
|
pulumi.set(__self__, "id", id)
|
@@ -44715,6 +45519,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44715
45519
|
pulumi.set(__self__, "shape", shape)
|
44716
45520
|
pulumi.set(__self__, "state", state)
|
44717
45521
|
pulumi.set(__self__, "storage_count", storage_count)
|
45522
|
+
pulumi.set(__self__, "storage_server_type", storage_server_type)
|
44718
45523
|
pulumi.set(__self__, "storage_server_version", storage_server_version)
|
44719
45524
|
pulumi.set(__self__, "time_created", time_created)
|
44720
45525
|
pulumi.set(__self__, "time_zone", time_zone)
|
@@ -44804,6 +45609,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44804
45609
|
"""
|
44805
45610
|
return pulumi.get(self, "compute_count")
|
44806
45611
|
|
45612
|
+
@property
|
45613
|
+
@pulumi.getter(name="computeModel")
|
45614
|
+
def compute_model(self) -> str:
|
45615
|
+
"""
|
45616
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
45617
|
+
"""
|
45618
|
+
return pulumi.get(self, "compute_model")
|
45619
|
+
|
44807
45620
|
@property
|
44808
45621
|
@pulumi.getter
|
44809
45622
|
def contacts(self) -> Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureContactResult']:
|
@@ -44849,6 +45662,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44849
45662
|
"""
|
44850
45663
|
return pulumi.get(self, "data_storage_size_in_tbs")
|
44851
45664
|
|
45665
|
+
@property
|
45666
|
+
@pulumi.getter(name="databaseServerType")
|
45667
|
+
def database_server_type(self) -> str:
|
45668
|
+
"""
|
45669
|
+
The database server type of the Exadata infrastructure.
|
45670
|
+
"""
|
45671
|
+
return pulumi.get(self, "database_server_type")
|
45672
|
+
|
44852
45673
|
@property
|
44853
45674
|
@pulumi.getter(name="dbNodeStorageSizeInGbs")
|
44854
45675
|
def db_node_storage_size_in_gbs(self) -> int:
|
@@ -44897,6 +45718,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
44897
45718
|
"""
|
44898
45719
|
return pulumi.get(self, "dns_servers")
|
44899
45720
|
|
45721
|
+
@property
|
45722
|
+
@pulumi.getter(name="exascaleConfigs")
|
45723
|
+
def exascale_configs(self) -> Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult']:
|
45724
|
+
"""
|
45725
|
+
The exascale config response details for the Exadata Cloud@Customer infrastructure or cloud Exadata infrastructure . Applies to both Exadata Cloud@Customer instances and Exadata Cloud Service instances.
|
45726
|
+
"""
|
45727
|
+
return pulumi.get(self, "exascale_configs")
|
45728
|
+
|
44900
45729
|
@property
|
44901
45730
|
@pulumi.getter(name="freeformTags")
|
44902
45731
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -45089,6 +45918,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
45089
45918
|
"""
|
45090
45919
|
return pulumi.get(self, "storage_count")
|
45091
45920
|
|
45921
|
+
@property
|
45922
|
+
@pulumi.getter(name="storageServerType")
|
45923
|
+
def storage_server_type(self) -> str:
|
45924
|
+
"""
|
45925
|
+
The storage server type of the Exadata infrastructure.
|
45926
|
+
"""
|
45927
|
+
return pulumi.get(self, "storage_server_type")
|
45928
|
+
|
45092
45929
|
@property
|
45093
45930
|
@pulumi.getter(name="storageServerVersion")
|
45094
45931
|
def storage_server_version(self) -> str:
|
@@ -45227,6 +46064,35 @@ class GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurati
|
|
45227
46064
|
return pulumi.get(self, "mount_point")
|
45228
46065
|
|
45229
46066
|
|
46067
|
+
@pulumi.output_type
|
46068
|
+
class GetExadataInfrastructuresExadataInfrastructureExascaleConfigResult(dict):
|
46069
|
+
def __init__(__self__, *,
|
46070
|
+
available_storage_in_gbs: int,
|
46071
|
+
total_storage_in_gbs: int):
|
46072
|
+
"""
|
46073
|
+
:param int available_storage_in_gbs: Available storage size for Exascale in GBs.
|
46074
|
+
:param int total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
46075
|
+
"""
|
46076
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
46077
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
46078
|
+
|
46079
|
+
@property
|
46080
|
+
@pulumi.getter(name="availableStorageInGbs")
|
46081
|
+
def available_storage_in_gbs(self) -> int:
|
46082
|
+
"""
|
46083
|
+
Available storage size for Exascale in GBs.
|
46084
|
+
"""
|
46085
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
46086
|
+
|
46087
|
+
@property
|
46088
|
+
@pulumi.getter(name="totalStorageInGbs")
|
46089
|
+
def total_storage_in_gbs(self) -> int:
|
46090
|
+
"""
|
46091
|
+
Storage size needed for Exascale in GBs.
|
46092
|
+
"""
|
46093
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
46094
|
+
|
46095
|
+
|
45230
46096
|
@pulumi.output_type
|
45231
46097
|
class GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult(dict):
|
45232
46098
|
def __init__(__self__, *,
|
@@ -46026,6 +46892,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46026
46892
|
backup_network_nsg_ids: Sequence[str],
|
46027
46893
|
backup_subnet_id: str,
|
46028
46894
|
cluster_name: str,
|
46895
|
+
cluster_placement_group_id: str,
|
46029
46896
|
compartment_id: str,
|
46030
46897
|
data_collection_options: Sequence['outputs.GetExadbVmClustersExadbVmClusterDataCollectionOptionResult'],
|
46031
46898
|
defined_tags: Mapping[str, str],
|
@@ -46057,6 +46924,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46057
46924
|
ssh_public_keys: Sequence[str],
|
46058
46925
|
state: str,
|
46059
46926
|
subnet_id: str,
|
46927
|
+
subscription_id: str,
|
46060
46928
|
system_tags: Mapping[str, str],
|
46061
46929
|
system_version: str,
|
46062
46930
|
time_created: str,
|
@@ -46068,6 +46936,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46068
46936
|
:param Sequence[str] backup_network_nsg_ids: A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
46069
46937
|
:param str backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
46070
46938
|
:param str cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
46939
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
46071
46940
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
46072
46941
|
:param Sequence['GetExadbVmClustersExadbVmClusterDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
46073
46942
|
:param Mapping[str, str] defined_tags: Defined tags 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).
|
@@ -46100,6 +46969,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46100
46969
|
:param Sequence[str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the Exadata VM cluster on Exascale Infrastructure.
|
46101
46970
|
:param str state: A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly.
|
46102
46971
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
46972
|
+
:param str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
46103
46973
|
:param Mapping[str, str] system_tags: System tags 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).
|
46104
46974
|
:param str system_version: Operating system version of the image.
|
46105
46975
|
:param str time_created: The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
@@ -46111,6 +46981,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46111
46981
|
pulumi.set(__self__, "backup_network_nsg_ids", backup_network_nsg_ids)
|
46112
46982
|
pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
|
46113
46983
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
46984
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
46114
46985
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
46115
46986
|
pulumi.set(__self__, "data_collection_options", data_collection_options)
|
46116
46987
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -46142,6 +47013,7 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46142
47013
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
46143
47014
|
pulumi.set(__self__, "state", state)
|
46144
47015
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
47016
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
46145
47017
|
pulumi.set(__self__, "system_tags", system_tags)
|
46146
47018
|
pulumi.set(__self__, "system_version", system_version)
|
46147
47019
|
pulumi.set(__self__, "time_created", time_created)
|
@@ -46181,6 +47053,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46181
47053
|
"""
|
46182
47054
|
return pulumi.get(self, "cluster_name")
|
46183
47055
|
|
47056
|
+
@property
|
47057
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
47058
|
+
def cluster_placement_group_id(self) -> str:
|
47059
|
+
"""
|
47060
|
+
A filter to return only resources that match the given cluster placement group ID exactly.
|
47061
|
+
"""
|
47062
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
47063
|
+
|
46184
47064
|
@property
|
46185
47065
|
@pulumi.getter(name="compartmentId")
|
46186
47066
|
def compartment_id(self) -> str:
|
@@ -46430,6 +47310,14 @@ class GetExadbVmClustersExadbVmClusterResult(dict):
|
|
46430
47310
|
"""
|
46431
47311
|
return pulumi.get(self, "subnet_id")
|
46432
47312
|
|
47313
|
+
@property
|
47314
|
+
@pulumi.getter(name="subscriptionId")
|
47315
|
+
def subscription_id(self) -> str:
|
47316
|
+
"""
|
47317
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
47318
|
+
"""
|
47319
|
+
return pulumi.get(self, "subscription_id")
|
47320
|
+
|
46433
47321
|
@property
|
46434
47322
|
@pulumi.getter(name="systemTags")
|
46435
47323
|
def system_tags(self) -> Mapping[str, str]:
|
@@ -46783,15 +47671,18 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
46783
47671
|
def __init__(__self__, *,
|
46784
47672
|
additional_flash_cache_in_percent: int,
|
46785
47673
|
availability_domain: str,
|
47674
|
+
cluster_placement_group_id: str,
|
46786
47675
|
compartment_id: str,
|
46787
47676
|
defined_tags: Mapping[str, str],
|
46788
47677
|
description: str,
|
46789
47678
|
display_name: str,
|
47679
|
+
exadata_infrastructure_id: str,
|
46790
47680
|
freeform_tags: Mapping[str, str],
|
46791
47681
|
high_capacity_database_storages: Sequence['outputs.GetExascaleDbStorageVaultsExascaleDbStorageVaultHighCapacityDatabaseStorageResult'],
|
46792
47682
|
id: str,
|
46793
47683
|
lifecycle_details: str,
|
46794
47684
|
state: str,
|
47685
|
+
subscription_id: str,
|
46795
47686
|
system_tags: Mapping[str, str],
|
46796
47687
|
time_created: str,
|
46797
47688
|
time_zone: str,
|
@@ -46800,15 +47691,18 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
46800
47691
|
"""
|
46801
47692
|
:param int additional_flash_cache_in_percent: The size of additional Flash Cache in percentage of High Capacity database storage.
|
46802
47693
|
:param str availability_domain: The name of the availability domain in which the Exadata Database Storage Vault is located.
|
47694
|
+
:param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group ID exactly.
|
46803
47695
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
46804
47696
|
:param Mapping[str, str] defined_tags: Defined tags 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).
|
46805
47697
|
:param str description: Exadata Database Storage Vault description.
|
46806
47698
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
47699
|
+
:param str exadata_infrastructure_id: A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
46807
47700
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
46808
47701
|
:param Sequence['GetExascaleDbStorageVaultsExascaleDbStorageVaultHighCapacityDatabaseStorageArgs'] high_capacity_database_storages: Exadata Database Storage Details
|
46809
47702
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
46810
47703
|
:param str lifecycle_details: Additional information about the current lifecycle state.
|
46811
47704
|
:param str state: A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly.
|
47705
|
+
:param str subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
46812
47706
|
:param Mapping[str, str] system_tags: System tags 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).
|
46813
47707
|
:param str time_created: The date and time that the Exadata Database Storage Vault was created.
|
46814
47708
|
:param str time_zone: The time zone that you want to use for the Exadata Database Storage Vault. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -46817,15 +47711,18 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
46817
47711
|
"""
|
46818
47712
|
pulumi.set(__self__, "additional_flash_cache_in_percent", additional_flash_cache_in_percent)
|
46819
47713
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
47714
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
46820
47715
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
46821
47716
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
46822
47717
|
pulumi.set(__self__, "description", description)
|
46823
47718
|
pulumi.set(__self__, "display_name", display_name)
|
47719
|
+
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
46824
47720
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
46825
47721
|
pulumi.set(__self__, "high_capacity_database_storages", high_capacity_database_storages)
|
46826
47722
|
pulumi.set(__self__, "id", id)
|
46827
47723
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
46828
47724
|
pulumi.set(__self__, "state", state)
|
47725
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
46829
47726
|
pulumi.set(__self__, "system_tags", system_tags)
|
46830
47727
|
pulumi.set(__self__, "time_created", time_created)
|
46831
47728
|
pulumi.set(__self__, "time_zone", time_zone)
|
@@ -46848,6 +47745,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
46848
47745
|
"""
|
46849
47746
|
return pulumi.get(self, "availability_domain")
|
46850
47747
|
|
47748
|
+
@property
|
47749
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
47750
|
+
def cluster_placement_group_id(self) -> str:
|
47751
|
+
"""
|
47752
|
+
A filter to return only resources that match the given cluster placement group ID exactly.
|
47753
|
+
"""
|
47754
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
47755
|
+
|
46851
47756
|
@property
|
46852
47757
|
@pulumi.getter(name="compartmentId")
|
46853
47758
|
def compartment_id(self) -> str:
|
@@ -46880,6 +47785,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
46880
47785
|
"""
|
46881
47786
|
return pulumi.get(self, "display_name")
|
46882
47787
|
|
47788
|
+
@property
|
47789
|
+
@pulumi.getter(name="exadataInfrastructureId")
|
47790
|
+
def exadata_infrastructure_id(self) -> str:
|
47791
|
+
"""
|
47792
|
+
A filter to return only list of Vaults that are linked to the exadata infrastructure Id.
|
47793
|
+
"""
|
47794
|
+
return pulumi.get(self, "exadata_infrastructure_id")
|
47795
|
+
|
46883
47796
|
@property
|
46884
47797
|
@pulumi.getter(name="freeformTags")
|
46885
47798
|
def freeform_tags(self) -> Mapping[str, str]:
|
@@ -46920,6 +47833,14 @@ class GetExascaleDbStorageVaultsExascaleDbStorageVaultResult(dict):
|
|
46920
47833
|
"""
|
46921
47834
|
return pulumi.get(self, "state")
|
46922
47835
|
|
47836
|
+
@property
|
47837
|
+
@pulumi.getter(name="subscriptionId")
|
47838
|
+
def subscription_id(self) -> str:
|
47839
|
+
"""
|
47840
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
47841
|
+
"""
|
47842
|
+
return pulumi.get(self, "subscription_id")
|
47843
|
+
|
46923
47844
|
@property
|
46924
47845
|
@pulumi.getter(name="systemTags")
|
46925
47846
|
def system_tags(self) -> Mapping[str, str]:
|
@@ -47750,7 +48671,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
|
|
47750
48671
|
:param str character_set: The character set of the external database.
|
47751
48672
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
47752
48673
|
:param str database_configuration: The Oracle Database configuration
|
47753
|
-
:param str database_edition: The Oracle Database
|
48674
|
+
:param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
47754
48675
|
:param Sequence['GetExternalContainerDatabasesExternalContainerDatabaseDatabaseManagementConfigArgs'] database_management_configs: The configuration of the Database Management service.
|
47755
48676
|
:param str database_version: The Oracle Database version.
|
47756
48677
|
:param str db_id: The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
|
@@ -47815,7 +48736,7 @@ class GetExternalContainerDatabasesExternalContainerDatabaseResult(dict):
|
|
47815
48736
|
@pulumi.getter(name="databaseEdition")
|
47816
48737
|
def database_edition(self) -> str:
|
47817
48738
|
"""
|
47818
|
-
The Oracle Database
|
48739
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
47819
48740
|
"""
|
47820
48741
|
return pulumi.get(self, "database_edition")
|
47821
48742
|
|
@@ -48608,7 +49529,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
|
|
48608
49529
|
:param str character_set: The character set of the external database.
|
48609
49530
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
48610
49531
|
:param str database_configuration: The Oracle Database configuration
|
48611
|
-
:param str database_edition: The Oracle Database
|
49532
|
+
:param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
48612
49533
|
:param Sequence['GetExternalNonContainerDatabasesExternalNonContainerDatabaseDatabaseManagementConfigArgs'] database_management_configs: The configuration of the Database Management service.
|
48613
49534
|
:param str database_version: The Oracle Database version.
|
48614
49535
|
:param str db_id: The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
|
@@ -48675,7 +49596,7 @@ class GetExternalNonContainerDatabasesExternalNonContainerDatabaseResult(dict):
|
|
48675
49596
|
@pulumi.getter(name="databaseEdition")
|
48676
49597
|
def database_edition(self) -> str:
|
48677
49598
|
"""
|
48678
|
-
The Oracle Database
|
49599
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
48679
49600
|
"""
|
48680
49601
|
return pulumi.get(self, "database_edition")
|
48681
49602
|
|
@@ -49060,7 +49981,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
|
|
49060
49981
|
:param str character_set: The character set of the external database.
|
49061
49982
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
49062
49983
|
:param str database_configuration: The Oracle Database configuration
|
49063
|
-
:param str database_edition: The Oracle Database
|
49984
|
+
:param str database_edition: The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
49064
49985
|
:param Sequence['GetExternalPluggableDatabasesExternalPluggableDatabaseDatabaseManagementConfigArgs'] database_management_configs: The configuration of the Database Management service.
|
49065
49986
|
:param str database_version: The Oracle Database version.
|
49066
49987
|
:param str db_id: The Oracle Database ID, which identifies an Oracle Database located outside of Oracle Cloud.
|
@@ -49131,7 +50052,7 @@ class GetExternalPluggableDatabasesExternalPluggableDatabaseResult(dict):
|
|
49131
50052
|
@pulumi.getter(name="databaseEdition")
|
49132
50053
|
def database_edition(self) -> str:
|
49133
50054
|
"""
|
49134
|
-
The Oracle Database
|
50055
|
+
The Oracle Database Edition that applies to all the databases on the DB system. Exadata DB systems and 2-node RAC DB systems require ENTERPRISE_EDITION_EXTREME_PERFORMANCE.
|
49135
50056
|
"""
|
49136
50057
|
return pulumi.get(self, "database_edition")
|
49137
50058
|
|
@@ -49455,18 +50376,39 @@ class GetFlexComponentsFlexComponentCollectionItemResult(dict):
|
|
49455
50376
|
def __init__(__self__, *,
|
49456
50377
|
available_core_count: int,
|
49457
50378
|
available_db_storage_in_gbs: int,
|
50379
|
+
available_local_storage_in_gbs: int,
|
50380
|
+
available_memory_in_gbs: int,
|
50381
|
+
compute_model: str,
|
50382
|
+
description_summary: str,
|
50383
|
+
hardware_type: str,
|
49458
50384
|
minimum_core_count: int,
|
49459
|
-
name: str
|
50385
|
+
name: str,
|
50386
|
+
runtime_minimum_core_count: int,
|
50387
|
+
shape: str):
|
49460
50388
|
"""
|
49461
50389
|
:param int available_core_count: The maximum number of CPU cores that can ben enabled on the DB Server for this Flex Component.
|
49462
50390
|
:param int available_db_storage_in_gbs: The maximum storage that can be enabled on the Storage Server for this Flex Component.
|
50391
|
+
:param int available_local_storage_in_gbs: The maximum local storage that can be enabled on the DB Server for this Flex Component.
|
50392
|
+
:param int available_memory_in_gbs: The maximum memory size that can be enabled on the DB Server for this Flex Component.
|
50393
|
+
:param str compute_model: The compute model of the DB Server for this Flex Component.
|
50394
|
+
:param str description_summary: The description summary for this Flex Component.
|
50395
|
+
:param str hardware_type: The hardware type of the DB (Compute) or Storage (Cell) Server for this Flex Component.
|
49463
50396
|
:param int minimum_core_count: The minimum number of CPU cores that can be enabled on the DB Server for this Flex Component.
|
49464
50397
|
:param str name: A filter to return only resources that match the entire name given. The match is not case sensitive.
|
50398
|
+
:param int runtime_minimum_core_count: The runtime minimum number of CPU cores that can be enabled for this Flex Component.
|
50399
|
+
:param str shape: A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
|
49465
50400
|
"""
|
49466
50401
|
pulumi.set(__self__, "available_core_count", available_core_count)
|
49467
50402
|
pulumi.set(__self__, "available_db_storage_in_gbs", available_db_storage_in_gbs)
|
50403
|
+
pulumi.set(__self__, "available_local_storage_in_gbs", available_local_storage_in_gbs)
|
50404
|
+
pulumi.set(__self__, "available_memory_in_gbs", available_memory_in_gbs)
|
50405
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
50406
|
+
pulumi.set(__self__, "description_summary", description_summary)
|
50407
|
+
pulumi.set(__self__, "hardware_type", hardware_type)
|
49468
50408
|
pulumi.set(__self__, "minimum_core_count", minimum_core_count)
|
49469
50409
|
pulumi.set(__self__, "name", name)
|
50410
|
+
pulumi.set(__self__, "runtime_minimum_core_count", runtime_minimum_core_count)
|
50411
|
+
pulumi.set(__self__, "shape", shape)
|
49470
50412
|
|
49471
50413
|
@property
|
49472
50414
|
@pulumi.getter(name="availableCoreCount")
|
@@ -49484,6 +50426,46 @@ class GetFlexComponentsFlexComponentCollectionItemResult(dict):
|
|
49484
50426
|
"""
|
49485
50427
|
return pulumi.get(self, "available_db_storage_in_gbs")
|
49486
50428
|
|
50429
|
+
@property
|
50430
|
+
@pulumi.getter(name="availableLocalStorageInGbs")
|
50431
|
+
def available_local_storage_in_gbs(self) -> int:
|
50432
|
+
"""
|
50433
|
+
The maximum local storage that can be enabled on the DB Server for this Flex Component.
|
50434
|
+
"""
|
50435
|
+
return pulumi.get(self, "available_local_storage_in_gbs")
|
50436
|
+
|
50437
|
+
@property
|
50438
|
+
@pulumi.getter(name="availableMemoryInGbs")
|
50439
|
+
def available_memory_in_gbs(self) -> int:
|
50440
|
+
"""
|
50441
|
+
The maximum memory size that can be enabled on the DB Server for this Flex Component.
|
50442
|
+
"""
|
50443
|
+
return pulumi.get(self, "available_memory_in_gbs")
|
50444
|
+
|
50445
|
+
@property
|
50446
|
+
@pulumi.getter(name="computeModel")
|
50447
|
+
def compute_model(self) -> str:
|
50448
|
+
"""
|
50449
|
+
The compute model of the DB Server for this Flex Component.
|
50450
|
+
"""
|
50451
|
+
return pulumi.get(self, "compute_model")
|
50452
|
+
|
50453
|
+
@property
|
50454
|
+
@pulumi.getter(name="descriptionSummary")
|
50455
|
+
def description_summary(self) -> str:
|
50456
|
+
"""
|
50457
|
+
The description summary for this Flex Component.
|
50458
|
+
"""
|
50459
|
+
return pulumi.get(self, "description_summary")
|
50460
|
+
|
50461
|
+
@property
|
50462
|
+
@pulumi.getter(name="hardwareType")
|
50463
|
+
def hardware_type(self) -> str:
|
50464
|
+
"""
|
50465
|
+
The hardware type of the DB (Compute) or Storage (Cell) Server for this Flex Component.
|
50466
|
+
"""
|
50467
|
+
return pulumi.get(self, "hardware_type")
|
50468
|
+
|
49487
50469
|
@property
|
49488
50470
|
@pulumi.getter(name="minimumCoreCount")
|
49489
50471
|
def minimum_core_count(self) -> int:
|
@@ -49500,6 +50482,22 @@ class GetFlexComponentsFlexComponentCollectionItemResult(dict):
|
|
49500
50482
|
"""
|
49501
50483
|
return pulumi.get(self, "name")
|
49502
50484
|
|
50485
|
+
@property
|
50486
|
+
@pulumi.getter(name="runtimeMinimumCoreCount")
|
50487
|
+
def runtime_minimum_core_count(self) -> int:
|
50488
|
+
"""
|
50489
|
+
The runtime minimum number of CPU cores that can be enabled for this Flex Component.
|
50490
|
+
"""
|
50491
|
+
return pulumi.get(self, "runtime_minimum_core_count")
|
50492
|
+
|
50493
|
+
@property
|
50494
|
+
@pulumi.getter
|
50495
|
+
def shape(self) -> str:
|
50496
|
+
"""
|
50497
|
+
A filter to return only resources that belong to the entire shape name given. The match is not case sensitive.
|
50498
|
+
"""
|
50499
|
+
return pulumi.get(self, "shape")
|
50500
|
+
|
49503
50501
|
|
49504
50502
|
@pulumi.output_type
|
49505
50503
|
class GetGiVersionMinorVersionsFilterResult(dict):
|
@@ -54616,6 +55614,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
54616
55614
|
availability_domain: str,
|
54617
55615
|
cloud_automation_update_details: Sequence['outputs.GetVmClustersVmClusterCloudAutomationUpdateDetailResult'],
|
54618
55616
|
compartment_id: str,
|
55617
|
+
compute_model: str,
|
54619
55618
|
cpu_core_count: int,
|
54620
55619
|
cpus_enabled: int,
|
54621
55620
|
data_collection_options: Sequence['outputs.GetVmClustersVmClusterDataCollectionOptionResult'],
|
@@ -54626,6 +55625,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
54626
55625
|
defined_tags: Mapping[str, str],
|
54627
55626
|
display_name: str,
|
54628
55627
|
exadata_infrastructure_id: str,
|
55628
|
+
exascale_db_storage_vault_id: str,
|
54629
55629
|
file_system_configuration_details: Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult'],
|
54630
55630
|
freeform_tags: Mapping[str, str],
|
54631
55631
|
gi_version: str,
|
@@ -54641,14 +55641,17 @@ class GetVmClustersVmClusterResult(dict):
|
|
54641
55641
|
shape: str,
|
54642
55642
|
ssh_public_keys: Sequence[str],
|
54643
55643
|
state: str,
|
55644
|
+
storage_management_type: str,
|
54644
55645
|
system_version: str,
|
54645
55646
|
time_created: str,
|
54646
55647
|
time_zone: str,
|
54647
|
-
vm_cluster_network_id: str
|
55648
|
+
vm_cluster_network_id: str,
|
55649
|
+
vm_cluster_type: str):
|
54648
55650
|
"""
|
54649
55651
|
:param str availability_domain: The name of the availability domain that the VM cluster is located in.
|
54650
55652
|
:param Sequence['GetVmClustersVmClusterCloudAutomationUpdateDetailArgs'] cloud_automation_update_details: Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
|
54651
55653
|
:param str compartment_id: The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
55654
|
+
:param str compute_model: The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
54652
55655
|
:param int cpus_enabled: The number of enabled CPU cores.
|
54653
55656
|
:param Sequence['GetVmClustersVmClusterDataCollectionOptionArgs'] data_collection_options: Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
54654
55657
|
:param float data_storage_size_in_gb: Size of the DATA disk group in GBs.
|
@@ -54658,6 +55661,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
54658
55661
|
:param Mapping[str, str] defined_tags: Defined tags 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).
|
54659
55662
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
54660
55663
|
:param str exadata_infrastructure_id: If provided, filters the results for the given Exadata Infrastructure.
|
55664
|
+
:param str exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
54661
55665
|
:param Sequence['GetVmClustersVmClusterFileSystemConfigurationDetailArgs'] file_system_configuration_details: Details of the file system configuration of the VM cluster.
|
54662
55666
|
:param Mapping[str, str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
54663
55667
|
:param str gi_version: The Oracle Grid Infrastructure software version for the VM cluster.
|
@@ -54671,14 +55675,17 @@ class GetVmClustersVmClusterResult(dict):
|
|
54671
55675
|
:param str shape: The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
|
54672
55676
|
:param Sequence[str] ssh_public_keys: The public key portion of one or more key pairs used for SSH access to the VM cluster.
|
54673
55677
|
:param str state: A filter to return only resources that match the given lifecycle state exactly.
|
55678
|
+
:param str storage_management_type: Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
54674
55679
|
:param str system_version: Operating system version of the image.
|
54675
55680
|
:param str time_created: The date and time that the VM cluster was created.
|
54676
55681
|
:param str time_zone: The time zone of the Exadata infrastructure. For details, see [Exadata Infrastructure Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
54677
55682
|
:param str vm_cluster_network_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network.
|
55683
|
+
:param str vm_cluster_type: A filter to return only vmclusters that match the given vmcluster type exactly.
|
54678
55684
|
"""
|
54679
55685
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
54680
55686
|
pulumi.set(__self__, "cloud_automation_update_details", cloud_automation_update_details)
|
54681
55687
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
55688
|
+
pulumi.set(__self__, "compute_model", compute_model)
|
54682
55689
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
54683
55690
|
pulumi.set(__self__, "cpus_enabled", cpus_enabled)
|
54684
55691
|
pulumi.set(__self__, "data_collection_options", data_collection_options)
|
@@ -54689,6 +55696,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
54689
55696
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
54690
55697
|
pulumi.set(__self__, "display_name", display_name)
|
54691
55698
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
55699
|
+
pulumi.set(__self__, "exascale_db_storage_vault_id", exascale_db_storage_vault_id)
|
54692
55700
|
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
54693
55701
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
54694
55702
|
pulumi.set(__self__, "gi_version", gi_version)
|
@@ -54704,10 +55712,12 @@ class GetVmClustersVmClusterResult(dict):
|
|
54704
55712
|
pulumi.set(__self__, "shape", shape)
|
54705
55713
|
pulumi.set(__self__, "ssh_public_keys", ssh_public_keys)
|
54706
55714
|
pulumi.set(__self__, "state", state)
|
55715
|
+
pulumi.set(__self__, "storage_management_type", storage_management_type)
|
54707
55716
|
pulumi.set(__self__, "system_version", system_version)
|
54708
55717
|
pulumi.set(__self__, "time_created", time_created)
|
54709
55718
|
pulumi.set(__self__, "time_zone", time_zone)
|
54710
55719
|
pulumi.set(__self__, "vm_cluster_network_id", vm_cluster_network_id)
|
55720
|
+
pulumi.set(__self__, "vm_cluster_type", vm_cluster_type)
|
54711
55721
|
|
54712
55722
|
@property
|
54713
55723
|
@pulumi.getter(name="availabilityDomain")
|
@@ -54733,6 +55743,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
54733
55743
|
"""
|
54734
55744
|
return pulumi.get(self, "compartment_id")
|
54735
55745
|
|
55746
|
+
@property
|
55747
|
+
@pulumi.getter(name="computeModel")
|
55748
|
+
def compute_model(self) -> str:
|
55749
|
+
"""
|
55750
|
+
The compute model of the Autonomous Database. This is required if using the `computeCount` parameter. If using `cpuCoreCount` then it is an error to specify `computeModel` to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
|
55751
|
+
"""
|
55752
|
+
return pulumi.get(self, "compute_model")
|
55753
|
+
|
54736
55754
|
@property
|
54737
55755
|
@pulumi.getter(name="cpuCoreCount")
|
54738
55756
|
def cpu_core_count(self) -> int:
|
@@ -54810,6 +55828,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
54810
55828
|
"""
|
54811
55829
|
return pulumi.get(self, "exadata_infrastructure_id")
|
54812
55830
|
|
55831
|
+
@property
|
55832
|
+
@pulumi.getter(name="exascaleDbStorageVaultId")
|
55833
|
+
def exascale_db_storage_vault_id(self) -> str:
|
55834
|
+
"""
|
55835
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
55836
|
+
"""
|
55837
|
+
return pulumi.get(self, "exascale_db_storage_vault_id")
|
55838
|
+
|
54813
55839
|
@property
|
54814
55840
|
@pulumi.getter(name="fileSystemConfigurationDetails")
|
54815
55841
|
def file_system_configuration_details(self) -> Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult']:
|
@@ -54924,6 +55950,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
54924
55950
|
"""
|
54925
55951
|
return pulumi.get(self, "state")
|
54926
55952
|
|
55953
|
+
@property
|
55954
|
+
@pulumi.getter(name="storageManagementType")
|
55955
|
+
def storage_management_type(self) -> str:
|
55956
|
+
"""
|
55957
|
+
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
|
55958
|
+
"""
|
55959
|
+
return pulumi.get(self, "storage_management_type")
|
55960
|
+
|
54927
55961
|
@property
|
54928
55962
|
@pulumi.getter(name="systemVersion")
|
54929
55963
|
def system_version(self) -> str:
|
@@ -54956,6 +55990,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
54956
55990
|
"""
|
54957
55991
|
return pulumi.get(self, "vm_cluster_network_id")
|
54958
55992
|
|
55993
|
+
@property
|
55994
|
+
@pulumi.getter(name="vmClusterType")
|
55995
|
+
def vm_cluster_type(self) -> str:
|
55996
|
+
"""
|
55997
|
+
A filter to return only vmclusters that match the given vmcluster type exactly.
|
55998
|
+
"""
|
55999
|
+
return pulumi.get(self, "vm_cluster_type")
|
56000
|
+
|
54959
56001
|
|
54960
56002
|
@pulumi.output_type
|
54961
56003
|
class GetVmClustersVmClusterCloudAutomationUpdateDetailResult(dict):
|