pulumi-oci 1.35.0a1715356469__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 +192 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/get_exadata_infrastructure.py +14 -1
- pulumi_oci/database/get_vm_cluster.py +14 -1
- pulumi_oci/database/outputs.py +418 -0
- 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/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 +16 -0
- pulumi_oci/loadbalancer/listener.py +2 -0
- pulumi_oci/loadbalancer/outputs.py +14 -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.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/RECORD +119 -64
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.35.0a1715356469.dist-info → pulumi_oci-1.36.0.dist-info}/top_level.txt +0 -0
pulumi_oci/database/outputs.py
CHANGED
@@ -113,6 +113,7 @@ __all__ = [
|
|
113
113
|
'ExadataInfrastructureComputeMaintenanceWindowDaysOfWeek',
|
114
114
|
'ExadataInfrastructureComputeMaintenanceWindowMonth',
|
115
115
|
'ExadataInfrastructureContact',
|
116
|
+
'ExadataInfrastructureDefinedFileSystemConfiguration',
|
116
117
|
'ExadataInfrastructureMaintenanceWindow',
|
117
118
|
'ExadataInfrastructureMaintenanceWindowDaysOfWeek',
|
118
119
|
'ExadataInfrastructureMaintenanceWindowMonth',
|
@@ -154,13 +155,16 @@ __all__ = [
|
|
154
155
|
'PluggableDatabasesRemoteCloneRefreshableCloneConfig',
|
155
156
|
'VmClusterAddVirtualNetworkDataCollectionOption',
|
156
157
|
'VmClusterAddVirtualNetworkDbServer',
|
158
|
+
'VmClusterAddVirtualNetworkFileSystemConfigurationDetail',
|
157
159
|
'VmClusterDataCollectionOptions',
|
160
|
+
'VmClusterFileSystemConfigurationDetail',
|
158
161
|
'VmClusterNetworkDrScan',
|
159
162
|
'VmClusterNetworkScan',
|
160
163
|
'VmClusterNetworkVmNetwork',
|
161
164
|
'VmClusterNetworkVmNetworkNode',
|
162
165
|
'VmClusterRemoveVirtualMachineDataCollectionOption',
|
163
166
|
'VmClusterRemoveVirtualMachineDbServer',
|
167
|
+
'VmClusterRemoveVirtualMachineFileSystemConfigurationDetail',
|
164
168
|
'GetApplicationVipsApplicationVipResult',
|
165
169
|
'GetApplicationVipsFilterResult',
|
166
170
|
'GetAutonomousCharacterSetsAutonomousDatabaseCharacterSetResult',
|
@@ -455,6 +459,7 @@ __all__ = [
|
|
455
459
|
'GetDbVersionsDbVersionResult',
|
456
460
|
'GetDbVersionsFilterResult',
|
457
461
|
'GetExadataInfrastructureContactResult',
|
462
|
+
'GetExadataInfrastructureDefinedFileSystemConfigurationResult',
|
458
463
|
'GetExadataInfrastructureMaintenanceWindowResult',
|
459
464
|
'GetExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
460
465
|
'GetExadataInfrastructureMaintenanceWindowMonthResult',
|
@@ -462,6 +467,7 @@ __all__ = [
|
|
462
467
|
'GetExadataInfrastructureUnAllocatedResourceAutonomousVmClusterResult',
|
463
468
|
'GetExadataInfrastructuresExadataInfrastructureResult',
|
464
469
|
'GetExadataInfrastructuresExadataInfrastructureContactResult',
|
470
|
+
'GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult',
|
465
471
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult',
|
466
472
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
|
467
473
|
'GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowMonthResult',
|
@@ -534,6 +540,7 @@ __all__ = [
|
|
534
540
|
'GetSystemVersionsSystemVersionCollectionResult',
|
535
541
|
'GetSystemVersionsSystemVersionCollectionItemResult',
|
536
542
|
'GetVmClusterDataCollectionOptionResult',
|
543
|
+
'GetVmClusterFileSystemConfigurationDetailResult',
|
537
544
|
'GetVmClusterNetworkDrScanResult',
|
538
545
|
'GetVmClusterNetworkScanResult',
|
539
546
|
'GetVmClusterNetworkVmNetworkResult',
|
@@ -560,6 +567,7 @@ __all__ = [
|
|
560
567
|
'GetVmClustersFilterResult',
|
561
568
|
'GetVmClustersVmClusterResult',
|
562
569
|
'GetVmClustersVmClusterDataCollectionOptionResult',
|
570
|
+
'GetVmClustersVmClusterFileSystemConfigurationDetailResult',
|
563
571
|
]
|
564
572
|
|
565
573
|
@pulumi.output_type
|
@@ -8795,6 +8803,84 @@ class ExadataInfrastructureContact(dict):
|
|
8795
8803
|
return pulumi.get(self, "phone_number")
|
8796
8804
|
|
8797
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
|
+
|
8798
8884
|
@pulumi.output_type
|
8799
8885
|
class ExadataInfrastructureMaintenanceWindow(dict):
|
8800
8886
|
@staticmethod
|
@@ -11094,6 +11180,56 @@ class VmClusterAddVirtualNetworkDbServer(dict):
|
|
11094
11180
|
return pulumi.get(self, "db_server_id")
|
11095
11181
|
|
11096
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
|
+
|
11097
11233
|
@pulumi.output_type
|
11098
11234
|
class VmClusterDataCollectionOptions(dict):
|
11099
11235
|
@staticmethod
|
@@ -11158,6 +11294,56 @@ class VmClusterDataCollectionOptions(dict):
|
|
11158
11294
|
return pulumi.get(self, "is_incident_logs_enabled")
|
11159
11295
|
|
11160
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
|
+
|
11161
11347
|
@pulumi.output_type
|
11162
11348
|
class VmClusterNetworkDrScan(dict):
|
11163
11349
|
@staticmethod
|
@@ -11600,6 +11786,56 @@ class VmClusterRemoveVirtualMachineDbServer(dict):
|
|
11600
11786
|
return pulumi.get(self, "db_server_id")
|
11601
11787
|
|
11602
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
|
+
|
11603
11839
|
@pulumi.output_type
|
11604
11840
|
class GetApplicationVipsApplicationVipResult(dict):
|
11605
11841
|
def __init__(__self__, *,
|
@@ -35889,6 +36125,57 @@ class GetExadataInfrastructureContactResult(dict):
|
|
35889
36125
|
return pulumi.get(self, "phone_number")
|
35890
36126
|
|
35891
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
|
+
|
35892
36179
|
@pulumi.output_type
|
35893
36180
|
class GetExadataInfrastructureMaintenanceWindowResult(dict):
|
35894
36181
|
def __init__(__self__, *,
|
@@ -36142,6 +36429,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
36142
36429
|
data_storage_size_in_tbs: float,
|
36143
36430
|
db_node_storage_size_in_gbs: int,
|
36144
36431
|
db_server_version: str,
|
36432
|
+
defined_file_system_configurations: Sequence['outputs.GetExadataInfrastructuresExadataInfrastructureDefinedFileSystemConfigurationResult'],
|
36145
36433
|
defined_tags: Mapping[str, Any],
|
36146
36434
|
display_name: str,
|
36147
36435
|
dns_servers: Sequence[str],
|
@@ -36189,6 +36477,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
36189
36477
|
:param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
|
36190
36478
|
:param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
|
36191
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.
|
36192
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).
|
36193
36482
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
36194
36483
|
:param Sequence[str] dns_servers: The list of DNS server IP addresses. Maximum of 3 allowed.
|
@@ -36238,6 +36527,7 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
36238
36527
|
pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
|
36239
36528
|
pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
|
36240
36529
|
pulumi.set(__self__, "db_server_version", db_server_version)
|
36530
|
+
pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
|
36241
36531
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
36242
36532
|
pulumi.set(__self__, "display_name", display_name)
|
36243
36533
|
pulumi.set(__self__, "dns_servers", dns_servers)
|
@@ -36414,6 +36704,14 @@ class GetExadataInfrastructuresExadataInfrastructureResult(dict):
|
|
36414
36704
|
"""
|
36415
36705
|
return pulumi.get(self, "db_server_version")
|
36416
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
|
+
|
36417
36715
|
@property
|
36418
36716
|
@pulumi.getter(name="definedTags")
|
36419
36717
|
def defined_tags(self) -> Mapping[str, Any]:
|
@@ -36709,6 +37007,57 @@ class GetExadataInfrastructuresExadataInfrastructureContactResult(dict):
|
|
36709
37007
|
return pulumi.get(self, "phone_number")
|
36710
37008
|
|
36711
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
|
+
|
36712
37061
|
@pulumi.output_type
|
36713
37062
|
class GetExadataInfrastructuresExadataInfrastructureMaintenanceWindowResult(dict):
|
36714
37063
|
def __init__(__self__, *,
|
@@ -40730,6 +41079,35 @@ class GetVmClusterDataCollectionOptionResult(dict):
|
|
40730
41079
|
return pulumi.get(self, "is_incident_logs_enabled")
|
40731
41080
|
|
40732
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
|
+
|
40733
41111
|
@pulumi.output_type
|
40734
41112
|
class GetVmClusterNetworkDrScanResult(dict):
|
40735
41113
|
def __init__(__self__, *,
|
@@ -42301,6 +42679,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
42301
42679
|
defined_tags: Mapping[str, Any],
|
42302
42680
|
display_name: str,
|
42303
42681
|
exadata_infrastructure_id: str,
|
42682
|
+
file_system_configuration_details: Sequence['outputs.GetVmClustersVmClusterFileSystemConfigurationDetailResult'],
|
42304
42683
|
freeform_tags: Mapping[str, Any],
|
42305
42684
|
gi_version: str,
|
42306
42685
|
id: str,
|
@@ -42331,6 +42710,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
42331
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).
|
42332
42711
|
:param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
|
42333
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.
|
42334
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"}`
|
42335
42715
|
:param str gi_version: The Oracle Grid Infrastructure software version for the VM cluster.
|
42336
42716
|
:param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster.
|
@@ -42360,6 +42740,7 @@ class GetVmClustersVmClusterResult(dict):
|
|
42360
42740
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
42361
42741
|
pulumi.set(__self__, "display_name", display_name)
|
42362
42742
|
pulumi.set(__self__, "exadata_infrastructure_id", exadata_infrastructure_id)
|
42743
|
+
pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
|
42363
42744
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
42364
42745
|
pulumi.set(__self__, "gi_version", gi_version)
|
42365
42746
|
pulumi.set(__self__, "id", id)
|
@@ -42472,6 +42853,14 @@ class GetVmClustersVmClusterResult(dict):
|
|
42472
42853
|
"""
|
42473
42854
|
return pulumi.get(self, "exadata_infrastructure_id")
|
42474
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
|
+
|
42475
42864
|
@property
|
42476
42865
|
@pulumi.getter(name="freeformTags")
|
42477
42866
|
def freeform_tags(self) -> Mapping[str, Any]:
|
@@ -42651,3 +43040,32 @@ class GetVmClustersVmClusterDataCollectionOptionResult(dict):
|
|
42651
43040
|
return pulumi.get(self, "is_incident_logs_enabled")
|
42652
43041
|
|
42653
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
|
+
|