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/_inputs.py
CHANGED
@@ -253,10 +253,26 @@ __all__ = [
|
|
253
253
|
'ExadataInfrastructureComputeMaintenanceWindowDaysOfWeekArgsDict',
|
254
254
|
'ExadataInfrastructureComputeMaintenanceWindowMonthArgs',
|
255
255
|
'ExadataInfrastructureComputeMaintenanceWindowMonthArgsDict',
|
256
|
+
'ExadataInfrastructureConfigureExascaleManagementContactArgs',
|
257
|
+
'ExadataInfrastructureConfigureExascaleManagementContactArgsDict',
|
258
|
+
'ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs',
|
259
|
+
'ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict',
|
260
|
+
'ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs',
|
261
|
+
'ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict',
|
262
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs',
|
263
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict',
|
264
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs',
|
265
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict',
|
266
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs',
|
267
|
+
'ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict',
|
268
|
+
'ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgs',
|
269
|
+
'ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgsDict',
|
256
270
|
'ExadataInfrastructureContactArgs',
|
257
271
|
'ExadataInfrastructureContactArgsDict',
|
258
272
|
'ExadataInfrastructureDefinedFileSystemConfigurationArgs',
|
259
273
|
'ExadataInfrastructureDefinedFileSystemConfigurationArgsDict',
|
274
|
+
'ExadataInfrastructureExascaleConfigArgs',
|
275
|
+
'ExadataInfrastructureExascaleConfigArgsDict',
|
260
276
|
'ExadataInfrastructureMaintenanceWindowArgs',
|
261
277
|
'ExadataInfrastructureMaintenanceWindowArgsDict',
|
262
278
|
'ExadataInfrastructureMaintenanceWindowDaysOfWeekArgs',
|
@@ -13650,6 +13666,642 @@ class ExadataInfrastructureComputeMaintenanceWindowMonthArgs:
|
|
13650
13666
|
pulumi.set(self, "name", value)
|
13651
13667
|
|
13652
13668
|
|
13669
|
+
if not MYPY:
|
13670
|
+
class ExadataInfrastructureConfigureExascaleManagementContactArgsDict(TypedDict):
|
13671
|
+
email: NotRequired[pulumi.Input[str]]
|
13672
|
+
"""
|
13673
|
+
The email for the Exadata Infrastructure contact.
|
13674
|
+
"""
|
13675
|
+
is_contact_mos_validated: NotRequired[pulumi.Input[bool]]
|
13676
|
+
"""
|
13677
|
+
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.
|
13678
|
+
"""
|
13679
|
+
is_primary: NotRequired[pulumi.Input[bool]]
|
13680
|
+
"""
|
13681
|
+
If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
|
13682
|
+
"""
|
13683
|
+
name: NotRequired[pulumi.Input[str]]
|
13684
|
+
"""
|
13685
|
+
Name of the month of the year.
|
13686
|
+
"""
|
13687
|
+
phone_number: NotRequired[pulumi.Input[str]]
|
13688
|
+
"""
|
13689
|
+
The phone number for the Exadata Infrastructure contact.
|
13690
|
+
"""
|
13691
|
+
elif False:
|
13692
|
+
ExadataInfrastructureConfigureExascaleManagementContactArgsDict: TypeAlias = Mapping[str, Any]
|
13693
|
+
|
13694
|
+
@pulumi.input_type
|
13695
|
+
class ExadataInfrastructureConfigureExascaleManagementContactArgs:
|
13696
|
+
def __init__(__self__, *,
|
13697
|
+
email: Optional[pulumi.Input[str]] = None,
|
13698
|
+
is_contact_mos_validated: Optional[pulumi.Input[bool]] = None,
|
13699
|
+
is_primary: Optional[pulumi.Input[bool]] = None,
|
13700
|
+
name: Optional[pulumi.Input[str]] = None,
|
13701
|
+
phone_number: Optional[pulumi.Input[str]] = None):
|
13702
|
+
"""
|
13703
|
+
:param pulumi.Input[str] email: The email for the Exadata Infrastructure contact.
|
13704
|
+
:param pulumi.Input[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.
|
13705
|
+
:param pulumi.Input[bool] is_primary: If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
|
13706
|
+
:param pulumi.Input[str] name: Name of the month of the year.
|
13707
|
+
:param pulumi.Input[str] phone_number: The phone number for the Exadata Infrastructure contact.
|
13708
|
+
"""
|
13709
|
+
if email is not None:
|
13710
|
+
pulumi.set(__self__, "email", email)
|
13711
|
+
if is_contact_mos_validated is not None:
|
13712
|
+
pulumi.set(__self__, "is_contact_mos_validated", is_contact_mos_validated)
|
13713
|
+
if is_primary is not None:
|
13714
|
+
pulumi.set(__self__, "is_primary", is_primary)
|
13715
|
+
if name is not None:
|
13716
|
+
pulumi.set(__self__, "name", name)
|
13717
|
+
if phone_number is not None:
|
13718
|
+
pulumi.set(__self__, "phone_number", phone_number)
|
13719
|
+
|
13720
|
+
@property
|
13721
|
+
@pulumi.getter
|
13722
|
+
def email(self) -> Optional[pulumi.Input[str]]:
|
13723
|
+
"""
|
13724
|
+
The email for the Exadata Infrastructure contact.
|
13725
|
+
"""
|
13726
|
+
return pulumi.get(self, "email")
|
13727
|
+
|
13728
|
+
@email.setter
|
13729
|
+
def email(self, value: Optional[pulumi.Input[str]]):
|
13730
|
+
pulumi.set(self, "email", value)
|
13731
|
+
|
13732
|
+
@property
|
13733
|
+
@pulumi.getter(name="isContactMosValidated")
|
13734
|
+
def is_contact_mos_validated(self) -> Optional[pulumi.Input[bool]]:
|
13735
|
+
"""
|
13736
|
+
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.
|
13737
|
+
"""
|
13738
|
+
return pulumi.get(self, "is_contact_mos_validated")
|
13739
|
+
|
13740
|
+
@is_contact_mos_validated.setter
|
13741
|
+
def is_contact_mos_validated(self, value: Optional[pulumi.Input[bool]]):
|
13742
|
+
pulumi.set(self, "is_contact_mos_validated", value)
|
13743
|
+
|
13744
|
+
@property
|
13745
|
+
@pulumi.getter(name="isPrimary")
|
13746
|
+
def is_primary(self) -> Optional[pulumi.Input[bool]]:
|
13747
|
+
"""
|
13748
|
+
If `true`, this Exadata Infrastructure contact is a primary contact. If `false`, this Exadata Infrastructure is a secondary contact.
|
13749
|
+
"""
|
13750
|
+
return pulumi.get(self, "is_primary")
|
13751
|
+
|
13752
|
+
@is_primary.setter
|
13753
|
+
def is_primary(self, value: Optional[pulumi.Input[bool]]):
|
13754
|
+
pulumi.set(self, "is_primary", value)
|
13755
|
+
|
13756
|
+
@property
|
13757
|
+
@pulumi.getter
|
13758
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
13759
|
+
"""
|
13760
|
+
Name of the month of the year.
|
13761
|
+
"""
|
13762
|
+
return pulumi.get(self, "name")
|
13763
|
+
|
13764
|
+
@name.setter
|
13765
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
13766
|
+
pulumi.set(self, "name", value)
|
13767
|
+
|
13768
|
+
@property
|
13769
|
+
@pulumi.getter(name="phoneNumber")
|
13770
|
+
def phone_number(self) -> Optional[pulumi.Input[str]]:
|
13771
|
+
"""
|
13772
|
+
The phone number for the Exadata Infrastructure contact.
|
13773
|
+
"""
|
13774
|
+
return pulumi.get(self, "phone_number")
|
13775
|
+
|
13776
|
+
@phone_number.setter
|
13777
|
+
def phone_number(self, value: Optional[pulumi.Input[str]]):
|
13778
|
+
pulumi.set(self, "phone_number", value)
|
13779
|
+
|
13780
|
+
|
13781
|
+
if not MYPY:
|
13782
|
+
class ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict(TypedDict):
|
13783
|
+
is_backup_partition: NotRequired[pulumi.Input[bool]]
|
13784
|
+
"""
|
13785
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
13786
|
+
"""
|
13787
|
+
is_resizable: NotRequired[pulumi.Input[bool]]
|
13788
|
+
"""
|
13789
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
13790
|
+
"""
|
13791
|
+
min_size_gb: NotRequired[pulumi.Input[int]]
|
13792
|
+
"""
|
13793
|
+
The minimum size of file system.
|
13794
|
+
"""
|
13795
|
+
mount_point: NotRequired[pulumi.Input[str]]
|
13796
|
+
"""
|
13797
|
+
The mount point of file system.
|
13798
|
+
"""
|
13799
|
+
elif False:
|
13800
|
+
ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
13801
|
+
|
13802
|
+
@pulumi.input_type
|
13803
|
+
class ExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs:
|
13804
|
+
def __init__(__self__, *,
|
13805
|
+
is_backup_partition: Optional[pulumi.Input[bool]] = None,
|
13806
|
+
is_resizable: Optional[pulumi.Input[bool]] = None,
|
13807
|
+
min_size_gb: Optional[pulumi.Input[int]] = None,
|
13808
|
+
mount_point: Optional[pulumi.Input[str]] = None):
|
13809
|
+
"""
|
13810
|
+
:param pulumi.Input[bool] is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
13811
|
+
:param pulumi.Input[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.
|
13812
|
+
:param pulumi.Input[int] min_size_gb: The minimum size of file system.
|
13813
|
+
:param pulumi.Input[str] mount_point: The mount point of file system.
|
13814
|
+
"""
|
13815
|
+
if is_backup_partition is not None:
|
13816
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
13817
|
+
if is_resizable is not None:
|
13818
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
13819
|
+
if min_size_gb is not None:
|
13820
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
13821
|
+
if mount_point is not None:
|
13822
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
13823
|
+
|
13824
|
+
@property
|
13825
|
+
@pulumi.getter(name="isBackupPartition")
|
13826
|
+
def is_backup_partition(self) -> Optional[pulumi.Input[bool]]:
|
13827
|
+
"""
|
13828
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
13829
|
+
"""
|
13830
|
+
return pulumi.get(self, "is_backup_partition")
|
13831
|
+
|
13832
|
+
@is_backup_partition.setter
|
13833
|
+
def is_backup_partition(self, value: Optional[pulumi.Input[bool]]):
|
13834
|
+
pulumi.set(self, "is_backup_partition", value)
|
13835
|
+
|
13836
|
+
@property
|
13837
|
+
@pulumi.getter(name="isResizable")
|
13838
|
+
def is_resizable(self) -> Optional[pulumi.Input[bool]]:
|
13839
|
+
"""
|
13840
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
13841
|
+
"""
|
13842
|
+
return pulumi.get(self, "is_resizable")
|
13843
|
+
|
13844
|
+
@is_resizable.setter
|
13845
|
+
def is_resizable(self, value: Optional[pulumi.Input[bool]]):
|
13846
|
+
pulumi.set(self, "is_resizable", value)
|
13847
|
+
|
13848
|
+
@property
|
13849
|
+
@pulumi.getter(name="minSizeGb")
|
13850
|
+
def min_size_gb(self) -> Optional[pulumi.Input[int]]:
|
13851
|
+
"""
|
13852
|
+
The minimum size of file system.
|
13853
|
+
"""
|
13854
|
+
return pulumi.get(self, "min_size_gb")
|
13855
|
+
|
13856
|
+
@min_size_gb.setter
|
13857
|
+
def min_size_gb(self, value: Optional[pulumi.Input[int]]):
|
13858
|
+
pulumi.set(self, "min_size_gb", value)
|
13859
|
+
|
13860
|
+
@property
|
13861
|
+
@pulumi.getter(name="mountPoint")
|
13862
|
+
def mount_point(self) -> Optional[pulumi.Input[str]]:
|
13863
|
+
"""
|
13864
|
+
The mount point of file system.
|
13865
|
+
"""
|
13866
|
+
return pulumi.get(self, "mount_point")
|
13867
|
+
|
13868
|
+
@mount_point.setter
|
13869
|
+
def mount_point(self, value: Optional[pulumi.Input[str]]):
|
13870
|
+
pulumi.set(self, "mount_point", value)
|
13871
|
+
|
13872
|
+
|
13873
|
+
if not MYPY:
|
13874
|
+
class ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict(TypedDict):
|
13875
|
+
available_storage_in_gbs: NotRequired[pulumi.Input[int]]
|
13876
|
+
"""
|
13877
|
+
Available storage size for Exascale in GBs.
|
13878
|
+
"""
|
13879
|
+
total_storage_in_gbs: NotRequired[pulumi.Input[int]]
|
13880
|
+
"""
|
13881
|
+
Storage size needed for Exascale in GBs.
|
13882
|
+
|
13883
|
+
|
13884
|
+
** IMPORTANT **
|
13885
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
13886
|
+
"""
|
13887
|
+
elif False:
|
13888
|
+
ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
13889
|
+
|
13890
|
+
@pulumi.input_type
|
13891
|
+
class ExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs:
|
13892
|
+
def __init__(__self__, *,
|
13893
|
+
available_storage_in_gbs: Optional[pulumi.Input[int]] = None,
|
13894
|
+
total_storage_in_gbs: Optional[pulumi.Input[int]] = None):
|
13895
|
+
"""
|
13896
|
+
:param pulumi.Input[int] available_storage_in_gbs: Available storage size for Exascale in GBs.
|
13897
|
+
:param pulumi.Input[int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
13898
|
+
|
13899
|
+
|
13900
|
+
** IMPORTANT **
|
13901
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
13902
|
+
"""
|
13903
|
+
if available_storage_in_gbs is not None:
|
13904
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
13905
|
+
if total_storage_in_gbs is not None:
|
13906
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
13907
|
+
|
13908
|
+
@property
|
13909
|
+
@pulumi.getter(name="availableStorageInGbs")
|
13910
|
+
def available_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
13911
|
+
"""
|
13912
|
+
Available storage size for Exascale in GBs.
|
13913
|
+
"""
|
13914
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
13915
|
+
|
13916
|
+
@available_storage_in_gbs.setter
|
13917
|
+
def available_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
13918
|
+
pulumi.set(self, "available_storage_in_gbs", value)
|
13919
|
+
|
13920
|
+
@property
|
13921
|
+
@pulumi.getter(name="totalStorageInGbs")
|
13922
|
+
def total_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
13923
|
+
"""
|
13924
|
+
Storage size needed for Exascale in GBs.
|
13925
|
+
|
13926
|
+
|
13927
|
+
** IMPORTANT **
|
13928
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
13929
|
+
"""
|
13930
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
13931
|
+
|
13932
|
+
@total_storage_in_gbs.setter
|
13933
|
+
def total_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
13934
|
+
pulumi.set(self, "total_storage_in_gbs", value)
|
13935
|
+
|
13936
|
+
|
13937
|
+
if not MYPY:
|
13938
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict(TypedDict):
|
13939
|
+
custom_action_timeout_in_mins: NotRequired[pulumi.Input[int]]
|
13940
|
+
"""
|
13941
|
+
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).
|
13942
|
+
"""
|
13943
|
+
days_of_weeks: NotRequired[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict']]]]
|
13944
|
+
"""
|
13945
|
+
Days during the week when maintenance should be performed.
|
13946
|
+
"""
|
13947
|
+
hours_of_days: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
|
13948
|
+
"""
|
13949
|
+
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
|
13950
|
+
"""
|
13951
|
+
is_custom_action_timeout_enabled: NotRequired[pulumi.Input[bool]]
|
13952
|
+
"""
|
13953
|
+
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
13954
|
+
"""
|
13955
|
+
is_monthly_patching_enabled: NotRequired[pulumi.Input[bool]]
|
13956
|
+
"""
|
13957
|
+
If true, enables the monthly patching option.
|
13958
|
+
"""
|
13959
|
+
lead_time_in_weeks: NotRequired[pulumi.Input[int]]
|
13960
|
+
"""
|
13961
|
+
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.
|
13962
|
+
"""
|
13963
|
+
months: NotRequired[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict']]]]
|
13964
|
+
"""
|
13965
|
+
Months during the year when maintenance should be performed.
|
13966
|
+
"""
|
13967
|
+
patching_mode: NotRequired[pulumi.Input[str]]
|
13968
|
+
"""
|
13969
|
+
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
13970
|
+
"""
|
13971
|
+
preference: NotRequired[pulumi.Input[str]]
|
13972
|
+
"""
|
13973
|
+
The maintenance window scheduling preference.
|
13974
|
+
"""
|
13975
|
+
skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[bool]]]]
|
13976
|
+
"""
|
13977
|
+
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.
|
13978
|
+
"""
|
13979
|
+
weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[int]]]]
|
13980
|
+
"""
|
13981
|
+
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.
|
13982
|
+
"""
|
13983
|
+
elif False:
|
13984
|
+
ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
|
13985
|
+
|
13986
|
+
@pulumi.input_type
|
13987
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs:
|
13988
|
+
def __init__(__self__, *,
|
13989
|
+
custom_action_timeout_in_mins: Optional[pulumi.Input[int]] = None,
|
13990
|
+
days_of_weeks: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]] = None,
|
13991
|
+
hours_of_days: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None,
|
13992
|
+
is_custom_action_timeout_enabled: Optional[pulumi.Input[bool]] = None,
|
13993
|
+
is_monthly_patching_enabled: Optional[pulumi.Input[bool]] = None,
|
13994
|
+
lead_time_in_weeks: Optional[pulumi.Input[int]] = None,
|
13995
|
+
months: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]] = None,
|
13996
|
+
patching_mode: Optional[pulumi.Input[str]] = None,
|
13997
|
+
preference: Optional[pulumi.Input[str]] = None,
|
13998
|
+
skip_rus: Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]] = None,
|
13999
|
+
weeks_of_months: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]] = None):
|
14000
|
+
"""
|
14001
|
+
:param pulumi.Input[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).
|
14002
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]] days_of_weeks: Days during the week when maintenance should be performed.
|
14003
|
+
:param pulumi.Input[Sequence[pulumi.Input[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
|
14004
|
+
:param pulumi.Input[bool] is_custom_action_timeout_enabled: If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
14005
|
+
:param pulumi.Input[bool] is_monthly_patching_enabled: If true, enables the monthly patching option.
|
14006
|
+
:param pulumi.Input[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.
|
14007
|
+
:param pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
|
14008
|
+
:param pulumi.Input[str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
14009
|
+
:param pulumi.Input[str] preference: The maintenance window scheduling preference.
|
14010
|
+
:param pulumi.Input[Sequence[pulumi.Input[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.
|
14011
|
+
:param pulumi.Input[Sequence[pulumi.Input[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.
|
14012
|
+
"""
|
14013
|
+
if custom_action_timeout_in_mins is not None:
|
14014
|
+
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
14015
|
+
if days_of_weeks is not None:
|
14016
|
+
pulumi.set(__self__, "days_of_weeks", days_of_weeks)
|
14017
|
+
if hours_of_days is not None:
|
14018
|
+
pulumi.set(__self__, "hours_of_days", hours_of_days)
|
14019
|
+
if is_custom_action_timeout_enabled is not None:
|
14020
|
+
pulumi.set(__self__, "is_custom_action_timeout_enabled", is_custom_action_timeout_enabled)
|
14021
|
+
if is_monthly_patching_enabled is not None:
|
14022
|
+
pulumi.set(__self__, "is_monthly_patching_enabled", is_monthly_patching_enabled)
|
14023
|
+
if lead_time_in_weeks is not None:
|
14024
|
+
pulumi.set(__self__, "lead_time_in_weeks", lead_time_in_weeks)
|
14025
|
+
if months is not None:
|
14026
|
+
pulumi.set(__self__, "months", months)
|
14027
|
+
if patching_mode is not None:
|
14028
|
+
pulumi.set(__self__, "patching_mode", patching_mode)
|
14029
|
+
if preference is not None:
|
14030
|
+
pulumi.set(__self__, "preference", preference)
|
14031
|
+
if skip_rus is not None:
|
14032
|
+
pulumi.set(__self__, "skip_rus", skip_rus)
|
14033
|
+
if weeks_of_months is not None:
|
14034
|
+
pulumi.set(__self__, "weeks_of_months", weeks_of_months)
|
14035
|
+
|
14036
|
+
@property
|
14037
|
+
@pulumi.getter(name="customActionTimeoutInMins")
|
14038
|
+
def custom_action_timeout_in_mins(self) -> Optional[pulumi.Input[int]]:
|
14039
|
+
"""
|
14040
|
+
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).
|
14041
|
+
"""
|
14042
|
+
return pulumi.get(self, "custom_action_timeout_in_mins")
|
14043
|
+
|
14044
|
+
@custom_action_timeout_in_mins.setter
|
14045
|
+
def custom_action_timeout_in_mins(self, value: Optional[pulumi.Input[int]]):
|
14046
|
+
pulumi.set(self, "custom_action_timeout_in_mins", value)
|
14047
|
+
|
14048
|
+
@property
|
14049
|
+
@pulumi.getter(name="daysOfWeeks")
|
14050
|
+
def days_of_weeks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]]:
|
14051
|
+
"""
|
14052
|
+
Days during the week when maintenance should be performed.
|
14053
|
+
"""
|
14054
|
+
return pulumi.get(self, "days_of_weeks")
|
14055
|
+
|
14056
|
+
@days_of_weeks.setter
|
14057
|
+
def days_of_weeks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]]):
|
14058
|
+
pulumi.set(self, "days_of_weeks", value)
|
14059
|
+
|
14060
|
+
@property
|
14061
|
+
@pulumi.getter(name="hoursOfDays")
|
14062
|
+
def hours_of_days(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
|
14063
|
+
"""
|
14064
|
+
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
|
14065
|
+
"""
|
14066
|
+
return pulumi.get(self, "hours_of_days")
|
14067
|
+
|
14068
|
+
@hours_of_days.setter
|
14069
|
+
def hours_of_days(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
|
14070
|
+
pulumi.set(self, "hours_of_days", value)
|
14071
|
+
|
14072
|
+
@property
|
14073
|
+
@pulumi.getter(name="isCustomActionTimeoutEnabled")
|
14074
|
+
def is_custom_action_timeout_enabled(self) -> Optional[pulumi.Input[bool]]:
|
14075
|
+
"""
|
14076
|
+
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
14077
|
+
"""
|
14078
|
+
return pulumi.get(self, "is_custom_action_timeout_enabled")
|
14079
|
+
|
14080
|
+
@is_custom_action_timeout_enabled.setter
|
14081
|
+
def is_custom_action_timeout_enabled(self, value: Optional[pulumi.Input[bool]]):
|
14082
|
+
pulumi.set(self, "is_custom_action_timeout_enabled", value)
|
14083
|
+
|
14084
|
+
@property
|
14085
|
+
@pulumi.getter(name="isMonthlyPatchingEnabled")
|
14086
|
+
def is_monthly_patching_enabled(self) -> Optional[pulumi.Input[bool]]:
|
14087
|
+
"""
|
14088
|
+
If true, enables the monthly patching option.
|
14089
|
+
"""
|
14090
|
+
return pulumi.get(self, "is_monthly_patching_enabled")
|
14091
|
+
|
14092
|
+
@is_monthly_patching_enabled.setter
|
14093
|
+
def is_monthly_patching_enabled(self, value: Optional[pulumi.Input[bool]]):
|
14094
|
+
pulumi.set(self, "is_monthly_patching_enabled", value)
|
14095
|
+
|
14096
|
+
@property
|
14097
|
+
@pulumi.getter(name="leadTimeInWeeks")
|
14098
|
+
def lead_time_in_weeks(self) -> Optional[pulumi.Input[int]]:
|
14099
|
+
"""
|
14100
|
+
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.
|
14101
|
+
"""
|
14102
|
+
return pulumi.get(self, "lead_time_in_weeks")
|
14103
|
+
|
14104
|
+
@lead_time_in_weeks.setter
|
14105
|
+
def lead_time_in_weeks(self, value: Optional[pulumi.Input[int]]):
|
14106
|
+
pulumi.set(self, "lead_time_in_weeks", value)
|
14107
|
+
|
14108
|
+
@property
|
14109
|
+
@pulumi.getter
|
14110
|
+
def months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]]:
|
14111
|
+
"""
|
14112
|
+
Months during the year when maintenance should be performed.
|
14113
|
+
"""
|
14114
|
+
return pulumi.get(self, "months")
|
14115
|
+
|
14116
|
+
@months.setter
|
14117
|
+
def months(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]]):
|
14118
|
+
pulumi.set(self, "months", value)
|
14119
|
+
|
14120
|
+
@property
|
14121
|
+
@pulumi.getter(name="patchingMode")
|
14122
|
+
def patching_mode(self) -> Optional[pulumi.Input[str]]:
|
14123
|
+
"""
|
14124
|
+
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
14125
|
+
"""
|
14126
|
+
return pulumi.get(self, "patching_mode")
|
14127
|
+
|
14128
|
+
@patching_mode.setter
|
14129
|
+
def patching_mode(self, value: Optional[pulumi.Input[str]]):
|
14130
|
+
pulumi.set(self, "patching_mode", value)
|
14131
|
+
|
14132
|
+
@property
|
14133
|
+
@pulumi.getter
|
14134
|
+
def preference(self) -> Optional[pulumi.Input[str]]:
|
14135
|
+
"""
|
14136
|
+
The maintenance window scheduling preference.
|
14137
|
+
"""
|
14138
|
+
return pulumi.get(self, "preference")
|
14139
|
+
|
14140
|
+
@preference.setter
|
14141
|
+
def preference(self, value: Optional[pulumi.Input[str]]):
|
14142
|
+
pulumi.set(self, "preference", value)
|
14143
|
+
|
14144
|
+
@property
|
14145
|
+
@pulumi.getter(name="skipRus")
|
14146
|
+
def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]:
|
14147
|
+
"""
|
14148
|
+
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.
|
14149
|
+
"""
|
14150
|
+
return pulumi.get(self, "skip_rus")
|
14151
|
+
|
14152
|
+
@skip_rus.setter
|
14153
|
+
def skip_rus(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[bool]]]]):
|
14154
|
+
pulumi.set(self, "skip_rus", value)
|
14155
|
+
|
14156
|
+
@property
|
14157
|
+
@pulumi.getter(name="weeksOfMonths")
|
14158
|
+
def weeks_of_months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]:
|
14159
|
+
"""
|
14160
|
+
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.
|
14161
|
+
"""
|
14162
|
+
return pulumi.get(self, "weeks_of_months")
|
14163
|
+
|
14164
|
+
@weeks_of_months.setter
|
14165
|
+
def weeks_of_months(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[int]]]]):
|
14166
|
+
pulumi.set(self, "weeks_of_months", value)
|
14167
|
+
|
14168
|
+
|
14169
|
+
if not MYPY:
|
14170
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict(TypedDict):
|
14171
|
+
name: NotRequired[pulumi.Input[str]]
|
14172
|
+
"""
|
14173
|
+
Name of the month of the year.
|
14174
|
+
"""
|
14175
|
+
elif False:
|
14176
|
+
ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict: TypeAlias = Mapping[str, Any]
|
14177
|
+
|
14178
|
+
@pulumi.input_type
|
14179
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs:
|
14180
|
+
def __init__(__self__, *,
|
14181
|
+
name: Optional[pulumi.Input[str]] = None):
|
14182
|
+
"""
|
14183
|
+
:param pulumi.Input[str] name: Name of the month of the year.
|
14184
|
+
"""
|
14185
|
+
if name is not None:
|
14186
|
+
pulumi.set(__self__, "name", name)
|
14187
|
+
|
14188
|
+
@property
|
14189
|
+
@pulumi.getter
|
14190
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
14191
|
+
"""
|
14192
|
+
Name of the month of the year.
|
14193
|
+
"""
|
14194
|
+
return pulumi.get(self, "name")
|
14195
|
+
|
14196
|
+
@name.setter
|
14197
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
14198
|
+
pulumi.set(self, "name", value)
|
14199
|
+
|
14200
|
+
|
14201
|
+
if not MYPY:
|
14202
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict(TypedDict):
|
14203
|
+
name: NotRequired[pulumi.Input[str]]
|
14204
|
+
"""
|
14205
|
+
Name of the month of the year.
|
14206
|
+
"""
|
14207
|
+
elif False:
|
14208
|
+
ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict: TypeAlias = Mapping[str, Any]
|
14209
|
+
|
14210
|
+
@pulumi.input_type
|
14211
|
+
class ExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs:
|
14212
|
+
def __init__(__self__, *,
|
14213
|
+
name: Optional[pulumi.Input[str]] = None):
|
14214
|
+
"""
|
14215
|
+
:param pulumi.Input[str] name: Name of the month of the year.
|
14216
|
+
"""
|
14217
|
+
if name is not None:
|
14218
|
+
pulumi.set(__self__, "name", name)
|
14219
|
+
|
14220
|
+
@property
|
14221
|
+
@pulumi.getter
|
14222
|
+
def name(self) -> Optional[pulumi.Input[str]]:
|
14223
|
+
"""
|
14224
|
+
Name of the month of the year.
|
14225
|
+
"""
|
14226
|
+
return pulumi.get(self, "name")
|
14227
|
+
|
14228
|
+
@name.setter
|
14229
|
+
def name(self, value: Optional[pulumi.Input[str]]):
|
14230
|
+
pulumi.set(self, "name", value)
|
14231
|
+
|
14232
|
+
|
14233
|
+
if not MYPY:
|
14234
|
+
class ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgsDict(TypedDict):
|
14235
|
+
backup_network_bonding_mode: NotRequired[pulumi.Input[str]]
|
14236
|
+
"""
|
14237
|
+
The network bonding mode for the Exadata infrastructure.
|
14238
|
+
"""
|
14239
|
+
client_network_bonding_mode: NotRequired[pulumi.Input[str]]
|
14240
|
+
"""
|
14241
|
+
The network bonding mode for the Exadata infrastructure.
|
14242
|
+
"""
|
14243
|
+
dr_network_bonding_mode: NotRequired[pulumi.Input[str]]
|
14244
|
+
"""
|
14245
|
+
The network bonding mode for the Exadata infrastructure.
|
14246
|
+
"""
|
14247
|
+
elif False:
|
14248
|
+
ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgsDict: TypeAlias = Mapping[str, Any]
|
14249
|
+
|
14250
|
+
@pulumi.input_type
|
14251
|
+
class ExadataInfrastructureConfigureExascaleManagementNetworkBondingModeDetailArgs:
|
14252
|
+
def __init__(__self__, *,
|
14253
|
+
backup_network_bonding_mode: Optional[pulumi.Input[str]] = None,
|
14254
|
+
client_network_bonding_mode: Optional[pulumi.Input[str]] = None,
|
14255
|
+
dr_network_bonding_mode: Optional[pulumi.Input[str]] = None):
|
14256
|
+
"""
|
14257
|
+
:param pulumi.Input[str] backup_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
|
14258
|
+
:param pulumi.Input[str] client_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
|
14259
|
+
:param pulumi.Input[str] dr_network_bonding_mode: The network bonding mode for the Exadata infrastructure.
|
14260
|
+
"""
|
14261
|
+
if backup_network_bonding_mode is not None:
|
14262
|
+
pulumi.set(__self__, "backup_network_bonding_mode", backup_network_bonding_mode)
|
14263
|
+
if client_network_bonding_mode is not None:
|
14264
|
+
pulumi.set(__self__, "client_network_bonding_mode", client_network_bonding_mode)
|
14265
|
+
if dr_network_bonding_mode is not None:
|
14266
|
+
pulumi.set(__self__, "dr_network_bonding_mode", dr_network_bonding_mode)
|
14267
|
+
|
14268
|
+
@property
|
14269
|
+
@pulumi.getter(name="backupNetworkBondingMode")
|
14270
|
+
def backup_network_bonding_mode(self) -> Optional[pulumi.Input[str]]:
|
14271
|
+
"""
|
14272
|
+
The network bonding mode for the Exadata infrastructure.
|
14273
|
+
"""
|
14274
|
+
return pulumi.get(self, "backup_network_bonding_mode")
|
14275
|
+
|
14276
|
+
@backup_network_bonding_mode.setter
|
14277
|
+
def backup_network_bonding_mode(self, value: Optional[pulumi.Input[str]]):
|
14278
|
+
pulumi.set(self, "backup_network_bonding_mode", value)
|
14279
|
+
|
14280
|
+
@property
|
14281
|
+
@pulumi.getter(name="clientNetworkBondingMode")
|
14282
|
+
def client_network_bonding_mode(self) -> Optional[pulumi.Input[str]]:
|
14283
|
+
"""
|
14284
|
+
The network bonding mode for the Exadata infrastructure.
|
14285
|
+
"""
|
14286
|
+
return pulumi.get(self, "client_network_bonding_mode")
|
14287
|
+
|
14288
|
+
@client_network_bonding_mode.setter
|
14289
|
+
def client_network_bonding_mode(self, value: Optional[pulumi.Input[str]]):
|
14290
|
+
pulumi.set(self, "client_network_bonding_mode", value)
|
14291
|
+
|
14292
|
+
@property
|
14293
|
+
@pulumi.getter(name="drNetworkBondingMode")
|
14294
|
+
def dr_network_bonding_mode(self) -> Optional[pulumi.Input[str]]:
|
14295
|
+
"""
|
14296
|
+
The network bonding mode for the Exadata infrastructure.
|
14297
|
+
"""
|
14298
|
+
return pulumi.get(self, "dr_network_bonding_mode")
|
14299
|
+
|
14300
|
+
@dr_network_bonding_mode.setter
|
14301
|
+
def dr_network_bonding_mode(self, value: Optional[pulumi.Input[str]]):
|
14302
|
+
pulumi.set(self, "dr_network_bonding_mode", value)
|
14303
|
+
|
14304
|
+
|
13653
14305
|
if not MYPY:
|
13654
14306
|
class ExadataInfrastructureContactArgsDict(TypedDict):
|
13655
14307
|
email: pulumi.Input[str]
|
@@ -13851,6 +14503,58 @@ class ExadataInfrastructureDefinedFileSystemConfigurationArgs:
|
|
13851
14503
|
pulumi.set(self, "mount_point", value)
|
13852
14504
|
|
13853
14505
|
|
14506
|
+
if not MYPY:
|
14507
|
+
class ExadataInfrastructureExascaleConfigArgsDict(TypedDict):
|
14508
|
+
available_storage_in_gbs: NotRequired[pulumi.Input[int]]
|
14509
|
+
"""
|
14510
|
+
Available storage size for Exascale in GBs.
|
14511
|
+
"""
|
14512
|
+
total_storage_in_gbs: NotRequired[pulumi.Input[int]]
|
14513
|
+
"""
|
14514
|
+
Storage size needed for Exascale in GBs.
|
14515
|
+
"""
|
14516
|
+
elif False:
|
14517
|
+
ExadataInfrastructureExascaleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
14518
|
+
|
14519
|
+
@pulumi.input_type
|
14520
|
+
class ExadataInfrastructureExascaleConfigArgs:
|
14521
|
+
def __init__(__self__, *,
|
14522
|
+
available_storage_in_gbs: Optional[pulumi.Input[int]] = None,
|
14523
|
+
total_storage_in_gbs: Optional[pulumi.Input[int]] = None):
|
14524
|
+
"""
|
14525
|
+
:param pulumi.Input[int] available_storage_in_gbs: Available storage size for Exascale in GBs.
|
14526
|
+
:param pulumi.Input[int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
14527
|
+
"""
|
14528
|
+
if available_storage_in_gbs is not None:
|
14529
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
14530
|
+
if total_storage_in_gbs is not None:
|
14531
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
14532
|
+
|
14533
|
+
@property
|
14534
|
+
@pulumi.getter(name="availableStorageInGbs")
|
14535
|
+
def available_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
14536
|
+
"""
|
14537
|
+
Available storage size for Exascale in GBs.
|
14538
|
+
"""
|
14539
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
14540
|
+
|
14541
|
+
@available_storage_in_gbs.setter
|
14542
|
+
def available_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
14543
|
+
pulumi.set(self, "available_storage_in_gbs", value)
|
14544
|
+
|
14545
|
+
@property
|
14546
|
+
@pulumi.getter(name="totalStorageInGbs")
|
14547
|
+
def total_storage_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
14548
|
+
"""
|
14549
|
+
Storage size needed for Exascale in GBs.
|
14550
|
+
"""
|
14551
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
14552
|
+
|
14553
|
+
@total_storage_in_gbs.setter
|
14554
|
+
def total_storage_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
14555
|
+
pulumi.set(self, "total_storage_in_gbs", value)
|
14556
|
+
|
14557
|
+
|
13854
14558
|
if not MYPY:
|
13855
14559
|
class ExadataInfrastructureMaintenanceWindowArgsDict(TypedDict):
|
13856
14560
|
custom_action_timeout_in_mins: NotRequired[pulumi.Input[int]]
|