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.
- pulumi_oci/__init__.py +51 -0
- pulumi_oci/clusterplacementgroups/__init__.py +12 -0
- pulumi_oci/clusterplacementgroups/_inputs.py +159 -0
- pulumi_oci/clusterplacementgroups/cluster_placement_group.py +843 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_group.py +298 -0
- pulumi_oci/clusterplacementgroups/get_cluster_placement_groups.py +217 -0
- pulumi_oci/clusterplacementgroups/outputs.py +485 -0
- pulumi_oci/config/__init__.pyi +2 -2
- pulumi_oci/config/vars.py +2 -2
- pulumi_oci/core/_inputs.py +116 -28
- pulumi_oci/core/boot_volume.py +49 -0
- pulumi_oci/core/compute_capacity_reservation.py +2 -0
- pulumi_oci/core/compute_cluster.py +2 -4
- pulumi_oci/core/drg_route_distribution.py +7 -7
- pulumi_oci/core/get_boot_volume.py +14 -1
- pulumi_oci/core/get_cnv_dns_resolver_association.py +2 -2
- pulumi_oci/core/get_instance.py +14 -1
- pulumi_oci/core/get_subnet.py +2 -2
- pulumi_oci/core/get_vcn.py +2 -2
- pulumi_oci/core/get_volume.py +14 -1
- pulumi_oci/core/get_volumes.py +21 -1
- pulumi_oci/core/instance.py +51 -4
- pulumi_oci/core/instance_configuration.py +8 -0
- pulumi_oci/core/outputs.py +302 -45
- pulumi_oci/core/volume.py +49 -0
- pulumi_oci/core/volume_attachment.py +28 -0
- pulumi_oci/core/volume_group.py +49 -0
- pulumi_oci/database/db_home.py +47 -0
- pulumi_oci/database/get_db_home.py +14 -1
- pulumi_oci/database/outputs.py +11 -0
- pulumi_oci/databasemanagement/__init__.py +5 -0
- pulumi_oci/databasemanagement/_inputs.py +1207 -2
- pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
- pulumi_oci/databasemanagement/external_asm.py +28 -0
- pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
- pulumi_oci/databasemanagement/external_cluster.py +28 -0
- pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
- pulumi_oci/databasemanagement/external_db_home.py +28 -0
- pulumi_oci/databasemanagement/external_db_node.py +28 -0
- pulumi_oci/databasemanagement/external_db_system.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
- pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
- pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
- pulumi_oci/databasemanagement/external_listener.py +28 -0
- pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm.py +14 -1
- pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
- pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
- pulumi_oci/databasemanagement/get_external_databases.py +18 -1
- pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
- pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
- pulumi_oci/databasemanagement/get_external_listener.py +14 -1
- pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
- pulumi_oci/databasemanagement/get_named_credential.py +14 -1
- pulumi_oci/databasemanagement/managed_database.py +28 -0
- pulumi_oci/databasemanagement/managed_database_group.py +28 -0
- pulumi_oci/databasemanagement/named_credential.py +28 -0
- pulumi_oci/databasemanagement/outputs.py +1723 -214
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemigration/_inputs.py +20 -0
- pulumi_oci/databasemigration/connection.py +13 -0
- pulumi_oci/databasemigration/get_connection.py +3 -0
- pulumi_oci/databasemigration/get_migration.py +3 -0
- pulumi_oci/databasemigration/migration.py +13 -0
- pulumi_oci/databasemigration/outputs.py +68 -0
- pulumi_oci/datasafe/__init__.py +3 -0
- pulumi_oci/datasafe/_inputs.py +80 -0
- pulumi_oci/datasafe/get_masking_policy.py +11 -1
- pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
- pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
- pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
- pulumi_oci/datasafe/masking_policy.py +75 -28
- pulumi_oci/datasafe/outputs.py +287 -0
- pulumi_oci/networkloadbalancer/backend_set.py +49 -0
- pulumi_oci/networkloadbalancer/get_backend_set.py +14 -1
- pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py +49 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/provider.py +8 -8
- pulumi_oci/recoverymod/_inputs.py +16 -0
- pulumi_oci/recoverymod/get_protected_database.py +25 -5
- pulumi_oci/recoverymod/get_protection_policies.py +1 -7
- pulumi_oci/recoverymod/get_protection_policy.py +15 -8
- pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
- pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
- pulumi_oci/recoverymod/outputs.py +96 -24
- pulumi_oci/recoverymod/protected_database.py +95 -16
- pulumi_oci/recoverymod/protection_policy.py +121 -54
- pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/RECORD +108 -94
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.33.0a1713903118.dist-info → pulumi_oci-1.34.0.dist-info}/top_level.txt +0 -0
pulumi_oci/core/_inputs.py
CHANGED
@@ -2462,6 +2462,7 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
|
|
2462
2462
|
instance_shape: pulumi.Input[str],
|
2463
2463
|
reserved_count: pulumi.Input[str],
|
2464
2464
|
cluster_config: Optional[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs']] = None,
|
2465
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
2465
2466
|
fault_domain: Optional[pulumi.Input[str]] = None,
|
2466
2467
|
instance_shape_config: Optional[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigInstanceShapeConfigArgs']] = None,
|
2467
2468
|
used_count: Optional[pulumi.Input[str]] = None):
|
@@ -2470,6 +2471,7 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
|
|
2470
2471
|
:param pulumi.Input[str] reserved_count: (Updatable) The total number of instances that can be launched from the capacity configuration.
|
2471
2472
|
:param pulumi.Input['ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs'] cluster_config: (Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
|
2472
2473
|
|
2474
|
+
<<<<<<< HEAD
|
2473
2475
|
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.
|
2474
2476
|
:param pulumi.Input[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.
|
2475
2477
|
|
@@ -2489,6 +2491,8 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
|
|
2489
2491
|
pulumi.set(__self__, "reserved_count", reserved_count)
|
2490
2492
|
if cluster_config is not None:
|
2491
2493
|
pulumi.set(__self__, "cluster_config", cluster_config)
|
2494
|
+
if cluster_placement_group_id is not None:
|
2495
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
2492
2496
|
if fault_domain is not None:
|
2493
2497
|
pulumi.set(__self__, "fault_domain", fault_domain)
|
2494
2498
|
if instance_shape_config is not None:
|
@@ -2526,6 +2530,7 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
|
|
2526
2530
|
"""
|
2527
2531
|
(Updatable) The HPC cluster configuration requested when launching instances in a compute capacity reservation.
|
2528
2532
|
|
2533
|
+
<<<<<<< HEAD
|
2529
2534
|
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.
|
2530
2535
|
"""
|
2531
2536
|
return pulumi.get(self, "cluster_config")
|
@@ -2534,6 +2539,15 @@ class ComputeCapacityReservationInstanceReservationConfigArgs:
|
|
2534
2539
|
def cluster_config(self, value: Optional[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigClusterConfigArgs']]):
|
2535
2540
|
pulumi.set(self, "cluster_config", value)
|
2536
2541
|
|
2542
|
+
@property
|
2543
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
2544
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
2545
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
2546
|
+
|
2547
|
+
@cluster_placement_group_id.setter
|
2548
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
2549
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
2550
|
+
|
2537
2551
|
@property
|
2538
2552
|
@pulumi.getter(name="faultDomain")
|
2539
2553
|
def fault_domain(self) -> Optional[pulumi.Input[str]]:
|
@@ -4829,6 +4843,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
|
|
4829
4843
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
4830
4844
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
4831
4845
|
block_volume_replicas: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicasArgs']] = None,
|
4846
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
4832
4847
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
4833
4848
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
4834
4849
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -4840,10 +4855,11 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
|
|
4840
4855
|
vpus_per_gb: Optional[pulumi.Input[str]] = None):
|
4841
4856
|
"""
|
4842
4857
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsAutotunePolicyArgs']]] autotune_policies: The list of autotune policies enabled for this volume.
|
4843
|
-
:param pulumi.Input[str] availability_domain: The availability domain of the
|
4858
|
+
:param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
4844
4859
|
:param pulumi.Input[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.
|
4845
4860
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicasArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
4846
|
-
:param pulumi.Input[str]
|
4861
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
4862
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
|
4847
4863
|
:param pulumi.Input[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"}`
|
4848
4864
|
:param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
4849
4865
|
:param pulumi.Input[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"}`
|
@@ -4862,6 +4878,8 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
|
|
4862
4878
|
pulumi.set(__self__, "backup_policy_id", backup_policy_id)
|
4863
4879
|
if block_volume_replicas is not None:
|
4864
4880
|
pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
|
4881
|
+
if cluster_placement_group_id is not None:
|
4882
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
4865
4883
|
if compartment_id is not None:
|
4866
4884
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
4867
4885
|
if defined_tags is not None:
|
@@ -4897,7 +4915,7 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
|
|
4897
4915
|
@pulumi.getter(name="availabilityDomain")
|
4898
4916
|
def availability_domain(self) -> Optional[pulumi.Input[str]]:
|
4899
4917
|
"""
|
4900
|
-
The availability domain of the
|
4918
|
+
The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
4901
4919
|
"""
|
4902
4920
|
return pulumi.get(self, "availability_domain")
|
4903
4921
|
|
@@ -4929,11 +4947,23 @@ class InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsArgs:
|
|
4929
4947
|
def block_volume_replicas(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsBlockVolumeCreateDetailsBlockVolumeReplicasArgs']]):
|
4930
4948
|
pulumi.set(self, "block_volume_replicas", value)
|
4931
4949
|
|
4950
|
+
@property
|
4951
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
4952
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
4953
|
+
"""
|
4954
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
4955
|
+
"""
|
4956
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
4957
|
+
|
4958
|
+
@cluster_placement_group_id.setter
|
4959
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
4960
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
4961
|
+
|
4932
4962
|
@property
|
4933
4963
|
@pulumi.getter(name="compartmentId")
|
4934
4964
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
4935
4965
|
"""
|
4936
|
-
The OCID of the compartment
|
4966
|
+
(Updatable) The OCID of the compartment containing images to search
|
4937
4967
|
"""
|
4938
4968
|
return pulumi.get(self, "compartment_id")
|
4939
4969
|
|
@@ -5158,6 +5188,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
5158
5188
|
availability_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs']] = None,
|
5159
5189
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
5160
5190
|
capacity_reservation_id: Optional[pulumi.Input[str]] = None,
|
5191
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
5161
5192
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
5162
5193
|
create_vnic_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsCreateVnicDetailsArgs']] = None,
|
5163
5194
|
dedicated_vm_host_id: Optional[pulumi.Input[str]] = None,
|
@@ -5183,6 +5214,7 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
5183
5214
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsLaunchDetailsAvailabilityConfigArgs'] availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
|
5184
5215
|
:param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
5185
5216
|
:param pulumi.Input[str] capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
|
5217
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
5186
5218
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
|
5187
5219
|
:param pulumi.Input['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.
|
5188
5220
|
:param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
|
@@ -5267,6 +5299,8 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
5267
5299
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
5268
5300
|
if capacity_reservation_id is not None:
|
5269
5301
|
pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
|
5302
|
+
if cluster_placement_group_id is not None:
|
5303
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
5270
5304
|
if compartment_id is not None:
|
5271
5305
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
5272
5306
|
if create_vnic_details is not None:
|
@@ -5356,6 +5390,18 @@ class InstanceConfigurationInstanceDetailsLaunchDetailsArgs:
|
|
5356
5390
|
def capacity_reservation_id(self, value: Optional[pulumi.Input[str]]):
|
5357
5391
|
pulumi.set(self, "capacity_reservation_id", value)
|
5358
5392
|
|
5393
|
+
@property
|
5394
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
5395
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
5396
|
+
"""
|
5397
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
5398
|
+
"""
|
5399
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
5400
|
+
|
5401
|
+
@cluster_placement_group_id.setter
|
5402
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
5403
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
5404
|
+
|
5359
5405
|
@property
|
5360
5406
|
@pulumi.getter(name="compartmentId")
|
5361
5407
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -6985,6 +7031,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
|
|
6985
7031
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
6986
7032
|
backup_policy_id: Optional[pulumi.Input[str]] = None,
|
6987
7033
|
block_volume_replicas: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs']] = None,
|
7034
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
6988
7035
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
6989
7036
|
defined_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
6990
7037
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -6996,10 +7043,11 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
|
|
6996
7043
|
vpus_per_gb: Optional[pulumi.Input[str]] = None):
|
6997
7044
|
"""
|
6998
7045
|
:param pulumi.Input[Sequence[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsAutotunePolicyArgs']]] autotune_policies: The list of autotune policies enabled for this volume.
|
6999
|
-
:param pulumi.Input[str] availability_domain: The availability domain of the
|
7046
|
+
:param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
7000
7047
|
:param pulumi.Input[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.
|
7001
7048
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs'] block_volume_replicas: The list of block volume replicas to be enabled for this volume in the specified destination availability domains.
|
7002
|
-
:param pulumi.Input[str]
|
7049
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
7050
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
|
7003
7051
|
:param pulumi.Input[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"}`
|
7004
7052
|
:param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
7005
7053
|
:param pulumi.Input[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"}`
|
@@ -7018,6 +7066,8 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
|
|
7018
7066
|
pulumi.set(__self__, "backup_policy_id", backup_policy_id)
|
7019
7067
|
if block_volume_replicas is not None:
|
7020
7068
|
pulumi.set(__self__, "block_volume_replicas", block_volume_replicas)
|
7069
|
+
if cluster_placement_group_id is not None:
|
7070
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
7021
7071
|
if compartment_id is not None:
|
7022
7072
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
7023
7073
|
if defined_tags is not None:
|
@@ -7053,7 +7103,7 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
|
|
7053
7103
|
@pulumi.getter(name="availabilityDomain")
|
7054
7104
|
def availability_domain(self) -> Optional[pulumi.Input[str]]:
|
7055
7105
|
"""
|
7056
|
-
The availability domain of the
|
7106
|
+
The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
7057
7107
|
"""
|
7058
7108
|
return pulumi.get(self, "availability_domain")
|
7059
7109
|
|
@@ -7085,11 +7135,23 @@ class InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsArgs:
|
|
7085
7135
|
def block_volume_replicas(self, value: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionBlockVolumeCreateDetailsBlockVolumeReplicasArgs']]):
|
7086
7136
|
pulumi.set(self, "block_volume_replicas", value)
|
7087
7137
|
|
7138
|
+
@property
|
7139
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
7140
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
7141
|
+
"""
|
7142
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
7143
|
+
"""
|
7144
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
7145
|
+
|
7146
|
+
@cluster_placement_group_id.setter
|
7147
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
7148
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
7149
|
+
|
7088
7150
|
@property
|
7089
7151
|
@pulumi.getter(name="compartmentId")
|
7090
7152
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
7091
7153
|
"""
|
7092
|
-
The OCID of the compartment
|
7154
|
+
(Updatable) The OCID of the compartment containing images to search
|
7093
7155
|
"""
|
7094
7156
|
return pulumi.get(self, "compartment_id")
|
7095
7157
|
|
@@ -7314,6 +7376,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
7314
7376
|
availability_config: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfigArgs']] = None,
|
7315
7377
|
availability_domain: Optional[pulumi.Input[str]] = None,
|
7316
7378
|
capacity_reservation_id: Optional[pulumi.Input[str]] = None,
|
7379
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
7317
7380
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
7318
7381
|
create_vnic_details: Optional[pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsCreateVnicDetailsArgs']] = None,
|
7319
7382
|
dedicated_vm_host_id: Optional[pulumi.Input[str]] = None,
|
@@ -7339,6 +7402,7 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
7339
7402
|
:param pulumi.Input['InstanceConfigurationInstanceDetailsOptionLaunchDetailsAvailabilityConfigArgs'] availability_config: Options for defining the availabiity of a VM instance after a maintenance event that impacts the underlying hardware.
|
7340
7403
|
:param pulumi.Input[str] availability_domain: The availability domain of the instance. Example: `Uocm:PHX-AD-1`
|
7341
7404
|
:param pulumi.Input[str] capacity_reservation_id: The OCID of the compute capacity reservation this instance is launched under.
|
7405
|
+
:param pulumi.Input[str] cluster_placement_group_id: The clusterPlacementGroup Id of the volume for volume placement.
|
7342
7406
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
|
7343
7407
|
:param pulumi.Input['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.
|
7344
7408
|
:param pulumi.Input[str] dedicated_vm_host_id: The OCID of the dedicated virtual machine host to place the instance on.
|
@@ -7423,6 +7487,8 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
7423
7487
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
7424
7488
|
if capacity_reservation_id is not None:
|
7425
7489
|
pulumi.set(__self__, "capacity_reservation_id", capacity_reservation_id)
|
7490
|
+
if cluster_placement_group_id is not None:
|
7491
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
7426
7492
|
if compartment_id is not None:
|
7427
7493
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
7428
7494
|
if create_vnic_details is not None:
|
@@ -7512,6 +7578,18 @@ class InstanceConfigurationInstanceDetailsOptionLaunchDetailsArgs:
|
|
7512
7578
|
def capacity_reservation_id(self, value: Optional[pulumi.Input[str]]):
|
7513
7579
|
pulumi.set(self, "capacity_reservation_id", value)
|
7514
7580
|
|
7581
|
+
@property
|
7582
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
7583
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
7584
|
+
"""
|
7585
|
+
The clusterPlacementGroup Id of the volume for volume placement.
|
7586
|
+
"""
|
7587
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
7588
|
+
|
7589
|
+
@cluster_placement_group_id.setter
|
7590
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
7591
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
7592
|
+
|
7515
7593
|
@property
|
7516
7594
|
@pulumi.getter(name="compartmentId")
|
7517
7595
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -9509,7 +9587,7 @@ class InstanceCreateVnicDetailsArgs:
|
|
9509
9587
|
:param pulumi.Input[Sequence[pulumi.Input[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/).
|
9510
9588
|
|
9511
9589
|
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).
|
9512
|
-
:param pulumi.Input[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)
|
9590
|
+
:param pulumi.Input[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)`.
|
9513
9591
|
|
9514
9592
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
9515
9593
|
|
@@ -9674,7 +9752,7 @@ class InstanceCreateVnicDetailsArgs:
|
|
9674
9752
|
@pulumi.getter(name="privateIp")
|
9675
9753
|
def private_ip(self) -> Optional[pulumi.Input[str]]:
|
9676
9754
|
"""
|
9677
|
-
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)
|
9755
|
+
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)`.
|
9678
9756
|
|
9679
9757
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
9680
9758
|
|
@@ -10064,7 +10142,7 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs:
|
|
10064
10142
|
:param pulumi.Input[str] volume_creation_type: Specifies the method for volume creation.
|
10065
10143
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment containing images to search
|
10066
10144
|
:param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
10067
|
-
:param pulumi.Input[str] kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
10145
|
+
:param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
10068
10146
|
:param pulumi.Input[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.
|
10069
10147
|
|
10070
10148
|
Allowed values:
|
@@ -10132,7 +10210,7 @@ class InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs:
|
|
10132
10210
|
@pulumi.getter(name="kmsKeyId")
|
10133
10211
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
10134
10212
|
"""
|
10135
|
-
The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
10213
|
+
(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
10136
10214
|
"""
|
10137
10215
|
return pulumi.get(self, "kms_key_id")
|
10138
10216
|
|
@@ -10589,8 +10667,8 @@ class InstancePoolPlacementConfigurationArgs:
|
|
10589
10667
|
|
10590
10668
|
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.
|
10591
10669
|
|
10670
|
+
<<<<<<< HEAD
|
10592
10671
|
Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
|
10593
|
-
:param pulumi.Input[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.
|
10594
10672
|
:param pulumi.Input['InstancePoolPlacementConfigurationPrimaryVnicSubnetsArgs'] primary_vnic_subnets: (Updatable) Details about the IPv6 primary subnet.
|
10595
10673
|
:param pulumi.Input[Sequence[pulumi.Input['InstancePoolPlacementConfigurationSecondaryVnicSubnetArgs']]] secondary_vnic_subnets: (Updatable) The set of secondary VNIC data for instances in the pool.
|
10596
10674
|
"""
|
@@ -10628,6 +10706,7 @@ class InstancePoolPlacementConfigurationArgs:
|
|
10628
10706
|
|
10629
10707
|
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.
|
10630
10708
|
|
10709
|
+
<<<<<<< HEAD
|
10631
10710
|
Example: `[FAULT-DOMAIN-1, FAULT-DOMAIN-2, FAULT-DOMAIN-3]`
|
10632
10711
|
"""
|
10633
10712
|
return pulumi.get(self, "fault_domains")
|
@@ -10639,9 +10718,6 @@ class InstancePoolPlacementConfigurationArgs:
|
|
10639
10718
|
@property
|
10640
10719
|
@pulumi.getter(name="primarySubnetId")
|
10641
10720
|
def primary_subnet_id(self) -> Optional[pulumi.Input[str]]:
|
10642
|
-
"""
|
10643
|
-
(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.
|
10644
|
-
"""
|
10645
10721
|
return pulumi.get(self, "primary_subnet_id")
|
10646
10722
|
|
10647
10723
|
@primary_subnet_id.setter
|
@@ -11129,17 +11205,18 @@ class InstanceSourceDetailsArgs:
|
|
11129
11205
|
boot_volume_size_in_gbs: Optional[pulumi.Input[str]] = None,
|
11130
11206
|
boot_volume_vpus_per_gb: Optional[pulumi.Input[str]] = None,
|
11131
11207
|
instance_source_image_filter_details: Optional[pulumi.Input['InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs']] = None,
|
11208
|
+
is_preserve_boot_volume_enabled: Optional[pulumi.Input[bool]] = None,
|
11132
11209
|
kms_key_id: Optional[pulumi.Input[str]] = None,
|
11133
11210
|
source_id: Optional[pulumi.Input[str]] = None):
|
11134
11211
|
"""
|
11135
|
-
:param pulumi.Input[str] source_type: The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
|
11212
|
+
:param pulumi.Input[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.
|
11136
11213
|
:param pulumi.Input[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).
|
11137
11214
|
:param pulumi.Input[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.
|
11138
11215
|
|
11139
11216
|
Allowed values:
|
11140
11217
|
:param pulumi.Input['InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs'] instance_source_image_filter_details: These are the criteria for selecting an image. This is required if imageId is not specified.
|
11141
|
-
:param pulumi.Input[str] kms_key_id: The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
11142
|
-
:param pulumi.Input[str] source_id: The OCID of
|
11218
|
+
:param pulumi.Input[str] kms_key_id: (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
11219
|
+
:param pulumi.Input[str] source_id: (Updatable) The OCID of the boot volume used to boot the instance.
|
11143
11220
|
"""
|
11144
11221
|
pulumi.set(__self__, "source_type", source_type)
|
11145
11222
|
if boot_volume_size_in_gbs is not None:
|
@@ -11148,6 +11225,8 @@ class InstanceSourceDetailsArgs:
|
|
11148
11225
|
pulumi.set(__self__, "boot_volume_vpus_per_gb", boot_volume_vpus_per_gb)
|
11149
11226
|
if instance_source_image_filter_details is not None:
|
11150
11227
|
pulumi.set(__self__, "instance_source_image_filter_details", instance_source_image_filter_details)
|
11228
|
+
if is_preserve_boot_volume_enabled is not None:
|
11229
|
+
pulumi.set(__self__, "is_preserve_boot_volume_enabled", is_preserve_boot_volume_enabled)
|
11151
11230
|
if kms_key_id is not None:
|
11152
11231
|
pulumi.set(__self__, "kms_key_id", kms_key_id)
|
11153
11232
|
if source_id is not None:
|
@@ -11157,7 +11236,7 @@ class InstanceSourceDetailsArgs:
|
|
11157
11236
|
@pulumi.getter(name="sourceType")
|
11158
11237
|
def source_type(self) -> pulumi.Input[str]:
|
11159
11238
|
"""
|
11160
|
-
The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
|
11239
|
+
(Updatable) The source type for the instance. Use `image` when specifying the image OCID. Use `bootVolume` when specifying the boot volume OCID.
|
11161
11240
|
"""
|
11162
11241
|
return pulumi.get(self, "source_type")
|
11163
11242
|
|
@@ -11203,11 +11282,20 @@ class InstanceSourceDetailsArgs:
|
|
11203
11282
|
def instance_source_image_filter_details(self, value: Optional[pulumi.Input['InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs']]):
|
11204
11283
|
pulumi.set(self, "instance_source_image_filter_details", value)
|
11205
11284
|
|
11285
|
+
@property
|
11286
|
+
@pulumi.getter(name="isPreserveBootVolumeEnabled")
|
11287
|
+
def is_preserve_boot_volume_enabled(self) -> Optional[pulumi.Input[bool]]:
|
11288
|
+
return pulumi.get(self, "is_preserve_boot_volume_enabled")
|
11289
|
+
|
11290
|
+
@is_preserve_boot_volume_enabled.setter
|
11291
|
+
def is_preserve_boot_volume_enabled(self, value: Optional[pulumi.Input[bool]]):
|
11292
|
+
pulumi.set(self, "is_preserve_boot_volume_enabled", value)
|
11293
|
+
|
11206
11294
|
@property
|
11207
11295
|
@pulumi.getter(name="kmsKeyId")
|
11208
11296
|
def kms_key_id(self) -> Optional[pulumi.Input[str]]:
|
11209
11297
|
"""
|
11210
|
-
The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
11298
|
+
(Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
|
11211
11299
|
"""
|
11212
11300
|
return pulumi.get(self, "kms_key_id")
|
11213
11301
|
|
@@ -11219,7 +11307,7 @@ class InstanceSourceDetailsArgs:
|
|
11219
11307
|
@pulumi.getter(name="sourceId")
|
11220
11308
|
def source_id(self) -> Optional[pulumi.Input[str]]:
|
11221
11309
|
"""
|
11222
|
-
The OCID of
|
11310
|
+
(Updatable) The OCID of the boot volume used to boot the instance.
|
11223
11311
|
"""
|
11224
11312
|
return pulumi.get(self, "source_id")
|
11225
11313
|
|
@@ -13485,11 +13573,11 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
13485
13573
|
:param pulumi.Input[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"}`
|
13486
13574
|
:param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
13487
13575
|
:param pulumi.Input[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"}`
|
13488
|
-
:param pulumi.Input[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)
|
13576
|
+
:param pulumi.Input[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)`.
|
13489
13577
|
|
13490
13578
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
13491
13579
|
|
13492
|
-
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)
|
13580
|
+
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.
|
13493
13581
|
|
13494
13582
|
Example: `bminstance1`
|
13495
13583
|
|
@@ -13498,7 +13586,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
13498
13586
|
:param pulumi.Input[Sequence[pulumi.Input[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/).
|
13499
13587
|
|
13500
13588
|
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).
|
13501
|
-
:param pulumi.Input[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)
|
13589
|
+
:param pulumi.Input[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)`.
|
13502
13590
|
|
13503
13591
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
13504
13592
|
|
@@ -13628,11 +13716,11 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
13628
13716
|
@pulumi.getter(name="hostnameLabel")
|
13629
13717
|
def hostname_label(self) -> Optional[pulumi.Input[str]]:
|
13630
13718
|
"""
|
13631
|
-
(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)
|
13719
|
+
(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)`.
|
13632
13720
|
|
13633
13721
|
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
13634
13722
|
|
13635
|
-
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)
|
13723
|
+
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.
|
13636
13724
|
|
13637
13725
|
Example: `bminstance1`
|
13638
13726
|
|
@@ -13674,7 +13762,7 @@ class VnicAttachmentCreateVnicDetailsArgs:
|
|
13674
13762
|
@pulumi.getter(name="privateIp")
|
13675
13763
|
def private_ip(self) -> Optional[pulumi.Input[str]]:
|
13676
13764
|
"""
|
13677
|
-
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)
|
13765
|
+
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)`.
|
13678
13766
|
|
13679
13767
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
13680
13768
|
|