pulumi-oci 1.34.0a1714766740__py3-none-any.whl → 1.35.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.
@@ -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',
@@ -330,22 +332,26 @@ __all__ = [
330
332
  'GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonthResult',
331
333
  'GetCloudAutonomousVmClustersFilterResult',
332
334
  'GetCloudExadataInfrastructureCustomerContactResult',
335
+ 'GetCloudExadataInfrastructureDefinedFileSystemConfigurationResult',
333
336
  'GetCloudExadataInfrastructureMaintenanceWindowResult',
334
337
  'GetCloudExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
335
338
  'GetCloudExadataInfrastructureMaintenanceWindowMonthResult',
336
339
  'GetCloudExadataInfrastructureUnAllocatedResourceCloudAutonomousVmClusterResult',
337
340
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureResult',
338
341
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactResult',
342
+ 'GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult',
339
343
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowResult',
340
344
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
341
345
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonthResult',
342
346
  'GetCloudExadataInfrastructuresFilterResult',
343
347
  'GetCloudVmClusterDataCollectionOptionResult',
348
+ 'GetCloudVmClusterFileSystemConfigurationDetailResult',
344
349
  'GetCloudVmClusterIormConfigCachResult',
345
350
  'GetCloudVmClusterIormConfigCachDbPlanResult',
346
351
  'GetCloudVmClusterIormConfigDbPlanResult',
347
352
  'GetCloudVmClustersCloudVmClusterResult',
348
353
  'GetCloudVmClustersCloudVmClusterDataCollectionOptionResult',
354
+ 'GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult',
349
355
  'GetCloudVmClustersCloudVmClusterIormConfigCachResult',
350
356
  'GetCloudVmClustersCloudVmClusterIormConfigCachDbPlanResult',
351
357
  'GetCloudVmClustersFilterResult',
@@ -4105,6 +4111,84 @@ class CloudExadataInfrastructureCustomerContact(dict):
4105
4111
  return pulumi.get(self, "email")
4106
4112
 
4107
4113
 
4114
+ @pulumi.output_type
4115
+ class CloudExadataInfrastructureDefinedFileSystemConfiguration(dict):
4116
+ @staticmethod
4117
+ def __key_warning(key: str):
4118
+ suggest = None
4119
+ if key == "isBackupPartition":
4120
+ suggest = "is_backup_partition"
4121
+ elif key == "isResizable":
4122
+ suggest = "is_resizable"
4123
+ elif key == "minSizeGb":
4124
+ suggest = "min_size_gb"
4125
+ elif key == "mountPoint":
4126
+ suggest = "mount_point"
4127
+
4128
+ if suggest:
4129
+ pulumi.log.warn(f"Key '{key}' not found in CloudExadataInfrastructureDefinedFileSystemConfiguration. Access the value via the '{suggest}' property getter instead.")
4130
+
4131
+ def __getitem__(self, key: str) -> Any:
4132
+ CloudExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
4133
+ return super().__getitem__(key)
4134
+
4135
+ def get(self, key: str, default = None) -> Any:
4136
+ CloudExadataInfrastructureDefinedFileSystemConfiguration.__key_warning(key)
4137
+ return super().get(key, default)
4138
+
4139
+ def __init__(__self__, *,
4140
+ is_backup_partition: Optional[bool] = None,
4141
+ is_resizable: Optional[bool] = None,
4142
+ min_size_gb: Optional[int] = None,
4143
+ mount_point: Optional[str] = None):
4144
+ """
4145
+ :param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
4146
+ :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.
4147
+ :param int min_size_gb: The minimum size of file system.
4148
+ :param str mount_point: The mount point of file system.
4149
+ """
4150
+ if is_backup_partition is not None:
4151
+ pulumi.set(__self__, "is_backup_partition", is_backup_partition)
4152
+ if is_resizable is not None:
4153
+ pulumi.set(__self__, "is_resizable", is_resizable)
4154
+ if min_size_gb is not None:
4155
+ pulumi.set(__self__, "min_size_gb", min_size_gb)
4156
+ if mount_point is not None:
4157
+ pulumi.set(__self__, "mount_point", mount_point)
4158
+
4159
+ @property
4160
+ @pulumi.getter(name="isBackupPartition")
4161
+ def is_backup_partition(self) -> Optional[bool]:
4162
+ """
4163
+ If true, the file system is used to create a backup prior to Exadata VM OS update.
4164
+ """
4165
+ return pulumi.get(self, "is_backup_partition")
4166
+
4167
+ @property
4168
+ @pulumi.getter(name="isResizable")
4169
+ def is_resizable(self) -> Optional[bool]:
4170
+ """
4171
+ If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
4172
+ """
4173
+ return pulumi.get(self, "is_resizable")
4174
+
4175
+ @property
4176
+ @pulumi.getter(name="minSizeGb")
4177
+ def min_size_gb(self) -> Optional[int]:
4178
+ """
4179
+ The minimum size of file system.
4180
+ """
4181
+ return pulumi.get(self, "min_size_gb")
4182
+
4183
+ @property
4184
+ @pulumi.getter(name="mountPoint")
4185
+ def mount_point(self) -> Optional[str]:
4186
+ """
4187
+ The mount point of file system.
4188
+ """
4189
+ return pulumi.get(self, "mount_point")
4190
+
4191
+
4108
4192
  @pulumi.output_type
4109
4193
  class CloudExadataInfrastructureMaintenanceWindow(dict):
4110
4194
  @staticmethod
@@ -4379,6 +4463,56 @@ class CloudVmClusterDataCollectionOptions(dict):
4379
4463
  return pulumi.get(self, "is_incident_logs_enabled")
4380
4464
 
4381
4465
 
4466
+ @pulumi.output_type
4467
+ class CloudVmClusterFileSystemConfigurationDetail(dict):
4468
+ @staticmethod
4469
+ def __key_warning(key: str):
4470
+ suggest = None
4471
+ if key == "fileSystemSizeGb":
4472
+ suggest = "file_system_size_gb"
4473
+ elif key == "mountPoint":
4474
+ suggest = "mount_point"
4475
+
4476
+ if suggest:
4477
+ pulumi.log.warn(f"Key '{key}' not found in CloudVmClusterFileSystemConfigurationDetail. Access the value via the '{suggest}' property getter instead.")
4478
+
4479
+ def __getitem__(self, key: str) -> Any:
4480
+ CloudVmClusterFileSystemConfigurationDetail.__key_warning(key)
4481
+ return super().__getitem__(key)
4482
+
4483
+ def get(self, key: str, default = None) -> Any:
4484
+ CloudVmClusterFileSystemConfigurationDetail.__key_warning(key)
4485
+ return super().get(key, default)
4486
+
4487
+ def __init__(__self__, *,
4488
+ file_system_size_gb: Optional[int] = None,
4489
+ mount_point: Optional[str] = None):
4490
+ """
4491
+ :param int file_system_size_gb: (Updatable) The file system size to be allocated in GBs.
4492
+ :param str mount_point: (Updatable) The mount point of file system.
4493
+ """
4494
+ if file_system_size_gb is not None:
4495
+ pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
4496
+ if mount_point is not None:
4497
+ pulumi.set(__self__, "mount_point", mount_point)
4498
+
4499
+ @property
4500
+ @pulumi.getter(name="fileSystemSizeGb")
4501
+ def file_system_size_gb(self) -> Optional[int]:
4502
+ """
4503
+ (Updatable) The file system size to be allocated in GBs.
4504
+ """
4505
+ return pulumi.get(self, "file_system_size_gb")
4506
+
4507
+ @property
4508
+ @pulumi.getter(name="mountPoint")
4509
+ def mount_point(self) -> Optional[str]:
4510
+ """
4511
+ (Updatable) The mount point of file system.
4512
+ """
4513
+ return pulumi.get(self, "mount_point")
4514
+
4515
+
4382
4516
  @pulumi.output_type
4383
4517
  class CloudVmClusterIormConfigCach(dict):
4384
4518
  @staticmethod
@@ -12962,10 +13096,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
12962
13096
  :param Sequence[str] list_one_off_patches: List of One-Off patches that has been successfully applied to Autonomous Container Database
12963
13097
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowArgs'] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
12964
13098
  :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
13099
  :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
13100
  :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
13101
  :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
13102
  :param str patch_model: Database patch model preference.
@@ -13302,7 +13433,6 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
13302
13433
  def memory_per_oracle_compute_unit_in_gbs(self) -> int:
13303
13434
  """
13304
13435
  The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
13305
- <<<<<<< HEAD
13306
13436
  """
13307
13437
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
13308
13438
 
@@ -13311,8 +13441,6 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
13311
13441
  def net_services_architecture(self) -> str:
13312
13442
  """
13313
13443
  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
13444
  """
13317
13445
  return pulumi.get(self, "net_services_architecture")
13318
13446
 
@@ -25494,6 +25622,57 @@ class GetCloudExadataInfrastructureCustomerContactResult(dict):
25494
25622
  return pulumi.get(self, "email")
25495
25623
 
25496
25624
 
25625
+ @pulumi.output_type
25626
+ class GetCloudExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
25627
+ def __init__(__self__, *,
25628
+ is_backup_partition: bool,
25629
+ is_resizable: bool,
25630
+ min_size_gb: int,
25631
+ mount_point: str):
25632
+ """
25633
+ :param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
25634
+ :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.
25635
+ :param int min_size_gb: The minimum size of file system.
25636
+ :param str mount_point: The mount point of file system.
25637
+ """
25638
+ pulumi.set(__self__, "is_backup_partition", is_backup_partition)
25639
+ pulumi.set(__self__, "is_resizable", is_resizable)
25640
+ pulumi.set(__self__, "min_size_gb", min_size_gb)
25641
+ pulumi.set(__self__, "mount_point", mount_point)
25642
+
25643
+ @property
25644
+ @pulumi.getter(name="isBackupPartition")
25645
+ def is_backup_partition(self) -> bool:
25646
+ """
25647
+ If true, the file system is used to create a backup prior to Exadata VM OS update.
25648
+ """
25649
+ return pulumi.get(self, "is_backup_partition")
25650
+
25651
+ @property
25652
+ @pulumi.getter(name="isResizable")
25653
+ def is_resizable(self) -> bool:
25654
+ """
25655
+ If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
25656
+ """
25657
+ return pulumi.get(self, "is_resizable")
25658
+
25659
+ @property
25660
+ @pulumi.getter(name="minSizeGb")
25661
+ def min_size_gb(self) -> int:
25662
+ """
25663
+ The minimum size of file system.
25664
+ """
25665
+ return pulumi.get(self, "min_size_gb")
25666
+
25667
+ @property
25668
+ @pulumi.getter(name="mountPoint")
25669
+ def mount_point(self) -> str:
25670
+ """
25671
+ The mount point of file system.
25672
+ """
25673
+ return pulumi.get(self, "mount_point")
25674
+
25675
+
25497
25676
  @pulumi.output_type
25498
25677
  class GetCloudExadataInfrastructureMaintenanceWindowResult(dict):
25499
25678
  def __init__(__self__, *,
@@ -25700,6 +25879,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25700
25879
  data_storage_size_in_tbs: float,
25701
25880
  db_node_storage_size_in_gbs: int,
25702
25881
  db_server_version: str,
25882
+ defined_file_system_configurations: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult'],
25703
25883
  defined_tags: Mapping[str, Any],
25704
25884
  display_name: str,
25705
25885
  freeform_tags: Mapping[str, Any],
@@ -25735,6 +25915,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25735
25915
  :param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
25736
25916
  :param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
25737
25917
  :param str db_server_version: The software version of the database servers (dom0) in the cloud Exadata infrastructure. Example: 20.1.15
25918
+ :param Sequence['GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationArgs'] defined_file_system_configurations: Details of the file system configuration of the Exadata infrastructure.
25738
25919
  :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
25920
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
25740
25921
  :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 +25951,7 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25770
25951
  pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
25771
25952
  pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
25772
25953
  pulumi.set(__self__, "db_server_version", db_server_version)
25954
+ pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
25773
25955
  pulumi.set(__self__, "defined_tags", defined_tags)
25774
25956
  pulumi.set(__self__, "display_name", display_name)
25775
25957
  pulumi.set(__self__, "freeform_tags", freeform_tags)
@@ -25889,6 +26071,14 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25889
26071
  """
25890
26072
  return pulumi.get(self, "db_server_version")
25891
26073
 
26074
+ @property
26075
+ @pulumi.getter(name="definedFileSystemConfigurations")
26076
+ def defined_file_system_configurations(self) -> Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult']:
26077
+ """
26078
+ Details of the file system configuration of the Exadata infrastructure.
26079
+ """
26080
+ return pulumi.get(self, "defined_file_system_configurations")
26081
+
25892
26082
  @property
25893
26083
  @pulumi.getter(name="definedTags")
25894
26084
  def defined_tags(self) -> Mapping[str, Any]:
@@ -26084,6 +26274,57 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactRes
26084
26274
  return pulumi.get(self, "email")
26085
26275
 
26086
26276
 
26277
+ @pulumi.output_type
26278
+ class GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult(dict):
26279
+ def __init__(__self__, *,
26280
+ is_backup_partition: bool,
26281
+ is_resizable: bool,
26282
+ min_size_gb: int,
26283
+ mount_point: str):
26284
+ """
26285
+ :param bool is_backup_partition: If true, the file system is used to create a backup prior to Exadata VM OS update.
26286
+ :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.
26287
+ :param int min_size_gb: The minimum size of file system.
26288
+ :param str mount_point: The mount point of file system.
26289
+ """
26290
+ pulumi.set(__self__, "is_backup_partition", is_backup_partition)
26291
+ pulumi.set(__self__, "is_resizable", is_resizable)
26292
+ pulumi.set(__self__, "min_size_gb", min_size_gb)
26293
+ pulumi.set(__self__, "mount_point", mount_point)
26294
+
26295
+ @property
26296
+ @pulumi.getter(name="isBackupPartition")
26297
+ def is_backup_partition(self) -> bool:
26298
+ """
26299
+ If true, the file system is used to create a backup prior to Exadata VM OS update.
26300
+ """
26301
+ return pulumi.get(self, "is_backup_partition")
26302
+
26303
+ @property
26304
+ @pulumi.getter(name="isResizable")
26305
+ def is_resizable(self) -> bool:
26306
+ """
26307
+ If true, the file system resize is allowed for the Exadata Infrastructure cluster. If false, the file system resize is not allowed.
26308
+ """
26309
+ return pulumi.get(self, "is_resizable")
26310
+
26311
+ @property
26312
+ @pulumi.getter(name="minSizeGb")
26313
+ def min_size_gb(self) -> int:
26314
+ """
26315
+ The minimum size of file system.
26316
+ """
26317
+ return pulumi.get(self, "min_size_gb")
26318
+
26319
+ @property
26320
+ @pulumi.getter(name="mountPoint")
26321
+ def mount_point(self) -> str:
26322
+ """
26323
+ The mount point of file system.
26324
+ """
26325
+ return pulumi.get(self, "mount_point")
26326
+
26327
+
26087
26328
  @pulumi.output_type
26088
26329
  class GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowResult(dict):
26089
26330
  def __init__(__self__, *,
@@ -26319,6 +26560,35 @@ class GetCloudVmClusterDataCollectionOptionResult(dict):
26319
26560
  return pulumi.get(self, "is_incident_logs_enabled")
26320
26561
 
26321
26562
 
26563
+ @pulumi.output_type
26564
+ class GetCloudVmClusterFileSystemConfigurationDetailResult(dict):
26565
+ def __init__(__self__, *,
26566
+ file_system_size_gb: int,
26567
+ mount_point: str):
26568
+ """
26569
+ :param int file_system_size_gb: The file system size to be allocated in GBs.
26570
+ :param str mount_point: The mount point of file system.
26571
+ """
26572
+ pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
26573
+ pulumi.set(__self__, "mount_point", mount_point)
26574
+
26575
+ @property
26576
+ @pulumi.getter(name="fileSystemSizeGb")
26577
+ def file_system_size_gb(self) -> int:
26578
+ """
26579
+ The file system size to be allocated in GBs.
26580
+ """
26581
+ return pulumi.get(self, "file_system_size_gb")
26582
+
26583
+ @property
26584
+ @pulumi.getter(name="mountPoint")
26585
+ def mount_point(self) -> str:
26586
+ """
26587
+ The mount point of file system.
26588
+ """
26589
+ return pulumi.get(self, "mount_point")
26590
+
26591
+
26322
26592
  @pulumi.output_type
26323
26593
  class GetCloudVmClusterIormConfigCachResult(dict):
26324
26594
  def __init__(__self__, *,
@@ -26470,6 +26740,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26470
26740
  disk_redundancy: str,
26471
26741
  display_name: str,
26472
26742
  domain: str,
26743
+ file_system_configuration_details: Sequence['outputs.GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult'],
26473
26744
  freeform_tags: Mapping[str, Any],
26474
26745
  gi_version: str,
26475
26746
  hostname: str,
@@ -26519,6 +26790,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26519
26790
  :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
26791
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
26521
26792
  :param str domain: The domain name for the cloud VM cluster.
26793
+ :param Sequence['GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailArgs'] file_system_configuration_details: Details of the file system configuration of the VM cluster.
26522
26794
  :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
26795
  :param str gi_version: A valid Oracle Grid Infrastructure (GI) software version.
26524
26796
  :param str hostname: The hostname for the cloud VM cluster.
@@ -26568,6 +26840,7 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26568
26840
  pulumi.set(__self__, "disk_redundancy", disk_redundancy)
26569
26841
  pulumi.set(__self__, "display_name", display_name)
26570
26842
  pulumi.set(__self__, "domain", domain)
26843
+ pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
26571
26844
  pulumi.set(__self__, "freeform_tags", freeform_tags)
26572
26845
  pulumi.set(__self__, "gi_version", gi_version)
26573
26846
  pulumi.set(__self__, "hostname", hostname)
@@ -26734,6 +27007,14 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26734
27007
  """
26735
27008
  return pulumi.get(self, "domain")
26736
27009
 
27010
+ @property
27011
+ @pulumi.getter(name="fileSystemConfigurationDetails")
27012
+ def file_system_configuration_details(self) -> Sequence['outputs.GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult']:
27013
+ """
27014
+ Details of the file system configuration of the VM cluster.
27015
+ """
27016
+ return pulumi.get(self, "file_system_configuration_details")
27017
+
26737
27018
  @property
26738
27019
  @pulumi.getter(name="freeformTags")
26739
27020
  def freeform_tags(self) -> Mapping[str, Any]:
@@ -27026,6 +27307,35 @@ class GetCloudVmClustersCloudVmClusterDataCollectionOptionResult(dict):
27026
27307
  return pulumi.get(self, "is_incident_logs_enabled")
27027
27308
 
27028
27309
 
27310
+ @pulumi.output_type
27311
+ class GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult(dict):
27312
+ def __init__(__self__, *,
27313
+ file_system_size_gb: int,
27314
+ mount_point: str):
27315
+ """
27316
+ :param int file_system_size_gb: The file system size to be allocated in GBs.
27317
+ :param str mount_point: The mount point of file system.
27318
+ """
27319
+ pulumi.set(__self__, "file_system_size_gb", file_system_size_gb)
27320
+ pulumi.set(__self__, "mount_point", mount_point)
27321
+
27322
+ @property
27323
+ @pulumi.getter(name="fileSystemSizeGb")
27324
+ def file_system_size_gb(self) -> int:
27325
+ """
27326
+ The file system size to be allocated in GBs.
27327
+ """
27328
+ return pulumi.get(self, "file_system_size_gb")
27329
+
27330
+ @property
27331
+ @pulumi.getter(name="mountPoint")
27332
+ def mount_point(self) -> str:
27333
+ """
27334
+ The mount point of file system.
27335
+ """
27336
+ return pulumi.get(self, "mount_point")
27337
+
27338
+
27029
27339
  @pulumi.output_type
27030
27340
  class GetCloudVmClustersCloudVmClusterIormConfigCachResult(dict):
27031
27341
  def __init__(__self__, *,
@@ -523,11 +523,13 @@ class DrPlanPlanGroupArgs:
523
523
  def __init__(__self__, *,
524
524
  display_name: Optional[pulumi.Input[str]] = None,
525
525
  id: Optional[pulumi.Input[str]] = None,
526
+ is_pause_enabled: Optional[pulumi.Input[bool]] = None,
526
527
  steps: Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]]] = None,
527
528
  type: Optional[pulumi.Input[str]] = None):
528
529
  """
529
530
  :param pulumi.Input[str] display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
530
531
  :param pulumi.Input[str] id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
532
+ :param pulumi.Input[bool] is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
531
533
  :param pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]] steps: The list of steps in the group.
532
534
  :param pulumi.Input[str] type: The type of DR plan to be created.
533
535
 
@@ -539,6 +541,8 @@ class DrPlanPlanGroupArgs:
539
541
  pulumi.set(__self__, "display_name", display_name)
540
542
  if id is not None:
541
543
  pulumi.set(__self__, "id", id)
544
+ if is_pause_enabled is not None:
545
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
542
546
  if steps is not None:
543
547
  pulumi.set(__self__, "steps", steps)
544
548
  if type is not None:
@@ -568,6 +572,18 @@ class DrPlanPlanGroupArgs:
568
572
  def id(self, value: Optional[pulumi.Input[str]]):
569
573
  pulumi.set(self, "id", value)
570
574
 
575
+ @property
576
+ @pulumi.getter(name="isPauseEnabled")
577
+ def is_pause_enabled(self) -> Optional[pulumi.Input[bool]]:
578
+ """
579
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
580
+ """
581
+ return pulumi.get(self, "is_pause_enabled")
582
+
583
+ @is_pause_enabled.setter
584
+ def is_pause_enabled(self, value: Optional[pulumi.Input[bool]]):
585
+ pulumi.set(self, "is_pause_enabled", value)
586
+
571
587
  @property
572
588
  @pulumi.getter
573
589
  def steps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]]]:
@@ -543,6 +543,8 @@ class DrPlanPlanGroup(dict):
543
543
  suggest = None
544
544
  if key == "displayName":
545
545
  suggest = "display_name"
546
+ elif key == "isPauseEnabled":
547
+ suggest = "is_pause_enabled"
546
548
 
547
549
  if suggest:
548
550
  pulumi.log.warn(f"Key '{key}' not found in DrPlanPlanGroup. Access the value via the '{suggest}' property getter instead.")
@@ -558,11 +560,13 @@ class DrPlanPlanGroup(dict):
558
560
  def __init__(__self__, *,
559
561
  display_name: Optional[str] = None,
560
562
  id: Optional[str] = None,
563
+ is_pause_enabled: Optional[bool] = None,
561
564
  steps: Optional[Sequence['outputs.DrPlanPlanGroupStep']] = None,
562
565
  type: Optional[str] = None):
563
566
  """
564
567
  :param str display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
565
568
  :param str id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
569
+ :param bool is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
566
570
  :param Sequence['DrPlanPlanGroupStepArgs'] steps: The list of steps in the group.
567
571
  :param str type: The type of DR plan to be created.
568
572
 
@@ -574,6 +578,8 @@ class DrPlanPlanGroup(dict):
574
578
  pulumi.set(__self__, "display_name", display_name)
575
579
  if id is not None:
576
580
  pulumi.set(__self__, "id", id)
581
+ if is_pause_enabled is not None:
582
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
577
583
  if steps is not None:
578
584
  pulumi.set(__self__, "steps", steps)
579
585
  if type is not None:
@@ -595,6 +601,14 @@ class DrPlanPlanGroup(dict):
595
601
  """
596
602
  return pulumi.get(self, "id")
597
603
 
604
+ @property
605
+ @pulumi.getter(name="isPauseEnabled")
606
+ def is_pause_enabled(self) -> Optional[bool]:
607
+ """
608
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
609
+ """
610
+ return pulumi.get(self, "is_pause_enabled")
611
+
598
612
  @property
599
613
  @pulumi.getter
600
614
  def steps(self) -> Optional[Sequence['outputs.DrPlanPlanGroupStep']]:
@@ -2805,16 +2819,19 @@ class GetDrPlanPlanGroupResult(dict):
2805
2819
  def __init__(__self__, *,
2806
2820
  display_name: str,
2807
2821
  id: str,
2822
+ is_pause_enabled: bool,
2808
2823
  steps: Sequence['outputs.GetDrPlanPlanGroupStepResult'],
2809
2824
  type: str):
2810
2825
  """
2811
2826
  :param str display_name: The display name of the group. Example: `DATABASE_SWITCHOVER`
2812
2827
  :param str id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
2828
+ :param bool is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
2813
2829
  :param Sequence['GetDrPlanPlanGroupStepArgs'] steps: The list of steps in the group.
2814
2830
  :param str type: The type of the DR plan.
2815
2831
  """
2816
2832
  pulumi.set(__self__, "display_name", display_name)
2817
2833
  pulumi.set(__self__, "id", id)
2834
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
2818
2835
  pulumi.set(__self__, "steps", steps)
2819
2836
  pulumi.set(__self__, "type", type)
2820
2837
 
@@ -2834,6 +2851,14 @@ class GetDrPlanPlanGroupResult(dict):
2834
2851
  """
2835
2852
  return pulumi.get(self, "id")
2836
2853
 
2854
+ @property
2855
+ @pulumi.getter(name="isPauseEnabled")
2856
+ def is_pause_enabled(self) -> bool:
2857
+ """
2858
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
2859
+ """
2860
+ return pulumi.get(self, "is_pause_enabled")
2861
+
2837
2862
  @property
2838
2863
  @pulumi.getter
2839
2864
  def steps(self) -> Sequence['outputs.GetDrPlanPlanGroupStepResult']:
@@ -3292,16 +3317,19 @@ class GetDrPlansDrPlanCollectionItemPlanGroupResult(dict):
3292
3317
  def __init__(__self__, *,
3293
3318
  display_name: str,
3294
3319
  id: str,
3320
+ is_pause_enabled: bool,
3295
3321
  steps: Sequence['outputs.GetDrPlansDrPlanCollectionItemPlanGroupStepResult'],
3296
3322
  type: str):
3297
3323
  """
3298
3324
  :param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
3299
3325
  :param str id: The unique id of the step. Must not be modified by the user. Example: `sgid1.step..uniqueID`
3326
+ :param bool is_pause_enabled: A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
3300
3327
  :param Sequence['GetDrPlansDrPlanCollectionItemPlanGroupStepArgs'] steps: The list of steps in the group.
3301
3328
  :param str type: The type of the DR plan.
3302
3329
  """
3303
3330
  pulumi.set(__self__, "display_name", display_name)
3304
3331
  pulumi.set(__self__, "id", id)
3332
+ pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
3305
3333
  pulumi.set(__self__, "steps", steps)
3306
3334
  pulumi.set(__self__, "type", type)
3307
3335
 
@@ -3321,6 +3349,14 @@ class GetDrPlansDrPlanCollectionItemPlanGroupResult(dict):
3321
3349
  """
3322
3350
  return pulumi.get(self, "id")
3323
3351
 
3352
+ @property
3353
+ @pulumi.getter(name="isPauseEnabled")
3354
+ def is_pause_enabled(self) -> bool:
3355
+ """
3356
+ A flag indicating whether this group should be enabled for execution. This flag is only applicable to the `USER_DEFINED_PAUSE` group. The flag should be null for the remaining group types. Example: `true`
3357
+ """
3358
+ return pulumi.get(self, "is_pause_enabled")
3359
+
3324
3360
  @property
3325
3361
  @pulumi.getter
3326
3362
  def steps(self) -> Sequence['outputs.GetDrPlansDrPlanCollectionItemPlanGroupStepResult']: