pulumi-oci 1.33.0__py3-none-any.whl → 1.33.0a1713903118__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.
Files changed (39) hide show
  1. pulumi_oci/__init__.py +0 -11
  2. pulumi_oci/core/_inputs.py +28 -116
  3. pulumi_oci/core/boot_volume.py +0 -49
  4. pulumi_oci/core/compute_capacity_reservation.py +0 -2
  5. pulumi_oci/core/compute_cluster.py +4 -2
  6. pulumi_oci/core/drg_route_distribution.py +7 -7
  7. pulumi_oci/core/get_boot_volume.py +1 -14
  8. pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
  9. pulumi_oci/core/get_instance.py +1 -14
  10. pulumi_oci/core/get_subnet.py +2 -2
  11. pulumi_oci/core/get_vcn.py +2 -2
  12. pulumi_oci/core/get_volume.py +1 -14
  13. pulumi_oci/core/get_volumes.py +1 -21
  14. pulumi_oci/core/instance.py +4 -51
  15. pulumi_oci/core/instance_configuration.py +0 -8
  16. pulumi_oci/core/outputs.py +45 -302
  17. pulumi_oci/core/volume.py +0 -49
  18. pulumi_oci/core/volume_attachment.py +0 -28
  19. pulumi_oci/core/volume_group.py +0 -49
  20. pulumi_oci/databasemigration/_inputs.py +0 -20
  21. pulumi_oci/databasemigration/connection.py +0 -13
  22. pulumi_oci/databasemigration/get_connection.py +0 -3
  23. pulumi_oci/databasemigration/get_migration.py +0 -3
  24. pulumi_oci/databasemigration/migration.py +0 -13
  25. pulumi_oci/databasemigration/outputs.py +0 -68
  26. pulumi_oci/networkloadbalancer/backend_set.py +0 -49
  27. pulumi_oci/networkloadbalancer/get_backend_set.py +1 -14
  28. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +0 -49
  29. pulumi_oci/networkloadbalancer/outputs.py +0 -11
  30. {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/METADATA +1 -1
  31. {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/RECORD +33 -39
  32. pulumi_oci/clusterplacementgroups/__init__.py +0 -12
  33. pulumi_oci/clusterplacementgroups/_inputs.py +0 -159
  34. pulumi_oci/clusterplacementgroups/cluster_placement_group.py +0 -843
  35. pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +0 -298
  36. pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +0 -217
  37. pulumi_oci/clusterplacementgroups/outputs.py +0 -485
  38. {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/WHEEL +0 -0
  39. {pulumi_oci-1.33.0.dist-info → pulumi_oci-1.33.0a1713903118.dist-info}/top_level.txt +0 -0
@@ -2967,8 +2967,6 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2967
2967
  suggest = "reserved_count"
2968
2968
  elif key == "clusterConfig":
2969
2969
  suggest = "cluster_config"
2970
- elif key == "clusterPlacementGroupId":
2971
- suggest = "cluster_placement_group_id"
2972
2970
  elif key == "faultDomain":
2973
2971
  suggest = "fault_domain"
2974
2972
  elif key == "instanceShapeConfig":
@@ -2991,7 +2989,6 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2991
2989
  instance_shape: str,
2992
2990
  reserved_count: str,
2993
2991
  cluster_config: Optional['outputs.ComputeCapacityReservationInstanceReservationConfigClusterConfig'] = None,
2994
- cluster_placement_group_id: Optional[str] = None,
2995
2992
  fault_domain: Optional[str] = None,
2996
2993
  instance_shape_config: Optional['outputs.ComputeCapacityReservationInstanceReservationConfigInstanceShapeConfig'] = None,
2997
2994
  used_count: Optional[str] = None):
@@ -3000,7 +2997,6 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
3000
2997
  :param str reserved_count: (Updatable) The total number of instances that can be launched from the capacity configuration.
3001
2998
  :param 'ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs' cluster_config: (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
3002
2999
 
3003
- <<<<<<< HEAD
3004
3000
  If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.
3005
3001
  :param str fault_domain: (Updatable) The fault domain to use for instances created using this capacity configuration. For more information, see [Fault Domains](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/regions.htm#fault). If you do not specify the fault domain, the capacity is available for an instance that does not specify a fault domain. To change the fault domain for a reservation, delete the reservation and create a new one in the preferred fault domain.
3006
3002
 
@@ -3020,8 +3016,6 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
3020
3016
  pulumi.set(__self__, "reserved_count", reserved_count)
3021
3017
  if cluster_config is not None:
3022
3018
  pulumi.set(__self__, "cluster_config", cluster_config)
3023
- if cluster_placement_group_id is not None:
3024
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
3025
3019
  if fault_domain is not None:
3026
3020
  pulumi.set(__self__, "fault_domain", fault_domain)
3027
3021
  if instance_shape_config is not None:
@@ -3051,16 +3045,10 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
3051
3045
  """
3052
3046
  (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
3053
3047
 
3054
- <<<<<<< HEAD
3055
3048
  If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.
3056
3049
  """
3057
3050
  return pulumi.get(self, "cluster_config")
3058
3051
 
3059
- @property
3060
- @pulumi.getter(name="clusterPlacementGroupId")
3061
- def cluster_placement_group_id(self) -> Optional[str]:
3062
- return pulumi.get(self, "cluster_placement_group_id")
3063
-
3064
3052
  @property
3065
3053
  @pulumi.getter(name="faultDomain")
3066
3054
  def fault_domain(self) -> Optional[str]:
@@ -5418,8 +5406,6 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5418
5406
  suggest = "backup_policy_id"
5419
5407
  elif key == "blockVolumeReplicas":
5420
5408
  suggest = "block_volume_replicas"
5421
- elif key == "clusterPlacementGroupId":
5422
- suggest = "cluster_placement_group_id"
5423
5409
  elif key == "compartmentId":
5424
5410
  suggest = "compartment_id"
5425
5411
  elif key == "definedTags":
@@ -5455,7 +5441,6 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5455
5441
  availability_domain: Optional[str] = None,
5456
5442
  backup_policy_id: Optional[str] = None,
5457
5443
  block_volume_replicas: Optional['outputs.InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicas'] = None,
5458
- cluster_placement_group_id: Optional[str] = None,
5459
5444
  compartment_id: Optional[str] = None,
5460
5445
  defined_tags: Optional[Mapping[str, Any]] = None,
5461
5446
  display_name: Optional[str] = None,
@@ -5467,11 +5452,10 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5467
5452
  vpus_per_gb: Optional[str] = None):
5468
5453
  """
5469
5454
  :param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
5470
- :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5455
+ :param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
5471
5456
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
5472
5457
  :param 'InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicasArgs' block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
5473
- :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
5474
- :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
5458
+ :param str compartment_id: The OCID of the compartment that contains the volume.
5475
5459
  :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). Example: `{"Operations.CostCenter": "42"}`
5476
5460
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
5477
5461
  :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"}`
@@ -5490,8 +5474,6 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5490
5474
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
5491
5475
  if block_volume_replicas is not None:
5492
5476
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
5493
- if cluster_placement_group_id is not None:
5494
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
5495
5477
  if compartment_id is not None:
5496
5478
  pulumi.set(__self__, "compartment_id", compartment_id)
5497
5479
  if defined_tags is not None:
@@ -5523,7 +5505,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5523
5505
  @pulumi.getter(name="availabilityDomain")
5524
5506
  def availability_domain(self) -> Optional[str]:
5525
5507
  """
5526
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5508
+ The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
5527
5509
  """
5528
5510
  return pulumi.get(self, "availability_domain")
5529
5511
 
@@ -5543,19 +5525,11 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5543
5525
  """
5544
5526
  return pulumi.get(self, "block_volume_replicas")
5545
5527
 
5546
- @property
5547
- @pulumi.getter(name="clusterPlacementGroupId")
5548
- def cluster_placement_group_id(self) -> Optional[str]:
5549
- """
5550
- The clusterPlacementGroup Id of the volume for volume placement.
5551
- """
5552
- return pulumi.get(self, "cluster_placement_group_id")
5553
-
5554
5528
  @property
5555
5529
  @pulumi.getter(name="compartmentId")
5556
5530
  def compartment_id(self) -> Optional[str]:
5557
5531
  """
5558
- (Updatable) The OCID of the compartment containing images to search
5532
+ The OCID of the compartment that contains the volume.
5559
5533
  """
5560
5534
  return pulumi.get(self, "compartment_id")
5561
5535
 
@@ -5764,8 +5738,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5764
5738
  suggest = "availability_domain"
5765
5739
  elif key == "capacityReservationId":
5766
5740
  suggest = "capacity_reservation_id"
5767
- elif key == "clusterPlacementGroupId":
5768
- suggest = "cluster_placement_group_id"
5769
5741
  elif key == "compartmentId":
5770
5742
  suggest = "compartment_id"
5771
5743
  elif key == "createVnicDetails":
@@ -5819,7 +5791,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5819
5791
  availability_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfig'] = None,
5820
5792
  availability_domain: Optional[str] = None,
5821
5793
  capacity_reservation_id: Optional[str] = None,
5822
- cluster_placement_group_id: Optional[str] = None,
5823
5794
  compartment_id: Optional[str] = None,
5824
5795
  create_vnic_details: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails'] = None,
5825
5796
  dedicated_vm_host_id: Optional[str] = None,
@@ -5845,7 +5816,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5845
5816
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs' availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
5846
5817
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5847
5818
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
5848
- :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
5849
5819
  :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
5850
5820
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
5851
5821
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -5930,8 +5900,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5930
5900
  pulumi.set(__self__, "availability_domain", availability_domain)
5931
5901
  if capacity_reservation_id is not None:
5932
5902
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
5933
- if cluster_placement_group_id is not None:
5934
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
5935
5903
  if compartment_id is not None:
5936
5904
  pulumi.set(__self__, "compartment_id", compartment_id)
5937
5905
  if create_vnic_details is not None:
@@ -6005,14 +5973,6 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
6005
5973
  """
6006
5974
  return pulumi.get(self, "capacity_reservation_id")
6007
5975
 
6008
- @property
6009
- @pulumi.getter(name="clusterPlacementGroupId")
6010
- def cluster_placement_group_id(self) -> Optional[str]:
6011
- """
6012
- The clusterPlacementGroup Id of the volume for volume placement.
6013
- """
6014
- return pulumi.get(self, "cluster_placement_group_id")
6015
-
6016
5976
  @property
6017
5977
  @pulumi.getter(name="compartmentId")
6018
5978
  def compartment_id(self) -> Optional[str]:
@@ -7642,8 +7602,6 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7642
7602
  suggest = "backup_policy_id"
7643
7603
  elif key == "blockVolumeReplicas":
7644
7604
  suggest = "block_volume_replicas"
7645
- elif key == "clusterPlacementGroupId":
7646
- suggest = "cluster_placement_group_id"
7647
7605
  elif key == "compartmentId":
7648
7606
  suggest = "compartment_id"
7649
7607
  elif key == "definedTags":
@@ -7679,7 +7637,6 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7679
7637
  availability_domain: Optional[str] = None,
7680
7638
  backup_policy_id: Optional[str] = None,
7681
7639
  block_volume_replicas: Optional['outputs.InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicas'] = None,
7682
- cluster_placement_group_id: Optional[str] = None,
7683
7640
  compartment_id: Optional[str] = None,
7684
7641
  defined_tags: Optional[Mapping[str, Any]] = None,
7685
7642
  display_name: Optional[str] = None,
@@ -7691,11 +7648,10 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7691
7648
  vpus_per_gb: Optional[str] = None):
7692
7649
  """
7693
7650
  :param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
7694
- :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7651
+ :param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
7695
7652
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
7696
7653
  :param 'InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs' block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
7697
- :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
7698
- :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
7654
+ :param str compartment_id: The OCID of the compartment that contains the volume.
7699
7655
  :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). Example: `{"Operations.CostCenter": "42"}`
7700
7656
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7701
7657
  :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"}`
@@ -7714,8 +7670,6 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7714
7670
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
7715
7671
  if block_volume_replicas is not None:
7716
7672
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
7717
- if cluster_placement_group_id is not None:
7718
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
7719
7673
  if compartment_id is not None:
7720
7674
  pulumi.set(__self__, "compartment_id", compartment_id)
7721
7675
  if defined_tags is not None:
@@ -7747,7 +7701,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7747
7701
  @pulumi.getter(name="availabilityDomain")
7748
7702
  def availability_domain(self) -> Optional[str]:
7749
7703
  """
7750
- The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7704
+ The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
7751
7705
  """
7752
7706
  return pulumi.get(self, "availability_domain")
7753
7707
 
@@ -7767,19 +7721,11 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7767
7721
  """
7768
7722
  return pulumi.get(self, "block_volume_replicas")
7769
7723
 
7770
- @property
7771
- @pulumi.getter(name="clusterPlacementGroupId")
7772
- def cluster_placement_group_id(self) -> Optional[str]:
7773
- """
7774
- The clusterPlacementGroup Id of the volume for volume placement.
7775
- """
7776
- return pulumi.get(self, "cluster_placement_group_id")
7777
-
7778
7724
  @property
7779
7725
  @pulumi.getter(name="compartmentId")
7780
7726
  def compartment_id(self) -> Optional[str]:
7781
7727
  """
7782
- (Updatable) The OCID of the compartment containing images to search
7728
+ The OCID of the compartment that contains the volume.
7783
7729
  """
7784
7730
  return pulumi.get(self, "compartment_id")
7785
7731
 
@@ -7988,8 +7934,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7988
7934
  suggest = "availability_domain"
7989
7935
  elif key == "capacityReservationId":
7990
7936
  suggest = "capacity_reservation_id"
7991
- elif key == "clusterPlacementGroupId":
7992
- suggest = "cluster_placement_group_id"
7993
7937
  elif key == "compartmentId":
7994
7938
  suggest = "compartment_id"
7995
7939
  elif key == "createVnicDetails":
@@ -8043,7 +7987,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8043
7987
  availability_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfig'] = None,
8044
7988
  availability_domain: Optional[str] = None,
8045
7989
  capacity_reservation_id: Optional[str] = None,
8046
- cluster_placement_group_id: Optional[str] = None,
8047
7990
  compartment_id: Optional[str] = None,
8048
7991
  create_vnic_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails'] = None,
8049
7992
  dedicated_vm_host_id: Optional[str] = None,
@@ -8069,7 +8012,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8069
8012
  :param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfigArgs' availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
8070
8013
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
8071
8014
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
8072
- :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
8073
8015
  :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
8074
8016
  :param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgs' create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
8075
8017
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -8154,8 +8096,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8154
8096
  pulumi.set(__self__, "availability_domain", availability_domain)
8155
8097
  if capacity_reservation_id is not None:
8156
8098
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
8157
- if cluster_placement_group_id is not None:
8158
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
8159
8099
  if compartment_id is not None:
8160
8100
  pulumi.set(__self__, "compartment_id", compartment_id)
8161
8101
  if create_vnic_details is not None:
@@ -8229,14 +8169,6 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8229
8169
  """
8230
8170
  return pulumi.get(self, "capacity_reservation_id")
8231
8171
 
8232
- @property
8233
- @pulumi.getter(name="clusterPlacementGroupId")
8234
- def cluster_placement_group_id(self) -> Optional[str]:
8235
- """
8236
- The clusterPlacementGroup Id of the volume for volume placement.
8237
- """
8238
- return pulumi.get(self, "cluster_placement_group_id")
8239
-
8240
8172
  @property
8241
8173
  @pulumi.getter(name="compartmentId")
8242
8174
  def compartment_id(self) -> Optional[str]:
@@ -10274,7 +10206,7 @@ class InstanceCreateVnicDetails(dict):
10274
10206
  :param Sequence[str] nsg_ids: (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
10275
10207
 
10276
10208
  If a `vlanId` is specified, the `nsgIds` cannot be specified. The `vlanId` indicates that the VNIC will belong to a VLAN instead of a subnet. With VLANs, all VNICs in the VLAN belong to the NSGs that are associated with the VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
10277
- :param str private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the `[Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/)` object and also the `[PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/)` object returned by `[ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps)` and `[GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp)`.
10209
+ :param str private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
10278
10210
 
10279
10211
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
10280
10212
 
@@ -10403,7 +10335,7 @@ class InstanceCreateVnicDetails(dict):
10403
10335
  @pulumi.getter(name="privateIp")
10404
10336
  def private_ip(self) -> Optional[str]:
10405
10337
  """
10406
- A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the `[Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/)` object and also the `[PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/)` object returned by `[ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps)` and `[GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp)`.
10338
+ A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
10407
10339
 
10408
10340
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
10409
10341
 
@@ -10818,7 +10750,7 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails(dict):
10818
10750
  :param str volume_creation_type: Specifies the method for volume creation.
10819
10751
  :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
10820
10752
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
10821
- :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10753
+ :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10822
10754
  :param str vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
10823
10755
 
10824
10756
  Allowed values:
@@ -10870,7 +10802,7 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails(dict):
10870
10802
  @pulumi.getter(name="kmsKeyId")
10871
10803
  def kms_key_id(self) -> Optional[str]:
10872
10804
  """
10873
- (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10805
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10874
10806
  """
10875
10807
  return pulumi.get(self, "kms_key_id")
10876
10808
 
@@ -11331,8 +11263,8 @@ class InstancePoolPlacementConfiguration(dict):
11331
11263
 
11332
11264
  To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
11333
11265
 
11334
- <<<<<<< HEAD
11335
11266
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11267
+ :param str primary_subnet_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
11336
11268
  :param 'InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs' primary_vnic_subnets: (Updatable) Details about the IPv6 primary subnet.
11337
11269
  :param Sequence['InstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: (Updatable) The set of secondary VNIC data for instances in the pool.
11338
11270
  """
@@ -11366,7 +11298,6 @@ class InstancePoolPlacementConfiguration(dict):
11366
11298
 
11367
11299
  To get a list of fault domains, use the [ListFaultDomains](https://docs.cloud.oracle.com/iaas/api/#/en/identity/20160918/FaultDomain/ListFaultDomains) operation in the Identity and Access Management Service API.
11368
11300
 
11369
- <<<<<<< HEAD
11370
11301
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11371
11302
  """
11372
11303
  return pulumi.get(self, "fault_domains")
@@ -11374,6 +11305,9 @@ class InstancePoolPlacementConfiguration(dict):
11374
11305
  @property
11375
11306
  @pulumi.getter(name="primarySubnetId")
11376
11307
  def primary_subnet_id(self) -> Optional[str]:
11308
+ """
11309
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
11310
+ """
11377
11311
  return pulumi.get(self, "primary_subnet_id")
11378
11312
 
11379
11313
  @property
@@ -11900,8 +11834,6 @@ class InstanceSourceDetails(dict):
11900
11834
  suggest = "boot_volume_vpus_per_gb"
11901
11835
  elif key == "instanceSourceImageFilterDetails":
11902
11836
  suggest = "instance_source_image_filter_details"
11903
- elif key == "isPreserveBootVolumeEnabled":
11904
- suggest = "is_preserve_boot_volume_enabled"
11905
11837
  elif key == "kmsKeyId":
11906
11838
  suggest = "kms_key_id"
11907
11839
  elif key == "sourceId":
@@ -11923,18 +11855,17 @@ class InstanceSourceDetails(dict):
11923
11855
  boot_volume_size_in_gbs: Optional[str] = None,
11924
11856
  boot_volume_vpus_per_gb: Optional[str] = None,
11925
11857
  instance_source_image_filter_details: Optional['outputs.InstanceSourceDetailsInstanceSourceImageFilterDetails'] = None,
11926
- is_preserve_boot_volume_enabled: Optional[bool] = None,
11927
11858
  kms_key_id: Optional[str] = None,
11928
11859
  source_id: Optional[str] = None):
11929
11860
  """
11930
- :param str source_type: (Updatable) The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
11861
+ :param str source_type: The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
11931
11862
  :param str boot_volume_size_in_gbs: (Updatable) The size of the boot volume in GBs. Minimum value is 50 GB and maximum value is 32,768 GB (32 TB).
11932
11863
  :param str boot_volume_vpus_per_gb: The number of volume performance units (VPUs) that will be applied to this volume per GB, representing the Block Volume service's elastic performance options. See [Block Volume Performance Levels](https://docs.cloud.oracle.com/iaas/Content/Block/Concepts/blockvolumeperformance.htm#perf_levels) for more information.
11933
11864
 
11934
11865
  Allowed values:
11935
11866
  :param 'InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
11936
- :param str kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11937
- :param str source_id: (Updatable) The OCID of the boot volume used to boot the instance.
11867
+ :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11868
+ :param str source_id: The OCID of an image or a boot volume to use, depending on the value of `source_type`.
11938
11869
  """
11939
11870
  pulumi.set(__self__, "source_type", source_type)
11940
11871
  if boot_volume_size_in_gbs is not None:
@@ -11943,8 +11874,6 @@ class InstanceSourceDetails(dict):
11943
11874
  pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
11944
11875
  if instance_source_image_filter_details is not None:
11945
11876
  pulumi.set(__self__, "instance_source_image_filter_details", instance_source_image_filter_details)
11946
- if is_preserve_boot_volume_enabled is not None:
11947
- pulumi.set(__self__, "is_preserve_boot_volume_enabled", is_preserve_boot_volume_enabled)
11948
11877
  if kms_key_id is not None:
11949
11878
  pulumi.set(__self__, "kms_key_id", kms_key_id)
11950
11879
  if source_id is not None:
@@ -11954,7 +11883,7 @@ class InstanceSourceDetails(dict):
11954
11883
  @pulumi.getter(name="sourceType")
11955
11884
  def source_type(self) -> str:
11956
11885
  """
11957
- (Updatable) The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
11886
+ The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
11958
11887
  """
11959
11888
  return pulumi.get(self, "source_type")
11960
11889
 
@@ -11984,16 +11913,11 @@ class InstanceSourceDetails(dict):
11984
11913
  """
11985
11914
  return pulumi.get(self, "instance_source_image_filter_details")
11986
11915
 
11987
- @property
11988
- @pulumi.getter(name="isPreserveBootVolumeEnabled")
11989
- def is_preserve_boot_volume_enabled(self) -> Optional[bool]:
11990
- return pulumi.get(self, "is_preserve_boot_volume_enabled")
11991
-
11992
11916
  @property
11993
11917
  @pulumi.getter(name="kmsKeyId")
11994
11918
  def kms_key_id(self) -> Optional[str]:
11995
11919
  """
11996
- (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11920
+ The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11997
11921
  """
11998
11922
  return pulumi.get(self, "kms_key_id")
11999
11923
 
@@ -12001,7 +11925,7 @@ class InstanceSourceDetails(dict):
12001
11925
  @pulumi.getter(name="sourceId")
12002
11926
  def source_id(self) -> Optional[str]:
12003
11927
  """
12004
- (Updatable) The OCID of the boot volume used to boot the instance.
11928
+ The OCID of an image or a boot volume to use, depending on the value of `source_type`.
12005
11929
  """
12006
11930
  return pulumi.get(self, "source_id")
12007
11931
 
@@ -14274,11 +14198,11 @@ class VnicAttachmentCreateVnicDetails(dict):
14274
14198
  :param Mapping[str, Any] defined_tags: (Updatable) 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). Example: `{"Operations.CostCenter": "42"}`
14275
14199
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14276
14200
  :param Mapping[str, Any] freeform_tags: (Updatable) 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"}`
14277
- :param str hostname_label: (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the `[Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/)` object and also the `[PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/)` object returned by `[ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps)` and `[GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp)`.
14201
+ :param str hostname_label: (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
14278
14202
 
14279
14203
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
14280
14204
 
14281
- When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in `[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)`. If you provide both, the values must match.
14205
+ When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
14282
14206
 
14283
14207
  Example: `bminstance1`
14284
14208
 
@@ -14287,7 +14211,7 @@ class VnicAttachmentCreateVnicDetails(dict):
14287
14211
  :param Sequence[str] nsg_ids: (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see [NetworkSecurityGroup](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/NetworkSecurityGroup/).
14288
14212
 
14289
14213
  If a `vlanId` is specified, the `nsgIds` cannot be specified. The `vlanId` indicates that the VNIC will belong to a VLAN instead of a subnet. With VLANs, all VNICs in the VLAN belong to the NSGs that are associated with the VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
14290
- :param str private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the `[Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/)` object and also the `[PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/)` object returned by `[ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps)` and `[GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp)`.
14214
+ :param str private_ip: A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
14291
14215
 
14292
14216
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
14293
14217
 
@@ -14393,11 +14317,11 @@ class VnicAttachmentCreateVnicDetails(dict):
14393
14317
  @pulumi.getter(name="hostnameLabel")
14394
14318
  def hostname_label(self) -> Optional[str]:
14395
14319
  """
14396
- (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the `[Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/)` object and also the `[PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/)` object returned by `[ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps)` and `[GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp)`.
14320
+ (Updatable) The hostname for the VNIC's primary private IP. Used for DNS. The value is the hostname portion of the primary private IP's fully qualified domain name (FQDN) (for example, `bminstance1` in FQDN `bminstance1.subnet123.vcn1.oraclevcn.com`). Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123). The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
14397
14321
 
14398
14322
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
14399
14323
 
14400
- When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in `[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)`. If you provide both, the values must match.
14324
+ When launching an instance, use this `hostnameLabel` instead of the deprecated `hostnameLabel` in [LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails). If you provide both, the values must match.
14401
14325
 
14402
14326
  Example: `bminstance1`
14403
14327
 
@@ -14427,7 +14351,7 @@ class VnicAttachmentCreateVnicDetails(dict):
14427
14351
  @pulumi.getter(name="privateIp")
14428
14352
  def private_ip(self) -> Optional[str]:
14429
14353
  """
14430
- A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the `[Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/)` object and also the `[PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/)` object returned by `[ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps)` and `[GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp)`.
14354
+ A private IP address of your choice to assign to the VNIC. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. This is the VNIC's *primary* private IP address. The value appears in the [Vnic](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vnic/) object and also the [PrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/) object returned by [ListPrivateIps](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/ListPrivateIps) and [GetPrivateIp](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/PrivateIp/GetPrivateIp).
14431
14355
 
14432
14356
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
14433
14357
 
@@ -15746,8 +15670,7 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15746
15670
  instance_id: str,
15747
15671
  is_pv_encryption_in_transit_enabled: bool,
15748
15672
  state: str,
15749
- time_created: str,
15750
- time_updated: str):
15673
+ time_created: str):
15751
15674
  """
15752
15675
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
15753
15676
  :param str boot_volume_id: The OCID of the boot volume.
@@ -15759,7 +15682,6 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15759
15682
  :param bool is_pv_encryption_in_transit_enabled: Whether in-transit encryption for the boot volume's paravirtualized attachment is enabled or not.
15760
15683
  :param str state: The current state of the boot volume attachment.
15761
15684
  :param str time_created: The date and time the boot volume was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
15762
- :param str time_updated: The date and time the boot volume attachment was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
15763
15685
  """
15764
15686
  pulumi.set(__self__, "availability_domain", availability_domain)
15765
15687
  pulumi.set(__self__, "boot_volume_id", boot_volume_id)
@@ -15771,7 +15693,6 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15771
15693
  pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
15772
15694
  pulumi.set(__self__, "state", state)
15773
15695
  pulumi.set(__self__, "time_created", time_created)
15774
- pulumi.set(__self__, "time_updated", time_updated)
15775
15696
 
15776
15697
  @property
15777
15698
  @pulumi.getter(name="availabilityDomain")
@@ -15853,14 +15774,6 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15853
15774
  """
15854
15775
  return pulumi.get(self, "time_created")
15855
15776
 
15856
- @property
15857
- @pulumi.getter(name="timeUpdated")
15858
- def time_updated(self) -> str:
15859
- """
15860
- The date and time the boot volume attachment was updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
15861
- """
15862
- return pulumi.get(self, "time_updated")
15863
-
15864
15777
 
15865
15778
  @pulumi.output_type
15866
15779
  class GetBootVolumeAttachmentsFilterResult(dict):
@@ -16480,7 +16393,6 @@ class GetBootVolumesBootVolumeResult(dict):
16480
16393
  backup_policy_id: str,
16481
16394
  boot_volume_replicas: Sequence['outputs.GetBootVolumesBootVolumeBootVolumeReplicaResult'],
16482
16395
  boot_volume_replicas_deletion: bool,
16483
- cluster_placement_group_id: str,
16484
16396
  compartment_id: str,
16485
16397
  defined_tags: Mapping[str, Any],
16486
16398
  display_name: str,
@@ -16503,7 +16415,6 @@ class GetBootVolumesBootVolumeResult(dict):
16503
16415
  :param Sequence['GetBootVolumesBootVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
16504
16416
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
16505
16417
  :param Sequence['GetBootVolumesBootVolumeBootVolumeReplicaArgs'] boot_volume_replicas: The list of boot volume replicas of this boot volume
16506
- :param str cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
16507
16418
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
16508
16419
  :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). Example: `{"Operations.CostCenter": "42"}`
16509
16420
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -16527,7 +16438,6 @@ class GetBootVolumesBootVolumeResult(dict):
16527
16438
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
16528
16439
  pulumi.set(__self__, "boot_volume_replicas", boot_volume_replicas)
16529
16440
  pulumi.set(__self__, "boot_volume_replicas_deletion", boot_volume_replicas_deletion)
16530
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
16531
16441
  pulumi.set(__self__, "compartment_id", compartment_id)
16532
16442
  pulumi.set(__self__, "defined_tags", defined_tags)
16533
16443
  pulumi.set(__self__, "display_name", display_name)
@@ -16591,14 +16501,6 @@ class GetBootVolumesBootVolumeResult(dict):
16591
16501
  def boot_volume_replicas_deletion(self) -> bool:
16592
16502
  return pulumi.get(self, "boot_volume_replicas_deletion")
16593
16503
 
16594
- @property
16595
- @pulumi.getter(name="clusterPlacementGroupId")
16596
- def cluster_placement_group_id(self) -> str:
16597
- """
16598
- The clusterPlacementGroup Id of the volume for volume placement.
16599
- """
16600
- return pulumi.get(self, "cluster_placement_group_id")
16601
-
16602
16504
  @property
16603
16505
  @pulumi.getter(name="compartmentId")
16604
16506
  def compartment_id(self) -> str:
@@ -20261,7 +20163,6 @@ class GetClusterNetworksFilterResult(dict):
20261
20163
  class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20262
20164
  def __init__(__self__, *,
20263
20165
  cluster_configs: Sequence['outputs.GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult'],
20264
- cluster_placement_group_id: str,
20265
20166
  fault_domain: str,
20266
20167
  instance_shape: str,
20267
20168
  instance_shape_configs: Sequence['outputs.GetComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigResult'],
@@ -20276,7 +20177,6 @@ class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20276
20177
  :param str used_count: The amount of capacity in use out of the total capacity reserved in this capacity configuration.
20277
20178
  """
20278
20179
  pulumi.set(__self__, "cluster_configs", cluster_configs)
20279
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20280
20180
  pulumi.set(__self__, "fault_domain", fault_domain)
20281
20181
  pulumi.set(__self__, "instance_shape", instance_shape)
20282
20182
  pulumi.set(__self__, "instance_shape_configs", instance_shape_configs)
@@ -20291,11 +20191,6 @@ class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20291
20191
  """
20292
20192
  return pulumi.get(self, "cluster_configs")
20293
20193
 
20294
- @property
20295
- @pulumi.getter(name="clusterPlacementGroupId")
20296
- def cluster_placement_group_id(self) -> str:
20297
- return pulumi.get(self, "cluster_placement_group_id")
20298
-
20299
20194
  @property
20300
20195
  @pulumi.getter(name="faultDomain")
20301
20196
  def fault_domain(self) -> str:
@@ -20343,8 +20238,8 @@ class GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult(
20343
20238
  hpc_island_id: str,
20344
20239
  network_block_ids: Sequence[str]):
20345
20240
  """
20346
- :param str hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HPC island.
20347
- :param Sequence[str] network_block_ids: The list of OCIDs of the network blocks.
20241
+ :param str hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HpcIsland.
20242
+ :param Sequence[str] network_block_ids: The list of OCID of the network blocks.
20348
20243
  """
20349
20244
  pulumi.set(__self__, "hpc_island_id", hpc_island_id)
20350
20245
  pulumi.set(__self__, "network_block_ids", network_block_ids)
@@ -20353,7 +20248,7 @@ class GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult(
20353
20248
  @pulumi.getter(name="hpcIslandId")
20354
20249
  def hpc_island_id(self) -> str:
20355
20250
  """
20356
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HPC island.
20251
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HpcIsland.
20357
20252
  """
20358
20253
  return pulumi.get(self, "hpc_island_id")
20359
20254
 
@@ -20361,7 +20256,7 @@ class GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult(
20361
20256
  @pulumi.getter(name="networkBlockIds")
20362
20257
  def network_block_ids(self) -> Sequence[str]:
20363
20258
  """
20364
- The list of OCIDs of the network blocks.
20259
+ The list of OCID of the network blocks.
20365
20260
  """
20366
20261
  return pulumi.get(self, "network_block_ids")
20367
20262
 
@@ -20455,7 +20350,6 @@ class GetComputeCapacityReservationInstanceShapesFilterResult(dict):
20455
20350
  class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(dict):
20456
20351
  def __init__(__self__, *,
20457
20352
  availability_domain: str,
20458
- cluster_placement_group_id: str,
20459
20353
  compartment_id: str,
20460
20354
  fault_domain: str,
20461
20355
  id: str,
@@ -20463,7 +20357,6 @@ class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(di
20463
20357
  shape_configs: Sequence['outputs.GetComputeCapacityReservationInstancesCapacityReservationInstanceShapeConfigResult']):
20464
20358
  """
20465
20359
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
20466
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
20467
20360
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
20468
20361
  :param str fault_domain: The fault domain the instance is running in.
20469
20362
  :param str id: The OCID of the instance.
@@ -20471,7 +20364,6 @@ class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(di
20471
20364
  :param Sequence['GetComputeCapacityReservationInstancesCapacityReservationInstanceShapeConfigArgs'] shape_configs: The shape configuration requested when launching instances in a compute capacity reservation.
20472
20365
  """
20473
20366
  pulumi.set(__self__, "availability_domain", availability_domain)
20474
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20475
20367
  pulumi.set(__self__, "compartment_id", compartment_id)
20476
20368
  pulumi.set(__self__, "fault_domain", fault_domain)
20477
20369
  pulumi.set(__self__, "id", id)
@@ -20486,14 +20378,6 @@ class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(di
20486
20378
  """
20487
20379
  return pulumi.get(self, "availability_domain")
20488
20380
 
20489
- @property
20490
- @pulumi.getter(name="clusterPlacementGroupId")
20491
- def cluster_placement_group_id(self) -> str:
20492
- """
20493
- The OCID of the cluster placement group of the instance.
20494
- """
20495
- return pulumi.get(self, "cluster_placement_group_id")
20496
-
20497
20381
  @property
20498
20382
  @pulumi.getter(name="compartmentId")
20499
20383
  def compartment_id(self) -> str:
@@ -20745,7 +20629,6 @@ class GetComputeCapacityReservationsComputeCapacityReservationResult(dict):
20745
20629
  class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigResult(dict):
20746
20630
  def __init__(__self__, *,
20747
20631
  cluster_configs: Sequence['outputs.GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigClusterConfigResult'],
20748
- cluster_placement_group_id: str,
20749
20632
  fault_domain: str,
20750
20633
  instance_shape: str,
20751
20634
  instance_shape_configs: Sequence['outputs.GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigResult'],
@@ -20760,7 +20643,6 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20760
20643
  :param str used_count: The amount of capacity in use out of the total capacity reserved in this capacity configuration.
20761
20644
  """
20762
20645
  pulumi.set(__self__, "cluster_configs", cluster_configs)
20763
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20764
20646
  pulumi.set(__self__, "fault_domain", fault_domain)
20765
20647
  pulumi.set(__self__, "instance_shape", instance_shape)
20766
20648
  pulumi.set(__self__, "instance_shape_configs", instance_shape_configs)
@@ -20775,11 +20657,6 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20775
20657
  """
20776
20658
  return pulumi.get(self, "cluster_configs")
20777
20659
 
20778
- @property
20779
- @pulumi.getter(name="clusterPlacementGroupId")
20780
- def cluster_placement_group_id(self) -> str:
20781
- return pulumi.get(self, "cluster_placement_group_id")
20782
-
20783
20660
  @property
20784
20661
  @pulumi.getter(name="faultDomain")
20785
20662
  def fault_domain(self) -> str:
@@ -20827,8 +20704,8 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20827
20704
  hpc_island_id: str,
20828
20705
  network_block_ids: Sequence[str]):
20829
20706
  """
20830
- :param str hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HPC island.
20831
- :param Sequence[str] network_block_ids: The list of OCIDs of the network blocks.
20707
+ :param str hpc_island_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HpcIsland.
20708
+ :param Sequence[str] network_block_ids: The list of OCID of the network blocks.
20832
20709
  """
20833
20710
  pulumi.set(__self__, "hpc_island_id", hpc_island_id)
20834
20711
  pulumi.set(__self__, "network_block_ids", network_block_ids)
@@ -20837,7 +20714,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20837
20714
  @pulumi.getter(name="hpcIslandId")
20838
20715
  def hpc_island_id(self) -> str:
20839
20716
  """
20840
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HPC island.
20717
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HpcIsland.
20841
20718
  """
20842
20719
  return pulumi.get(self, "hpc_island_id")
20843
20720
 
@@ -20845,7 +20722,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20845
20722
  @pulumi.getter(name="networkBlockIds")
20846
20723
  def network_block_ids(self) -> Sequence[str]:
20847
20724
  """
20848
- The list of OCIDs of the network blocks.
20725
+ The list of OCID of the network blocks.
20849
20726
  """
20850
20727
  return pulumi.get(self, "network_block_ids")
20851
20728
 
@@ -26221,7 +26098,6 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26221
26098
  availability_domain: str,
26222
26099
  backup_policy_id: str,
26223
26100
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailBlockVolumeReplicaResult'],
26224
- cluster_placement_group_id: str,
26225
26101
  compartment_id: str,
26226
26102
  defined_tags: Mapping[str, Any],
26227
26103
  display_name: str,
@@ -26236,7 +26112,6 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26236
26112
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
26237
26113
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
26238
26114
  :param Sequence['GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailBlockVolumeReplicaArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
26239
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
26240
26115
  :param str compartment_id: The OCID of the compartment containing images to search
26241
26116
  :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). Example: `{"Operations.CostCenter": "42"}`
26242
26117
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -26250,7 +26125,6 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26250
26125
  pulumi.set(__self__, "availability_domain", availability_domain)
26251
26126
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
26252
26127
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
26253
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
26254
26128
  pulumi.set(__self__, "compartment_id", compartment_id)
26255
26129
  pulumi.set(__self__, "defined_tags", defined_tags)
26256
26130
  pulumi.set(__self__, "display_name", display_name)
@@ -26293,14 +26167,6 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26293
26167
  """
26294
26168
  return pulumi.get(self, "block_volume_replicas")
26295
26169
 
26296
- @property
26297
- @pulumi.getter(name="clusterPlacementGroupId")
26298
- def cluster_placement_group_id(self) -> str:
26299
- """
26300
- The OCID of the cluster placement group of the instance.
26301
- """
26302
- return pulumi.get(self, "cluster_placement_group_id")
26303
-
26304
26170
  @property
26305
26171
  @pulumi.getter(name="compartmentId")
26306
26172
  def compartment_id(self) -> str:
@@ -26465,7 +26331,6 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26465
26331
  availability_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigResult'],
26466
26332
  availability_domain: str,
26467
26333
  capacity_reservation_id: str,
26468
- cluster_placement_group_id: str,
26469
26334
  compartment_id: str,
26470
26335
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult'],
26471
26336
  dedicated_vm_host_id: str,
@@ -26491,7 +26356,6 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26491
26356
  :param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
26492
26357
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
26493
26358
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
26494
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
26495
26359
  :param str compartment_id: The OCID of the compartment containing images to search
26496
26360
  :param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailArgs'] create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
26497
26361
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -26516,7 +26380,6 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26516
26380
  pulumi.set(__self__, "availability_configs", availability_configs)
26517
26381
  pulumi.set(__self__, "availability_domain", availability_domain)
26518
26382
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
26519
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
26520
26383
  pulumi.set(__self__, "compartment_id", compartment_id)
26521
26384
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
26522
26385
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -26570,14 +26433,6 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26570
26433
  """
26571
26434
  return pulumi.get(self, "capacity_reservation_id")
26572
26435
 
26573
- @property
26574
- @pulumi.getter(name="clusterPlacementGroupId")
26575
- def cluster_placement_group_id(self) -> str:
26576
- """
26577
- The OCID of the cluster placement group of the instance.
26578
- """
26579
- return pulumi.get(self, "cluster_placement_group_id")
26580
-
26581
26436
  @property
26582
26437
  @pulumi.getter(name="compartmentId")
26583
26438
  def compartment_id(self) -> str:
@@ -27658,7 +27513,6 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27658
27513
  availability_domain: str,
27659
27514
  backup_policy_id: str,
27660
27515
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailBlockVolumeReplicaResult'],
27661
- cluster_placement_group_id: str,
27662
27516
  compartment_id: str,
27663
27517
  defined_tags: Mapping[str, Any],
27664
27518
  display_name: str,
@@ -27673,7 +27527,6 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27673
27527
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
27674
27528
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
27675
27529
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailBlockVolumeReplicaArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
27676
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
27677
27530
  :param str compartment_id: The OCID of the compartment containing images to search
27678
27531
  :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). Example: `{"Operations.CostCenter": "42"}`
27679
27532
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -27687,7 +27540,6 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27687
27540
  pulumi.set(__self__, "availability_domain", availability_domain)
27688
27541
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
27689
27542
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
27690
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
27691
27543
  pulumi.set(__self__, "compartment_id", compartment_id)
27692
27544
  pulumi.set(__self__, "defined_tags", defined_tags)
27693
27545
  pulumi.set(__self__, "display_name", display_name)
@@ -27730,14 +27582,6 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27730
27582
  """
27731
27583
  return pulumi.get(self, "block_volume_replicas")
27732
27584
 
27733
- @property
27734
- @pulumi.getter(name="clusterPlacementGroupId")
27735
- def cluster_placement_group_id(self) -> str:
27736
- """
27737
- The OCID of the cluster placement group of the instance.
27738
- """
27739
- return pulumi.get(self, "cluster_placement_group_id")
27740
-
27741
27585
  @property
27742
27586
  @pulumi.getter(name="compartmentId")
27743
27587
  def compartment_id(self) -> str:
@@ -27902,7 +27746,6 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27902
27746
  availability_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigResult'],
27903
27747
  availability_domain: str,
27904
27748
  capacity_reservation_id: str,
27905
- cluster_placement_group_id: str,
27906
27749
  compartment_id: str,
27907
27750
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailResult'],
27908
27751
  dedicated_vm_host_id: str,
@@ -27928,7 +27771,6 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27928
27771
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
27929
27772
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
27930
27773
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
27931
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
27932
27774
  :param str compartment_id: The OCID of the compartment containing images to search
27933
27775
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailArgs'] create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
27934
27776
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -27953,7 +27795,6 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27953
27795
  pulumi.set(__self__, "availability_configs", availability_configs)
27954
27796
  pulumi.set(__self__, "availability_domain", availability_domain)
27955
27797
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
27956
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
27957
27798
  pulumi.set(__self__, "compartment_id", compartment_id)
27958
27799
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
27959
27800
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -28007,14 +27848,6 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
28007
27848
  """
28008
27849
  return pulumi.get(self, "capacity_reservation_id")
28009
27850
 
28010
- @property
28011
- @pulumi.getter(name="clusterPlacementGroupId")
28012
- def cluster_placement_group_id(self) -> str:
28013
- """
28014
- The OCID of the cluster placement group of the instance.
28015
- """
28016
- return pulumi.get(self, "cluster_placement_group_id")
28017
-
28018
27851
  @property
28019
27852
  @pulumi.getter(name="compartmentId")
28020
27853
  def compartment_id(self) -> str:
@@ -29660,7 +29493,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29660
29493
  availability_domain: str,
29661
29494
  backup_policy_id: str,
29662
29495
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailBlockVolumeReplicaResult'],
29663
- cluster_placement_group_id: str,
29664
29496
  compartment_id: str,
29665
29497
  defined_tags: Mapping[str, Any],
29666
29498
  display_name: str,
@@ -29675,7 +29507,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29675
29507
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
29676
29508
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
29677
29509
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailBlockVolumeReplicaArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
29678
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
29679
29510
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
29680
29511
  :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). Example: `{"Operations.CostCenter": "42"}`
29681
29512
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -29689,7 +29520,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29689
29520
  pulumi.set(__self__, "availability_domain", availability_domain)
29690
29521
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
29691
29522
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
29692
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
29693
29523
  pulumi.set(__self__, "compartment_id", compartment_id)
29694
29524
  pulumi.set(__self__, "defined_tags", defined_tags)
29695
29525
  pulumi.set(__self__, "display_name", display_name)
@@ -29732,14 +29562,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29732
29562
  """
29733
29563
  return pulumi.get(self, "block_volume_replicas")
29734
29564
 
29735
- @property
29736
- @pulumi.getter(name="clusterPlacementGroupId")
29737
- def cluster_placement_group_id(self) -> str:
29738
- """
29739
- The OCID of the cluster placement group of the instance.
29740
- """
29741
- return pulumi.get(self, "cluster_placement_group_id")
29742
-
29743
29565
  @property
29744
29566
  @pulumi.getter(name="compartmentId")
29745
29567
  def compartment_id(self) -> str:
@@ -29904,7 +29726,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29904
29726
  availability_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigResult'],
29905
29727
  availability_domain: str,
29906
29728
  capacity_reservation_id: str,
29907
- cluster_placement_group_id: str,
29908
29729
  compartment_id: str,
29909
29730
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult'],
29910
29731
  dedicated_vm_host_id: str,
@@ -29930,7 +29751,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29930
29751
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
29931
29752
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
29932
29753
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
29933
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
29934
29754
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
29935
29755
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailArgs'] create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
29936
29756
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -29955,7 +29775,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29955
29775
  pulumi.set(__self__, "availability_configs", availability_configs)
29956
29776
  pulumi.set(__self__, "availability_domain", availability_domain)
29957
29777
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
29958
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
29959
29778
  pulumi.set(__self__, "compartment_id", compartment_id)
29960
29779
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
29961
29780
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -30009,14 +29828,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
30009
29828
  """
30010
29829
  return pulumi.get(self, "capacity_reservation_id")
30011
29830
 
30012
- @property
30013
- @pulumi.getter(name="clusterPlacementGroupId")
30014
- def cluster_placement_group_id(self) -> str:
30015
- """
30016
- The OCID of the cluster placement group of the instance.
30017
- """
30018
- return pulumi.get(self, "cluster_placement_group_id")
30019
-
30020
29831
  @property
30021
29832
  @pulumi.getter(name="compartmentId")
30022
29833
  def compartment_id(self) -> str:
@@ -31097,7 +30908,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31097
30908
  availability_domain: str,
31098
30909
  backup_policy_id: str,
31099
30910
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailBlockVolumeReplicaResult'],
31100
- cluster_placement_group_id: str,
31101
30911
  compartment_id: str,
31102
30912
  defined_tags: Mapping[str, Any],
31103
30913
  display_name: str,
@@ -31112,7 +30922,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31112
30922
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
31113
30923
  :param str backup_policy_id: If provided, specifies the ID of the volume backup policy to assign to the newly created volume. If omitted, no policy will be assigned.
31114
30924
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailBlockVolumeReplicaArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
31115
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
31116
30925
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
31117
30926
  :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). Example: `{"Operations.CostCenter": "42"}`
31118
30927
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -31126,7 +30935,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31126
30935
  pulumi.set(__self__, "availability_domain", availability_domain)
31127
30936
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
31128
30937
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
31129
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
31130
30938
  pulumi.set(__self__, "compartment_id", compartment_id)
31131
30939
  pulumi.set(__self__, "defined_tags", defined_tags)
31132
30940
  pulumi.set(__self__, "display_name", display_name)
@@ -31169,14 +30977,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
31169
30977
  """
31170
30978
  return pulumi.get(self, "block_volume_replicas")
31171
30979
 
31172
- @property
31173
- @pulumi.getter(name="clusterPlacementGroupId")
31174
- def cluster_placement_group_id(self) -> str:
31175
- """
31176
- The OCID of the cluster placement group of the instance.
31177
- """
31178
- return pulumi.get(self, "cluster_placement_group_id")
31179
-
31180
30980
  @property
31181
30981
  @pulumi.getter(name="compartmentId")
31182
30982
  def compartment_id(self) -> str:
@@ -31341,7 +31141,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31341
31141
  availability_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigResult'],
31342
31142
  availability_domain: str,
31343
31143
  capacity_reservation_id: str,
31344
- cluster_placement_group_id: str,
31345
31144
  compartment_id: str,
31346
31145
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailResult'],
31347
31146
  dedicated_vm_host_id: str,
@@ -31367,7 +31166,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31367
31166
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
31368
31167
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
31369
31168
  :param str capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
31370
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
31371
31169
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
31372
31170
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailArgs'] create_vnic_details: Contains the properties of the VNIC for an instance configuration. See [CreateVnicDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/CreateVnicDetails/) and [Instance Configurations](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/instancemanagement.htm#config) for more information.
31373
31171
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -31392,7 +31190,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31392
31190
  pulumi.set(__self__, "availability_configs", availability_configs)
31393
31191
  pulumi.set(__self__, "availability_domain", availability_domain)
31394
31192
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
31395
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
31396
31193
  pulumi.set(__self__, "compartment_id", compartment_id)
31397
31194
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
31398
31195
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -31446,14 +31243,6 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31446
31243
  """
31447
31244
  return pulumi.get(self, "capacity_reservation_id")
31448
31245
 
31449
- @property
31450
- @pulumi.getter(name="clusterPlacementGroupId")
31451
- def cluster_placement_group_id(self) -> str:
31452
- """
31453
- The OCID of the cluster placement group of the instance.
31454
- """
31455
- return pulumi.get(self, "cluster_placement_group_id")
31456
-
31457
31246
  @property
31458
31247
  @pulumi.getter(name="compartmentId")
31459
31248
  def compartment_id(self) -> str:
@@ -33947,6 +33736,7 @@ class GetInstancePoolPlacementConfigurationResult(dict):
33947
33736
  """
33948
33737
  :param str availability_domain: The availability domain to place instances. Example: `Uocm:PHX-AD-1`
33949
33738
  :param Sequence[str] fault_domains: The fault domains to place instances.
33739
+ :param str primary_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
33950
33740
  :param Sequence['GetInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs'] primary_vnic_subnets: Details about the IPv6 primary subnet.
33951
33741
  :param Sequence['GetInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: The set of secondary VNIC data for instances in the pool.
33952
33742
  """
@@ -33975,6 +33765,9 @@ class GetInstancePoolPlacementConfigurationResult(dict):
33975
33765
  @property
33976
33766
  @pulumi.getter(name="primarySubnetId")
33977
33767
  def primary_subnet_id(self) -> str:
33768
+ """
33769
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
33770
+ """
33978
33771
  return pulumi.get(self, "primary_subnet_id")
33979
33772
 
33980
33773
  @property
@@ -34400,6 +34193,7 @@ class GetInstancePoolsInstancePoolPlacementConfigurationResult(dict):
34400
34193
  """
34401
34194
  :param str availability_domain: The availability domain to place instances. Example: `Uocm:PHX-AD-1`
34402
34195
  :param Sequence[str] fault_domains: The fault domains to place instances.
34196
+ :param str primary_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
34403
34197
  :param Sequence['GetInstancePoolsInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs'] primary_vnic_subnets: Details about the IPv6 primary subnet.
34404
34198
  :param Sequence['GetInstancePoolsInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: The set of secondary VNIC data for instances in the pool.
34405
34199
  """
@@ -34428,6 +34222,9 @@ class GetInstancePoolsInstancePoolPlacementConfigurationResult(dict):
34428
34222
  @property
34429
34223
  @pulumi.getter(name="primarySubnetId")
34430
34224
  def primary_subnet_id(self) -> str:
34225
+ """
34226
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the primary subnet to place instances. This field is deprecated. Use `primaryVnicSubnets` instead to set VNIC data for instances in the pool.
34227
+ """
34431
34228
  return pulumi.get(self, "primary_subnet_id")
34432
34229
 
34433
34230
  @property
@@ -34773,7 +34570,6 @@ class GetInstanceSourceDetailResult(dict):
34773
34570
  boot_volume_size_in_gbs: str,
34774
34571
  boot_volume_vpus_per_gb: str,
34775
34572
  instance_source_image_filter_details: Sequence['outputs.GetInstanceSourceDetailInstanceSourceImageFilterDetailResult'],
34776
- is_preserve_boot_volume_enabled: bool,
34777
34573
  kms_key_id: str,
34778
34574
  source_id: str,
34779
34575
  source_type: str):
@@ -34788,7 +34584,6 @@ class GetInstanceSourceDetailResult(dict):
34788
34584
  pulumi.set(__self__, "boot_volume_size_in_gbs", boot_volume_size_in_gbs)
34789
34585
  pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
34790
34586
  pulumi.set(__self__, "instance_source_image_filter_details", instance_source_image_filter_details)
34791
- pulumi.set(__self__, "is_preserve_boot_volume_enabled", is_preserve_boot_volume_enabled)
34792
34587
  pulumi.set(__self__, "kms_key_id", kms_key_id)
34793
34588
  pulumi.set(__self__, "source_id", source_id)
34794
34589
  pulumi.set(__self__, "source_type", source_type)
@@ -34817,11 +34612,6 @@ class GetInstanceSourceDetailResult(dict):
34817
34612
  """
34818
34613
  return pulumi.get(self, "instance_source_image_filter_details")
34819
34614
 
34820
- @property
34821
- @pulumi.getter(name="isPreserveBootVolumeEnabled")
34822
- def is_preserve_boot_volume_enabled(self) -> bool:
34823
- return pulumi.get(self, "is_preserve_boot_volume_enabled")
34824
-
34825
34615
  @property
34826
34616
  @pulumi.getter(name="kmsKeyId")
34827
34617
  def kms_key_id(self) -> str:
@@ -34940,7 +34730,6 @@ class GetInstancesInstanceResult(dict):
34940
34730
  availability_domain: str,
34941
34731
  boot_volume_id: str,
34942
34732
  capacity_reservation_id: str,
34943
- cluster_placement_group_id: str,
34944
34733
  compartment_id: str,
34945
34734
  compute_cluster_id: str,
34946
34735
  create_vnic_details: Sequence['outputs.GetInstancesInstanceCreateVnicDetailResult'],
@@ -34984,7 +34773,6 @@ class GetInstancesInstanceResult(dict):
34984
34773
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
34985
34774
  :param str boot_volume_id: The OCID of the attached boot volume. If the `source_type` is `bootVolume`, this will be the same OCID as the `source_id`.
34986
34775
  :param str capacity_reservation_id: The OCID of the compute capacity reservation.
34987
- :param str cluster_placement_group_id: The OCID of the cluster placement group of the instance.
34988
34776
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
34989
34777
  :param str compute_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compute cluster. A [compute cluster](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/compute-clusters.htm) is a remote direct memory access (RDMA) network group.
34990
34778
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host that the instance is placed on.
@@ -35020,7 +34808,6 @@ class GetInstancesInstanceResult(dict):
35020
34808
  pulumi.set(__self__, "availability_domain", availability_domain)
35021
34809
  pulumi.set(__self__, "boot_volume_id", boot_volume_id)
35022
34810
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
35023
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
35024
34811
  pulumi.set(__self__, "compartment_id", compartment_id)
35025
34812
  pulumi.set(__self__, "compute_cluster_id", compute_cluster_id)
35026
34813
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
@@ -35104,14 +34891,6 @@ class GetInstancesInstanceResult(dict):
35104
34891
  """
35105
34892
  return pulumi.get(self, "capacity_reservation_id")
35106
34893
 
35107
- @property
35108
- @pulumi.getter(name="clusterPlacementGroupId")
35109
- def cluster_placement_group_id(self) -> str:
35110
- """
35111
- The OCID of the cluster placement group of the instance.
35112
- """
35113
- return pulumi.get(self, "cluster_placement_group_id")
35114
-
35115
34894
  @property
35116
34895
  @pulumi.getter(name="compartmentId")
35117
34896
  def compartment_id(self) -> str:
@@ -36204,7 +35983,6 @@ class GetInstancesInstanceSourceDetailResult(dict):
36204
35983
  boot_volume_size_in_gbs: str,
36205
35984
  boot_volume_vpus_per_gb: str,
36206
35985
  instance_source_image_filter_details: Sequence['outputs.GetInstancesInstanceSourceDetailInstanceSourceImageFilterDetailResult'],
36207
- is_preserve_boot_volume_enabled: bool,
36208
35986
  kms_key_id: str,
36209
35987
  source_id: str,
36210
35988
  source_type: str):
@@ -36219,7 +35997,6 @@ class GetInstancesInstanceSourceDetailResult(dict):
36219
35997
  pulumi.set(__self__, "boot_volume_size_in_gbs", boot_volume_size_in_gbs)
36220
35998
  pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
36221
35999
  pulumi.set(__self__, "instance_source_image_filter_details", instance_source_image_filter_details)
36222
- pulumi.set(__self__, "is_preserve_boot_volume_enabled", is_preserve_boot_volume_enabled)
36223
36000
  pulumi.set(__self__, "kms_key_id", kms_key_id)
36224
36001
  pulumi.set(__self__, "source_id", source_id)
36225
36002
  pulumi.set(__self__, "source_type", source_type)
@@ -36248,11 +36025,6 @@ class GetInstancesInstanceSourceDetailResult(dict):
36248
36025
  """
36249
36026
  return pulumi.get(self, "instance_source_image_filter_details")
36250
36027
 
36251
- @property
36252
- @pulumi.getter(name="isPreserveBootVolumeEnabled")
36253
- def is_preserve_boot_volume_enabled(self) -> bool:
36254
- return pulumi.get(self, "is_preserve_boot_volume_enabled")
36255
-
36256
36028
  @property
36257
36029
  @pulumi.getter(name="kmsKeyId")
36258
36030
  def kms_key_id(self) -> str:
@@ -45051,7 +44823,6 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
45051
44823
  is_pv_encryption_in_transit_enabled: bool,
45052
44824
  is_read_only: bool,
45053
44825
  is_shareable: bool,
45054
- is_volume_created_during_launch: bool,
45055
44826
  iscsi_login_state: str,
45056
44827
  multipath_devices: Sequence['outputs.GetVolumeAttachmentsVolumeAttachmentMultipathDeviceResult'],
45057
44828
  port: int,
@@ -45076,7 +44847,6 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
45076
44847
  :param bool is_multipath: Whether the Iscsi or Paravirtualized attachment is multipath or not, it is not applicable to NVMe attachment.
45077
44848
  :param bool is_pv_encryption_in_transit_enabled: Whether in-transit encryption for the data volume's paravirtualized attachment is enabled or not.
45078
44849
  :param bool is_read_only: Whether the attachment was created in read-only mode.
45079
- :param bool is_volume_created_during_launch: Flag indicating if this volume was created for the customer as part of a simplified launch. Used to determine whether the volume requires deletion on instance termination.
45080
44850
  :param str iscsi_login_state: The iscsi login state of the volume attachment. For a Iscsi volume attachment, all iscsi sessions need to be all logged-in or logged-out to be in logged-in or logged-out state.
45081
44851
  :param Sequence['GetVolumeAttachmentsVolumeAttachmentMultipathDeviceArgs'] multipath_devices: A list of secondary multipath devices
45082
44852
  :param int port: The volume's iSCSI port, usually port 860 or 3260. Example: `3260`
@@ -45101,7 +44871,6 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
45101
44871
  pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
45102
44872
  pulumi.set(__self__, "is_read_only", is_read_only)
45103
44873
  pulumi.set(__self__, "is_shareable", is_shareable)
45104
- pulumi.set(__self__, "is_volume_created_during_launch", is_volume_created_during_launch)
45105
44874
  pulumi.set(__self__, "iscsi_login_state", iscsi_login_state)
45106
44875
  pulumi.set(__self__, "multipath_devices", multipath_devices)
45107
44876
  pulumi.set(__self__, "port", port)
@@ -45246,14 +45015,6 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
45246
45015
  def is_shareable(self) -> bool:
45247
45016
  return pulumi.get(self, "is_shareable")
45248
45017
 
45249
- @property
45250
- @pulumi.getter(name="isVolumeCreatedDuringLaunch")
45251
- def is_volume_created_during_launch(self) -> bool:
45252
- """
45253
- Flag indicating if this volume was created for the customer as part of a simplified launch. Used to determine whether the volume requires deletion on instance termination.
45254
- """
45255
- return pulumi.get(self, "is_volume_created_during_launch")
45256
-
45257
45018
  @property
45258
45019
  @pulumi.getter(name="iscsiLoginState")
45259
45020
  def iscsi_login_state(self) -> str:
@@ -46543,7 +46304,6 @@ class GetVolumeGroupsVolumeGroupResult(dict):
46543
46304
  def __init__(__self__, *,
46544
46305
  availability_domain: str,
46545
46306
  backup_policy_id: str,
46546
- cluster_placement_group_id: str,
46547
46307
  compartment_id: str,
46548
46308
  defined_tags: Mapping[str, Any],
46549
46309
  display_name: str,
@@ -46577,7 +46337,6 @@ class GetVolumeGroupsVolumeGroupResult(dict):
46577
46337
  """
46578
46338
  pulumi.set(__self__, "availability_domain", availability_domain)
46579
46339
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
46580
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
46581
46340
  pulumi.set(__self__, "compartment_id", compartment_id)
46582
46341
  pulumi.set(__self__, "defined_tags", defined_tags)
46583
46342
  pulumi.set(__self__, "display_name", display_name)
@@ -46610,11 +46369,6 @@ class GetVolumeGroupsVolumeGroupResult(dict):
46610
46369
 
46611
46370
  return pulumi.get(self, "backup_policy_id")
46612
46371
 
46613
- @property
46614
- @pulumi.getter(name="clusterPlacementGroupId")
46615
- def cluster_placement_group_id(self) -> str:
46616
- return pulumi.get(self, "cluster_placement_group_id")
46617
-
46618
46372
  @property
46619
46373
  @pulumi.getter(name="compartmentId")
46620
46374
  def compartment_id(self) -> str:
@@ -46897,7 +46651,6 @@ class GetVolumesVolumeResult(dict):
46897
46651
  backup_policy_id: str,
46898
46652
  block_volume_replicas: Sequence['outputs.GetVolumesVolumeBlockVolumeReplicaResult'],
46899
46653
  block_volume_replicas_deletion: bool,
46900
- cluster_placement_group_id: str,
46901
46654
  compartment_id: str,
46902
46655
  defined_tags: Mapping[str, Any],
46903
46656
  display_name: str,
@@ -46920,7 +46673,6 @@ class GetVolumesVolumeResult(dict):
46920
46673
  :param Sequence['GetVolumesVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
46921
46674
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
46922
46675
  :param Sequence['GetVolumesVolumeBlockVolumeReplicaArgs'] block_volume_replicas: The list of block volume replicas of this volume.
46923
- :param str cluster_placement_group_id: A filter to return only resources that match the given cluster placement group Id exactly.
46924
46676
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
46925
46677
  :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). Example: `{"Operations.CostCenter": "42"}`
46926
46678
  :param str display_name: A filter to return only resources that match the given display name exactly.
@@ -46943,7 +46695,6 @@ class GetVolumesVolumeResult(dict):
46943
46695
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
46944
46696
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
46945
46697
  pulumi.set(__self__, "block_volume_replicas_deletion", block_volume_replicas_deletion)
46946
- pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
46947
46698
  pulumi.set(__self__, "compartment_id", compartment_id)
46948
46699
  pulumi.set(__self__, "defined_tags", defined_tags)
46949
46700
  pulumi.set(__self__, "display_name", display_name)
@@ -47007,14 +46758,6 @@ class GetVolumesVolumeResult(dict):
47007
46758
  def block_volume_replicas_deletion(self) -> bool:
47008
46759
  return pulumi.get(self, "block_volume_replicas_deletion")
47009
46760
 
47010
- @property
47011
- @pulumi.getter(name="clusterPlacementGroupId")
47012
- def cluster_placement_group_id(self) -> str:
47013
- """
47014
- A filter to return only resources that match the given cluster placement group Id exactly.
47015
- """
47016
- return pulumi.get(self, "cluster_placement_group_id")
47017
-
47018
46761
  @property
47019
46762
  @pulumi.getter(name="compartmentId")
47020
46763
  def compartment_id(self) -> str: