pulumi-oci 1.33.0a1713903118__py3-none-any.whl → 1.34.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. pulumi_oci/__init__.py +51 -0
  2. pulumi_oci/clusterplacementgroups/__init__.py +12 -0
  3. pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
  4. pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
  5. pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
  6. pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
  7. pulumi_oci/clusterplacementgroups/outputs.py +485 -0
  8. pulumi_oci/config/__init__.pyi +2 -2
  9. pulumi_oci/config/vars.py +2 -2
  10. pulumi_oci/core/_inputs.py +116 -28
  11. pulumi_oci/core/boot_volume.py +49 -0
  12. pulumi_oci/core/compute_capacity_reservation.py +2 -0
  13. pulumi_oci/core/compute_cluster.py +2 -4
  14. pulumi_oci/core/drg_route_distribution.py +7 -7
  15. pulumi_oci/core/get_boot_volume.py +14 -1
  16. pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
  17. pulumi_oci/core/get_instance.py +14 -1
  18. pulumi_oci/core/get_subnet.py +2 -2
  19. pulumi_oci/core/get_vcn.py +2 -2
  20. pulumi_oci/core/get_volume.py +14 -1
  21. pulumi_oci/core/get_volumes.py +21 -1
  22. pulumi_oci/core/instance.py +51 -4
  23. pulumi_oci/core/instance_configuration.py +8 -0
  24. pulumi_oci/core/outputs.py +302 -45
  25. pulumi_oci/core/volume.py +49 -0
  26. pulumi_oci/core/volume_attachment.py +28 -0
  27. pulumi_oci/core/volume_group.py +49 -0
  28. pulumi_oci/database/db_home.py +47 -0
  29. pulumi_oci/database/get_db_home.py +14 -1
  30. pulumi_oci/database/outputs.py +11 -0
  31. pulumi_oci/databasemanagement/__init__.py +5 -0
  32. pulumi_oci/databasemanagement/_inputs.py +1207 -2
  33. pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
  34. pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
  35. pulumi_oci/databasemanagement/external_asm.py +28 -0
  36. pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
  37. pulumi_oci/databasemanagement/external_cluster.py +28 -0
  38. pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
  39. pulumi_oci/databasemanagement/external_db_home.py +28 -0
  40. pulumi_oci/databasemanagement/external_db_node.py +28 -0
  41. pulumi_oci/databasemanagement/external_db_system.py +28 -0
  42. pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
  43. pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
  44. pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
  45. pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
  46. pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
  47. pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
  48. pulumi_oci/databasemanagement/external_listener.py +28 -0
  49. pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
  50. pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
  51. pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
  52. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  53. pulumi_oci/databasemanagement/get_external_asm.py +14 -1
  54. pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
  55. pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
  56. pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
  57. pulumi_oci/databasemanagement/get_external_databases.py +18 -1
  58. pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
  59. pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
  60. pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
  61. pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
  62. pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
  63. pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
  64. pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
  65. pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
  66. pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
  67. pulumi_oci/databasemanagement/get_external_listener.py +14 -1
  68. pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
  69. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
  70. pulumi_oci/databasemanagement/get_named_credential.py +14 -1
  71. pulumi_oci/databasemanagement/managed_database.py +28 -0
  72. pulumi_oci/databasemanagement/managed_database_group.py +28 -0
  73. pulumi_oci/databasemanagement/named_credential.py +28 -0
  74. pulumi_oci/databasemanagement/outputs.py +1723 -214
  75. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
  76. pulumi_oci/databasemigration/_inputs.py +20 -0
  77. pulumi_oci/databasemigration/connection.py +13 -0
  78. pulumi_oci/databasemigration/get_connection.py +3 -0
  79. pulumi_oci/databasemigration/get_migration.py +3 -0
  80. pulumi_oci/databasemigration/migration.py +13 -0
  81. pulumi_oci/databasemigration/outputs.py +68 -0
  82. pulumi_oci/datasafe/__init__.py +3 -0
  83. pulumi_oci/datasafe/_inputs.py +80 -0
  84. pulumi_oci/datasafe/get_masking_policy.py +11 -1
  85. pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
  86. pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
  87. pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
  88. pulumi_oci/datasafe/masking_policy.py +75 -28
  89. pulumi_oci/datasafe/outputs.py +287 -0
  90. pulumi_oci/networkloadbalancer/backend_set.py +49 -0
  91. pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
  92. pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
  93. pulumi_oci/networkloadbalancer/outputs.py +11 -0
  94. pulumi_oci/provider.py +8 -8
  95. pulumi_oci/recoverymod/_inputs.py +16 -0
  96. pulumi_oci/recoverymod/get_protected_database.py +25 -5
  97. pulumi_oci/recoverymod/get_protection_policies.py +1 -7
  98. pulumi_oci/recoverymod/get_protection_policy.py +15 -8
  99. pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
  100. pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
  101. pulumi_oci/recoverymod/outputs.py +96 -24
  102. pulumi_oci/recoverymod/protected_database.py +95 -16
  103. pulumi_oci/recoverymod/protection_policy.py +121 -54
  104. pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
  105. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
  107. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
  108. {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
@@ -2967,6 +2967,8 @@ 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"
2970
2972
  elif key == "faultDomain":
2971
2973
  suggest = "fault_domain"
2972
2974
  elif key == "instanceShapeConfig":
@@ -2989,6 +2991,7 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2989
2991
  instance_shape: str,
2990
2992
  reserved_count: str,
2991
2993
  cluster_config: Optional['outputs.ComputeCapacityReservationInstanceReservationConfigClusterConfig'] = None,
2994
+ cluster_placement_group_id: Optional[str] = None,
2992
2995
  fault_domain: Optional[str] = None,
2993
2996
  instance_shape_config: Optional['outputs.ComputeCapacityReservationInstanceReservationConfigInstanceShapeConfig'] = None,
2994
2997
  used_count: Optional[str] = None):
@@ -2997,6 +3000,7 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
2997
3000
  :param str reserved_count: (Updatable) The total number of instances that can be launched from the capacity configuration.
2998
3001
  :param 'ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs' cluster_config: (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
2999
3002
 
3003
+ <<<<<<< HEAD
3000
3004
  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.
3001
3005
  :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.
3002
3006
 
@@ -3016,6 +3020,8 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
3016
3020
  pulumi.set(__self__, "reserved_count", reserved_count)
3017
3021
  if cluster_config is not None:
3018
3022
  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)
3019
3025
  if fault_domain is not None:
3020
3026
  pulumi.set(__self__, "fault_domain", fault_domain)
3021
3027
  if instance_shape_config is not None:
@@ -3045,10 +3051,16 @@ class ComputeCapacityReservationInstanceReservationConfig(dict):
3045
3051
  """
3046
3052
  (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
3047
3053
 
3054
+ <<<<<<< HEAD
3048
3055
  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.
3049
3056
  """
3050
3057
  return pulumi.get(self, "cluster_config")
3051
3058
 
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
+
3052
3064
  @property
3053
3065
  @pulumi.getter(name="faultDomain")
3054
3066
  def fault_domain(self) -> Optional[str]:
@@ -5406,6 +5418,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5406
5418
  suggest = "backup_policy_id"
5407
5419
  elif key == "blockVolumeReplicas":
5408
5420
  suggest = "block_volume_replicas"
5421
+ elif key == "clusterPlacementGroupId":
5422
+ suggest = "cluster_placement_group_id"
5409
5423
  elif key == "compartmentId":
5410
5424
  suggest = "compartment_id"
5411
5425
  elif key == "definedTags":
@@ -5441,6 +5455,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5441
5455
  availability_domain: Optional[str] = None,
5442
5456
  backup_policy_id: Optional[str] = None,
5443
5457
  block_volume_replicas: Optional['outputs.InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicas'] = None,
5458
+ cluster_placement_group_id: Optional[str] = None,
5444
5459
  compartment_id: Optional[str] = None,
5445
5460
  defined_tags: Optional[Mapping[str, Any]] = None,
5446
5461
  display_name: Optional[str] = None,
@@ -5452,10 +5467,11 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5452
5467
  vpus_per_gb: Optional[str] = None):
5453
5468
  """
5454
5469
  :param Sequence['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
5455
- :param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
5470
+ :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5456
5471
  :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.
5457
5472
  :param 'InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicasArgs' block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
5458
- :param str compartment_id: The OCID of the compartment that contains the volume.
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
5459
5475
  :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"}`
5460
5476
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
5461
5477
  :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"}`
@@ -5474,6 +5490,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5474
5490
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
5475
5491
  if block_volume_replicas is not None:
5476
5492
  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)
5477
5495
  if compartment_id is not None:
5478
5496
  pulumi.set(__self__, "compartment_id", compartment_id)
5479
5497
  if defined_tags is not None:
@@ -5505,7 +5523,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5505
5523
  @pulumi.getter(name="availabilityDomain")
5506
5524
  def availability_domain(self) -> Optional[str]:
5507
5525
  """
5508
- The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
5526
+ The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5509
5527
  """
5510
5528
  return pulumi.get(self, "availability_domain")
5511
5529
 
@@ -5525,11 +5543,19 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetails(dict):
5525
5543
  """
5526
5544
  return pulumi.get(self, "block_volume_replicas")
5527
5545
 
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
+
5528
5554
  @property
5529
5555
  @pulumi.getter(name="compartmentId")
5530
5556
  def compartment_id(self) -> Optional[str]:
5531
5557
  """
5532
- The OCID of the compartment that contains the volume.
5558
+ (Updatable) The OCID of the compartment containing images to search
5533
5559
  """
5534
5560
  return pulumi.get(self, "compartment_id")
5535
5561
 
@@ -5738,6 +5764,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5738
5764
  suggest = "availability_domain"
5739
5765
  elif key == "capacityReservationId":
5740
5766
  suggest = "capacity_reservation_id"
5767
+ elif key == "clusterPlacementGroupId":
5768
+ suggest = "cluster_placement_group_id"
5741
5769
  elif key == "compartmentId":
5742
5770
  suggest = "compartment_id"
5743
5771
  elif key == "createVnicDetails":
@@ -5791,6 +5819,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5791
5819
  availability_config: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfig'] = None,
5792
5820
  availability_domain: Optional[str] = None,
5793
5821
  capacity_reservation_id: Optional[str] = None,
5822
+ cluster_placement_group_id: Optional[str] = None,
5794
5823
  compartment_id: Optional[str] = None,
5795
5824
  create_vnic_details: Optional['outputs.InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetails'] = None,
5796
5825
  dedicated_vm_host_id: Optional[str] = None,
@@ -5816,6 +5845,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5816
5845
  :param 'InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs' availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
5817
5846
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
5818
5847
  :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.
5819
5849
  :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
5820
5850
  :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.
5821
5851
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -5900,6 +5930,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5900
5930
  pulumi.set(__self__, "availability_domain", availability_domain)
5901
5931
  if capacity_reservation_id is not None:
5902
5932
  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)
5903
5935
  if compartment_id is not None:
5904
5936
  pulumi.set(__self__, "compartment_id", compartment_id)
5905
5937
  if create_vnic_details is not None:
@@ -5973,6 +6005,14 @@ class InstanceConfigurationInstanceDetailsLaunchDetails(dict):
5973
6005
  """
5974
6006
  return pulumi.get(self, "capacity_reservation_id")
5975
6007
 
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
+
5976
6016
  @property
5977
6017
  @pulumi.getter(name="compartmentId")
5978
6018
  def compartment_id(self) -> Optional[str]:
@@ -7602,6 +7642,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7602
7642
  suggest = "backup_policy_id"
7603
7643
  elif key == "blockVolumeReplicas":
7604
7644
  suggest = "block_volume_replicas"
7645
+ elif key == "clusterPlacementGroupId":
7646
+ suggest = "cluster_placement_group_id"
7605
7647
  elif key == "compartmentId":
7606
7648
  suggest = "compartment_id"
7607
7649
  elif key == "definedTags":
@@ -7637,6 +7679,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7637
7679
  availability_domain: Optional[str] = None,
7638
7680
  backup_policy_id: Optional[str] = None,
7639
7681
  block_volume_replicas: Optional['outputs.InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicas'] = None,
7682
+ cluster_placement_group_id: Optional[str] = None,
7640
7683
  compartment_id: Optional[str] = None,
7641
7684
  defined_tags: Optional[Mapping[str, Any]] = None,
7642
7685
  display_name: Optional[str] = None,
@@ -7648,10 +7691,11 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7648
7691
  vpus_per_gb: Optional[str] = None):
7649
7692
  """
7650
7693
  :param Sequence['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
7651
- :param str availability_domain: The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
7694
+ :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7652
7695
  :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.
7653
7696
  :param 'InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs' block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
7654
- :param str compartment_id: The OCID of the compartment that contains the volume.
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
7655
7699
  :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"}`
7656
7700
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
7657
7701
  :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"}`
@@ -7670,6 +7714,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7670
7714
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
7671
7715
  if block_volume_replicas is not None:
7672
7716
  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)
7673
7719
  if compartment_id is not None:
7674
7720
  pulumi.set(__self__, "compartment_id", compartment_id)
7675
7721
  if defined_tags is not None:
@@ -7701,7 +7747,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7701
7747
  @pulumi.getter(name="availabilityDomain")
7702
7748
  def availability_domain(self) -> Optional[str]:
7703
7749
  """
7704
- The availability domain of the block volume replica. Example: `Uocm:PHX-AD-1`
7750
+ The availability domain of the instance. Example: `Uocm:PHX-AD-1`
7705
7751
  """
7706
7752
  return pulumi.get(self, "availability_domain")
7707
7753
 
@@ -7721,11 +7767,19 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetails(dict):
7721
7767
  """
7722
7768
  return pulumi.get(self, "block_volume_replicas")
7723
7769
 
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
+
7724
7778
  @property
7725
7779
  @pulumi.getter(name="compartmentId")
7726
7780
  def compartment_id(self) -> Optional[str]:
7727
7781
  """
7728
- The OCID of the compartment that contains the volume.
7782
+ (Updatable) The OCID of the compartment containing images to search
7729
7783
  """
7730
7784
  return pulumi.get(self, "compartment_id")
7731
7785
 
@@ -7934,6 +7988,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7934
7988
  suggest = "availability_domain"
7935
7989
  elif key == "capacityReservationId":
7936
7990
  suggest = "capacity_reservation_id"
7991
+ elif key == "clusterPlacementGroupId":
7992
+ suggest = "cluster_placement_group_id"
7937
7993
  elif key == "compartmentId":
7938
7994
  suggest = "compartment_id"
7939
7995
  elif key == "createVnicDetails":
@@ -7987,6 +8043,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
7987
8043
  availability_config: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfig'] = None,
7988
8044
  availability_domain: Optional[str] = None,
7989
8045
  capacity_reservation_id: Optional[str] = None,
8046
+ cluster_placement_group_id: Optional[str] = None,
7990
8047
  compartment_id: Optional[str] = None,
7991
8048
  create_vnic_details: Optional['outputs.InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetails'] = None,
7992
8049
  dedicated_vm_host_id: Optional[str] = None,
@@ -8012,6 +8069,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8012
8069
  :param 'InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfigArgs' availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
8013
8070
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
8014
8071
  :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.
8015
8073
  :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
8016
8074
  :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.
8017
8075
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -8096,6 +8154,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8096
8154
  pulumi.set(__self__, "availability_domain", availability_domain)
8097
8155
  if capacity_reservation_id is not None:
8098
8156
  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)
8099
8159
  if compartment_id is not None:
8100
8160
  pulumi.set(__self__, "compartment_id", compartment_id)
8101
8161
  if create_vnic_details is not None:
@@ -8169,6 +8229,14 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetails(dict):
8169
8229
  """
8170
8230
  return pulumi.get(self, "capacity_reservation_id")
8171
8231
 
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
+
8172
8240
  @property
8173
8241
  @pulumi.getter(name="compartmentId")
8174
8242
  def compartment_id(self) -> Optional[str]:
@@ -10206,7 +10274,7 @@ class InstanceCreateVnicDetails(dict):
10206
10274
  :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/).
10207
10275
 
10208
10276
  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).
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).
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)`.
10210
10278
 
10211
10279
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
10212
10280
 
@@ -10335,7 +10403,7 @@ class InstanceCreateVnicDetails(dict):
10335
10403
  @pulumi.getter(name="privateIp")
10336
10404
  def private_ip(self) -> Optional[str]:
10337
10405
  """
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).
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)`.
10339
10407
 
10340
10408
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
10341
10409
 
@@ -10750,7 +10818,7 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails(dict):
10750
10818
  :param str volume_creation_type: Specifies the method for volume creation.
10751
10819
  :param str compartment_id: (Updatable) The OCID of the compartment containing images to search
10752
10820
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
10753
- :param str kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
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.
10754
10822
  :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.
10755
10823
 
10756
10824
  Allowed values:
@@ -10802,7 +10870,7 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails(dict):
10802
10870
  @pulumi.getter(name="kmsKeyId")
10803
10871
  def kms_key_id(self) -> Optional[str]:
10804
10872
  """
10805
- The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10873
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
10806
10874
  """
10807
10875
  return pulumi.get(self, "kms_key_id")
10808
10876
 
@@ -11263,8 +11331,8 @@ class InstancePoolPlacementConfiguration(dict):
11263
11331
 
11264
11332
  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.
11265
11333
 
11334
+ <<<<<<< HEAD
11266
11335
  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.
11268
11336
  :param 'InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs' primary_vnic_subnets: (Updatable) Details about the IPv6 primary subnet.
11269
11337
  :param Sequence['InstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: (Updatable) The set of secondary VNIC data for instances in the pool.
11270
11338
  """
@@ -11298,6 +11366,7 @@ class InstancePoolPlacementConfiguration(dict):
11298
11366
 
11299
11367
  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.
11300
11368
 
11369
+ <<<<<<< HEAD
11301
11370
  Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
11302
11371
  """
11303
11372
  return pulumi.get(self, "fault_domains")
@@ -11305,9 +11374,6 @@ class InstancePoolPlacementConfiguration(dict):
11305
11374
  @property
11306
11375
  @pulumi.getter(name="primarySubnetId")
11307
11376
  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
- """
11311
11377
  return pulumi.get(self, "primary_subnet_id")
11312
11378
 
11313
11379
  @property
@@ -11834,6 +11900,8 @@ class InstanceSourceDetails(dict):
11834
11900
  suggest = "boot_volume_vpus_per_gb"
11835
11901
  elif key == "instanceSourceImageFilterDetails":
11836
11902
  suggest = "instance_source_image_filter_details"
11903
+ elif key == "isPreserveBootVolumeEnabled":
11904
+ suggest = "is_preserve_boot_volume_enabled"
11837
11905
  elif key == "kmsKeyId":
11838
11906
  suggest = "kms_key_id"
11839
11907
  elif key == "sourceId":
@@ -11855,17 +11923,18 @@ class InstanceSourceDetails(dict):
11855
11923
  boot_volume_size_in_gbs: Optional[str] = None,
11856
11924
  boot_volume_vpus_per_gb: Optional[str] = None,
11857
11925
  instance_source_image_filter_details: Optional['outputs.InstanceSourceDetailsInstanceSourceImageFilterDetails'] = None,
11926
+ is_preserve_boot_volume_enabled: Optional[bool] = None,
11858
11927
  kms_key_id: Optional[str] = None,
11859
11928
  source_id: Optional[str] = None):
11860
11929
  """
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.
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.
11862
11931
  :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).
11863
11932
  :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.
11864
11933
 
11865
11934
  Allowed values:
11866
11935
  :param 'InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs' instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
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`.
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.
11869
11938
  """
11870
11939
  pulumi.set(__self__, "source_type", source_type)
11871
11940
  if boot_volume_size_in_gbs is not None:
@@ -11874,6 +11943,8 @@ class InstanceSourceDetails(dict):
11874
11943
  pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
11875
11944
  if instance_source_image_filter_details is not None:
11876
11945
  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)
11877
11948
  if kms_key_id is not None:
11878
11949
  pulumi.set(__self__, "kms_key_id", kms_key_id)
11879
11950
  if source_id is not None:
@@ -11883,7 +11954,7 @@ class InstanceSourceDetails(dict):
11883
11954
  @pulumi.getter(name="sourceType")
11884
11955
  def source_type(self) -> str:
11885
11956
  """
11886
- The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
11957
+ (Updatable) The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
11887
11958
  """
11888
11959
  return pulumi.get(self, "source_type")
11889
11960
 
@@ -11913,11 +11984,16 @@ class InstanceSourceDetails(dict):
11913
11984
  """
11914
11985
  return pulumi.get(self, "instance_source_image_filter_details")
11915
11986
 
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
+
11916
11992
  @property
11917
11993
  @pulumi.getter(name="kmsKeyId")
11918
11994
  def kms_key_id(self) -> Optional[str]:
11919
11995
  """
11920
- The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11996
+ (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
11921
11997
  """
11922
11998
  return pulumi.get(self, "kms_key_id")
11923
11999
 
@@ -11925,7 +12001,7 @@ class InstanceSourceDetails(dict):
11925
12001
  @pulumi.getter(name="sourceId")
11926
12002
  def source_id(self) -> Optional[str]:
11927
12003
  """
11928
- The OCID of an image or a boot volume to use, depending on the value of `source_type`.
12004
+ (Updatable) The OCID of the boot volume used to boot the instance.
11929
12005
  """
11930
12006
  return pulumi.get(self, "source_id")
11931
12007
 
@@ -14198,11 +14274,11 @@ class VnicAttachmentCreateVnicDetails(dict):
14198
14274
  :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"}`
14199
14275
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
14200
14276
  :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"}`
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).
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)`.
14202
14278
 
14203
14279
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
14204
14280
 
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.
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.
14206
14282
 
14207
14283
  Example: `bminstance1`
14208
14284
 
@@ -14211,7 +14287,7 @@ class VnicAttachmentCreateVnicDetails(dict):
14211
14287
  :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/).
14212
14288
 
14213
14289
  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).
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).
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)`.
14215
14291
 
14216
14292
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
14217
14293
 
@@ -14317,11 +14393,11 @@ class VnicAttachmentCreateVnicDetails(dict):
14317
14393
  @pulumi.getter(name="hostnameLabel")
14318
14394
  def hostname_label(self) -> Optional[str]:
14319
14395
  """
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).
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)`.
14321
14397
 
14322
14398
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
14323
14399
 
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.
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.
14325
14401
 
14326
14402
  Example: `bminstance1`
14327
14403
 
@@ -14351,7 +14427,7 @@ class VnicAttachmentCreateVnicDetails(dict):
14351
14427
  @pulumi.getter(name="privateIp")
14352
14428
  def private_ip(self) -> Optional[str]:
14353
14429
  """
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).
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)`.
14355
14431
 
14356
14432
  If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
14357
14433
 
@@ -15670,7 +15746,8 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15670
15746
  instance_id: str,
15671
15747
  is_pv_encryption_in_transit_enabled: bool,
15672
15748
  state: str,
15673
- time_created: str):
15749
+ time_created: str,
15750
+ time_updated: str):
15674
15751
  """
15675
15752
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
15676
15753
  :param str boot_volume_id: The OCID of the boot volume.
@@ -15682,6 +15759,7 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15682
15759
  :param bool is_pv_encryption_in_transit_enabled: Whether in-transit encryption for the boot volume's paravirtualized attachment is enabled or not.
15683
15760
  :param str state: The current state of the boot volume attachment.
15684
15761
  :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`
15685
15763
  """
15686
15764
  pulumi.set(__self__, "availability_domain", availability_domain)
15687
15765
  pulumi.set(__self__, "boot_volume_id", boot_volume_id)
@@ -15693,6 +15771,7 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15693
15771
  pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
15694
15772
  pulumi.set(__self__, "state", state)
15695
15773
  pulumi.set(__self__, "time_created", time_created)
15774
+ pulumi.set(__self__, "time_updated", time_updated)
15696
15775
 
15697
15776
  @property
15698
15777
  @pulumi.getter(name="availabilityDomain")
@@ -15774,6 +15853,14 @@ class GetBootVolumeAttachmentsBootVolumeAttachmentResult(dict):
15774
15853
  """
15775
15854
  return pulumi.get(self, "time_created")
15776
15855
 
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
+
15777
15864
 
15778
15865
  @pulumi.output_type
15779
15866
  class GetBootVolumeAttachmentsFilterResult(dict):
@@ -16393,6 +16480,7 @@ class GetBootVolumesBootVolumeResult(dict):
16393
16480
  backup_policy_id: str,
16394
16481
  boot_volume_replicas: Sequence['outputs.GetBootVolumesBootVolumeBootVolumeReplicaResult'],
16395
16482
  boot_volume_replicas_deletion: bool,
16483
+ cluster_placement_group_id: str,
16396
16484
  compartment_id: str,
16397
16485
  defined_tags: Mapping[str, Any],
16398
16486
  display_name: str,
@@ -16415,6 +16503,7 @@ class GetBootVolumesBootVolumeResult(dict):
16415
16503
  :param Sequence['GetBootVolumesBootVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
16416
16504
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
16417
16505
  :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.
16418
16507
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
16419
16508
  :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"}`
16420
16509
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -16438,6 +16527,7 @@ class GetBootVolumesBootVolumeResult(dict):
16438
16527
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
16439
16528
  pulumi.set(__self__, "boot_volume_replicas", boot_volume_replicas)
16440
16529
  pulumi.set(__self__, "boot_volume_replicas_deletion", boot_volume_replicas_deletion)
16530
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
16441
16531
  pulumi.set(__self__, "compartment_id", compartment_id)
16442
16532
  pulumi.set(__self__, "defined_tags", defined_tags)
16443
16533
  pulumi.set(__self__, "display_name", display_name)
@@ -16501,6 +16591,14 @@ class GetBootVolumesBootVolumeResult(dict):
16501
16591
  def boot_volume_replicas_deletion(self) -> bool:
16502
16592
  return pulumi.get(self, "boot_volume_replicas_deletion")
16503
16593
 
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
+
16504
16602
  @property
16505
16603
  @pulumi.getter(name="compartmentId")
16506
16604
  def compartment_id(self) -> str:
@@ -20163,6 +20261,7 @@ class GetClusterNetworksFilterResult(dict):
20163
20261
  class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20164
20262
  def __init__(__self__, *,
20165
20263
  cluster_configs: Sequence['outputs.GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult'],
20264
+ cluster_placement_group_id: str,
20166
20265
  fault_domain: str,
20167
20266
  instance_shape: str,
20168
20267
  instance_shape_configs: Sequence['outputs.GetComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigResult'],
@@ -20177,6 +20276,7 @@ class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20177
20276
  :param str used_count: The amount of capacity in use out of the total capacity reserved in this capacity configuration.
20178
20277
  """
20179
20278
  pulumi.set(__self__, "cluster_configs", cluster_configs)
20279
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20180
20280
  pulumi.set(__self__, "fault_domain", fault_domain)
20181
20281
  pulumi.set(__self__, "instance_shape", instance_shape)
20182
20282
  pulumi.set(__self__, "instance_shape_configs", instance_shape_configs)
@@ -20191,6 +20291,11 @@ class GetComputeCapacityReservationInstanceReservationConfigResult(dict):
20191
20291
  """
20192
20292
  return pulumi.get(self, "cluster_configs")
20193
20293
 
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
+
20194
20299
  @property
20195
20300
  @pulumi.getter(name="faultDomain")
20196
20301
  def fault_domain(self) -> str:
@@ -20238,8 +20343,8 @@ class GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult(
20238
20343
  hpc_island_id: str,
20239
20344
  network_block_ids: Sequence[str]):
20240
20345
  """
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.
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.
20243
20348
  """
20244
20349
  pulumi.set(__self__, "hpc_island_id", hpc_island_id)
20245
20350
  pulumi.set(__self__, "network_block_ids", network_block_ids)
@@ -20248,7 +20353,7 @@ class GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult(
20248
20353
  @pulumi.getter(name="hpcIslandId")
20249
20354
  def hpc_island_id(self) -> str:
20250
20355
  """
20251
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HpcIsland.
20356
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HPC island.
20252
20357
  """
20253
20358
  return pulumi.get(self, "hpc_island_id")
20254
20359
 
@@ -20256,7 +20361,7 @@ class GetComputeCapacityReservationInstanceReservationConfigClusterConfigResult(
20256
20361
  @pulumi.getter(name="networkBlockIds")
20257
20362
  def network_block_ids(self) -> Sequence[str]:
20258
20363
  """
20259
- The list of OCID of the network blocks.
20364
+ The list of OCIDs of the network blocks.
20260
20365
  """
20261
20366
  return pulumi.get(self, "network_block_ids")
20262
20367
 
@@ -20350,6 +20455,7 @@ class GetComputeCapacityReservationInstanceShapesFilterResult(dict):
20350
20455
  class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(dict):
20351
20456
  def __init__(__self__, *,
20352
20457
  availability_domain: str,
20458
+ cluster_placement_group_id: str,
20353
20459
  compartment_id: str,
20354
20460
  fault_domain: str,
20355
20461
  id: str,
@@ -20357,6 +20463,7 @@ class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(di
20357
20463
  shape_configs: Sequence['outputs.GetComputeCapacityReservationInstancesCapacityReservationInstanceShapeConfigResult']):
20358
20464
  """
20359
20465
  :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.
20360
20467
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
20361
20468
  :param str fault_domain: The fault domain the instance is running in.
20362
20469
  :param str id: The OCID of the instance.
@@ -20364,6 +20471,7 @@ class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(di
20364
20471
  :param Sequence['GetComputeCapacityReservationInstancesCapacityReservationInstanceShapeConfigArgs'] shape_configs: The shape configuration requested when launching instances in a compute capacity reservation.
20365
20472
  """
20366
20473
  pulumi.set(__self__, "availability_domain", availability_domain)
20474
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20367
20475
  pulumi.set(__self__, "compartment_id", compartment_id)
20368
20476
  pulumi.set(__self__, "fault_domain", fault_domain)
20369
20477
  pulumi.set(__self__, "id", id)
@@ -20378,6 +20486,14 @@ class GetComputeCapacityReservationInstancesCapacityReservationInstanceResult(di
20378
20486
  """
20379
20487
  return pulumi.get(self, "availability_domain")
20380
20488
 
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
+
20381
20497
  @property
20382
20498
  @pulumi.getter(name="compartmentId")
20383
20499
  def compartment_id(self) -> str:
@@ -20629,6 +20745,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationResult(dict):
20629
20745
  class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigResult(dict):
20630
20746
  def __init__(__self__, *,
20631
20747
  cluster_configs: Sequence['outputs.GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigClusterConfigResult'],
20748
+ cluster_placement_group_id: str,
20632
20749
  fault_domain: str,
20633
20750
  instance_shape: str,
20634
20751
  instance_shape_configs: Sequence['outputs.GetComputeCapacityReservationsComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigResult'],
@@ -20643,6 +20760,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20643
20760
  :param str used_count: The amount of capacity in use out of the total capacity reserved in this capacity configuration.
20644
20761
  """
20645
20762
  pulumi.set(__self__, "cluster_configs", cluster_configs)
20763
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
20646
20764
  pulumi.set(__self__, "fault_domain", fault_domain)
20647
20765
  pulumi.set(__self__, "instance_shape", instance_shape)
20648
20766
  pulumi.set(__self__, "instance_shape_configs", instance_shape_configs)
@@ -20657,6 +20775,11 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20657
20775
  """
20658
20776
  return pulumi.get(self, "cluster_configs")
20659
20777
 
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
+
20660
20783
  @property
20661
20784
  @pulumi.getter(name="faultDomain")
20662
20785
  def fault_domain(self) -> str:
@@ -20704,8 +20827,8 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20704
20827
  hpc_island_id: str,
20705
20828
  network_block_ids: Sequence[str]):
20706
20829
  """
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.
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.
20709
20832
  """
20710
20833
  pulumi.set(__self__, "hpc_island_id", hpc_island_id)
20711
20834
  pulumi.set(__self__, "network_block_ids", network_block_ids)
@@ -20714,7 +20837,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20714
20837
  @pulumi.getter(name="hpcIslandId")
20715
20838
  def hpc_island_id(self) -> str:
20716
20839
  """
20717
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HpcIsland.
20840
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the HPC island.
20718
20841
  """
20719
20842
  return pulumi.get(self, "hpc_island_id")
20720
20843
 
@@ -20722,7 +20845,7 @@ class GetComputeCapacityReservationsComputeCapacityReservationInstanceReservatio
20722
20845
  @pulumi.getter(name="networkBlockIds")
20723
20846
  def network_block_ids(self) -> Sequence[str]:
20724
20847
  """
20725
- The list of OCID of the network blocks.
20848
+ The list of OCIDs of the network blocks.
20726
20849
  """
20727
20850
  return pulumi.get(self, "network_block_ids")
20728
20851
 
@@ -26098,6 +26221,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26098
26221
  availability_domain: str,
26099
26222
  backup_policy_id: str,
26100
26223
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailBlockVolumeReplicaResult'],
26224
+ cluster_placement_group_id: str,
26101
26225
  compartment_id: str,
26102
26226
  defined_tags: Mapping[str, Any],
26103
26227
  display_name: str,
@@ -26112,6 +26236,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26112
26236
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
26113
26237
  :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.
26114
26238
  :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.
26115
26240
  :param str compartment_id: The OCID of the compartment containing images to search
26116
26241
  :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"}`
26117
26242
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -26125,6 +26250,7 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26125
26250
  pulumi.set(__self__, "availability_domain", availability_domain)
26126
26251
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
26127
26252
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
26253
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
26128
26254
  pulumi.set(__self__, "compartment_id", compartment_id)
26129
26255
  pulumi.set(__self__, "defined_tags", defined_tags)
26130
26256
  pulumi.set(__self__, "display_name", display_name)
@@ -26167,6 +26293,14 @@ class GetInstanceConfigurationInstanceDetailBlockVolumeCreateDetailResult(dict):
26167
26293
  """
26168
26294
  return pulumi.get(self, "block_volume_replicas")
26169
26295
 
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
+
26170
26304
  @property
26171
26305
  @pulumi.getter(name="compartmentId")
26172
26306
  def compartment_id(self) -> str:
@@ -26331,6 +26465,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26331
26465
  availability_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigResult'],
26332
26466
  availability_domain: str,
26333
26467
  capacity_reservation_id: str,
26468
+ cluster_placement_group_id: str,
26334
26469
  compartment_id: str,
26335
26470
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult'],
26336
26471
  dedicated_vm_host_id: str,
@@ -26356,6 +26491,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26356
26491
  :param Sequence['GetInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
26357
26492
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
26358
26493
  :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.
26359
26495
  :param str compartment_id: The OCID of the compartment containing images to search
26360
26496
  :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.
26361
26497
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -26380,6 +26516,7 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26380
26516
  pulumi.set(__self__, "availability_configs", availability_configs)
26381
26517
  pulumi.set(__self__, "availability_domain", availability_domain)
26382
26518
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
26519
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
26383
26520
  pulumi.set(__self__, "compartment_id", compartment_id)
26384
26521
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
26385
26522
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -26433,6 +26570,14 @@ class GetInstanceConfigurationInstanceDetailLaunchDetailResult(dict):
26433
26570
  """
26434
26571
  return pulumi.get(self, "capacity_reservation_id")
26435
26572
 
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
+
26436
26581
  @property
26437
26582
  @pulumi.getter(name="compartmentId")
26438
26583
  def compartment_id(self) -> str:
@@ -27513,6 +27658,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27513
27658
  availability_domain: str,
27514
27659
  backup_policy_id: str,
27515
27660
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailBlockVolumeReplicaResult'],
27661
+ cluster_placement_group_id: str,
27516
27662
  compartment_id: str,
27517
27663
  defined_tags: Mapping[str, Any],
27518
27664
  display_name: str,
@@ -27527,6 +27673,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27527
27673
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
27528
27674
  :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.
27529
27675
  :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.
27530
27677
  :param str compartment_id: The OCID of the compartment containing images to search
27531
27678
  :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"}`
27532
27679
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -27540,6 +27687,7 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27540
27687
  pulumi.set(__self__, "availability_domain", availability_domain)
27541
27688
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
27542
27689
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
27690
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
27543
27691
  pulumi.set(__self__, "compartment_id", compartment_id)
27544
27692
  pulumi.set(__self__, "defined_tags", defined_tags)
27545
27693
  pulumi.set(__self__, "display_name", display_name)
@@ -27582,6 +27730,14 @@ class GetInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailResult(
27582
27730
  """
27583
27731
  return pulumi.get(self, "block_volume_replicas")
27584
27732
 
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
+
27585
27741
  @property
27586
27742
  @pulumi.getter(name="compartmentId")
27587
27743
  def compartment_id(self) -> str:
@@ -27746,6 +27902,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27746
27902
  availability_configs: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigResult'],
27747
27903
  availability_domain: str,
27748
27904
  capacity_reservation_id: str,
27905
+ cluster_placement_group_id: str,
27749
27906
  compartment_id: str,
27750
27907
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailResult'],
27751
27908
  dedicated_vm_host_id: str,
@@ -27771,6 +27928,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27771
27928
  :param Sequence['GetInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
27772
27929
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
27773
27930
  :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.
27774
27932
  :param str compartment_id: The OCID of the compartment containing images to search
27775
27933
  :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.
27776
27934
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -27795,6 +27953,7 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27795
27953
  pulumi.set(__self__, "availability_configs", availability_configs)
27796
27954
  pulumi.set(__self__, "availability_domain", availability_domain)
27797
27955
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
27956
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
27798
27957
  pulumi.set(__self__, "compartment_id", compartment_id)
27799
27958
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
27800
27959
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -27848,6 +28007,14 @@ class GetInstanceConfigurationInstanceDetailOptionLaunchDetailResult(dict):
27848
28007
  """
27849
28008
  return pulumi.get(self, "capacity_reservation_id")
27850
28009
 
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
+
27851
28018
  @property
27852
28019
  @pulumi.getter(name="compartmentId")
27853
28020
  def compartment_id(self) -> str:
@@ -29493,6 +29660,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29493
29660
  availability_domain: str,
29494
29661
  backup_policy_id: str,
29495
29662
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCreateDetailBlockVolumeReplicaResult'],
29663
+ cluster_placement_group_id: str,
29496
29664
  compartment_id: str,
29497
29665
  defined_tags: Mapping[str, Any],
29498
29666
  display_name: str,
@@ -29507,6 +29675,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29507
29675
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
29508
29676
  :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.
29509
29677
  :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.
29510
29679
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
29511
29680
  :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"}`
29512
29681
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -29520,6 +29689,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29520
29689
  pulumi.set(__self__, "availability_domain", availability_domain)
29521
29690
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
29522
29691
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
29692
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
29523
29693
  pulumi.set(__self__, "compartment_id", compartment_id)
29524
29694
  pulumi.set(__self__, "defined_tags", defined_tags)
29525
29695
  pulumi.set(__self__, "display_name", display_name)
@@ -29562,6 +29732,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailBlockVolumeCre
29562
29732
  """
29563
29733
  return pulumi.get(self, "block_volume_replicas")
29564
29734
 
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
+
29565
29743
  @property
29566
29744
  @pulumi.getter(name="compartmentId")
29567
29745
  def compartment_id(self) -> str:
@@ -29726,6 +29904,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29726
29904
  availability_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigResult'],
29727
29905
  availability_domain: str,
29728
29906
  capacity_reservation_id: str,
29907
+ cluster_placement_group_id: str,
29729
29908
  compartment_id: str,
29730
29909
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailCreateVnicDetailResult'],
29731
29910
  dedicated_vm_host_id: str,
@@ -29751,6 +29930,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29751
29930
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
29752
29931
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
29753
29932
  :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.
29754
29934
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
29755
29935
  :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.
29756
29936
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -29775,6 +29955,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29775
29955
  pulumi.set(__self__, "availability_configs", availability_configs)
29776
29956
  pulumi.set(__self__, "availability_domain", availability_domain)
29777
29957
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
29958
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
29778
29959
  pulumi.set(__self__, "compartment_id", compartment_id)
29779
29960
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
29780
29961
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -29828,6 +30009,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailLaunchDetailRe
29828
30009
  """
29829
30010
  return pulumi.get(self, "capacity_reservation_id")
29830
30011
 
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
+
29831
30020
  @property
29832
30021
  @pulumi.getter(name="compartmentId")
29833
30022
  def compartment_id(self) -> str:
@@ -30908,6 +31097,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
30908
31097
  availability_domain: str,
30909
31098
  backup_policy_id: str,
30910
31099
  block_volume_replicas: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVolumeCreateDetailBlockVolumeReplicaResult'],
31100
+ cluster_placement_group_id: str,
30911
31101
  compartment_id: str,
30912
31102
  defined_tags: Mapping[str, Any],
30913
31103
  display_name: str,
@@ -30922,6 +31112,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
30922
31112
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
30923
31113
  :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.
30924
31114
  :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.
30925
31116
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
30926
31117
  :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"}`
30927
31118
  :param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
@@ -30935,6 +31126,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
30935
31126
  pulumi.set(__self__, "availability_domain", availability_domain)
30936
31127
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
30937
31128
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
31129
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
30938
31130
  pulumi.set(__self__, "compartment_id", compartment_id)
30939
31131
  pulumi.set(__self__, "defined_tags", defined_tags)
30940
31132
  pulumi.set(__self__, "display_name", display_name)
@@ -30977,6 +31169,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionBlockVol
30977
31169
  """
30978
31170
  return pulumi.get(self, "block_volume_replicas")
30979
31171
 
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
+
30980
31180
  @property
30981
31181
  @pulumi.getter(name="compartmentId")
30982
31182
  def compartment_id(self) -> str:
@@ -31141,6 +31341,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31141
31341
  availability_configs: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigResult'],
31142
31342
  availability_domain: str,
31143
31343
  capacity_reservation_id: str,
31344
+ cluster_placement_group_id: str,
31144
31345
  compartment_id: str,
31145
31346
  create_vnic_details: Sequence['outputs.GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailCreateVnicDetailResult'],
31146
31347
  dedicated_vm_host_id: str,
@@ -31166,6 +31367,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31166
31367
  :param Sequence['GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDetailAvailabilityConfigArgs'] availability_configs: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
31167
31368
  :param str availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
31168
31369
  :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.
31169
31371
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
31170
31372
  :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.
31171
31373
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
@@ -31190,6 +31392,7 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31190
31392
  pulumi.set(__self__, "availability_configs", availability_configs)
31191
31393
  pulumi.set(__self__, "availability_domain", availability_domain)
31192
31394
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
31395
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
31193
31396
  pulumi.set(__self__, "compartment_id", compartment_id)
31194
31397
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
31195
31398
  pulumi.set(__self__, "dedicated_vm_host_id", dedicated_vm_host_id)
@@ -31243,6 +31446,14 @@ class GetInstanceConfigurationsInstanceConfigurationInstanceDetailOptionLaunchDe
31243
31446
  """
31244
31447
  return pulumi.get(self, "capacity_reservation_id")
31245
31448
 
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
+
31246
31457
  @property
31247
31458
  @pulumi.getter(name="compartmentId")
31248
31459
  def compartment_id(self) -> str:
@@ -33736,7 +33947,6 @@ class GetInstancePoolPlacementConfigurationResult(dict):
33736
33947
  """
33737
33948
  :param str availability_domain: The availability domain to place instances. Example: `Uocm:PHX-AD-1`
33738
33949
  :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.
33740
33950
  :param Sequence['GetInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs'] primary_vnic_subnets: Details about the IPv6 primary subnet.
33741
33951
  :param Sequence['GetInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: The set of secondary VNIC data for instances in the pool.
33742
33952
  """
@@ -33765,9 +33975,6 @@ class GetInstancePoolPlacementConfigurationResult(dict):
33765
33975
  @property
33766
33976
  @pulumi.getter(name="primarySubnetId")
33767
33977
  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
- """
33771
33978
  return pulumi.get(self, "primary_subnet_id")
33772
33979
 
33773
33980
  @property
@@ -34193,7 +34400,6 @@ class GetInstancePoolsInstancePoolPlacementConfigurationResult(dict):
34193
34400
  """
34194
34401
  :param str availability_domain: The availability domain to place instances. Example: `Uocm:PHX-AD-1`
34195
34402
  :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.
34197
34403
  :param Sequence['GetInstancePoolsInstancePoolPlacementConfigurationPrimaryVnicSubnetArgs'] primary_vnic_subnets: Details about the IPv6 primary subnet.
34198
34404
  :param Sequence['GetInstancePoolsInstancePoolPlacementConfigurationSecondaryVnicSubnetArgs'] secondary_vnic_subnets: The set of secondary VNIC data for instances in the pool.
34199
34405
  """
@@ -34222,9 +34428,6 @@ class GetInstancePoolsInstancePoolPlacementConfigurationResult(dict):
34222
34428
  @property
34223
34429
  @pulumi.getter(name="primarySubnetId")
34224
34430
  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
- """
34228
34431
  return pulumi.get(self, "primary_subnet_id")
34229
34432
 
34230
34433
  @property
@@ -34570,6 +34773,7 @@ class GetInstanceSourceDetailResult(dict):
34570
34773
  boot_volume_size_in_gbs: str,
34571
34774
  boot_volume_vpus_per_gb: str,
34572
34775
  instance_source_image_filter_details: Sequence['outputs.GetInstanceSourceDetailInstanceSourceImageFilterDetailResult'],
34776
+ is_preserve_boot_volume_enabled: bool,
34573
34777
  kms_key_id: str,
34574
34778
  source_id: str,
34575
34779
  source_type: str):
@@ -34584,6 +34788,7 @@ class GetInstanceSourceDetailResult(dict):
34584
34788
  pulumi.set(__self__, "boot_volume_size_in_gbs", boot_volume_size_in_gbs)
34585
34789
  pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
34586
34790
  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)
34587
34792
  pulumi.set(__self__, "kms_key_id", kms_key_id)
34588
34793
  pulumi.set(__self__, "source_id", source_id)
34589
34794
  pulumi.set(__self__, "source_type", source_type)
@@ -34612,6 +34817,11 @@ class GetInstanceSourceDetailResult(dict):
34612
34817
  """
34613
34818
  return pulumi.get(self, "instance_source_image_filter_details")
34614
34819
 
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
+
34615
34825
  @property
34616
34826
  @pulumi.getter(name="kmsKeyId")
34617
34827
  def kms_key_id(self) -> str:
@@ -34730,6 +34940,7 @@ class GetInstancesInstanceResult(dict):
34730
34940
  availability_domain: str,
34731
34941
  boot_volume_id: str,
34732
34942
  capacity_reservation_id: str,
34943
+ cluster_placement_group_id: str,
34733
34944
  compartment_id: str,
34734
34945
  compute_cluster_id: str,
34735
34946
  create_vnic_details: Sequence['outputs.GetInstancesInstanceCreateVnicDetailResult'],
@@ -34773,6 +34984,7 @@ class GetInstancesInstanceResult(dict):
34773
34984
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
34774
34985
  :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`.
34775
34986
  :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.
34776
34988
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
34777
34989
  :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.
34778
34990
  :param str dedicated_vm_host_id: The OCID of the dedicated virtual machine host that the instance is placed on.
@@ -34808,6 +35020,7 @@ class GetInstancesInstanceResult(dict):
34808
35020
  pulumi.set(__self__, "availability_domain", availability_domain)
34809
35021
  pulumi.set(__self__, "boot_volume_id", boot_volume_id)
34810
35022
  pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
35023
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
34811
35024
  pulumi.set(__self__, "compartment_id", compartment_id)
34812
35025
  pulumi.set(__self__, "compute_cluster_id", compute_cluster_id)
34813
35026
  pulumi.set(__self__, "create_vnic_details", create_vnic_details)
@@ -34891,6 +35104,14 @@ class GetInstancesInstanceResult(dict):
34891
35104
  """
34892
35105
  return pulumi.get(self, "capacity_reservation_id")
34893
35106
 
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
+
34894
35115
  @property
34895
35116
  @pulumi.getter(name="compartmentId")
34896
35117
  def compartment_id(self) -> str:
@@ -35983,6 +36204,7 @@ class GetInstancesInstanceSourceDetailResult(dict):
35983
36204
  boot_volume_size_in_gbs: str,
35984
36205
  boot_volume_vpus_per_gb: str,
35985
36206
  instance_source_image_filter_details: Sequence['outputs.GetInstancesInstanceSourceDetailInstanceSourceImageFilterDetailResult'],
36207
+ is_preserve_boot_volume_enabled: bool,
35986
36208
  kms_key_id: str,
35987
36209
  source_id: str,
35988
36210
  source_type: str):
@@ -35997,6 +36219,7 @@ class GetInstancesInstanceSourceDetailResult(dict):
35997
36219
  pulumi.set(__self__, "boot_volume_size_in_gbs", boot_volume_size_in_gbs)
35998
36220
  pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
35999
36221
  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)
36000
36223
  pulumi.set(__self__, "kms_key_id", kms_key_id)
36001
36224
  pulumi.set(__self__, "source_id", source_id)
36002
36225
  pulumi.set(__self__, "source_type", source_type)
@@ -36025,6 +36248,11 @@ class GetInstancesInstanceSourceDetailResult(dict):
36025
36248
  """
36026
36249
  return pulumi.get(self, "instance_source_image_filter_details")
36027
36250
 
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
+
36028
36256
  @property
36029
36257
  @pulumi.getter(name="kmsKeyId")
36030
36258
  def kms_key_id(self) -> str:
@@ -44823,6 +45051,7 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
44823
45051
  is_pv_encryption_in_transit_enabled: bool,
44824
45052
  is_read_only: bool,
44825
45053
  is_shareable: bool,
45054
+ is_volume_created_during_launch: bool,
44826
45055
  iscsi_login_state: str,
44827
45056
  multipath_devices: Sequence['outputs.GetVolumeAttachmentsVolumeAttachmentMultipathDeviceResult'],
44828
45057
  port: int,
@@ -44847,6 +45076,7 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
44847
45076
  :param bool is_multipath: Whether the Iscsi or Paravirtualized attachment is multipath or not, it is not applicable to NVMe attachment.
44848
45077
  :param bool is_pv_encryption_in_transit_enabled: Whether in-transit encryption for the data volume's paravirtualized attachment is enabled or not.
44849
45078
  :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.
44850
45080
  :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.
44851
45081
  :param Sequence['GetVolumeAttachmentsVolumeAttachmentMultipathDeviceArgs'] multipath_devices: A list of secondary multipath devices
44852
45082
  :param int port: The volume's iSCSI port, usually port 860 or 3260. Example: `3260`
@@ -44871,6 +45101,7 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
44871
45101
  pulumi.set(__self__, "is_pv_encryption_in_transit_enabled", is_pv_encryption_in_transit_enabled)
44872
45102
  pulumi.set(__self__, "is_read_only", is_read_only)
44873
45103
  pulumi.set(__self__, "is_shareable", is_shareable)
45104
+ pulumi.set(__self__, "is_volume_created_during_launch", is_volume_created_during_launch)
44874
45105
  pulumi.set(__self__, "iscsi_login_state", iscsi_login_state)
44875
45106
  pulumi.set(__self__, "multipath_devices", multipath_devices)
44876
45107
  pulumi.set(__self__, "port", port)
@@ -45015,6 +45246,14 @@ class GetVolumeAttachmentsVolumeAttachmentResult(dict):
45015
45246
  def is_shareable(self) -> bool:
45016
45247
  return pulumi.get(self, "is_shareable")
45017
45248
 
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
+
45018
45257
  @property
45019
45258
  @pulumi.getter(name="iscsiLoginState")
45020
45259
  def iscsi_login_state(self) -> str:
@@ -46304,6 +46543,7 @@ class GetVolumeGroupsVolumeGroupResult(dict):
46304
46543
  def __init__(__self__, *,
46305
46544
  availability_domain: str,
46306
46545
  backup_policy_id: str,
46546
+ cluster_placement_group_id: str,
46307
46547
  compartment_id: str,
46308
46548
  defined_tags: Mapping[str, Any],
46309
46549
  display_name: str,
@@ -46337,6 +46577,7 @@ class GetVolumeGroupsVolumeGroupResult(dict):
46337
46577
  """
46338
46578
  pulumi.set(__self__, "availability_domain", availability_domain)
46339
46579
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
46580
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
46340
46581
  pulumi.set(__self__, "compartment_id", compartment_id)
46341
46582
  pulumi.set(__self__, "defined_tags", defined_tags)
46342
46583
  pulumi.set(__self__, "display_name", display_name)
@@ -46369,6 +46610,11 @@ class GetVolumeGroupsVolumeGroupResult(dict):
46369
46610
 
46370
46611
  return pulumi.get(self, "backup_policy_id")
46371
46612
 
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
+
46372
46618
  @property
46373
46619
  @pulumi.getter(name="compartmentId")
46374
46620
  def compartment_id(self) -> str:
@@ -46651,6 +46897,7 @@ class GetVolumesVolumeResult(dict):
46651
46897
  backup_policy_id: str,
46652
46898
  block_volume_replicas: Sequence['outputs.GetVolumesVolumeBlockVolumeReplicaResult'],
46653
46899
  block_volume_replicas_deletion: bool,
46900
+ cluster_placement_group_id: str,
46654
46901
  compartment_id: str,
46655
46902
  defined_tags: Mapping[str, Any],
46656
46903
  display_name: str,
@@ -46673,6 +46920,7 @@ class GetVolumesVolumeResult(dict):
46673
46920
  :param Sequence['GetVolumesVolumeAutotunePolicyArgs'] autotune_policies: The list of autotune policies enabled for this volume.
46674
46921
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
46675
46922
  :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.
46676
46924
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
46677
46925
  :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"}`
46678
46926
  :param str display_name: A filter to return only resources that match the given display name exactly.
@@ -46695,6 +46943,7 @@ class GetVolumesVolumeResult(dict):
46695
46943
  pulumi.set(__self__, "backup_policy_id", backup_policy_id)
46696
46944
  pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
46697
46945
  pulumi.set(__self__, "block_volume_replicas_deletion", block_volume_replicas_deletion)
46946
+ pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
46698
46947
  pulumi.set(__self__, "compartment_id", compartment_id)
46699
46948
  pulumi.set(__self__, "defined_tags", defined_tags)
46700
46949
  pulumi.set(__self__, "display_name", display_name)
@@ -46758,6 +47007,14 @@ class GetVolumesVolumeResult(dict):
46758
47007
  def block_volume_replicas_deletion(self) -> bool:
46759
47008
  return pulumi.get(self, "block_volume_replicas_deletion")
46760
47009
 
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
+
46761
47018
  @property
46762
47019
  @pulumi.getter(name="compartmentId")
46763
47020
  def compartment_id(self) -> str: