pulumi-oci 1.35.0a1715306721__py3-none-any.whl → 1.36.0__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 +208 -0
- pulumi_oci/core/__init__.py +3 -0
- pulumi_oci/core/_inputs.py +40 -0
- pulumi_oci/core/get_ip_inventory_subnet.py +171 -0
- pulumi_oci/core/get_ip_inventory_subnet_cidr.py +171 -0
- pulumi_oci/core/get_ip_inventory_vcn_overlaps.py +206 -0
- pulumi_oci/core/outputs.py +261 -0
- pulumi_oci/database/_inputs.py +304 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +28 -0
- pulumi_oci/database/cloud_vm_cluster.py +55 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +14 -1
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +734 -6
- pulumi_oci/database/vm_cluster.py +55 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/disasterrecovery/_inputs.py +16 -0
- pulumi_oci/disasterrecovery/outputs.py +36 -0
- pulumi_oci/email/__init__.py +3 -0
- pulumi_oci/email/_inputs.py +46 -0
- pulumi_oci/email/dkim.py +4 -4
- pulumi_oci/email/email_domain.py +77 -0
- pulumi_oci/email/email_return_path.py +642 -0
- pulumi_oci/email/get_email_domain.py +27 -1
- pulumi_oci/email/get_email_return_path.py +274 -0
- pulumi_oci/email/get_email_return_paths.py +203 -0
- pulumi_oci/email/outputs.py +231 -0
- pulumi_oci/loadbalancer/_inputs.py +160 -20
- pulumi_oci/loadbalancer/backend.py +49 -0
- pulumi_oci/loadbalancer/backend_set.py +57 -0
- pulumi_oci/loadbalancer/get_listener_rules.py +2 -2
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/load_balancer.py +98 -7
- pulumi_oci/loadbalancer/outputs.py +375 -36
- pulumi_oci/loadbalancer/rule_set.py +10 -0
- pulumi_oci/loganalytics/namespace.py +4 -4
- pulumi_oci/networkloadbalancer/get_listener.py +14 -1
- pulumi_oci/networkloadbalancer/listener.py +51 -2
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/osmanagementhub/__init__.py +48 -0
- pulumi_oci/osmanagementhub/_inputs.py +3635 -493
- pulumi_oci/osmanagementhub/event.py +701 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +178 -0
- pulumi_oci/osmanagementhub/get_errata.py +283 -0
- pulumi_oci/osmanagementhub/get_erratum.py +308 -0
- pulumi_oci/osmanagementhub/get_event.py +314 -0
- pulumi_oci/osmanagementhub/get_events.py +314 -0
- pulumi_oci/osmanagementhub/get_lifecycle_environment.py +26 -13
- pulumi_oci/osmanagementhub/get_lifecycle_environments.py +48 -11
- pulumi_oci/osmanagementhub/get_lifecycle_stage.py +28 -15
- pulumi_oci/osmanagementhub/get_lifecycle_stages.py +86 -19
- pulumi_oci/osmanagementhub/get_managed_instance.py +587 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_packages.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_software_sources.py +190 -0
- pulumi_oci/osmanagementhub/get_managed_instance_available_windows_updates.py +238 -0
- pulumi_oci/osmanagementhub/get_managed_instance_errata.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group.py +62 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_modules.py +7 -9
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_packages.py +7 -7
- pulumi_oci/osmanagementhub/get_managed_instance_group_available_software_sources.py +8 -10
- pulumi_oci/osmanagementhub/get_managed_instance_group_installed_packages.py +220 -0
- pulumi_oci/osmanagementhub/get_managed_instance_group_modules.py +244 -0
- pulumi_oci/osmanagementhub/get_managed_instance_groups.py +71 -16
- pulumi_oci/osmanagementhub/get_managed_instance_installed_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instance_installed_windows_updates.py +204 -0
- pulumi_oci/osmanagementhub/get_managed_instance_modules.py +187 -0
- pulumi_oci/osmanagementhub/get_managed_instance_updatable_packages.py +221 -0
- pulumi_oci/osmanagementhub/get_managed_instances.py +537 -0
- pulumi_oci/osmanagementhub/get_management_station.py +42 -19
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +4 -4
- pulumi_oci/osmanagementhub/get_management_stations.py +15 -15
- pulumi_oci/osmanagementhub/get_profile.py +51 -12
- pulumi_oci/osmanagementhub/get_profiles.py +76 -16
- pulumi_oci/osmanagementhub/get_scheduled_job.py +426 -0
- pulumi_oci/osmanagementhub/get_scheduled_jobs.py +433 -0
- pulumi_oci/osmanagementhub/get_software_package.py +301 -0
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +329 -0
- pulumi_oci/osmanagementhub/get_software_packages.py +232 -0
- pulumi_oci/osmanagementhub/get_software_source.py +109 -18
- pulumi_oci/osmanagementhub/get_software_source_module_stream.py +5 -5
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profile.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_module_stream_profiles.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_module_streams.py +9 -9
- pulumi_oci/osmanagementhub/get_software_source_package_group.py +8 -8
- pulumi_oci/osmanagementhub/get_software_source_package_groups.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source_software_package.py +23 -10
- pulumi_oci/osmanagementhub/get_software_source_software_packages.py +6 -6
- pulumi_oci/osmanagementhub/get_software_source_vendors.py +2 -2
- pulumi_oci/osmanagementhub/get_software_sources.py +78 -21
- pulumi_oci/osmanagementhub/get_windows_update.py +222 -0
- pulumi_oci/osmanagementhub/get_windows_updates.py +187 -0
- pulumi_oci/osmanagementhub/lifecycle_environment.py +159 -86
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +249 -0
- pulumi_oci/osmanagementhub/lifecycle_stage_promote_software_source_management.py +296 -0
- pulumi_oci/osmanagementhub/managed_instance.py +1327 -0
- pulumi_oci/osmanagementhub/managed_instance_attach_profile_management.py +266 -0
- pulumi_oci/osmanagementhub/managed_instance_detach_profile_management.py +214 -0
- pulumi_oci/osmanagementhub/managed_instance_group.py +264 -86
- pulumi_oci/osmanagementhub/managed_instance_group_attach_managed_instances_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_attach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_managed_instances_management.py +264 -0
- pulumi_oci/osmanagementhub/managed_instance_group_detach_software_sources_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_windows_updates_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_manage_module_streams_management.py +526 -0
- pulumi_oci/osmanagementhub/managed_instance_group_remove_packages_management.py +293 -0
- pulumi_oci/osmanagementhub/managed_instance_group_update_all_packages_management.py +292 -0
- pulumi_oci/osmanagementhub/managed_instance_install_windows_updates_management.py +341 -0
- pulumi_oci/osmanagementhub/managed_instance_update_packages_management.py +341 -0
- pulumi_oci/osmanagementhub/management_station.py +184 -81
- pulumi_oci/osmanagementhub/management_station_mirror_synchronize_management.py +264 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +212 -0
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +264 -0
- pulumi_oci/osmanagementhub/outputs.py +10867 -2365
- pulumi_oci/osmanagementhub/profile.py +200 -78
- pulumi_oci/osmanagementhub/scheduled_job.py +1331 -0
- pulumi_oci/osmanagementhub/software_source.py +365 -181
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +266 -0
- pulumi_oci/osmanagementhub/software_source_change_availability_management.py +194 -0
- pulumi_oci/pulumi-plugin.json +2 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +130 -75
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715306721.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -62,10 +62,12 @@ __all__ = [
|
|
62
62
|
'CloudAutonomousVmClusterMaintenanceWindowMonth',
|
63
63
|
'CloudDatabaseManagementCredentialdetails',
|
64
64
|
'CloudExadataInfrastructureCustomerContact',
|
65
|
+
'CloudExadataInfrastructureDefinedFileSystemConfiguration',
|
65
66
|
'CloudExadataInfrastructureMaintenanceWindow',
|
66
67
|
'CloudExadataInfrastructureMaintenanceWindowDaysOfWeek',
|
67
68
|
'CloudExadataInfrastructureMaintenanceWindowMonth',
|
68
69
|
'CloudVmClusterDataCollectionOptions',
|
70
|
+
'CloudVmClusterFileSystemConfigurationDetail',
|
69
71
|
'CloudVmClusterIormConfigCach',
|
70
72
|
'CloudVmClusterIormConfigCachDbPlan',
|
71
73
|
'CloudVmClusterIormConfigDbPlan',
|
@@ -111,6 +113,7 @@ __all__ = [
|
|
111
113
|
'ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek',
|
112
114
|
'ExadataInfrastructureComputeMaintenanceWindowMonth',
|
113
115
|
'ExadataInfrastructureContact',
|
116
|
+
'ExadataInfrastructureDefinedFileSystemConfiguration',
|
114
117
|
'ExadataInfrastructureMaintenanceWindow',
|
115
118
|
'ExadataInfrastructureMaintenanceWindowDaysOfWeek',
|
116
119
|
'ExadataInfrastructureMaintenanceWindowMonth',
|
@@ -152,13 +155,16 @@ __all__ = [
|
|
152
155
|
'PluggableDatabasesRemoteCloneRefreshableCloneConfig',
|
153
156
|
'VmClusterAddVirtualNetworkDataCollectionOption',
|
154
157
|
'VmClusterAddVirtualNetworkDbServer',
|
158
|
+
'VmClusterAddVirtualNetworkFileSystemConfigurationDetail',
|
155
159
|
'VmClusterDataCollectionOptions',
|
160
|
+
'VmClusterFileSystemConfigurationDetail',
|
156
161
|
'VmClusterNetworkDrScan',
|
157
162
|
'VmClusterNetworkScan',
|
158
163
|
'VmClusterNetworkVmNetwork',
|
159
164
|
'VmClusterNetworkVmNetworkNode',
|
160
165
|
'VmClusterRemoveVirtualMachineDataCollectionOption',
|
161
166
|
'VmClusterRemoveVirtualMachineDbServer',
|
167
|
+
'VmClusterRemoveVirtualMachineFileSystemConfigurationDetail',
|
162
168
|
'GetApplicationVipsApplicationVipResult',
|
163
169
|
'GetApplicationVipsFilterResult',
|
164
170
|
'GetAutonomousCharacterSetsAutonomousDatabaseCharacterSetResult',
|
@@ -330,22 +336,26 @@ __all__ = [
|
|
330
336
|
'GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonthResult',
|
331
337
|
'GetCloudAutonomousVmClustersFilterResult',
|
332
338
|
'GetCloudExadataInfrastructureCustomerContactResult',
|
339
|
+
'GetCloudExadataInfrastructureDefinedFileSystemConfigurationResult',
|
333
340
|
'GetCloudExadataInfrastructureMaintenanceWindowResult',
|
334
341
|
'GetCloudExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
335
342
|
'GetCloudExadataInfrastructureMaintenanceWindowMonthResult',
|
336
343
|
'GetCloudExadataInfrastructureUnAllocatedResourceCloudAutonomousVmClusterResult',
|
337
344
|
'GetCloudExadataInfrastructuresCloudExadataInfrastructureResult',
|
338
345
|
'GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactResult',
|
346
|
+
'GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult',
|
339
347
|
'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowResult',
|
340
348
|
'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
341
349
|
'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonthResult',
|
342
350
|
'GetCloudExadataInfrastructuresFilterResult',
|
343
351
|
'GetCloudVmClusterDataCollectionOptionResult',
|
352
|
+
'GetCloudVmClusterFileSystemConfigurationDetailResult',
|
344
353
|
'GetCloudVmClusterIormConfigCachResult',
|
345
354
|
'GetCloudVmClusterIormConfigCachDbPlanResult',
|
346
355
|
'GetCloudVmClusterIormConfigDbPlanResult',
|
347
356
|
'GetCloudVmClustersCloudVmClusterResult',
|
348
357
|
'GetCloudVmClustersCloudVmClusterDataCollectionOptionResult',
|
358
|
+
'GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult',
|
349
359
|
'GetCloudVmClustersCloudVmClusterIormConfigCachResult',
|
350
360
|
'GetCloudVmClustersCloudVmClusterIormConfigCachDbPlanResult',
|
351
361
|
'GetCloudVmClustersFilterResult',
|
@@ -449,6 +459,7 @@ __all__ = [
|
|
449
459
|
'GetDbVersionsDbVersionResult',
|
450
460
|
'GetDbVersionsFilterResult',
|
451
461
|
'GetExadataInfrastructureContactResult',
|
462
|
+
'GetExadataInfrastructureDefinedFileSystemConfigurationResult',
|
452
463
|
'GetExadataInfrastructureMaintenanceWindowResult',
|
453
464
|
'GetExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
454
465
|
'GetExadataInfrastructureMaintenanceWindowMonthResult',
|
@@ -456,6 +467,7 @@ __all__ = [
|
|
456
467
|
'GetExadataInfrastructureUnAllocatedResourceAutonomousVmClusterResult',
|
457
468
|
'GetExadataInfrastructuresExadataInfrastructureResult',
|
458
469
|
'GetExadataInfrastructuresExadataInfrastructureContactResult',
|
470
|
+
'GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult',
|
459
471
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult',
|
460
472
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
461
473
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowMonthResult',
|
@@ -528,6 +540,7 @@ __all__ = [
|
|
528
540
|
'GetSystemVersionsSystemVersionCollectionResult',
|
529
541
|
'GetSystemVersionsSystemVersionCollectionItemResult',
|
530
542
|
'GetVmClusterDataCollectionOptionResult',
|
543
|
+
'GetVmClusterFileSystemConfigurationDetailResult',
|
531
544
|
'GetVmClusterNetworkDrScanResult',
|
532
545
|
'GetVmClusterNetworkScanResult',
|
533
546
|
'GetVmClusterNetworkVmNetworkResult',
|
@@ -554,6 +567,7 @@ __all__ = [
|
|
554
567
|
'GetVmClustersFilterResult',
|
555
568
|
'GetVmClustersVmClusterResult',
|
556
569
|
'GetVmClustersVmClusterDataCollectionOptionResult',
|
570
|
+
'GetVmClustersVmClusterFileSystemConfigurationDetailResult',
|
557
571
|
]
|
558
572
|
|
559
573
|
@pulumi.output_type
|
@@ -4105,6 +4119,84 @@ class CloudExadataInfrastructureCustomerContact(dict):
|
|
4105
4119
|
return pulumi.get(self, "email")
|
4106
4120
|
|
4107
4121
|
|
4122
|
+
@pulumi.output_type
|
4123
|
+
class CloudExadataInfrastructureDefinedFileSystemConfiguration(dict):
|
4124
|
+
@staticmethod
|
4125
|
+
def __key_warning(key: str):
|
4126
|
+
suggest = None
|
4127
|
+
if key == "isBackupPartition":
|
4128
|
+
suggest = "is_backup_partition"
|
4129
|
+
elif key == "isResizable":
|
4130
|
+
suggest = "is_resizable"
|
4131
|
+
elif key == "minSizeGb":
|
4132
|
+
suggest = "min_size_gb"
|
4133
|
+
elif key == "mountPoint":
|
4134
|
+
suggest = "mount_point"
|
4135
|
+
|
4136
|
+
if suggest:
|
4137
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudExadataInfrastructureDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
|
4138
|
+
|
4139
|
+
def __getitem__(self, key: str) -> Any:
|
4140
|
+
CloudExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
|
4141
|
+
return super().__getitem__(key)
|
4142
|
+
|
4143
|
+
def get(self, key: str, default = None) -> Any:
|
4144
|
+
CloudExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
|
4145
|
+
return super().get(key, default)
|
4146
|
+
|
4147
|
+
def __init__(__self__, *,
|
4148
|
+
is_backup_partition: Optional[bool] = None,
|
4149
|
+
is_resizable: Optional[bool] = None,
|
4150
|
+
min_size_gb: Optional[int] = None,
|
4151
|
+
mount_point: Optional[str] = None):
|
4152
|
+
"""
|
4153
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
4154
|
+
: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.
|
4155
|
+
:param int min_size_gb: The minimum size of file system.
|
4156
|
+
:param str mount_point: The mount point of file system.
|
4157
|
+
"""
|
4158
|
+
if is_backup_partition is not None:
|
4159
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
4160
|
+
if is_resizable is not None:
|
4161
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
4162
|
+
if min_size_gb is not None:
|
4163
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
4164
|
+
if mount_point is not None:
|
4165
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
4166
|
+
|
4167
|
+
@property
|
4168
|
+
@pulumi.getter(name="isBackupPartition")
|
4169
|
+
def is_backup_partition(self) -> Optional[bool]:
|
4170
|
+
"""
|
4171
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
4172
|
+
"""
|
4173
|
+
return pulumi.get(self, "is_backup_partition")
|
4174
|
+
|
4175
|
+
@property
|
4176
|
+
@pulumi.getter(name="isResizable")
|
4177
|
+
def is_resizable(self) -> Optional[bool]:
|
4178
|
+
"""
|
4179
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
4180
|
+
"""
|
4181
|
+
return pulumi.get(self, "is_resizable")
|
4182
|
+
|
4183
|
+
@property
|
4184
|
+
@pulumi.getter(name="minSizeGb")
|
4185
|
+
def min_size_gb(self) -> Optional[int]:
|
4186
|
+
"""
|
4187
|
+
The minimum size of file system.
|
4188
|
+
"""
|
4189
|
+
return pulumi.get(self, "min_size_gb")
|
4190
|
+
|
4191
|
+
@property
|
4192
|
+
@pulumi.getter(name="mountPoint")
|
4193
|
+
def mount_point(self) -> Optional[str]:
|
4194
|
+
"""
|
4195
|
+
The mount point of file system.
|
4196
|
+
"""
|
4197
|
+
return pulumi.get(self, "mount_point")
|
4198
|
+
|
4199
|
+
|
4108
4200
|
@pulumi.output_type
|
4109
4201
|
class CloudExadataInfrastructureMaintenanceWindow(dict):
|
4110
4202
|
@staticmethod
|
@@ -4379,6 +4471,56 @@ class CloudVmClusterDataCollectionOptions(dict):
|
|
4379
4471
|
return pulumi.get(self, "is_incident_logs_enabled")
|
4380
4472
|
|
4381
4473
|
|
4474
|
+
@pulumi.output_type
|
4475
|
+
class CloudVmClusterFileSystemConfigurationDetail(dict):
|
4476
|
+
@staticmethod
|
4477
|
+
def __key_warning(key: str):
|
4478
|
+
suggest = None
|
4479
|
+
if key == "fileSystemSizeGb":
|
4480
|
+
suggest = "file_system_size_gb"
|
4481
|
+
elif key == "mountPoint":
|
4482
|
+
suggest = "mount_point"
|
4483
|
+
|
4484
|
+
if suggest:
|
4485
|
+
pulumi.log.warn(f"Key '{key}' not found in CloudVmClusterFileSystemConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
|
4486
|
+
|
4487
|
+
def __getitem__(self, key: str) -> Any:
|
4488
|
+
CloudVmClusterFileSystemConfigurationDetail.__key_warning(key)
|
4489
|
+
return super().__getitem__(key)
|
4490
|
+
|
4491
|
+
def get(self, key: str, default = None) -> Any:
|
4492
|
+
CloudVmClusterFileSystemConfigurationDetail.__key_warning(key)
|
4493
|
+
return super().get(key, default)
|
4494
|
+
|
4495
|
+
def __init__(__self__, *,
|
4496
|
+
file_system_size_gb: Optional[int] = None,
|
4497
|
+
mount_point: Optional[str] = None):
|
4498
|
+
"""
|
4499
|
+
:param int file_system_size_gb: (Updatable) The file system size to be allocated in GBs.
|
4500
|
+
:param str mount_point: (Updatable) The mount point of file system.
|
4501
|
+
"""
|
4502
|
+
if file_system_size_gb is not None:
|
4503
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
4504
|
+
if mount_point is not None:
|
4505
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
4506
|
+
|
4507
|
+
@property
|
4508
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
4509
|
+
def file_system_size_gb(self) -> Optional[int]:
|
4510
|
+
"""
|
4511
|
+
(Updatable) The file system size to be allocated in GBs.
|
4512
|
+
"""
|
4513
|
+
return pulumi.get(self, "file_system_size_gb")
|
4514
|
+
|
4515
|
+
@property
|
4516
|
+
@pulumi.getter(name="mountPoint")
|
4517
|
+
def mount_point(self) -> Optional[str]:
|
4518
|
+
"""
|
4519
|
+
(Updatable) The mount point of file system.
|
4520
|
+
"""
|
4521
|
+
return pulumi.get(self, "mount_point")
|
4522
|
+
|
4523
|
+
|
4382
4524
|
@pulumi.output_type
|
4383
4525
|
class CloudVmClusterIormConfigCach(dict):
|
4384
4526
|
@staticmethod
|
@@ -8661,6 +8803,84 @@ class ExadataInfrastructureContact(dict):
|
|
8661
8803
|
return pulumi.get(self, "phone_number")
|
8662
8804
|
|
8663
8805
|
|
8806
|
+
@pulumi.output_type
|
8807
|
+
class ExadataInfrastructureDefinedFileSystemConfiguration(dict):
|
8808
|
+
@staticmethod
|
8809
|
+
def __key_warning(key: str):
|
8810
|
+
suggest = None
|
8811
|
+
if key == "isBackupPartition":
|
8812
|
+
suggest = "is_backup_partition"
|
8813
|
+
elif key == "isResizable":
|
8814
|
+
suggest = "is_resizable"
|
8815
|
+
elif key == "minSizeGb":
|
8816
|
+
suggest = "min_size_gb"
|
8817
|
+
elif key == "mountPoint":
|
8818
|
+
suggest = "mount_point"
|
8819
|
+
|
8820
|
+
if suggest:
|
8821
|
+
pulumi.log.warn(f"Key '{key}' not found in ExadataInfrastructureDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
|
8822
|
+
|
8823
|
+
def __getitem__(self, key: str) -> Any:
|
8824
|
+
ExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
|
8825
|
+
return super().__getitem__(key)
|
8826
|
+
|
8827
|
+
def get(self, key: str, default = None) -> Any:
|
8828
|
+
ExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
|
8829
|
+
return super().get(key, default)
|
8830
|
+
|
8831
|
+
def __init__(__self__, *,
|
8832
|
+
is_backup_partition: Optional[bool] = None,
|
8833
|
+
is_resizable: Optional[bool] = None,
|
8834
|
+
min_size_gb: Optional[int] = None,
|
8835
|
+
mount_point: Optional[str] = None):
|
8836
|
+
"""
|
8837
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
8838
|
+
: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.
|
8839
|
+
:param int min_size_gb: The minimum size of file system.
|
8840
|
+
:param str mount_point: The mount point of file system.
|
8841
|
+
"""
|
8842
|
+
if is_backup_partition is not None:
|
8843
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
8844
|
+
if is_resizable is not None:
|
8845
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
8846
|
+
if min_size_gb is not None:
|
8847
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
8848
|
+
if mount_point is not None:
|
8849
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
8850
|
+
|
8851
|
+
@property
|
8852
|
+
@pulumi.getter(name="isBackupPartition")
|
8853
|
+
def is_backup_partition(self) -> Optional[bool]:
|
8854
|
+
"""
|
8855
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
8856
|
+
"""
|
8857
|
+
return pulumi.get(self, "is_backup_partition")
|
8858
|
+
|
8859
|
+
@property
|
8860
|
+
@pulumi.getter(name="isResizable")
|
8861
|
+
def is_resizable(self) -> Optional[bool]:
|
8862
|
+
"""
|
8863
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
8864
|
+
"""
|
8865
|
+
return pulumi.get(self, "is_resizable")
|
8866
|
+
|
8867
|
+
@property
|
8868
|
+
@pulumi.getter(name="minSizeGb")
|
8869
|
+
def min_size_gb(self) -> Optional[int]:
|
8870
|
+
"""
|
8871
|
+
The minimum size of file system.
|
8872
|
+
"""
|
8873
|
+
return pulumi.get(self, "min_size_gb")
|
8874
|
+
|
8875
|
+
@property
|
8876
|
+
@pulumi.getter(name="mountPoint")
|
8877
|
+
def mount_point(self) -> Optional[str]:
|
8878
|
+
"""
|
8879
|
+
The mount point of file system.
|
8880
|
+
"""
|
8881
|
+
return pulumi.get(self, "mount_point")
|
8882
|
+
|
8883
|
+
|
8664
8884
|
@pulumi.output_type
|
8665
8885
|
class ExadataInfrastructureMaintenanceWindow(dict):
|
8666
8886
|
@staticmethod
|
@@ -10960,6 +11180,56 @@ class VmClusterAddVirtualNetworkDbServer(dict):
|
|
10960
11180
|
return pulumi.get(self, "db_server_id")
|
10961
11181
|
|
10962
11182
|
|
11183
|
+
@pulumi.output_type
|
11184
|
+
class VmClusterAddVirtualNetworkFileSystemConfigurationDetail(dict):
|
11185
|
+
@staticmethod
|
11186
|
+
def __key_warning(key: str):
|
11187
|
+
suggest = None
|
11188
|
+
if key == "fileSystemSizeGb":
|
11189
|
+
suggest = "file_system_size_gb"
|
11190
|
+
elif key == "mountPoint":
|
11191
|
+
suggest = "mount_point"
|
11192
|
+
|
11193
|
+
if suggest:
|
11194
|
+
pulumi.log.warn(f"Key '{key}' not found in VmClusterAddVirtualNetworkFileSystemConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
|
11195
|
+
|
11196
|
+
def __getitem__(self, key: str) -> Any:
|
11197
|
+
VmClusterAddVirtualNetworkFileSystemConfigurationDetail.__key_warning(key)
|
11198
|
+
return super().__getitem__(key)
|
11199
|
+
|
11200
|
+
def get(self, key: str, default = None) -> Any:
|
11201
|
+
VmClusterAddVirtualNetworkFileSystemConfigurationDetail.__key_warning(key)
|
11202
|
+
return super().get(key, default)
|
11203
|
+
|
11204
|
+
def __init__(__self__, *,
|
11205
|
+
file_system_size_gb: Optional[int] = None,
|
11206
|
+
mount_point: Optional[str] = None):
|
11207
|
+
"""
|
11208
|
+
:param int file_system_size_gb: The file system size to be allocated in GBs.
|
11209
|
+
:param str mount_point: The mount point of file system.
|
11210
|
+
"""
|
11211
|
+
if file_system_size_gb is not None:
|
11212
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
11213
|
+
if mount_point is not None:
|
11214
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
11215
|
+
|
11216
|
+
@property
|
11217
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
11218
|
+
def file_system_size_gb(self) -> Optional[int]:
|
11219
|
+
"""
|
11220
|
+
The file system size to be allocated in GBs.
|
11221
|
+
"""
|
11222
|
+
return pulumi.get(self, "file_system_size_gb")
|
11223
|
+
|
11224
|
+
@property
|
11225
|
+
@pulumi.getter(name="mountPoint")
|
11226
|
+
def mount_point(self) -> Optional[str]:
|
11227
|
+
"""
|
11228
|
+
The mount point of file system.
|
11229
|
+
"""
|
11230
|
+
return pulumi.get(self, "mount_point")
|
11231
|
+
|
11232
|
+
|
10963
11233
|
@pulumi.output_type
|
10964
11234
|
class VmClusterDataCollectionOptions(dict):
|
10965
11235
|
@staticmethod
|
@@ -11024,6 +11294,56 @@ class VmClusterDataCollectionOptions(dict):
|
|
11024
11294
|
return pulumi.get(self, "is_incident_logs_enabled")
|
11025
11295
|
|
11026
11296
|
|
11297
|
+
@pulumi.output_type
|
11298
|
+
class VmClusterFileSystemConfigurationDetail(dict):
|
11299
|
+
@staticmethod
|
11300
|
+
def __key_warning(key: str):
|
11301
|
+
suggest = None
|
11302
|
+
if key == "fileSystemSizeGb":
|
11303
|
+
suggest = "file_system_size_gb"
|
11304
|
+
elif key == "mountPoint":
|
11305
|
+
suggest = "mount_point"
|
11306
|
+
|
11307
|
+
if suggest:
|
11308
|
+
pulumi.log.warn(f"Key '{key}' not found in VmClusterFileSystemConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
|
11309
|
+
|
11310
|
+
def __getitem__(self, key: str) -> Any:
|
11311
|
+
VmClusterFileSystemConfigurationDetail.__key_warning(key)
|
11312
|
+
return super().__getitem__(key)
|
11313
|
+
|
11314
|
+
def get(self, key: str, default = None) -> Any:
|
11315
|
+
VmClusterFileSystemConfigurationDetail.__key_warning(key)
|
11316
|
+
return super().get(key, default)
|
11317
|
+
|
11318
|
+
def __init__(__self__, *,
|
11319
|
+
file_system_size_gb: Optional[int] = None,
|
11320
|
+
mount_point: Optional[str] = None):
|
11321
|
+
"""
|
11322
|
+
:param int file_system_size_gb: (Updatable) The file system size to be allocated in GBs.
|
11323
|
+
:param str mount_point: (Updatable) The mount point of file system.
|
11324
|
+
"""
|
11325
|
+
if file_system_size_gb is not None:
|
11326
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
11327
|
+
if mount_point is not None:
|
11328
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
11329
|
+
|
11330
|
+
@property
|
11331
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
11332
|
+
def file_system_size_gb(self) -> Optional[int]:
|
11333
|
+
"""
|
11334
|
+
(Updatable) The file system size to be allocated in GBs.
|
11335
|
+
"""
|
11336
|
+
return pulumi.get(self, "file_system_size_gb")
|
11337
|
+
|
11338
|
+
@property
|
11339
|
+
@pulumi.getter(name="mountPoint")
|
11340
|
+
def mount_point(self) -> Optional[str]:
|
11341
|
+
"""
|
11342
|
+
(Updatable) The mount point of file system.
|
11343
|
+
"""
|
11344
|
+
return pulumi.get(self, "mount_point")
|
11345
|
+
|
11346
|
+
|
11027
11347
|
@pulumi.output_type
|
11028
11348
|
class VmClusterNetworkDrScan(dict):
|
11029
11349
|
@staticmethod
|
@@ -11466,6 +11786,56 @@ class VmClusterRemoveVirtualMachineDbServer(dict):
|
|
11466
11786
|
return pulumi.get(self, "db_server_id")
|
11467
11787
|
|
11468
11788
|
|
11789
|
+
@pulumi.output_type
|
11790
|
+
class VmClusterRemoveVirtualMachineFileSystemConfigurationDetail(dict):
|
11791
|
+
@staticmethod
|
11792
|
+
def __key_warning(key: str):
|
11793
|
+
suggest = None
|
11794
|
+
if key == "fileSystemSizeGb":
|
11795
|
+
suggest = "file_system_size_gb"
|
11796
|
+
elif key == "mountPoint":
|
11797
|
+
suggest = "mount_point"
|
11798
|
+
|
11799
|
+
if suggest:
|
11800
|
+
pulumi.log.warn(f"Key '{key}' not found in VmClusterRemoveVirtualMachineFileSystemConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
|
11801
|
+
|
11802
|
+
def __getitem__(self, key: str) -> Any:
|
11803
|
+
VmClusterRemoveVirtualMachineFileSystemConfigurationDetail.__key_warning(key)
|
11804
|
+
return super().__getitem__(key)
|
11805
|
+
|
11806
|
+
def get(self, key: str, default = None) -> Any:
|
11807
|
+
VmClusterRemoveVirtualMachineFileSystemConfigurationDetail.__key_warning(key)
|
11808
|
+
return super().get(key, default)
|
11809
|
+
|
11810
|
+
def __init__(__self__, *,
|
11811
|
+
file_system_size_gb: Optional[int] = None,
|
11812
|
+
mount_point: Optional[str] = None):
|
11813
|
+
"""
|
11814
|
+
:param int file_system_size_gb: The file system size to be allocated in GBs.
|
11815
|
+
:param str mount_point: The mount point of file system.
|
11816
|
+
"""
|
11817
|
+
if file_system_size_gb is not None:
|
11818
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
11819
|
+
if mount_point is not None:
|
11820
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
11821
|
+
|
11822
|
+
@property
|
11823
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
11824
|
+
def file_system_size_gb(self) -> Optional[int]:
|
11825
|
+
"""
|
11826
|
+
The file system size to be allocated in GBs.
|
11827
|
+
"""
|
11828
|
+
return pulumi.get(self, "file_system_size_gb")
|
11829
|
+
|
11830
|
+
@property
|
11831
|
+
@pulumi.getter(name="mountPoint")
|
11832
|
+
def mount_point(self) -> Optional[str]:
|
11833
|
+
"""
|
11834
|
+
The mount point of file system.
|
11835
|
+
"""
|
11836
|
+
return pulumi.get(self, "mount_point")
|
11837
|
+
|
11838
|
+
|
11469
11839
|
@pulumi.output_type
|
11470
11840
|
class GetApplicationVipsApplicationVipResult(dict):
|
11471
11841
|
def __init__(__self__, *,
|
@@ -12962,10 +13332,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
12962
13332
|
:param Sequence[str] list_one_off_patches: List of One-Off patches that has been successfully applied to Autonomous Container Database
|
12963
13333
|
:param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowArgs'] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
|
12964
13334
|
:param int memory_per_oracle_compute_unit_in_gbs: The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
|
12965
|
-
<<<<<<< HEAD
|
12966
13335
|
:param str net_services_architecture: Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
|
12967
|
-
=======
|
12968
|
-
>>>>>>> 22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)
|
12969
13336
|
:param str next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
|
12970
13337
|
:param str patch_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch applied on the system.
|
12971
13338
|
:param str patch_model: Database patch model preference.
|
@@ -13302,7 +13669,6 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
13302
13669
|
def memory_per_oracle_compute_unit_in_gbs(self) -> int:
|
13303
13670
|
"""
|
13304
13671
|
The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
|
13305
|
-
<<<<<<< HEAD
|
13306
13672
|
"""
|
13307
13673
|
return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
|
13308
13674
|
|
@@ -13311,8 +13677,6 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
|
|
13311
13677
|
def net_services_architecture(self) -> str:
|
13312
13678
|
"""
|
13313
13679
|
Enabling SHARED server architecture enables a database server to allow many client processes to share very few server processes, thereby increasing the number of supported users.
|
13314
|
-
=======
|
13315
|
-
>>>>>>> 22609d6059 (Added - Support for Oracle Home Version Control - Phase 2 | ADB-D and ADB-C@C)
|
13316
13680
|
"""
|
13317
13681
|
return pulumi.get(self, "net_services_architecture")
|
13318
13682
|
|
@@ -25494,6 +25858,57 @@ class GetCloudExadataInfrastructureCustomerContactResult(dict):
|
|
25494
25858
|
return pulumi.get(self, "email")
|
25495
25859
|
|
25496
25860
|
|
25861
|
+
@pulumi.output_type
|
25862
|
+
class GetCloudExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
|
25863
|
+
def __init__(__self__, *,
|
25864
|
+
is_backup_partition: bool,
|
25865
|
+
is_resizable: bool,
|
25866
|
+
min_size_gb: int,
|
25867
|
+
mount_point: str):
|
25868
|
+
"""
|
25869
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
25870
|
+
: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.
|
25871
|
+
:param int min_size_gb: The minimum size of file system.
|
25872
|
+
:param str mount_point: The mount point of file system.
|
25873
|
+
"""
|
25874
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
25875
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
25876
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
25877
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
25878
|
+
|
25879
|
+
@property
|
25880
|
+
@pulumi.getter(name="isBackupPartition")
|
25881
|
+
def is_backup_partition(self) -> bool:
|
25882
|
+
"""
|
25883
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
25884
|
+
"""
|
25885
|
+
return pulumi.get(self, "is_backup_partition")
|
25886
|
+
|
25887
|
+
@property
|
25888
|
+
@pulumi.getter(name="isResizable")
|
25889
|
+
def is_resizable(self) -> bool:
|
25890
|
+
"""
|
25891
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
25892
|
+
"""
|
25893
|
+
return pulumi.get(self, "is_resizable")
|
25894
|
+
|
25895
|
+
@property
|
25896
|
+
@pulumi.getter(name="minSizeGb")
|
25897
|
+
def min_size_gb(self) -> int:
|
25898
|
+
"""
|
25899
|
+
The minimum size of file system.
|
25900
|
+
"""
|
25901
|
+
return pulumi.get(self, "min_size_gb")
|
25902
|
+
|
25903
|
+
@property
|
25904
|
+
@pulumi.getter(name="mountPoint")
|
25905
|
+
def mount_point(self) -> str:
|
25906
|
+
"""
|
25907
|
+
The mount point of file system.
|
25908
|
+
"""
|
25909
|
+
return pulumi.get(self, "mount_point")
|
25910
|
+
|
25911
|
+
|
25497
25912
|
@pulumi.output_type
|
25498
25913
|
class GetCloudExadataInfrastructureMaintenanceWindowResult(dict):
|
25499
25914
|
def __init__(__self__, *,
|
@@ -25700,6 +26115,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
25700
26115
|
data_storage_size_in_tbs: float,
|
25701
26116
|
db_node_storage_size_in_gbs: int,
|
25702
26117
|
db_server_version: str,
|
26118
|
+
defined_file_system_configurations: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult'],
|
25703
26119
|
defined_tags: Mapping[str, Any],
|
25704
26120
|
display_name: str,
|
25705
26121
|
freeform_tags: Mapping[str, Any],
|
@@ -25735,6 +26151,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
25735
26151
|
:param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
25736
26152
|
:param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
25737
26153
|
:param str db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
|
26154
|
+
:param Sequence['GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
25738
26155
|
:param Mapping[str, Any] 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).
|
25739
26156
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
25740
26157
|
:param Mapping[str, Any] 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"}`
|
@@ -25770,6 +26187,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
25770
26187
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
25771
26188
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
25772
26189
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
26190
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
25773
26191
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
25774
26192
|
pulumi.set(__self__, "display_name", display_name)
|
25775
26193
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
@@ -25889,6 +26307,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
|
|
25889
26307
|
"""
|
25890
26308
|
return pulumi.get(self, "db_server_version")
|
25891
26309
|
|
26310
|
+
@property
|
26311
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
26312
|
+
def defined_file_system_configurations(self) -> Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult']:
|
26313
|
+
"""
|
26314
|
+
Details of the file system configuration of the Exadata infrastructure.
|
26315
|
+
"""
|
26316
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
26317
|
+
|
25892
26318
|
@property
|
25893
26319
|
@pulumi.getter(name="definedTags")
|
25894
26320
|
def defined_tags(self) -> Mapping[str, Any]:
|
@@ -26084,6 +26510,57 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactRes
|
|
26084
26510
|
return pulumi.get(self, "email")
|
26085
26511
|
|
26086
26512
|
|
26513
|
+
@pulumi.output_type
|
26514
|
+
class GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
|
26515
|
+
def __init__(__self__, *,
|
26516
|
+
is_backup_partition: bool,
|
26517
|
+
is_resizable: bool,
|
26518
|
+
min_size_gb: int,
|
26519
|
+
mount_point: str):
|
26520
|
+
"""
|
26521
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
26522
|
+
: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.
|
26523
|
+
:param int min_size_gb: The minimum size of file system.
|
26524
|
+
:param str mount_point: The mount point of file system.
|
26525
|
+
"""
|
26526
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
26527
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
26528
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
26529
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
26530
|
+
|
26531
|
+
@property
|
26532
|
+
@pulumi.getter(name="isBackupPartition")
|
26533
|
+
def is_backup_partition(self) -> bool:
|
26534
|
+
"""
|
26535
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
26536
|
+
"""
|
26537
|
+
return pulumi.get(self, "is_backup_partition")
|
26538
|
+
|
26539
|
+
@property
|
26540
|
+
@pulumi.getter(name="isResizable")
|
26541
|
+
def is_resizable(self) -> bool:
|
26542
|
+
"""
|
26543
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
26544
|
+
"""
|
26545
|
+
return pulumi.get(self, "is_resizable")
|
26546
|
+
|
26547
|
+
@property
|
26548
|
+
@pulumi.getter(name="minSizeGb")
|
26549
|
+
def min_size_gb(self) -> int:
|
26550
|
+
"""
|
26551
|
+
The minimum size of file system.
|
26552
|
+
"""
|
26553
|
+
return pulumi.get(self, "min_size_gb")
|
26554
|
+
|
26555
|
+
@property
|
26556
|
+
@pulumi.getter(name="mountPoint")
|
26557
|
+
def mount_point(self) -> str:
|
26558
|
+
"""
|
26559
|
+
The mount point of file system.
|
26560
|
+
"""
|
26561
|
+
return pulumi.get(self, "mount_point")
|
26562
|
+
|
26563
|
+
|
26087
26564
|
@pulumi.output_type
|
26088
26565
|
class GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowResult(dict):
|
26089
26566
|
def __init__(__self__, *,
|
@@ -26319,6 +26796,35 @@ class GetCloudVmClusterDataCollectionOptionResult(dict):
|
|
26319
26796
|
return pulumi.get(self, "is_incident_logs_enabled")
|
26320
26797
|
|
26321
26798
|
|
26799
|
+
@pulumi.output_type
|
26800
|
+
class GetCloudVmClusterFileSystemConfigurationDetailResult(dict):
|
26801
|
+
def __init__(__self__, *,
|
26802
|
+
file_system_size_gb: int,
|
26803
|
+
mount_point: str):
|
26804
|
+
"""
|
26805
|
+
:param int file_system_size_gb: The file system size to be allocated in GBs.
|
26806
|
+
:param str mount_point: The mount point of file system.
|
26807
|
+
"""
|
26808
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
26809
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
26810
|
+
|
26811
|
+
@property
|
26812
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
26813
|
+
def file_system_size_gb(self) -> int:
|
26814
|
+
"""
|
26815
|
+
The file system size to be allocated in GBs.
|
26816
|
+
"""
|
26817
|
+
return pulumi.get(self, "file_system_size_gb")
|
26818
|
+
|
26819
|
+
@property
|
26820
|
+
@pulumi.getter(name="mountPoint")
|
26821
|
+
def mount_point(self) -> str:
|
26822
|
+
"""
|
26823
|
+
The mount point of file system.
|
26824
|
+
"""
|
26825
|
+
return pulumi.get(self, "mount_point")
|
26826
|
+
|
26827
|
+
|
26322
26828
|
@pulumi.output_type
|
26323
26829
|
class GetCloudVmClusterIormConfigCachResult(dict):
|
26324
26830
|
def __init__(__self__, *,
|
@@ -26470,6 +26976,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
26470
26976
|
disk_redundancy: str,
|
26471
26977
|
display_name: str,
|
26472
26978
|
domain: str,
|
26979
|
+
file_system_configuration_details: Sequence['outputs.GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult'],
|
26473
26980
|
freeform_tags: Mapping[str, Any],
|
26474
26981
|
gi_version: str,
|
26475
26982
|
hostname: str,
|
@@ -26519,6 +27026,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
26519
27026
|
:param str disk_redundancy: The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
|
26520
27027
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
26521
27028
|
:param str domain: The domain name for the cloud VM cluster.
|
27029
|
+
:param Sequence['GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailArgs'] file_system_configuration_details: Details of the file system configuration of the VM cluster.
|
26522
27030
|
:param Mapping[str, Any] 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"}`
|
26523
27031
|
:param str gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
26524
27032
|
:param str hostname: The hostname for the cloud VM cluster.
|
@@ -26568,6 +27076,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
26568
27076
|
pulumi.set(__self__, "disk_redundancy", disk_redundancy)
|
26569
27077
|
pulumi.set(__self__, "display_name", display_name)
|
26570
27078
|
pulumi.set(__self__, "domain", domain)
|
27079
|
+
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
26571
27080
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
26572
27081
|
pulumi.set(__self__, "gi_version", gi_version)
|
26573
27082
|
pulumi.set(__self__, "hostname", hostname)
|
@@ -26734,6 +27243,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
|
|
26734
27243
|
"""
|
26735
27244
|
return pulumi.get(self, "domain")
|
26736
27245
|
|
27246
|
+
@property
|
27247
|
+
@pulumi.getter(name="fileSystemConfigurationDetails")
|
27248
|
+
def file_system_configuration_details(self) -> Sequence['outputs.GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult']:
|
27249
|
+
"""
|
27250
|
+
Details of the file system configuration of the VM cluster.
|
27251
|
+
"""
|
27252
|
+
return pulumi.get(self, "file_system_configuration_details")
|
27253
|
+
|
26737
27254
|
@property
|
26738
27255
|
@pulumi.getter(name="freeformTags")
|
26739
27256
|
def freeform_tags(self) -> Mapping[str, Any]:
|
@@ -27026,6 +27543,35 @@ class GetCloudVmClustersCloudVmClusterDataCollectionOptionResult(dict):
|
|
27026
27543
|
return pulumi.get(self, "is_incident_logs_enabled")
|
27027
27544
|
|
27028
27545
|
|
27546
|
+
@pulumi.output_type
|
27547
|
+
class GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult(dict):
|
27548
|
+
def __init__(__self__, *,
|
27549
|
+
file_system_size_gb: int,
|
27550
|
+
mount_point: str):
|
27551
|
+
"""
|
27552
|
+
:param int file_system_size_gb: The file system size to be allocated in GBs.
|
27553
|
+
:param str mount_point: The mount point of file system.
|
27554
|
+
"""
|
27555
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
27556
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
27557
|
+
|
27558
|
+
@property
|
27559
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
27560
|
+
def file_system_size_gb(self) -> int:
|
27561
|
+
"""
|
27562
|
+
The file system size to be allocated in GBs.
|
27563
|
+
"""
|
27564
|
+
return pulumi.get(self, "file_system_size_gb")
|
27565
|
+
|
27566
|
+
@property
|
27567
|
+
@pulumi.getter(name="mountPoint")
|
27568
|
+
def mount_point(self) -> str:
|
27569
|
+
"""
|
27570
|
+
The mount point of file system.
|
27571
|
+
"""
|
27572
|
+
return pulumi.get(self, "mount_point")
|
27573
|
+
|
27574
|
+
|
27029
27575
|
@pulumi.output_type
|
27030
27576
|
class GetCloudVmClustersCloudVmClusterIormConfigCachResult(dict):
|
27031
27577
|
def __init__(__self__, *,
|
@@ -35579,6 +36125,57 @@ class GetExadataInfrastructureContactResult(dict):
|
|
35579
36125
|
return pulumi.get(self, "phone_number")
|
35580
36126
|
|
35581
36127
|
|
36128
|
+
@pulumi.output_type
|
36129
|
+
class GetExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
|
36130
|
+
def __init__(__self__, *,
|
36131
|
+
is_backup_partition: bool,
|
36132
|
+
is_resizable: bool,
|
36133
|
+
min_size_gb: int,
|
36134
|
+
mount_point: str):
|
36135
|
+
"""
|
36136
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
36137
|
+
: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.
|
36138
|
+
:param int min_size_gb: The minimum size of file system.
|
36139
|
+
:param str mount_point: The mount point of file system.
|
36140
|
+
"""
|
36141
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
36142
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
36143
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
36144
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
36145
|
+
|
36146
|
+
@property
|
36147
|
+
@pulumi.getter(name="isBackupPartition")
|
36148
|
+
def is_backup_partition(self) -> bool:
|
36149
|
+
"""
|
36150
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
36151
|
+
"""
|
36152
|
+
return pulumi.get(self, "is_backup_partition")
|
36153
|
+
|
36154
|
+
@property
|
36155
|
+
@pulumi.getter(name="isResizable")
|
36156
|
+
def is_resizable(self) -> bool:
|
36157
|
+
"""
|
36158
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
36159
|
+
"""
|
36160
|
+
return pulumi.get(self, "is_resizable")
|
36161
|
+
|
36162
|
+
@property
|
36163
|
+
@pulumi.getter(name="minSizeGb")
|
36164
|
+
def min_size_gb(self) -> int:
|
36165
|
+
"""
|
36166
|
+
The minimum size of file system.
|
36167
|
+
"""
|
36168
|
+
return pulumi.get(self, "min_size_gb")
|
36169
|
+
|
36170
|
+
@property
|
36171
|
+
@pulumi.getter(name="mountPoint")
|
36172
|
+
def mount_point(self) -> str:
|
36173
|
+
"""
|
36174
|
+
The mount point of file system.
|
36175
|
+
"""
|
36176
|
+
return pulumi.get(self, "mount_point")
|
36177
|
+
|
36178
|
+
|
35582
36179
|
@pulumi.output_type
|
35583
36180
|
class GetExadataInfrastructureMaintenanceWindowResult(dict):
|
35584
36181
|
def __init__(__self__, *,
|
@@ -35832,6 +36429,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
35832
36429
|
data_storage_size_in_tbs: float,
|
35833
36430
|
db_node_storage_size_in_gbs: int,
|
35834
36431
|
db_server_version: str,
|
36432
|
+
defined_file_system_configurations: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult'],
|
35835
36433
|
defined_tags: Mapping[str, Any],
|
35836
36434
|
display_name: str,
|
35837
36435
|
dns_servers: Sequence[str],
|
@@ -35879,6 +36477,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
35879
36477
|
:param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
35880
36478
|
:param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
35881
36479
|
:param str db_server_version: The software version of the database servers (dom0) in the Exadata infrastructure.
|
36480
|
+
:param Sequence['GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
|
35882
36481
|
:param Mapping[str, Any] 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).
|
35883
36482
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
35884
36483
|
:param Sequence[str] dns_servers: The list of DNS server IP addresses. Maximum of 3 allowed.
|
@@ -35928,6 +36527,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
35928
36527
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
35929
36528
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
35930
36529
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
36530
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
35931
36531
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
35932
36532
|
pulumi.set(__self__, "display_name", display_name)
|
35933
36533
|
pulumi.set(__self__, "dns_servers", dns_servers)
|
@@ -36104,6 +36704,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
36104
36704
|
"""
|
36105
36705
|
return pulumi.get(self, "db_server_version")
|
36106
36706
|
|
36707
|
+
@property
|
36708
|
+
@pulumi.getter(name="definedFileSystemConfigurations")
|
36709
|
+
def defined_file_system_configurations(self) -> Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult']:
|
36710
|
+
"""
|
36711
|
+
Details of the file system configuration of the Exadata infrastructure.
|
36712
|
+
"""
|
36713
|
+
return pulumi.get(self, "defined_file_system_configurations")
|
36714
|
+
|
36107
36715
|
@property
|
36108
36716
|
@pulumi.getter(name="definedTags")
|
36109
36717
|
def defined_tags(self) -> Mapping[str, Any]:
|
@@ -36399,6 +37007,57 @@ class GetExadataInfrastructuresExadataInfrastructureContactResult(dict):
|
|
36399
37007
|
return pulumi.get(self, "phone_number")
|
36400
37008
|
|
36401
37009
|
|
37010
|
+
@pulumi.output_type
|
37011
|
+
class GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
|
37012
|
+
def __init__(__self__, *,
|
37013
|
+
is_backup_partition: bool,
|
37014
|
+
is_resizable: bool,
|
37015
|
+
min_size_gb: int,
|
37016
|
+
mount_point: str):
|
37017
|
+
"""
|
37018
|
+
:param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
|
37019
|
+
: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.
|
37020
|
+
:param int min_size_gb: The minimum size of file system.
|
37021
|
+
:param str mount_point: The mount point of file system.
|
37022
|
+
"""
|
37023
|
+
pulumi.set(__self__, "is_backup_partition", is_backup_partition)
|
37024
|
+
pulumi.set(__self__, "is_resizable", is_resizable)
|
37025
|
+
pulumi.set(__self__, "min_size_gb", min_size_gb)
|
37026
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
37027
|
+
|
37028
|
+
@property
|
37029
|
+
@pulumi.getter(name="isBackupPartition")
|
37030
|
+
def is_backup_partition(self) -> bool:
|
37031
|
+
"""
|
37032
|
+
If true, the file system is used to create a backup prior to Exadata VM OS update.
|
37033
|
+
"""
|
37034
|
+
return pulumi.get(self, "is_backup_partition")
|
37035
|
+
|
37036
|
+
@property
|
37037
|
+
@pulumi.getter(name="isResizable")
|
37038
|
+
def is_resizable(self) -> bool:
|
37039
|
+
"""
|
37040
|
+
If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
|
37041
|
+
"""
|
37042
|
+
return pulumi.get(self, "is_resizable")
|
37043
|
+
|
37044
|
+
@property
|
37045
|
+
@pulumi.getter(name="minSizeGb")
|
37046
|
+
def min_size_gb(self) -> int:
|
37047
|
+
"""
|
37048
|
+
The minimum size of file system.
|
37049
|
+
"""
|
37050
|
+
return pulumi.get(self, "min_size_gb")
|
37051
|
+
|
37052
|
+
@property
|
37053
|
+
@pulumi.getter(name="mountPoint")
|
37054
|
+
def mount_point(self) -> str:
|
37055
|
+
"""
|
37056
|
+
The mount point of file system.
|
37057
|
+
"""
|
37058
|
+
return pulumi.get(self, "mount_point")
|
37059
|
+
|
37060
|
+
|
36402
37061
|
@pulumi.output_type
|
36403
37062
|
class GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult(dict):
|
36404
37063
|
def __init__(__self__, *,
|
@@ -40420,6 +41079,35 @@ class GetVmClusterDataCollectionOptionResult(dict):
|
|
40420
41079
|
return pulumi.get(self, "is_incident_logs_enabled")
|
40421
41080
|
|
40422
41081
|
|
41082
|
+
@pulumi.output_type
|
41083
|
+
class GetVmClusterFileSystemConfigurationDetailResult(dict):
|
41084
|
+
def __init__(__self__, *,
|
41085
|
+
file_system_size_gb: int,
|
41086
|
+
mount_point: str):
|
41087
|
+
"""
|
41088
|
+
:param int file_system_size_gb: The file system size to be allocated in GBs.
|
41089
|
+
:param str mount_point: The mount point of file system.
|
41090
|
+
"""
|
41091
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
41092
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
41093
|
+
|
41094
|
+
@property
|
41095
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
41096
|
+
def file_system_size_gb(self) -> int:
|
41097
|
+
"""
|
41098
|
+
The file system size to be allocated in GBs.
|
41099
|
+
"""
|
41100
|
+
return pulumi.get(self, "file_system_size_gb")
|
41101
|
+
|
41102
|
+
@property
|
41103
|
+
@pulumi.getter(name="mountPoint")
|
41104
|
+
def mount_point(self) -> str:
|
41105
|
+
"""
|
41106
|
+
The mount point of file system.
|
41107
|
+
"""
|
41108
|
+
return pulumi.get(self, "mount_point")
|
41109
|
+
|
41110
|
+
|
40423
41111
|
@pulumi.output_type
|
40424
41112
|
class GetVmClusterNetworkDrScanResult(dict):
|
40425
41113
|
def __init__(__self__, *,
|
@@ -41991,6 +42679,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
41991
42679
|
defined_tags: Mapping[str, Any],
|
41992
42680
|
display_name: str,
|
41993
42681
|
exadata_infrastructure_id: str,
|
42682
|
+
file_system_configuration_details: Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult'],
|
41994
42683
|
freeform_tags: Mapping[str, Any],
|
41995
42684
|
gi_version: str,
|
41996
42685
|
id: str,
|
@@ -42021,6 +42710,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
42021
42710
|
:param Mapping[str, Any] 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).
|
42022
42711
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
42023
42712
|
:param str exadata_infrastructure_id: If provided, filters the results for the given Exadata Infrastructure.
|
42713
|
+
:param Sequence['GetVmClustersVmClusterFileSystemConfigurationDetailArgs'] file_system_configuration_details: Details of the file system configuration of the VM cluster.
|
42024
42714
|
:param Mapping[str, Any] 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"}`
|
42025
42715
|
:param str gi_version: The Oracle Grid Infrastructure software version for the VM cluster.
|
42026
42716
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -42050,6 +42740,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
42050
42740
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
42051
42741
|
pulumi.set(__self__, "display_name", display_name)
|
42052
42742
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
42743
|
+
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
42053
42744
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
42054
42745
|
pulumi.set(__self__, "gi_version", gi_version)
|
42055
42746
|
pulumi.set(__self__, "id", id)
|
@@ -42162,6 +42853,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
42162
42853
|
"""
|
42163
42854
|
return pulumi.get(self, "exadata_infrastructure_id")
|
42164
42855
|
|
42856
|
+
@property
|
42857
|
+
@pulumi.getter(name="fileSystemConfigurationDetails")
|
42858
|
+
def file_system_configuration_details(self) -> Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult']:
|
42859
|
+
"""
|
42860
|
+
Details of the file system configuration of the VM cluster.
|
42861
|
+
"""
|
42862
|
+
return pulumi.get(self, "file_system_configuration_details")
|
42863
|
+
|
42165
42864
|
@property
|
42166
42865
|
@pulumi.getter(name="freeformTags")
|
42167
42866
|
def freeform_tags(self) -> Mapping[str, Any]:
|
@@ -42341,3 +43040,32 @@ class GetVmClustersVmClusterDataCollectionOptionResult(dict):
|
|
42341
43040
|
return pulumi.get(self, "is_incident_logs_enabled")
|
42342
43041
|
|
42343
43042
|
|
43043
|
+
@pulumi.output_type
|
43044
|
+
class GetVmClustersVmClusterFileSystemConfigurationDetailResult(dict):
|
43045
|
+
def __init__(__self__, *,
|
43046
|
+
file_system_size_gb: int,
|
43047
|
+
mount_point: str):
|
43048
|
+
"""
|
43049
|
+
:param int file_system_size_gb: The file system size to be allocated in GBs.
|
43050
|
+
:param str mount_point: The mount point of file system.
|
43051
|
+
"""
|
43052
|
+
pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
|
43053
|
+
pulumi.set(__self__, "mount_point", mount_point)
|
43054
|
+
|
43055
|
+
@property
|
43056
|
+
@pulumi.getter(name="fileSystemSizeGb")
|
43057
|
+
def file_system_size_gb(self) -> int:
|
43058
|
+
"""
|
43059
|
+
The file system size to be allocated in GBs.
|
43060
|
+
"""
|
43061
|
+
return pulumi.get(self, "file_system_size_gb")
|
43062
|
+
|
43063
|
+
@property
|
43064
|
+
@pulumi.getter(name="mountPoint")
|
43065
|
+
def mount_point(self) -> str:
|
43066
|
+
"""
|
43067
|
+
The mount point of file system.
|
43068
|
+
"""
|
43069
|
+
return pulumi.get(self, "mount_point")
|
43070
|
+
|
43071
|
+
|