pulumi-oci 3.8.0a1758168665__py3-none-any.whl → 3.9.0a1758687119__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 +24 -0
- pulumi_oci/database/__init__.py +1 -0
- pulumi_oci/database/_inputs.py +550 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_exadata_infrastructure_configure_exascale_management.py +1308 -0
- pulumi_oci/database/cloud_vm_cluster.py +77 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +29 -1
- pulumi_oci/database/outputs.py +515 -0
- pulumi_oci/datasafe/_inputs.py +180 -0
- pulumi_oci/datasafe/audit_policy_management.py +7 -7
- pulumi_oci/datasafe/audit_trail_management.py +2 -0
- pulumi_oci/datasafe/discovery_jobs_result.py +40 -0
- pulumi_oci/datasafe/get_data_safe_configuration.py +2 -2
- pulumi_oci/datasafe/get_discovery_jobs_result.py +29 -1
- pulumi_oci/datasafe/get_discovery_jobs_results.py +23 -1
- pulumi_oci/datasafe/get_masking_reports.py +20 -1
- pulumi_oci/datasafe/get_security_assessment_finding.py +16 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +26 -3
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_column.py +30 -1
- pulumi_oci/datasafe/get_sensitive_data_models_sensitive_columns.py +44 -3
- pulumi_oci/datasafe/outputs.py +400 -2
- pulumi_oci/datasafe/sensitive_data_models_sensitive_column.py +58 -0
- pulumi_oci/jms/__init__.py +16 -0
- pulumi_oci/jms/_inputs.py +2068 -29
- pulumi_oci/jms/fleet.py +56 -0
- pulumi_oci/jms/get_fleet.py +29 -1
- pulumi_oci/jms/get_fleet_containers.py +289 -0
- pulumi_oci/jms/get_fleet_export_setting.py +16 -1
- pulumi_oci/jms/get_fleet_library_applications.py +280 -0
- pulumi_oci/jms/get_fleet_library_managed_instances.py +280 -0
- pulumi_oci/jms/get_fleet_summarize_library_inventory.py +211 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_applications.py +239 -0
- pulumi_oci/jms/get_fleet_uncorrelated_package_managed_instances.py +242 -0
- pulumi_oci/jms/get_fleet_uncorrelated_packages.py +242 -0
- pulumi_oci/jms/get_java_family.py +15 -1
- pulumi_oci/jms/get_jms_plugin.py +2 -2
- pulumi_oci/jms/get_jms_plugins.py +4 -4
- pulumi_oci/jms/get_task_schedule.py +262 -0
- pulumi_oci/jms/get_task_schedules.py +218 -0
- pulumi_oci/jms/get_utils_analyze_applications_configuration.py +153 -0
- pulumi_oci/jms/get_utils_java_migration_analysi.py +316 -0
- pulumi_oci/jms/get_utils_java_migration_analysis.py +177 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysi.py +274 -0
- pulumi_oci/jms/get_utils_performance_tuning_analysis.py +196 -0
- pulumi_oci/jms/get_utils_subscription_acknowledgment_configuration.py +161 -0
- pulumi_oci/jms/jms_plugin.py +36 -15
- pulumi_oci/jms/outputs.py +8500 -3920
- pulumi_oci/jms/task_schedule.py +658 -0
- pulumi_oci/marketplace/__init__.py +2 -0
- pulumi_oci/marketplace/_inputs.py +49 -0
- pulumi_oci/marketplace/get_marketplace_metadata_public_keys.py +144 -0
- pulumi_oci/marketplace/marketplace_external_attested_metadata.py +298 -0
- pulumi_oci/marketplace/outputs.py +124 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/get_redis_cluster.py +29 -1
- pulumi_oci/redis/outputs.py +22 -0
- pulumi_oci/redis/redis_cluster.py +56 -0
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/METADATA +1 -1
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/RECORD +62 -43
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.8.0a1758168665.dist-info → pulumi_oci-3.9.0a1758687119.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -2960,6 +2960,14 @@ _utilities.register(
|
|
2960
2960
|
"oci:Database/cloudExadataInfrastructure:CloudExadataInfrastructure": "CloudExadataInfrastructure"
|
2961
2961
|
}
|
2962
2962
|
},
|
2963
|
+
{
|
2964
|
+
"pkg": "oci",
|
2965
|
+
"mod": "Database/cloudExadataInfrastructureConfigureExascaleManagement",
|
2966
|
+
"fqn": "pulumi_oci.database",
|
2967
|
+
"classes": {
|
2968
|
+
"oci:Database/cloudExadataInfrastructureConfigureExascaleManagement:CloudExadataInfrastructureConfigureExascaleManagement": "CloudExadataInfrastructureConfigureExascaleManagement"
|
2969
|
+
}
|
2970
|
+
},
|
2963
2971
|
{
|
2964
2972
|
"pkg": "oci",
|
2965
2973
|
"mod": "Database/cloudVmCluster",
|
@@ -5184,6 +5192,14 @@ _utilities.register(
|
|
5184
5192
|
"oci:Jms/jmsPlugin:JmsPlugin": "JmsPlugin"
|
5185
5193
|
}
|
5186
5194
|
},
|
5195
|
+
{
|
5196
|
+
"pkg": "oci",
|
5197
|
+
"mod": "Jms/taskSchedule",
|
5198
|
+
"fqn": "pulumi_oci.jms",
|
5199
|
+
"classes": {
|
5200
|
+
"oci:Jms/taskSchedule:TaskSchedule": "TaskSchedule"
|
5201
|
+
}
|
5202
|
+
},
|
5187
5203
|
{
|
5188
5204
|
"pkg": "oci",
|
5189
5205
|
"mod": "Kms/ekmsPrivateEndpoint",
|
@@ -5600,6 +5616,14 @@ _utilities.register(
|
|
5600
5616
|
"oci:Marketplace/listingPackageAgreement:ListingPackageAgreement": "ListingPackageAgreement"
|
5601
5617
|
}
|
5602
5618
|
},
|
5619
|
+
{
|
5620
|
+
"pkg": "oci",
|
5621
|
+
"mod": "Marketplace/marketplaceExternalAttestedMetadata",
|
5622
|
+
"fqn": "pulumi_oci.marketplace",
|
5623
|
+
"classes": {
|
5624
|
+
"oci:Marketplace/marketplaceExternalAttestedMetadata:MarketplaceExternalAttestedMetadata": "MarketplaceExternalAttestedMetadata"
|
5625
|
+
}
|
5626
|
+
},
|
5603
5627
|
{
|
5604
5628
|
"pkg": "oci",
|
5605
5629
|
"mod": "Marketplace/publication",
|
pulumi_oci/database/__init__.py
CHANGED
@@ -30,6 +30,7 @@ from .backup_destination import *
|
|
30
30
|
from .cloud_autonomous_vm_cluster import *
|
31
31
|
from .cloud_database_management import *
|
32
32
|
from .cloud_exadata_infrastructure import *
|
33
|
+
from .cloud_exadata_infrastructure_configure_exascale_management import *
|
33
34
|
from .cloud_vm_cluster import *
|
34
35
|
from .cloud_vm_cluster_iorm_config import *
|
35
36
|
from .data_guard_association import *
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -157,10 +157,24 @@ __all__ = [
|
|
157
157
|
'CloudAutonomousVmClusterMaintenanceWindowMonthArgsDict',
|
158
158
|
'CloudDatabaseManagementCredentialdetailsArgs',
|
159
159
|
'CloudDatabaseManagementCredentialdetailsArgsDict',
|
160
|
+
'CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs',
|
161
|
+
'CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgsDict',
|
162
|
+
'CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs',
|
163
|
+
'CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict',
|
164
|
+
'CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs',
|
165
|
+
'CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict',
|
166
|
+
'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs',
|
167
|
+
'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict',
|
168
|
+
'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs',
|
169
|
+
'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict',
|
170
|
+
'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs',
|
171
|
+
'CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict',
|
160
172
|
'CloudExadataInfrastructureCustomerContactArgs',
|
161
173
|
'CloudExadataInfrastructureCustomerContactArgsDict',
|
162
174
|
'CloudExadataInfrastructureDefinedFileSystemConfigurationArgs',
|
163
175
|
'CloudExadataInfrastructureDefinedFileSystemConfigurationArgsDict',
|
176
|
+
'CloudExadataInfrastructureExascaleConfigArgs',
|
177
|
+
'CloudExadataInfrastructureExascaleConfigArgsDict',
|
164
178
|
'CloudExadataInfrastructureMaintenanceWindowArgs',
|
165
179
|
'CloudExadataInfrastructureMaintenanceWindowArgsDict',
|
166
180
|
'CloudExadataInfrastructureMaintenanceWindowDaysOfWeekArgs',
|
@@ -9059,6 +9073,490 @@ class CloudDatabaseManagementCredentialdetailsArgs:
|
|
9059
9073
|
pulumi.set(self, "user_name", value)
|
9060
9074
|
|
9061
9075
|
|
9076
|
+
if not MYPY:
|
9077
|
+
class CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgsDict(TypedDict):
|
9078
|
+
email: NotRequired[pulumi.Input[_builtins.str]]
|
9079
|
+
"""
|
9080
|
+
The email address used by Oracle to send notifications regarding databases and infrastructure.
|
9081
|
+
"""
|
9082
|
+
elif False:
|
9083
|
+
CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgsDict: TypeAlias = Mapping[str, Any]
|
9084
|
+
|
9085
|
+
@pulumi.input_type
|
9086
|
+
class CloudExadataInfrastructureConfigureExascaleManagementCustomerContactArgs:
|
9087
|
+
def __init__(__self__, *,
|
9088
|
+
email: Optional[pulumi.Input[_builtins.str]] = None):
|
9089
|
+
"""
|
9090
|
+
:param pulumi.Input[_builtins.str] email: The email address used by Oracle to send notifications regarding databases and infrastructure.
|
9091
|
+
"""
|
9092
|
+
if email is not None:
|
9093
|
+
pulumi.set(__self__, "email", email)
|
9094
|
+
|
9095
|
+
@_builtins.property
|
9096
|
+
@pulumi.getter
|
9097
|
+
def email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
9098
|
+
"""
|
9099
|
+
The email address used by Oracle to send notifications regarding databases and infrastructure.
|
9100
|
+
"""
|
9101
|
+
return pulumi.get(self, "email")
|
9102
|
+
|
9103
|
+
@email.setter
|
9104
|
+
def email(self, value: Optional[pulumi.Input[_builtins.str]]):
|
9105
|
+
pulumi.set(self, "email", value)
|
9106
|
+
|
9107
|
+
|
9108
|
+
if not MYPY:
|
9109
|
+
class CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict(TypedDict):
|
9110
|
+
is_backup_partition: NotRequired[pulumi.Input[_builtins.bool]]
|
9111
|
+
"""
|
9112
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
9113
|
+
"""
|
9114
|
+
is_resizable: NotRequired[pulumi.Input[_builtins.bool]]
|
9115
|
+
"""
|
9116
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
9117
|
+
"""
|
9118
|
+
min_size_gb: NotRequired[pulumi.Input[_builtins.int]]
|
9119
|
+
"""
|
9120
|
+
The minimum size of file system.
|
9121
|
+
"""
|
9122
|
+
mount_point: NotRequired[pulumi.Input[_builtins.str]]
|
9123
|
+
"""
|
9124
|
+
The mount point of file system.
|
9125
|
+
"""
|
9126
|
+
elif False:
|
9127
|
+
CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgsDict: TypeAlias = Mapping[str, Any]
|
9128
|
+
|
9129
|
+
@pulumi.input_type
|
9130
|
+
class CloudExadataInfrastructureConfigureExascaleManagementDefinedFileSystemConfigurationArgs:
|
9131
|
+
def __init__(__self__, *,
|
9132
|
+
is_backup_partition: Optional[pulumi.Input[_builtins.bool]] = None,
|
9133
|
+
is_resizable: Optional[pulumi.Input[_builtins.bool]] = None,
|
9134
|
+
min_size_gb: Optional[pulumi.Input[_builtins.int]] = None,
|
9135
|
+
mount_point: Optional[pulumi.Input[_builtins.str]] = None):
|
9136
|
+
"""
|
9137
|
+
:param pulumi.Input[_builtins.bool] is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
9138
|
+
:param pulumi.Input[_builtins.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.
|
9139
|
+
:param pulumi.Input[_builtins.int] min_size_gb: The minimum size of file system.
|
9140
|
+
:param pulumi.Input[_builtins.str] mount_point: The mount point of file system.
|
9141
|
+
"""
|
9142
|
+
if is_backup_partition is not None:
|
9143
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
9144
|
+
if is_resizable is not None:
|
9145
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
9146
|
+
if min_size_gb is not None:
|
9147
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
9148
|
+
if mount_point is not None:
|
9149
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
9150
|
+
|
9151
|
+
@_builtins.property
|
9152
|
+
@pulumi.getter(name="isBackupPartition")
|
9153
|
+
def is_backup_partition(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
9154
|
+
"""
|
9155
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
9156
|
+
"""
|
9157
|
+
return pulumi.get(self, "is_backup_partition")
|
9158
|
+
|
9159
|
+
@is_backup_partition.setter
|
9160
|
+
def is_backup_partition(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
9161
|
+
pulumi.set(self, "is_backup_partition", value)
|
9162
|
+
|
9163
|
+
@_builtins.property
|
9164
|
+
@pulumi.getter(name="isResizable")
|
9165
|
+
def is_resizable(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
9166
|
+
"""
|
9167
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
9168
|
+
"""
|
9169
|
+
return pulumi.get(self, "is_resizable")
|
9170
|
+
|
9171
|
+
@is_resizable.setter
|
9172
|
+
def is_resizable(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
9173
|
+
pulumi.set(self, "is_resizable", value)
|
9174
|
+
|
9175
|
+
@_builtins.property
|
9176
|
+
@pulumi.getter(name="minSizeGb")
|
9177
|
+
def min_size_gb(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9178
|
+
"""
|
9179
|
+
The minimum size of file system.
|
9180
|
+
"""
|
9181
|
+
return pulumi.get(self, "min_size_gb")
|
9182
|
+
|
9183
|
+
@min_size_gb.setter
|
9184
|
+
def min_size_gb(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9185
|
+
pulumi.set(self, "min_size_gb", value)
|
9186
|
+
|
9187
|
+
@_builtins.property
|
9188
|
+
@pulumi.getter(name="mountPoint")
|
9189
|
+
def mount_point(self) -> Optional[pulumi.Input[_builtins.str]]:
|
9190
|
+
"""
|
9191
|
+
The mount point of file system.
|
9192
|
+
"""
|
9193
|
+
return pulumi.get(self, "mount_point")
|
9194
|
+
|
9195
|
+
@mount_point.setter
|
9196
|
+
def mount_point(self, value: Optional[pulumi.Input[_builtins.str]]):
|
9197
|
+
pulumi.set(self, "mount_point", value)
|
9198
|
+
|
9199
|
+
|
9200
|
+
if not MYPY:
|
9201
|
+
class CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict(TypedDict):
|
9202
|
+
available_storage_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
9203
|
+
"""
|
9204
|
+
Available storage size for Exascale in GBs.
|
9205
|
+
"""
|
9206
|
+
total_storage_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
9207
|
+
"""
|
9208
|
+
Storage size needed for Exascale in GBs.
|
9209
|
+
|
9210
|
+
|
9211
|
+
** IMPORTANT **
|
9212
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
9213
|
+
"""
|
9214
|
+
elif False:
|
9215
|
+
CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9216
|
+
|
9217
|
+
@pulumi.input_type
|
9218
|
+
class CloudExadataInfrastructureConfigureExascaleManagementExascaleConfigArgs:
|
9219
|
+
def __init__(__self__, *,
|
9220
|
+
available_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
9221
|
+
total_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
9222
|
+
"""
|
9223
|
+
:param pulumi.Input[_builtins.int] available_storage_in_gbs: Available storage size for Exascale in GBs.
|
9224
|
+
:param pulumi.Input[_builtins.int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
9225
|
+
|
9226
|
+
|
9227
|
+
** IMPORTANT **
|
9228
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
9229
|
+
"""
|
9230
|
+
if available_storage_in_gbs is not None:
|
9231
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
9232
|
+
if total_storage_in_gbs is not None:
|
9233
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
9234
|
+
|
9235
|
+
@_builtins.property
|
9236
|
+
@pulumi.getter(name="availableStorageInGbs")
|
9237
|
+
def available_storage_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9238
|
+
"""
|
9239
|
+
Available storage size for Exascale in GBs.
|
9240
|
+
"""
|
9241
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
9242
|
+
|
9243
|
+
@available_storage_in_gbs.setter
|
9244
|
+
def available_storage_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9245
|
+
pulumi.set(self, "available_storage_in_gbs", value)
|
9246
|
+
|
9247
|
+
@_builtins.property
|
9248
|
+
@pulumi.getter(name="totalStorageInGbs")
|
9249
|
+
def total_storage_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9250
|
+
"""
|
9251
|
+
Storage size needed for Exascale in GBs.
|
9252
|
+
|
9253
|
+
|
9254
|
+
** IMPORTANT **
|
9255
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
9256
|
+
"""
|
9257
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
9258
|
+
|
9259
|
+
@total_storage_in_gbs.setter
|
9260
|
+
def total_storage_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9261
|
+
pulumi.set(self, "total_storage_in_gbs", value)
|
9262
|
+
|
9263
|
+
|
9264
|
+
if not MYPY:
|
9265
|
+
class CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict(TypedDict):
|
9266
|
+
custom_action_timeout_in_mins: NotRequired[pulumi.Input[_builtins.int]]
|
9267
|
+
"""
|
9268
|
+
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).
|
9269
|
+
"""
|
9270
|
+
days_of_weeks: NotRequired[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict']]]]
|
9271
|
+
"""
|
9272
|
+
Days during the week when maintenance should be performed.
|
9273
|
+
"""
|
9274
|
+
hours_of_days: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]
|
9275
|
+
"""
|
9276
|
+
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
|
9277
|
+
"""
|
9278
|
+
is_custom_action_timeout_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
9279
|
+
"""
|
9280
|
+
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
9281
|
+
"""
|
9282
|
+
is_monthly_patching_enabled: NotRequired[pulumi.Input[_builtins.bool]]
|
9283
|
+
"""
|
9284
|
+
If true, enables the monthly patching option.
|
9285
|
+
"""
|
9286
|
+
lead_time_in_weeks: NotRequired[pulumi.Input[_builtins.int]]
|
9287
|
+
"""
|
9288
|
+
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.
|
9289
|
+
"""
|
9290
|
+
months: NotRequired[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict']]]]
|
9291
|
+
"""
|
9292
|
+
Months during the year when maintenance should be performed.
|
9293
|
+
"""
|
9294
|
+
patching_mode: NotRequired[pulumi.Input[_builtins.str]]
|
9295
|
+
"""
|
9296
|
+
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
9297
|
+
"""
|
9298
|
+
preference: NotRequired[pulumi.Input[_builtins.str]]
|
9299
|
+
"""
|
9300
|
+
The maintenance window scheduling preference.
|
9301
|
+
"""
|
9302
|
+
skip_rus: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.bool]]]]
|
9303
|
+
"""
|
9304
|
+
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.
|
9305
|
+
"""
|
9306
|
+
weeks_of_months: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]
|
9307
|
+
"""
|
9308
|
+
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.
|
9309
|
+
"""
|
9310
|
+
elif False:
|
9311
|
+
CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgsDict: TypeAlias = Mapping[str, Any]
|
9312
|
+
|
9313
|
+
@pulumi.input_type
|
9314
|
+
class CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowArgs:
|
9315
|
+
def __init__(__self__, *,
|
9316
|
+
custom_action_timeout_in_mins: Optional[pulumi.Input[_builtins.int]] = None,
|
9317
|
+
days_of_weeks: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]] = None,
|
9318
|
+
hours_of_days: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]] = None,
|
9319
|
+
is_custom_action_timeout_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
9320
|
+
is_monthly_patching_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
|
9321
|
+
lead_time_in_weeks: Optional[pulumi.Input[_builtins.int]] = None,
|
9322
|
+
months: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]] = None,
|
9323
|
+
patching_mode: Optional[pulumi.Input[_builtins.str]] = None,
|
9324
|
+
preference: Optional[pulumi.Input[_builtins.str]] = None,
|
9325
|
+
skip_rus: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.bool]]]] = None,
|
9326
|
+
weeks_of_months: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]] = None):
|
9327
|
+
"""
|
9328
|
+
:param pulumi.Input[_builtins.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).
|
9329
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]] days_of_weeks: Days during the week when maintenance should be performed.
|
9330
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.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
|
9331
|
+
:param pulumi.Input[_builtins.bool] is_custom_action_timeout_enabled: If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
9332
|
+
:param pulumi.Input[_builtins.bool] is_monthly_patching_enabled: If true, enables the monthly patching option.
|
9333
|
+
:param pulumi.Input[_builtins.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.
|
9334
|
+
:param pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]] months: Months during the year when maintenance should be performed.
|
9335
|
+
:param pulumi.Input[_builtins.str] patching_mode: Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
9336
|
+
:param pulumi.Input[_builtins.str] preference: The maintenance window scheduling preference.
|
9337
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.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.
|
9338
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.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.
|
9339
|
+
"""
|
9340
|
+
if custom_action_timeout_in_mins is not None:
|
9341
|
+
pulumi.set(__self__, "custom_action_timeout_in_mins", custom_action_timeout_in_mins)
|
9342
|
+
if days_of_weeks is not None:
|
9343
|
+
pulumi.set(__self__, "days_of_weeks", days_of_weeks)
|
9344
|
+
if hours_of_days is not None:
|
9345
|
+
pulumi.set(__self__, "hours_of_days", hours_of_days)
|
9346
|
+
if is_custom_action_timeout_enabled is not None:
|
9347
|
+
pulumi.set(__self__, "is_custom_action_timeout_enabled", is_custom_action_timeout_enabled)
|
9348
|
+
if is_monthly_patching_enabled is not None:
|
9349
|
+
pulumi.set(__self__, "is_monthly_patching_enabled", is_monthly_patching_enabled)
|
9350
|
+
if lead_time_in_weeks is not None:
|
9351
|
+
pulumi.set(__self__, "lead_time_in_weeks", lead_time_in_weeks)
|
9352
|
+
if months is not None:
|
9353
|
+
pulumi.set(__self__, "months", months)
|
9354
|
+
if patching_mode is not None:
|
9355
|
+
pulumi.set(__self__, "patching_mode", patching_mode)
|
9356
|
+
if preference is not None:
|
9357
|
+
pulumi.set(__self__, "preference", preference)
|
9358
|
+
if skip_rus is not None:
|
9359
|
+
pulumi.set(__self__, "skip_rus", skip_rus)
|
9360
|
+
if weeks_of_months is not None:
|
9361
|
+
pulumi.set(__self__, "weeks_of_months", weeks_of_months)
|
9362
|
+
|
9363
|
+
@_builtins.property
|
9364
|
+
@pulumi.getter(name="customActionTimeoutInMins")
|
9365
|
+
def custom_action_timeout_in_mins(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9366
|
+
"""
|
9367
|
+
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).
|
9368
|
+
"""
|
9369
|
+
return pulumi.get(self, "custom_action_timeout_in_mins")
|
9370
|
+
|
9371
|
+
@custom_action_timeout_in_mins.setter
|
9372
|
+
def custom_action_timeout_in_mins(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9373
|
+
pulumi.set(self, "custom_action_timeout_in_mins", value)
|
9374
|
+
|
9375
|
+
@_builtins.property
|
9376
|
+
@pulumi.getter(name="daysOfWeeks")
|
9377
|
+
def days_of_weeks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]]:
|
9378
|
+
"""
|
9379
|
+
Days during the week when maintenance should be performed.
|
9380
|
+
"""
|
9381
|
+
return pulumi.get(self, "days_of_weeks")
|
9382
|
+
|
9383
|
+
@days_of_weeks.setter
|
9384
|
+
def days_of_weeks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs']]]]):
|
9385
|
+
pulumi.set(self, "days_of_weeks", value)
|
9386
|
+
|
9387
|
+
@_builtins.property
|
9388
|
+
@pulumi.getter(name="hoursOfDays")
|
9389
|
+
def hours_of_days(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]:
|
9390
|
+
"""
|
9391
|
+
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
|
9392
|
+
"""
|
9393
|
+
return pulumi.get(self, "hours_of_days")
|
9394
|
+
|
9395
|
+
@hours_of_days.setter
|
9396
|
+
def hours_of_days(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]):
|
9397
|
+
pulumi.set(self, "hours_of_days", value)
|
9398
|
+
|
9399
|
+
@_builtins.property
|
9400
|
+
@pulumi.getter(name="isCustomActionTimeoutEnabled")
|
9401
|
+
def is_custom_action_timeout_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
9402
|
+
"""
|
9403
|
+
If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
|
9404
|
+
"""
|
9405
|
+
return pulumi.get(self, "is_custom_action_timeout_enabled")
|
9406
|
+
|
9407
|
+
@is_custom_action_timeout_enabled.setter
|
9408
|
+
def is_custom_action_timeout_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
9409
|
+
pulumi.set(self, "is_custom_action_timeout_enabled", value)
|
9410
|
+
|
9411
|
+
@_builtins.property
|
9412
|
+
@pulumi.getter(name="isMonthlyPatchingEnabled")
|
9413
|
+
def is_monthly_patching_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
9414
|
+
"""
|
9415
|
+
If true, enables the monthly patching option.
|
9416
|
+
"""
|
9417
|
+
return pulumi.get(self, "is_monthly_patching_enabled")
|
9418
|
+
|
9419
|
+
@is_monthly_patching_enabled.setter
|
9420
|
+
def is_monthly_patching_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
9421
|
+
pulumi.set(self, "is_monthly_patching_enabled", value)
|
9422
|
+
|
9423
|
+
@_builtins.property
|
9424
|
+
@pulumi.getter(name="leadTimeInWeeks")
|
9425
|
+
def lead_time_in_weeks(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9426
|
+
"""
|
9427
|
+
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.
|
9428
|
+
"""
|
9429
|
+
return pulumi.get(self, "lead_time_in_weeks")
|
9430
|
+
|
9431
|
+
@lead_time_in_weeks.setter
|
9432
|
+
def lead_time_in_weeks(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9433
|
+
pulumi.set(self, "lead_time_in_weeks", value)
|
9434
|
+
|
9435
|
+
@_builtins.property
|
9436
|
+
@pulumi.getter
|
9437
|
+
def months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]]:
|
9438
|
+
"""
|
9439
|
+
Months during the year when maintenance should be performed.
|
9440
|
+
"""
|
9441
|
+
return pulumi.get(self, "months")
|
9442
|
+
|
9443
|
+
@months.setter
|
9444
|
+
def months(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs']]]]):
|
9445
|
+
pulumi.set(self, "months", value)
|
9446
|
+
|
9447
|
+
@_builtins.property
|
9448
|
+
@pulumi.getter(name="patchingMode")
|
9449
|
+
def patching_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
|
9450
|
+
"""
|
9451
|
+
Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
|
9452
|
+
"""
|
9453
|
+
return pulumi.get(self, "patching_mode")
|
9454
|
+
|
9455
|
+
@patching_mode.setter
|
9456
|
+
def patching_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
|
9457
|
+
pulumi.set(self, "patching_mode", value)
|
9458
|
+
|
9459
|
+
@_builtins.property
|
9460
|
+
@pulumi.getter
|
9461
|
+
def preference(self) -> Optional[pulumi.Input[_builtins.str]]:
|
9462
|
+
"""
|
9463
|
+
The maintenance window scheduling preference.
|
9464
|
+
"""
|
9465
|
+
return pulumi.get(self, "preference")
|
9466
|
+
|
9467
|
+
@preference.setter
|
9468
|
+
def preference(self, value: Optional[pulumi.Input[_builtins.str]]):
|
9469
|
+
pulumi.set(self, "preference", value)
|
9470
|
+
|
9471
|
+
@_builtins.property
|
9472
|
+
@pulumi.getter(name="skipRus")
|
9473
|
+
def skip_rus(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.bool]]]]:
|
9474
|
+
"""
|
9475
|
+
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.
|
9476
|
+
"""
|
9477
|
+
return pulumi.get(self, "skip_rus")
|
9478
|
+
|
9479
|
+
@skip_rus.setter
|
9480
|
+
def skip_rus(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.bool]]]]):
|
9481
|
+
pulumi.set(self, "skip_rus", value)
|
9482
|
+
|
9483
|
+
@_builtins.property
|
9484
|
+
@pulumi.getter(name="weeksOfMonths")
|
9485
|
+
def weeks_of_months(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]:
|
9486
|
+
"""
|
9487
|
+
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.
|
9488
|
+
"""
|
9489
|
+
return pulumi.get(self, "weeks_of_months")
|
9490
|
+
|
9491
|
+
@weeks_of_months.setter
|
9492
|
+
def weeks_of_months(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.int]]]]):
|
9493
|
+
pulumi.set(self, "weeks_of_months", value)
|
9494
|
+
|
9495
|
+
|
9496
|
+
if not MYPY:
|
9497
|
+
class CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict(TypedDict):
|
9498
|
+
name: NotRequired[pulumi.Input[_builtins.str]]
|
9499
|
+
"""
|
9500
|
+
Name of the month of the year.
|
9501
|
+
"""
|
9502
|
+
elif False:
|
9503
|
+
CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgsDict: TypeAlias = Mapping[str, Any]
|
9504
|
+
|
9505
|
+
@pulumi.input_type
|
9506
|
+
class CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowDaysOfWeekArgs:
|
9507
|
+
def __init__(__self__, *,
|
9508
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
9509
|
+
"""
|
9510
|
+
:param pulumi.Input[_builtins.str] name: Name of the month of the year.
|
9511
|
+
"""
|
9512
|
+
if name is not None:
|
9513
|
+
pulumi.set(__self__, "name", name)
|
9514
|
+
|
9515
|
+
@_builtins.property
|
9516
|
+
@pulumi.getter
|
9517
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
9518
|
+
"""
|
9519
|
+
Name of the month of the year.
|
9520
|
+
"""
|
9521
|
+
return pulumi.get(self, "name")
|
9522
|
+
|
9523
|
+
@name.setter
|
9524
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
9525
|
+
pulumi.set(self, "name", value)
|
9526
|
+
|
9527
|
+
|
9528
|
+
if not MYPY:
|
9529
|
+
class CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict(TypedDict):
|
9530
|
+
name: NotRequired[pulumi.Input[_builtins.str]]
|
9531
|
+
"""
|
9532
|
+
Name of the month of the year.
|
9533
|
+
"""
|
9534
|
+
elif False:
|
9535
|
+
CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgsDict: TypeAlias = Mapping[str, Any]
|
9536
|
+
|
9537
|
+
@pulumi.input_type
|
9538
|
+
class CloudExadataInfrastructureConfigureExascaleManagementMaintenanceWindowMonthArgs:
|
9539
|
+
def __init__(__self__, *,
|
9540
|
+
name: Optional[pulumi.Input[_builtins.str]] = None):
|
9541
|
+
"""
|
9542
|
+
:param pulumi.Input[_builtins.str] name: Name of the month of the year.
|
9543
|
+
"""
|
9544
|
+
if name is not None:
|
9545
|
+
pulumi.set(__self__, "name", name)
|
9546
|
+
|
9547
|
+
@_builtins.property
|
9548
|
+
@pulumi.getter
|
9549
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
9550
|
+
"""
|
9551
|
+
Name of the month of the year.
|
9552
|
+
"""
|
9553
|
+
return pulumi.get(self, "name")
|
9554
|
+
|
9555
|
+
@name.setter
|
9556
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
9557
|
+
pulumi.set(self, "name", value)
|
9558
|
+
|
9559
|
+
|
9062
9560
|
if not MYPY:
|
9063
9561
|
class CloudExadataInfrastructureCustomerContactArgsDict(TypedDict):
|
9064
9562
|
email: NotRequired[pulumi.Input[_builtins.str]]
|
@@ -9183,6 +9681,58 @@ class CloudExadataInfrastructureDefinedFileSystemConfigurationArgs:
|
|
9183
9681
|
pulumi.set(self, "mount_point", value)
|
9184
9682
|
|
9185
9683
|
|
9684
|
+
if not MYPY:
|
9685
|
+
class CloudExadataInfrastructureExascaleConfigArgsDict(TypedDict):
|
9686
|
+
available_storage_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
9687
|
+
"""
|
9688
|
+
Available storage size for Exascale in GBs.
|
9689
|
+
"""
|
9690
|
+
total_storage_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
9691
|
+
"""
|
9692
|
+
Storage size needed for Exascale in GBs.
|
9693
|
+
"""
|
9694
|
+
elif False:
|
9695
|
+
CloudExadataInfrastructureExascaleConfigArgsDict: TypeAlias = Mapping[str, Any]
|
9696
|
+
|
9697
|
+
@pulumi.input_type
|
9698
|
+
class CloudExadataInfrastructureExascaleConfigArgs:
|
9699
|
+
def __init__(__self__, *,
|
9700
|
+
available_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None,
|
9701
|
+
total_storage_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
9702
|
+
"""
|
9703
|
+
:param pulumi.Input[_builtins.int] available_storage_in_gbs: Available storage size for Exascale in GBs.
|
9704
|
+
:param pulumi.Input[_builtins.int] total_storage_in_gbs: Storage size needed for Exascale in GBs.
|
9705
|
+
"""
|
9706
|
+
if available_storage_in_gbs is not None:
|
9707
|
+
pulumi.set(__self__, "available_storage_in_gbs", available_storage_in_gbs)
|
9708
|
+
if total_storage_in_gbs is not None:
|
9709
|
+
pulumi.set(__self__, "total_storage_in_gbs", total_storage_in_gbs)
|
9710
|
+
|
9711
|
+
@_builtins.property
|
9712
|
+
@pulumi.getter(name="availableStorageInGbs")
|
9713
|
+
def available_storage_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9714
|
+
"""
|
9715
|
+
Available storage size for Exascale in GBs.
|
9716
|
+
"""
|
9717
|
+
return pulumi.get(self, "available_storage_in_gbs")
|
9718
|
+
|
9719
|
+
@available_storage_in_gbs.setter
|
9720
|
+
def available_storage_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9721
|
+
pulumi.set(self, "available_storage_in_gbs", value)
|
9722
|
+
|
9723
|
+
@_builtins.property
|
9724
|
+
@pulumi.getter(name="totalStorageInGbs")
|
9725
|
+
def total_storage_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
9726
|
+
"""
|
9727
|
+
Storage size needed for Exascale in GBs.
|
9728
|
+
"""
|
9729
|
+
return pulumi.get(self, "total_storage_in_gbs")
|
9730
|
+
|
9731
|
+
@total_storage_in_gbs.setter
|
9732
|
+
def total_storage_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
9733
|
+
pulumi.set(self, "total_storage_in_gbs", value)
|
9734
|
+
|
9735
|
+
|
9186
9736
|
if not MYPY:
|
9187
9737
|
class CloudExadataInfrastructureMaintenanceWindowArgsDict(TypedDict):
|
9188
9738
|
custom_action_timeout_in_mins: NotRequired[pulumi.Input[_builtins.int]]
|