pulumi-oci 1.35.0__py3-none-any.whl → 1.35.0a1715230204__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,12 +62,10 @@ __all__ = [
62
62
  'CloudAutonomousVmClusterMaintenanceWindowMonth',
63
63
  'CloudDatabaseManagementCredentialdetails',
64
64
  'CloudExadataInfrastructureCustomerContact',
65
- 'CloudExadataInfrastructureDefinedFileSystemConfiguration',
66
65
  'CloudExadataInfrastructureMaintenanceWindow',
67
66
  'CloudExadataInfrastructureMaintenanceWindowDaysOfWeek',
68
67
  'CloudExadataInfrastructureMaintenanceWindowMonth',
69
68
  'CloudVmClusterDataCollectionOptions',
70
- 'CloudVmClusterFileSystemConfigurationDetail',
71
69
  'CloudVmClusterIormConfigCach',
72
70
  'CloudVmClusterIormConfigCachDbPlan',
73
71
  'CloudVmClusterIormConfigDbPlan',
@@ -332,26 +330,22 @@ __all__ = [
332
330
  'GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonthResult',
333
331
  'GetCloudAutonomousVmClustersFilterResult',
334
332
  'GetCloudExadataInfrastructureCustomerContactResult',
335
- 'GetCloudExadataInfrastructureDefinedFileSystemConfigurationResult',
336
333
  'GetCloudExadataInfrastructureMaintenanceWindowResult',
337
334
  'GetCloudExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
338
335
  'GetCloudExadataInfrastructureMaintenanceWindowMonthResult',
339
336
  'GetCloudExadataInfrastructureUnAllocatedResourceCloudAutonomousVmClusterResult',
340
337
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureResult',
341
338
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactResult',
342
- 'GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult',
343
339
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowResult',
344
340
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowDaysOfWeekResult',
345
341
  'GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowMonthResult',
346
342
  'GetCloudExadataInfrastructuresFilterResult',
347
343
  'GetCloudVmClusterDataCollectionOptionResult',
348
- 'GetCloudVmClusterFileSystemConfigurationDetailResult',
349
344
  'GetCloudVmClusterIormConfigCachResult',
350
345
  'GetCloudVmClusterIormConfigCachDbPlanResult',
351
346
  'GetCloudVmClusterIormConfigDbPlanResult',
352
347
  'GetCloudVmClustersCloudVmClusterResult',
353
348
  'GetCloudVmClustersCloudVmClusterDataCollectionOptionResult',
354
- 'GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult',
355
349
  'GetCloudVmClustersCloudVmClusterIormConfigCachResult',
356
350
  'GetCloudVmClustersCloudVmClusterIormConfigCachDbPlanResult',
357
351
  'GetCloudVmClustersFilterResult',
@@ -4111,84 +4105,6 @@ class CloudExadataInfrastructureCustomerContact(dict):
4111
4105
  return pulumi.get(self, "email")
4112
4106
 
4113
4107
 
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
-
4192
4108
  @pulumi.output_type
4193
4109
  class CloudExadataInfrastructureMaintenanceWindow(dict):
4194
4110
  @staticmethod
@@ -4463,56 +4379,6 @@ class CloudVmClusterDataCollectionOptions(dict):
4463
4379
  return pulumi.get(self, "is_incident_logs_enabled")
4464
4380
 
4465
4381
 
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
-
4516
4382
  @pulumi.output_type
4517
4383
  class CloudVmClusterIormConfigCach(dict):
4518
4384
  @staticmethod
@@ -13096,7 +12962,10 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
13096
12962
  :param Sequence[str] list_one_off_patches: List of One-Off patches that has been successfully applied to Autonomous Container Database
13097
12963
  :param Sequence['GetAutonomousContainerDatabasesAutonomousContainerDatabaseMaintenanceWindowArgs'] maintenance_windows: The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
13098
12964
  :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
13099
12966
  :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)
13100
12969
  :param str next_maintenance_run_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the next maintenance run.
13101
12970
  :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.
13102
12971
  :param str patch_model: Database patch model preference.
@@ -13433,6 +13302,7 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
13433
13302
  def memory_per_oracle_compute_unit_in_gbs(self) -> int:
13434
13303
  """
13435
13304
  The amount of memory (in GBs) enabled per ECPU or OCPU in the Autonomous VM Cluster.
13305
+ <<<<<<< HEAD
13436
13306
  """
13437
13307
  return pulumi.get(self, "memory_per_oracle_compute_unit_in_gbs")
13438
13308
 
@@ -13441,6 +13311,8 @@ class GetAutonomousContainerDatabasesAutonomousContainerDatabaseResult(dict):
13441
13311
  def net_services_architecture(self) -> str:
13442
13312
  """
13443
13313
  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)
13444
13316
  """
13445
13317
  return pulumi.get(self, "net_services_architecture")
13446
13318
 
@@ -25622,57 +25494,6 @@ class GetCloudExadataInfrastructureCustomerContactResult(dict):
25622
25494
  return pulumi.get(self, "email")
25623
25495
 
25624
25496
 
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
-
25676
25497
  @pulumi.output_type
25677
25498
  class GetCloudExadataInfrastructureMaintenanceWindowResult(dict):
25678
25499
  def __init__(__self__, *,
@@ -25879,7 +25700,6 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25879
25700
  data_storage_size_in_tbs: float,
25880
25701
  db_node_storage_size_in_gbs: int,
25881
25702
  db_server_version: str,
25882
- defined_file_system_configurations: Sequence['outputs.GetCloudExadataInfrastructuresCloudExadataInfrastructureDefinedFileSystemConfigurationResult'],
25883
25703
  defined_tags: Mapping[str, Any],
25884
25704
  display_name: str,
25885
25705
  freeform_tags: Mapping[str, Any],
@@ -25915,7 +25735,6 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25915
25735
  :param float data_storage_size_in_tbs: Size, in terabytes, of the DATA disk group.
25916
25736
  :param int db_node_storage_size_in_gbs: The local node storage allocated in GBs.
25917
25737
  :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.
25919
25738
  :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).
25920
25739
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
25921
25740
  :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"}`
@@ -25951,7 +25770,6 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
25951
25770
  pulumi.set(__self__, "data_storage_size_in_tbs", data_storage_size_in_tbs)
25952
25771
  pulumi.set(__self__, "db_node_storage_size_in_gbs", db_node_storage_size_in_gbs)
25953
25772
  pulumi.set(__self__, "db_server_version", db_server_version)
25954
- pulumi.set(__self__, "defined_file_system_configurations", defined_file_system_configurations)
25955
25773
  pulumi.set(__self__, "defined_tags", defined_tags)
25956
25774
  pulumi.set(__self__, "display_name", display_name)
25957
25775
  pulumi.set(__self__, "freeform_tags", freeform_tags)
@@ -26071,14 +25889,6 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureResult(dict):
26071
25889
  """
26072
25890
  return pulumi.get(self, "db_server_version")
26073
25891
 
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
-
26082
25892
  @property
26083
25893
  @pulumi.getter(name="definedTags")
26084
25894
  def defined_tags(self) -> Mapping[str, Any]:
@@ -26274,57 +26084,6 @@ class GetCloudExadataInfrastructuresCloudExadataInfrastructureCustomerContactRes
26274
26084
  return pulumi.get(self, "email")
26275
26085
 
26276
26086
 
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
-
26328
26087
  @pulumi.output_type
26329
26088
  class GetCloudExadataInfrastructuresCloudExadataInfrastructureMaintenanceWindowResult(dict):
26330
26089
  def __init__(__self__, *,
@@ -26560,35 +26319,6 @@ class GetCloudVmClusterDataCollectionOptionResult(dict):
26560
26319
  return pulumi.get(self, "is_incident_logs_enabled")
26561
26320
 
26562
26321
 
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
-
26592
26322
  @pulumi.output_type
26593
26323
  class GetCloudVmClusterIormConfigCachResult(dict):
26594
26324
  def __init__(__self__, *,
@@ -26740,7 +26470,6 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26740
26470
  disk_redundancy: str,
26741
26471
  display_name: str,
26742
26472
  domain: str,
26743
- file_system_configuration_details: Sequence['outputs.GetCloudVmClustersCloudVmClusterFileSystemConfigurationDetailResult'],
26744
26473
  freeform_tags: Mapping[str, Any],
26745
26474
  gi_version: str,
26746
26475
  hostname: str,
@@ -26790,7 +26519,6 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26790
26519
  :param str disk_redundancy: The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
26791
26520
  :param str display_name: A filter to return only resources that match the entire display name given. The match is not case sensitive.
26792
26521
  :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.
26794
26522
  :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"}`
26795
26523
  :param str gi_version: A valid Oracle Grid Infrastructure (GI) software version.
26796
26524
  :param str hostname: The hostname for the cloud VM cluster.
@@ -26840,7 +26568,6 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
26840
26568
  pulumi.set(__self__, "disk_redundancy", disk_redundancy)
26841
26569
  pulumi.set(__self__, "display_name", display_name)
26842
26570
  pulumi.set(__self__, "domain", domain)
26843
- pulumi.set(__self__, "file_system_configuration_details", file_system_configuration_details)
26844
26571
  pulumi.set(__self__, "freeform_tags", freeform_tags)
26845
26572
  pulumi.set(__self__, "gi_version", gi_version)
26846
26573
  pulumi.set(__self__, "hostname", hostname)
@@ -27007,14 +26734,6 @@ class GetCloudVmClustersCloudVmClusterResult(dict):
27007
26734
  """
27008
26735
  return pulumi.get(self, "domain")
27009
26736
 
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
-
27018
26737
  @property
27019
26738
  @pulumi.getter(name="freeformTags")
27020
26739
  def freeform_tags(self) -> Mapping[str, Any]:
@@ -27307,35 +27026,6 @@ class GetCloudVmClustersCloudVmClusterDataCollectionOptionResult(dict):
27307
27026
  return pulumi.get(self, "is_incident_logs_enabled")
27308
27027
 
27309
27028
 
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
-
27339
27029
  @pulumi.output_type
27340
27030
  class GetCloudVmClustersCloudVmClusterIormConfigCachResult(dict):
27341
27031
  def __init__(__self__, *,
@@ -523,13 +523,11 @@ 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,
527
526
  steps: Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]]] = None,
528
527
  type: Optional[pulumi.Input[str]] = None):
529
528
  """
530
529
  :param pulumi.Input[str] display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
531
530
  :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`
533
531
  :param pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]] steps: The list of steps in the group.
534
532
  :param pulumi.Input[str] type: The type of DR plan to be created.
535
533
 
@@ -541,8 +539,6 @@ class DrPlanPlanGroupArgs:
541
539
  pulumi.set(__self__, "display_name", display_name)
542
540
  if id is not None:
543
541
  pulumi.set(__self__, "id", id)
544
- if is_pause_enabled is not None:
545
- pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
546
542
  if steps is not None:
547
543
  pulumi.set(__self__, "steps", steps)
548
544
  if type is not None:
@@ -572,18 +568,6 @@ class DrPlanPlanGroupArgs:
572
568
  def id(self, value: Optional[pulumi.Input[str]]):
573
569
  pulumi.set(self, "id", value)
574
570
 
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
-
587
571
  @property
588
572
  @pulumi.getter
589
573
  def steps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DrPlanPlanGroupStepArgs']]]]:
@@ -543,8 +543,6 @@ 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"
548
546
 
549
547
  if suggest:
550
548
  pulumi.log.warn(f"Key '{key}' not found in DrPlanPlanGroup. Access the value via the '{suggest}' property getter instead.")
@@ -560,13 +558,11 @@ class DrPlanPlanGroup(dict):
560
558
  def __init__(__self__, *,
561
559
  display_name: Optional[str] = None,
562
560
  id: Optional[str] = None,
563
- is_pause_enabled: Optional[bool] = None,
564
561
  steps: Optional[Sequence['outputs.DrPlanPlanGroupStep']] = None,
565
562
  type: Optional[str] = None):
566
563
  """
567
564
  :param str display_name: (Updatable) The display name of the DR plan being created. Example: `EBS Switchover PHX to IAD`
568
565
  :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`
570
566
  :param Sequence['DrPlanPlanGroupStepArgs'] steps: The list of steps in the group.
571
567
  :param str type: The type of DR plan to be created.
572
568
 
@@ -578,8 +574,6 @@ class DrPlanPlanGroup(dict):
578
574
  pulumi.set(__self__, "display_name", display_name)
579
575
  if id is not None:
580
576
  pulumi.set(__self__, "id", id)
581
- if is_pause_enabled is not None:
582
- pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
583
577
  if steps is not None:
584
578
  pulumi.set(__self__, "steps", steps)
585
579
  if type is not None:
@@ -601,14 +595,6 @@ class DrPlanPlanGroup(dict):
601
595
  """
602
596
  return pulumi.get(self, "id")
603
597
 
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
-
612
598
  @property
613
599
  @pulumi.getter
614
600
  def steps(self) -> Optional[Sequence['outputs.DrPlanPlanGroupStep']]:
@@ -2819,19 +2805,16 @@ class GetDrPlanPlanGroupResult(dict):
2819
2805
  def __init__(__self__, *,
2820
2806
  display_name: str,
2821
2807
  id: str,
2822
- is_pause_enabled: bool,
2823
2808
  steps: Sequence['outputs.GetDrPlanPlanGroupStepResult'],
2824
2809
  type: str):
2825
2810
  """
2826
2811
  :param str display_name: The display name of the group. Example: `DATABASE_SWITCHOVER`
2827
2812
  :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`
2829
2813
  :param Sequence['GetDrPlanPlanGroupStepArgs'] steps: The list of steps in the group.
2830
2814
  :param str type: The type of the DR plan.
2831
2815
  """
2832
2816
  pulumi.set(__self__, "display_name", display_name)
2833
2817
  pulumi.set(__self__, "id", id)
2834
- pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
2835
2818
  pulumi.set(__self__, "steps", steps)
2836
2819
  pulumi.set(__self__, "type", type)
2837
2820
 
@@ -2851,14 +2834,6 @@ class GetDrPlanPlanGroupResult(dict):
2851
2834
  """
2852
2835
  return pulumi.get(self, "id")
2853
2836
 
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
-
2862
2837
  @property
2863
2838
  @pulumi.getter
2864
2839
  def steps(self) -> Sequence['outputs.GetDrPlanPlanGroupStepResult']:
@@ -3317,19 +3292,16 @@ class GetDrPlansDrPlanCollectionItemPlanGroupResult(dict):
3317
3292
  def __init__(__self__, *,
3318
3293
  display_name: str,
3319
3294
  id: str,
3320
- is_pause_enabled: bool,
3321
3295
  steps: Sequence['outputs.GetDrPlansDrPlanCollectionItemPlanGroupStepResult'],
3322
3296
  type: str):
3323
3297
  """
3324
3298
  :param str display_name: A filter to return only resources that match the given display name. Example: `MyResourceDisplayName`
3325
3299
  :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`
3327
3300
  :param Sequence['GetDrPlansDrPlanCollectionItemPlanGroupStepArgs'] steps: The list of steps in the group.
3328
3301
  :param str type: The type of the DR plan.
3329
3302
  """
3330
3303
  pulumi.set(__self__, "display_name", display_name)
3331
3304
  pulumi.set(__self__, "id", id)
3332
- pulumi.set(__self__, "is_pause_enabled", is_pause_enabled)
3333
3305
  pulumi.set(__self__, "steps", steps)
3334
3306
  pulumi.set(__self__, "type", type)
3335
3307
 
@@ -3349,14 +3321,6 @@ class GetDrPlansDrPlanCollectionItemPlanGroupResult(dict):
3349
3321
  """
3350
3322
  return pulumi.get(self, "id")
3351
3323
 
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
-
3360
3324
  @property
3361
3325
  @pulumi.getter
3362
3326
  def steps(self) -> Sequence['outputs.GetDrPlansDrPlanCollectionItemPlanGroupStepResult']: