oci.Core.Instance
Explore with Pulumi AI
This resource provides the Instance resource in Oracle Cloud Infrastructure Core service.
Creates a new instance in the specified compartment and the specified availability domain. For general information about instances, see Overview of the Compute Service.
For information about access control and compartments, see Overview of the IAM Service.
For information about availability domains, see
Regions and Availability Domains.
To get a list of availability domains, use the ListAvailabilityDomains
operation
in the Identity and Access Management Service API.
All Oracle Cloud Infrastructure resources, including instances, get an Oracle-assigned, unique ID called an Oracle Cloud Identifier (OCID). When you create a resource, you can find its OCID in the response. You can also retrieve a resource’s OCID by using a List API operation on that resource type, or by viewing the resource in the Console.
To launch an instance using an image or a boot volume use the sourceDetails
parameter in LaunchInstanceDetails.
When you launch an instance, it is automatically attached to a virtual network interface card (VNIC), called the primary VNIC. The VNIC has a private IP address from the subnet’s CIDR. You can either assign a private IP address of your choice or let Oracle automatically assign one. You can choose whether the instance has a public IP address. To retrieve the addresses, use the ListVnicAttachments operation to get the VNIC ID for the instance, and then call GetVnic with the VNIC ID.
You can later add secondary VNICs to an instance. For more information, see Virtual Network Interface Cards (VNICs).
To launch an instance from a Marketplace image listing, you must provide the image ID of the listing resource version that you want, but you also must subscribe to the listing before you try to launch the instance. To subscribe to the listing, use the GetAppCatalogListingAgreements operation to get the signature for the terms of use agreement for the desired listing resource version. Then, call CreateAppCatalogSubscription with the signature. To get the image ID for the LaunchInstance operation, call GetAppCatalogListingResourceVersion.
To determine whether capacity is available for a specific shape before you create an instance, use the CreateComputeCapacityReport operation.
Create Instance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
@overload
def Instance(resource_name: str,
args: InstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Instance(resource_name: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
compartment_id: Optional[str] = None,
image: Optional[str] = None,
state: Optional[str] = None,
capacity_reservation_id: Optional[str] = None,
cluster_placement_group_id: Optional[str] = None,
async_: Optional[bool] = None,
compute_cluster_id: Optional[str] = None,
instance_options: Optional[_core.InstanceInstanceOptionsArgs] = None,
dedicated_vm_host_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
extended_metadata: Optional[Mapping[str, str]] = None,
fault_domain: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
hostname_label: Optional[str] = None,
update_operation_constraint: Optional[str] = None,
availability_config: Optional[_core.InstanceAvailabilityConfigArgs] = None,
create_vnic_details: Optional[_core.InstanceCreateVnicDetailsArgs] = None,
ipxe_script: Optional[str] = None,
is_pv_encryption_in_transit_enabled: Optional[bool] = None,
launch_options: Optional[_core.InstanceLaunchOptionsArgs] = None,
launch_volume_attachments: Optional[Sequence[_core.InstanceLaunchVolumeAttachmentArgs]] = None,
metadata: Optional[Mapping[str, str]] = None,
platform_config: Optional[_core.InstancePlatformConfigArgs] = None,
preemptible_instance_config: Optional[_core.InstancePreemptibleInstanceConfigArgs] = None,
preserve_boot_volume: Optional[bool] = None,
preserve_data_volumes_created_at_launch: Optional[bool] = None,
shape: Optional[str] = None,
shape_config: Optional[_core.InstanceShapeConfigArgs] = None,
source_details: Optional[_core.InstanceSourceDetailsArgs] = None,
instance_configuration_id: Optional[str] = None,
subnet_id: Optional[str] = None,
agent_config: Optional[_core.InstanceAgentConfigArgs] = None)
func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: oci:Core:Instance
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var instanceResource = new Oci.Core.Instance("instanceResource", new()
{
AvailabilityDomain = "string",
CompartmentId = "string",
State = "string",
CapacityReservationId = "string",
ClusterPlacementGroupId = "string",
Async = false,
ComputeClusterId = "string",
InstanceOptions = new Oci.Core.Inputs.InstanceInstanceOptionsArgs
{
AreLegacyImdsEndpointsDisabled = false,
},
DedicatedVmHostId = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
ExtendedMetadata =
{
{ "string", "string" },
},
FaultDomain = "string",
FreeformTags =
{
{ "string", "string" },
},
UpdateOperationConstraint = "string",
AvailabilityConfig = new Oci.Core.Inputs.InstanceAvailabilityConfigArgs
{
IsLiveMigrationPreferred = false,
RecoveryAction = "string",
},
CreateVnicDetails = new Oci.Core.Inputs.InstanceCreateVnicDetailsArgs
{
AssignIpv6ip = false,
AssignPrivateDnsRecord = false,
AssignPublicIp = "string",
DefinedTags =
{
{ "string", "string" },
},
DisplayName = "string",
FreeformTags =
{
{ "string", "string" },
},
HostnameLabel = "string",
Ipv6addressIpv6subnetCidrPairDetails = new[]
{
new Oci.Core.Inputs.InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs
{
Ipv6address = "string",
Ipv6subnetCidr = "string",
},
},
NsgIds = new[]
{
"string",
},
PrivateIp = "string",
SkipSourceDestCheck = false,
SubnetId = "string",
VlanId = "string",
},
IpxeScript = "string",
IsPvEncryptionInTransitEnabled = false,
LaunchOptions = new Oci.Core.Inputs.InstanceLaunchOptionsArgs
{
BootVolumeType = "string",
Firmware = "string",
IsConsistentVolumeNamingEnabled = false,
IsPvEncryptionInTransitEnabled = false,
NetworkType = "string",
RemoteDataVolumeType = "string",
},
LaunchVolumeAttachments = new[]
{
new Oci.Core.Inputs.InstanceLaunchVolumeAttachmentArgs
{
Type = "string",
Device = "string",
DisplayName = "string",
EncryptionInTransitType = "string",
IsAgentAutoIscsiLoginEnabled = false,
IsReadOnly = false,
IsShareable = false,
LaunchCreateVolumeDetails = new Oci.Core.Inputs.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs
{
SizeInGbs = "string",
VolumeCreationType = "string",
CompartmentId = "string",
DisplayName = "string",
KmsKeyId = "string",
VpusPerGb = "string",
},
UseChap = false,
VolumeId = "string",
},
},
Metadata =
{
{ "string", "string" },
},
PlatformConfig = new Oci.Core.Inputs.InstancePlatformConfigArgs
{
Type = "string",
AreVirtualInstructionsEnabled = false,
ConfigMap =
{
{ "string", "string" },
},
IsAccessControlServiceEnabled = false,
IsInputOutputMemoryManagementUnitEnabled = false,
IsMeasuredBootEnabled = false,
IsMemoryEncryptionEnabled = false,
IsSecureBootEnabled = false,
IsSymmetricMultiThreadingEnabled = false,
IsTrustedPlatformModuleEnabled = false,
NumaNodesPerSocket = "string",
PercentageOfCoresEnabled = 0,
},
PreemptibleInstanceConfig = new Oci.Core.Inputs.InstancePreemptibleInstanceConfigArgs
{
PreemptionAction = new Oci.Core.Inputs.InstancePreemptibleInstanceConfigPreemptionActionArgs
{
Type = "string",
PreserveBootVolume = false,
},
},
PreserveBootVolume = false,
PreserveDataVolumesCreatedAtLaunch = false,
Shape = "string",
ShapeConfig = new Oci.Core.Inputs.InstanceShapeConfigArgs
{
BaselineOcpuUtilization = "string",
GpuDescription = "string",
Gpus = 0,
LocalDiskDescription = "string",
LocalDisks = 0,
LocalDisksTotalSizeInGbs = 0,
MaxVnicAttachments = 0,
MemoryInGbs = 0,
NetworkingBandwidthInGbps = 0,
Nvmes = 0,
Ocpus = 0,
ProcessorDescription = "string",
Vcpus = 0,
},
SourceDetails = new Oci.Core.Inputs.InstanceSourceDetailsArgs
{
SourceType = "string",
BootVolumeSizeInGbs = "string",
BootVolumeVpusPerGb = "string",
InstanceSourceImageFilterDetails = new Oci.Core.Inputs.InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs
{
CompartmentId = "string",
DefinedTagsFilter =
{
{ "string", "string" },
},
OperatingSystem = "string",
OperatingSystemVersion = "string",
},
IsPreserveBootVolumeEnabled = false,
KmsKeyId = "string",
SourceId = "string",
},
InstanceConfigurationId = "string",
AgentConfig = new Oci.Core.Inputs.InstanceAgentConfigArgs
{
AreAllPluginsDisabled = false,
IsManagementDisabled = false,
IsMonitoringDisabled = false,
PluginsConfigs = new[]
{
new Oci.Core.Inputs.InstanceAgentConfigPluginsConfigArgs
{
DesiredState = "string",
Name = "string",
},
},
},
});
example, err := Core.NewInstance(ctx, "instanceResource", &Core.InstanceArgs{
AvailabilityDomain: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
State: pulumi.String("string"),
CapacityReservationId: pulumi.String("string"),
ClusterPlacementGroupId: pulumi.String("string"),
Async: pulumi.Bool(false),
ComputeClusterId: pulumi.String("string"),
InstanceOptions: &core.InstanceInstanceOptionsArgs{
AreLegacyImdsEndpointsDisabled: pulumi.Bool(false),
},
DedicatedVmHostId: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
ExtendedMetadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
FaultDomain: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
UpdateOperationConstraint: pulumi.String("string"),
AvailabilityConfig: &core.InstanceAvailabilityConfigArgs{
IsLiveMigrationPreferred: pulumi.Bool(false),
RecoveryAction: pulumi.String("string"),
},
CreateVnicDetails: &core.InstanceCreateVnicDetailsArgs{
AssignIpv6ip: pulumi.Bool(false),
AssignPrivateDnsRecord: pulumi.Bool(false),
AssignPublicIp: pulumi.String("string"),
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
HostnameLabel: pulumi.String("string"),
Ipv6addressIpv6subnetCidrPairDetails: core.InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArray{
&core.InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs{
Ipv6address: pulumi.String("string"),
Ipv6subnetCidr: pulumi.String("string"),
},
},
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
PrivateIp: pulumi.String("string"),
SkipSourceDestCheck: pulumi.Bool(false),
SubnetId: pulumi.String("string"),
VlanId: pulumi.String("string"),
},
IpxeScript: pulumi.String("string"),
IsPvEncryptionInTransitEnabled: pulumi.Bool(false),
LaunchOptions: &core.InstanceLaunchOptionsArgs{
BootVolumeType: pulumi.String("string"),
Firmware: pulumi.String("string"),
IsConsistentVolumeNamingEnabled: pulumi.Bool(false),
IsPvEncryptionInTransitEnabled: pulumi.Bool(false),
NetworkType: pulumi.String("string"),
RemoteDataVolumeType: pulumi.String("string"),
},
LaunchVolumeAttachments: core.InstanceLaunchVolumeAttachmentArray{
&core.InstanceLaunchVolumeAttachmentArgs{
Type: pulumi.String("string"),
Device: pulumi.String("string"),
DisplayName: pulumi.String("string"),
EncryptionInTransitType: pulumi.String("string"),
IsAgentAutoIscsiLoginEnabled: pulumi.Bool(false),
IsReadOnly: pulumi.Bool(false),
IsShareable: pulumi.Bool(false),
LaunchCreateVolumeDetails: &core.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs{
SizeInGbs: pulumi.String("string"),
VolumeCreationType: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
KmsKeyId: pulumi.String("string"),
VpusPerGb: pulumi.String("string"),
},
UseChap: pulumi.Bool(false),
VolumeId: pulumi.String("string"),
},
},
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
PlatformConfig: &core.InstancePlatformConfigArgs{
Type: pulumi.String("string"),
AreVirtualInstructionsEnabled: pulumi.Bool(false),
ConfigMap: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsAccessControlServiceEnabled: pulumi.Bool(false),
IsInputOutputMemoryManagementUnitEnabled: pulumi.Bool(false),
IsMeasuredBootEnabled: pulumi.Bool(false),
IsMemoryEncryptionEnabled: pulumi.Bool(false),
IsSecureBootEnabled: pulumi.Bool(false),
IsSymmetricMultiThreadingEnabled: pulumi.Bool(false),
IsTrustedPlatformModuleEnabled: pulumi.Bool(false),
NumaNodesPerSocket: pulumi.String("string"),
PercentageOfCoresEnabled: pulumi.Int(0),
},
PreemptibleInstanceConfig: &core.InstancePreemptibleInstanceConfigArgs{
PreemptionAction: &core.InstancePreemptibleInstanceConfigPreemptionActionArgs{
Type: pulumi.String("string"),
PreserveBootVolume: pulumi.Bool(false),
},
},
PreserveBootVolume: pulumi.Bool(false),
PreserveDataVolumesCreatedAtLaunch: pulumi.Bool(false),
Shape: pulumi.String("string"),
ShapeConfig: &core.InstanceShapeConfigArgs{
BaselineOcpuUtilization: pulumi.String("string"),
GpuDescription: pulumi.String("string"),
Gpus: pulumi.Int(0),
LocalDiskDescription: pulumi.String("string"),
LocalDisks: pulumi.Int(0),
LocalDisksTotalSizeInGbs: pulumi.Float64(0),
MaxVnicAttachments: pulumi.Int(0),
MemoryInGbs: pulumi.Float64(0),
NetworkingBandwidthInGbps: pulumi.Float64(0),
Nvmes: pulumi.Int(0),
Ocpus: pulumi.Float64(0),
ProcessorDescription: pulumi.String("string"),
Vcpus: pulumi.Int(0),
},
SourceDetails: &core.InstanceSourceDetailsArgs{
SourceType: pulumi.String("string"),
BootVolumeSizeInGbs: pulumi.String("string"),
BootVolumeVpusPerGb: pulumi.String("string"),
InstanceSourceImageFilterDetails: &core.InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs{
CompartmentId: pulumi.String("string"),
DefinedTagsFilter: pulumi.StringMap{
"string": pulumi.String("string"),
},
OperatingSystem: pulumi.String("string"),
OperatingSystemVersion: pulumi.String("string"),
},
IsPreserveBootVolumeEnabled: pulumi.Bool(false),
KmsKeyId: pulumi.String("string"),
SourceId: pulumi.String("string"),
},
InstanceConfigurationId: pulumi.String("string"),
AgentConfig: &core.InstanceAgentConfigArgs{
AreAllPluginsDisabled: pulumi.Bool(false),
IsManagementDisabled: pulumi.Bool(false),
IsMonitoringDisabled: pulumi.Bool(false),
PluginsConfigs: core.InstanceAgentConfigPluginsConfigArray{
&core.InstanceAgentConfigPluginsConfigArgs{
DesiredState: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
},
})
var instanceResource = new Instance("instanceResource", InstanceArgs.builder()
.availabilityDomain("string")
.compartmentId("string")
.state("string")
.capacityReservationId("string")
.clusterPlacementGroupId("string")
.async(false)
.computeClusterId("string")
.instanceOptions(InstanceInstanceOptionsArgs.builder()
.areLegacyImdsEndpointsDisabled(false)
.build())
.dedicatedVmHostId("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.extendedMetadata(Map.of("string", "string"))
.faultDomain("string")
.freeformTags(Map.of("string", "string"))
.updateOperationConstraint("string")
.availabilityConfig(InstanceAvailabilityConfigArgs.builder()
.isLiveMigrationPreferred(false)
.recoveryAction("string")
.build())
.createVnicDetails(InstanceCreateVnicDetailsArgs.builder()
.assignIpv6ip(false)
.assignPrivateDnsRecord(false)
.assignPublicIp("string")
.definedTags(Map.of("string", "string"))
.displayName("string")
.freeformTags(Map.of("string", "string"))
.hostnameLabel("string")
.ipv6addressIpv6subnetCidrPairDetails(InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs.builder()
.ipv6address("string")
.ipv6subnetCidr("string")
.build())
.nsgIds("string")
.privateIp("string")
.skipSourceDestCheck(false)
.subnetId("string")
.vlanId("string")
.build())
.ipxeScript("string")
.isPvEncryptionInTransitEnabled(false)
.launchOptions(InstanceLaunchOptionsArgs.builder()
.bootVolumeType("string")
.firmware("string")
.isConsistentVolumeNamingEnabled(false)
.isPvEncryptionInTransitEnabled(false)
.networkType("string")
.remoteDataVolumeType("string")
.build())
.launchVolumeAttachments(InstanceLaunchVolumeAttachmentArgs.builder()
.type("string")
.device("string")
.displayName("string")
.encryptionInTransitType("string")
.isAgentAutoIscsiLoginEnabled(false)
.isReadOnly(false)
.isShareable(false)
.launchCreateVolumeDetails(InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs.builder()
.sizeInGbs("string")
.volumeCreationType("string")
.compartmentId("string")
.displayName("string")
.kmsKeyId("string")
.vpusPerGb("string")
.build())
.useChap(false)
.volumeId("string")
.build())
.metadata(Map.of("string", "string"))
.platformConfig(InstancePlatformConfigArgs.builder()
.type("string")
.areVirtualInstructionsEnabled(false)
.configMap(Map.of("string", "string"))
.isAccessControlServiceEnabled(false)
.isInputOutputMemoryManagementUnitEnabled(false)
.isMeasuredBootEnabled(false)
.isMemoryEncryptionEnabled(false)
.isSecureBootEnabled(false)
.isSymmetricMultiThreadingEnabled(false)
.isTrustedPlatformModuleEnabled(false)
.numaNodesPerSocket("string")
.percentageOfCoresEnabled(0)
.build())
.preemptibleInstanceConfig(InstancePreemptibleInstanceConfigArgs.builder()
.preemptionAction(InstancePreemptibleInstanceConfigPreemptionActionArgs.builder()
.type("string")
.preserveBootVolume(false)
.build())
.build())
.preserveBootVolume(false)
.preserveDataVolumesCreatedAtLaunch(false)
.shape("string")
.shapeConfig(InstanceShapeConfigArgs.builder()
.baselineOcpuUtilization("string")
.gpuDescription("string")
.gpus(0)
.localDiskDescription("string")
.localDisks(0)
.localDisksTotalSizeInGbs(0)
.maxVnicAttachments(0)
.memoryInGbs(0)
.networkingBandwidthInGbps(0)
.nvmes(0)
.ocpus(0)
.processorDescription("string")
.vcpus(0)
.build())
.sourceDetails(InstanceSourceDetailsArgs.builder()
.sourceType("string")
.bootVolumeSizeInGbs("string")
.bootVolumeVpusPerGb("string")
.instanceSourceImageFilterDetails(InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs.builder()
.compartmentId("string")
.definedTagsFilter(Map.of("string", "string"))
.operatingSystem("string")
.operatingSystemVersion("string")
.build())
.isPreserveBootVolumeEnabled(false)
.kmsKeyId("string")
.sourceId("string")
.build())
.instanceConfigurationId("string")
.agentConfig(InstanceAgentConfigArgs.builder()
.areAllPluginsDisabled(false)
.isManagementDisabled(false)
.isMonitoringDisabled(false)
.pluginsConfigs(InstanceAgentConfigPluginsConfigArgs.builder()
.desiredState("string")
.name("string")
.build())
.build())
.build());
instance_resource = oci.core.Instance("instanceResource",
availability_domain="string",
compartment_id="string",
state="string",
capacity_reservation_id="string",
cluster_placement_group_id="string",
async_=False,
compute_cluster_id="string",
instance_options=oci.core.InstanceInstanceOptionsArgs(
are_legacy_imds_endpoints_disabled=False,
),
dedicated_vm_host_id="string",
defined_tags={
"string": "string",
},
display_name="string",
extended_metadata={
"string": "string",
},
fault_domain="string",
freeform_tags={
"string": "string",
},
update_operation_constraint="string",
availability_config=oci.core.InstanceAvailabilityConfigArgs(
is_live_migration_preferred=False,
recovery_action="string",
),
create_vnic_details=oci.core.InstanceCreateVnicDetailsArgs(
assign_ipv6ip=False,
assign_private_dns_record=False,
assign_public_ip="string",
defined_tags={
"string": "string",
},
display_name="string",
freeform_tags={
"string": "string",
},
hostname_label="string",
ipv6address_ipv6subnet_cidr_pair_details=[oci.core.InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs(
ipv6address="string",
ipv6subnet_cidr="string",
)],
nsg_ids=["string"],
private_ip="string",
skip_source_dest_check=False,
subnet_id="string",
vlan_id="string",
),
ipxe_script="string",
is_pv_encryption_in_transit_enabled=False,
launch_options=oci.core.InstanceLaunchOptionsArgs(
boot_volume_type="string",
firmware="string",
is_consistent_volume_naming_enabled=False,
is_pv_encryption_in_transit_enabled=False,
network_type="string",
remote_data_volume_type="string",
),
launch_volume_attachments=[oci.core.InstanceLaunchVolumeAttachmentArgs(
type="string",
device="string",
display_name="string",
encryption_in_transit_type="string",
is_agent_auto_iscsi_login_enabled=False,
is_read_only=False,
is_shareable=False,
launch_create_volume_details=oci.core.InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs(
size_in_gbs="string",
volume_creation_type="string",
compartment_id="string",
display_name="string",
kms_key_id="string",
vpus_per_gb="string",
),
use_chap=False,
volume_id="string",
)],
metadata={
"string": "string",
},
platform_config=oci.core.InstancePlatformConfigArgs(
type="string",
are_virtual_instructions_enabled=False,
config_map={
"string": "string",
},
is_access_control_service_enabled=False,
is_input_output_memory_management_unit_enabled=False,
is_measured_boot_enabled=False,
is_memory_encryption_enabled=False,
is_secure_boot_enabled=False,
is_symmetric_multi_threading_enabled=False,
is_trusted_platform_module_enabled=False,
numa_nodes_per_socket="string",
percentage_of_cores_enabled=0,
),
preemptible_instance_config=oci.core.InstancePreemptibleInstanceConfigArgs(
preemption_action=oci.core.InstancePreemptibleInstanceConfigPreemptionActionArgs(
type="string",
preserve_boot_volume=False,
),
),
preserve_boot_volume=False,
preserve_data_volumes_created_at_launch=False,
shape="string",
shape_config=oci.core.InstanceShapeConfigArgs(
baseline_ocpu_utilization="string",
gpu_description="string",
gpus=0,
local_disk_description="string",
local_disks=0,
local_disks_total_size_in_gbs=0,
max_vnic_attachments=0,
memory_in_gbs=0,
networking_bandwidth_in_gbps=0,
nvmes=0,
ocpus=0,
processor_description="string",
vcpus=0,
),
source_details=oci.core.InstanceSourceDetailsArgs(
source_type="string",
boot_volume_size_in_gbs="string",
boot_volume_vpus_per_gb="string",
instance_source_image_filter_details=oci.core.InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs(
compartment_id="string",
defined_tags_filter={
"string": "string",
},
operating_system="string",
operating_system_version="string",
),
is_preserve_boot_volume_enabled=False,
kms_key_id="string",
source_id="string",
),
instance_configuration_id="string",
agent_config=oci.core.InstanceAgentConfigArgs(
are_all_plugins_disabled=False,
is_management_disabled=False,
is_monitoring_disabled=False,
plugins_configs=[oci.core.InstanceAgentConfigPluginsConfigArgs(
desired_state="string",
name="string",
)],
))
const instanceResource = new oci.core.Instance("instanceResource", {
availabilityDomain: "string",
compartmentId: "string",
state: "string",
capacityReservationId: "string",
clusterPlacementGroupId: "string",
async: false,
computeClusterId: "string",
instanceOptions: {
areLegacyImdsEndpointsDisabled: false,
},
dedicatedVmHostId: "string",
definedTags: {
string: "string",
},
displayName: "string",
extendedMetadata: {
string: "string",
},
faultDomain: "string",
freeformTags: {
string: "string",
},
updateOperationConstraint: "string",
availabilityConfig: {
isLiveMigrationPreferred: false,
recoveryAction: "string",
},
createVnicDetails: {
assignIpv6ip: false,
assignPrivateDnsRecord: false,
assignPublicIp: "string",
definedTags: {
string: "string",
},
displayName: "string",
freeformTags: {
string: "string",
},
hostnameLabel: "string",
ipv6addressIpv6subnetCidrPairDetails: [{
ipv6address: "string",
ipv6subnetCidr: "string",
}],
nsgIds: ["string"],
privateIp: "string",
skipSourceDestCheck: false,
subnetId: "string",
vlanId: "string",
},
ipxeScript: "string",
isPvEncryptionInTransitEnabled: false,
launchOptions: {
bootVolumeType: "string",
firmware: "string",
isConsistentVolumeNamingEnabled: false,
isPvEncryptionInTransitEnabled: false,
networkType: "string",
remoteDataVolumeType: "string",
},
launchVolumeAttachments: [{
type: "string",
device: "string",
displayName: "string",
encryptionInTransitType: "string",
isAgentAutoIscsiLoginEnabled: false,
isReadOnly: false,
isShareable: false,
launchCreateVolumeDetails: {
sizeInGbs: "string",
volumeCreationType: "string",
compartmentId: "string",
displayName: "string",
kmsKeyId: "string",
vpusPerGb: "string",
},
useChap: false,
volumeId: "string",
}],
metadata: {
string: "string",
},
platformConfig: {
type: "string",
areVirtualInstructionsEnabled: false,
configMap: {
string: "string",
},
isAccessControlServiceEnabled: false,
isInputOutputMemoryManagementUnitEnabled: false,
isMeasuredBootEnabled: false,
isMemoryEncryptionEnabled: false,
isSecureBootEnabled: false,
isSymmetricMultiThreadingEnabled: false,
isTrustedPlatformModuleEnabled: false,
numaNodesPerSocket: "string",
percentageOfCoresEnabled: 0,
},
preemptibleInstanceConfig: {
preemptionAction: {
type: "string",
preserveBootVolume: false,
},
},
preserveBootVolume: false,
preserveDataVolumesCreatedAtLaunch: false,
shape: "string",
shapeConfig: {
baselineOcpuUtilization: "string",
gpuDescription: "string",
gpus: 0,
localDiskDescription: "string",
localDisks: 0,
localDisksTotalSizeInGbs: 0,
maxVnicAttachments: 0,
memoryInGbs: 0,
networkingBandwidthInGbps: 0,
nvmes: 0,
ocpus: 0,
processorDescription: "string",
vcpus: 0,
},
sourceDetails: {
sourceType: "string",
bootVolumeSizeInGbs: "string",
bootVolumeVpusPerGb: "string",
instanceSourceImageFilterDetails: {
compartmentId: "string",
definedTagsFilter: {
string: "string",
},
operatingSystem: "string",
operatingSystemVersion: "string",
},
isPreserveBootVolumeEnabled: false,
kmsKeyId: "string",
sourceId: "string",
},
instanceConfigurationId: "string",
agentConfig: {
areAllPluginsDisabled: false,
isManagementDisabled: false,
isMonitoringDisabled: false,
pluginsConfigs: [{
desiredState: "string",
name: "string",
}],
},
});
type: oci:Core:Instance
properties:
agentConfig:
areAllPluginsDisabled: false
isManagementDisabled: false
isMonitoringDisabled: false
pluginsConfigs:
- desiredState: string
name: string
async: false
availabilityConfig:
isLiveMigrationPreferred: false
recoveryAction: string
availabilityDomain: string
capacityReservationId: string
clusterPlacementGroupId: string
compartmentId: string
computeClusterId: string
createVnicDetails:
assignIpv6ip: false
assignPrivateDnsRecord: false
assignPublicIp: string
definedTags:
string: string
displayName: string
freeformTags:
string: string
hostnameLabel: string
ipv6addressIpv6subnetCidrPairDetails:
- ipv6address: string
ipv6subnetCidr: string
nsgIds:
- string
privateIp: string
skipSourceDestCheck: false
subnetId: string
vlanId: string
dedicatedVmHostId: string
definedTags:
string: string
displayName: string
extendedMetadata:
string: string
faultDomain: string
freeformTags:
string: string
instanceConfigurationId: string
instanceOptions:
areLegacyImdsEndpointsDisabled: false
ipxeScript: string
isPvEncryptionInTransitEnabled: false
launchOptions:
bootVolumeType: string
firmware: string
isConsistentVolumeNamingEnabled: false
isPvEncryptionInTransitEnabled: false
networkType: string
remoteDataVolumeType: string
launchVolumeAttachments:
- device: string
displayName: string
encryptionInTransitType: string
isAgentAutoIscsiLoginEnabled: false
isReadOnly: false
isShareable: false
launchCreateVolumeDetails:
compartmentId: string
displayName: string
kmsKeyId: string
sizeInGbs: string
volumeCreationType: string
vpusPerGb: string
type: string
useChap: false
volumeId: string
metadata:
string: string
platformConfig:
areVirtualInstructionsEnabled: false
configMap:
string: string
isAccessControlServiceEnabled: false
isInputOutputMemoryManagementUnitEnabled: false
isMeasuredBootEnabled: false
isMemoryEncryptionEnabled: false
isSecureBootEnabled: false
isSymmetricMultiThreadingEnabled: false
isTrustedPlatformModuleEnabled: false
numaNodesPerSocket: string
percentageOfCoresEnabled: 0
type: string
preemptibleInstanceConfig:
preemptionAction:
preserveBootVolume: false
type: string
preserveBootVolume: false
preserveDataVolumesCreatedAtLaunch: false
shape: string
shapeConfig:
baselineOcpuUtilization: string
gpuDescription: string
gpus: 0
localDiskDescription: string
localDisks: 0
localDisksTotalSizeInGbs: 0
maxVnicAttachments: 0
memoryInGbs: 0
networkingBandwidthInGbps: 0
nvmes: 0
ocpus: 0
processorDescription: string
vcpus: 0
sourceDetails:
bootVolumeSizeInGbs: string
bootVolumeVpusPerGb: string
instanceSourceImageFilterDetails:
compartmentId: string
definedTagsFilter:
string: string
operatingSystem: string
operatingSystemVersion: string
isPreserveBootVolumeEnabled: false
kmsKeyId: string
sourceId: string
sourceType: string
state: string
updateOperationConstraint: string
Instance Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Instance resource accepts the following input properties:
- Availability
Domain string - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Agent
Config InstanceAgent Config - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- Async bool
- Availability
Config InstanceAvailability Config - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- Capacity
Reservation stringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the instance.
- Compute
Cluster stringId - The OCID of the compute cluster that the instance will be created in.
- Create
Vnic InstanceDetails Create Vnic Details - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- Dedicated
Vm stringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Extended
Metadata Dictionary<string, string> - Fault
Domain string (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"}
- Hostname
Label string - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - Image string
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - Instance
Configuration stringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- Instance
Options InstanceInstance Options - (Updatable) Optional mutable instance options
- Ipxe
Script string This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- Is
Pv boolEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - Launch
Options InstanceLaunch Options - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- Launch
Volume List<InstanceAttachments Launch Volume Attachment> Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- Metadata Dictionary<string, string>
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- Platform
Config InstancePlatform Config (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- Preemptible
Instance InstanceConfig Preemptible Instance Config - Configuration options for preemptible instances.
- Preserve
Boot boolVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- Preserve
Data boolVolumes Created At Launch - Shape string
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- Shape
Config InstanceShape Config (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- Source
Details InstanceSource Details - (Updatable)
- State string
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Subnet
Id string - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - Update
Operation stringConstraint
- Availability
Domain string - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Agent
Config InstanceAgent Config Args - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- Async bool
- Availability
Config InstanceAvailability Config Args - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- Capacity
Reservation stringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the instance.
- Compute
Cluster stringId - The OCID of the compute cluster that the instance will be created in.
- Create
Vnic InstanceDetails Create Vnic Details Args - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- Dedicated
Vm stringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Extended
Metadata map[string]string - Fault
Domain string (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- map[string]string
- (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. Example:
{"Department": "Finance"}
- Hostname
Label string - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - Image string
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - Instance
Configuration stringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- Instance
Options InstanceInstance Options Args - (Updatable) Optional mutable instance options
- Ipxe
Script string This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- Is
Pv boolEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - Launch
Options InstanceLaunch Options Args - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- Launch
Volume []InstanceAttachments Launch Volume Attachment Args Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- Metadata map[string]string
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- Platform
Config InstancePlatform Config Args (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- Preemptible
Instance InstanceConfig Preemptible Instance Config Args - Configuration options for preemptible instances.
- Preserve
Boot boolVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- Preserve
Data boolVolumes Created At Launch - Shape string
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- Shape
Config InstanceShape Config Args (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- Source
Details InstanceSource Details Args - (Updatable)
- State string
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Subnet
Id string - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - Update
Operation stringConstraint
- availability
Domain String - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- compartment
Id String - (Updatable) The OCID of the compartment.
- agent
Config InstanceAgent Config - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async Boolean
- availability
Config InstanceAvailability Config - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- capacity
Reservation StringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the instance.
- compute
Cluster StringId - The OCID of the compute cluster that the instance will be created in.
- create
Vnic InstanceDetails Create Vnic Details - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated
Vm StringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended
Metadata Map<String,String> - fault
Domain String (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Map<String,String>
- (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. Example:
{"Department": "Finance"}
- hostname
Label String - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image String
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance
Configuration StringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance
Options InstanceInstance Options - (Updatable) Optional mutable instance options
- ipxe
Script String This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is
Pv BooleanEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch
Options InstanceLaunch Options - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch
Volume List<InstanceAttachments Launch Volume Attachment> Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata Map<String,String>
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform
Config InstancePlatform Config (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible
Instance InstanceConfig Preemptible Instance Config - Configuration options for preemptible instances.
- preserve
Boot BooleanVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve
Data BooleanVolumes Created At Launch - shape String
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape
Config InstanceShape Config (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source
Details InstanceSource Details - (Updatable)
- state String
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet
Id String - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - update
Operation StringConstraint
- availability
Domain string - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- compartment
Id string - (Updatable) The OCID of the compartment.
- agent
Config InstanceAgent Config - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async boolean
- availability
Config InstanceAvailability Config - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- capacity
Reservation stringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster
Placement stringGroup Id - The OCID of the cluster placement group of the instance.
- compute
Cluster stringId - The OCID of the compute cluster that the instance will be created in.
- create
Vnic InstanceDetails Create Vnic Details - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated
Vm stringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended
Metadata {[key: string]: string} - fault
Domain string (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"}
- hostname
Label string - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image string
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance
Configuration stringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance
Options InstanceInstance Options - (Updatable) Optional mutable instance options
- ipxe
Script string This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is
Pv booleanEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch
Options InstanceLaunch Options - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch
Volume InstanceAttachments Launch Volume Attachment[] Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata {[key: string]: string}
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform
Config InstancePlatform Config (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible
Instance InstanceConfig Preemptible Instance Config - Configuration options for preemptible instances.
- preserve
Boot booleanVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve
Data booleanVolumes Created At Launch - shape string
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape
Config InstanceShape Config (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source
Details InstanceSource Details - (Updatable)
- state string
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet
Id string - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - update
Operation stringConstraint
- availability_
domain str - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- compartment_
id str - (Updatable) The OCID of the compartment.
- agent_
config core.Instance Agent Config Args - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async_ bool
- availability_
config core.Instance Availability Config Args - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- capacity_
reservation_ strid - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster_
placement_ strgroup_ id - The OCID of the cluster placement group of the instance.
- compute_
cluster_ strid - The OCID of the compute cluster that the instance will be created in.
- create_
vnic_ core.details Instance Create Vnic Details Args - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated_
vm_ strhost_ id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended_
metadata Mapping[str, str] - fault_
domain str (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"}
- hostname_
label str - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image str
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance_
configuration_ strid - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance_
options core.Instance Instance Options Args - (Updatable) Optional mutable instance options
- ipxe_
script str This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is_
pv_ boolencryption_ in_ transit_ enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch_
options core.Instance Launch Options Args - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch_
volume_ Sequence[core.attachments Instance Launch Volume Attachment Args] Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata Mapping[str, str]
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform_
config core.Instance Platform Config Args (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible_
instance_ core.config Instance Preemptible Instance Config Args - Configuration options for preemptible instances.
- preserve_
boot_ boolvolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve_
data_ boolvolumes_ created_ at_ launch - shape str
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape_
config core.Instance Shape Config Args (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source_
details core.Instance Source Details Args - (Updatable)
- state str
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet_
id str - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - update_
operation_ strconstraint
- availability
Domain String - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- compartment
Id String - (Updatable) The OCID of the compartment.
- agent
Config Property Map - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async Boolean
- availability
Config Property Map - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- capacity
Reservation StringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the instance.
- compute
Cluster StringId - The OCID of the compute cluster that the instance will be created in.
- create
Vnic Property MapDetails - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated
Vm StringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended
Metadata Map<String> - fault
Domain String (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Map<String>
- (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. Example:
{"Department": "Finance"}
- hostname
Label String - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image String
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance
Configuration StringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance
Options Property Map - (Updatable) Optional mutable instance options
- ipxe
Script String This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is
Pv BooleanEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch
Options Property Map - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch
Volume List<Property Map>Attachments Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata Map<String>
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform
Config Property Map (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible
Instance Property MapConfig - Configuration options for preemptible instances.
- preserve
Boot BooleanVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve
Data BooleanVolumes Created At Launch - shape String
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape
Config Property Map (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source
Details Property Map - (Updatable)
- state String
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet
Id String - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - update
Operation StringConstraint
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
- Boot
Volume stringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - Id string
- The provider-assigned unique ID for this managed resource.
- Is
Cross boolNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- Launch
Mode string - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- Private
Ip string - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - Public
Ip string - The public IP address of instance VNIC (if enabled).
- Region string
- The region that contains the availability domain the instance is running in.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Time
Created string - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Maintenance stringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- Boot
Volume stringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - Id string
- The provider-assigned unique ID for this managed resource.
- Is
Cross boolNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- Launch
Mode string - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- Private
Ip string - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - Public
Ip string - The public IP address of instance VNIC (if enabled).
- Region string
- The region that contains the availability domain the instance is running in.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Time
Created string - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Maintenance stringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- boot
Volume StringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - id String
- The provider-assigned unique ID for this managed resource.
- is
Cross BooleanNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- launch
Mode String - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- private
Ip String - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public
Ip String - The public IP address of instance VNIC (if enabled).
- region String
- The region that contains the availability domain the instance is running in.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time
Created String - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Maintenance StringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- boot
Volume stringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - id string
- The provider-assigned unique ID for this managed resource.
- is
Cross booleanNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- launch
Mode string - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- private
Ip string - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public
Ip string - The public IP address of instance VNIC (if enabled).
- region string
- The region that contains the availability domain the instance is running in.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time
Created string - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Maintenance stringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- boot_
volume_ strid - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - id str
- The provider-assigned unique ID for this managed resource.
- is_
cross_ boolnuma_ node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- launch_
mode str - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- private_
ip str - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public_
ip str - The public IP address of instance VNIC (if enabled).
- region str
- The region that contains the availability domain the instance is running in.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time_
created str - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time_
maintenance_ strreboot_ due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- boot
Volume StringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - id String
- The provider-assigned unique ID for this managed resource.
- is
Cross BooleanNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- launch
Mode String - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- private
Ip String - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public
Ip String - The public IP address of instance VNIC (if enabled).
- region String
- The region that contains the availability domain the instance is running in.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time
Created String - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Maintenance StringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
Look up Existing Instance Resource
Get an existing Instance resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: InstanceState, opts?: CustomResourceOptions): Instance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agent_config: Optional[_core.InstanceAgentConfigArgs] = None,
async_: Optional[bool] = None,
availability_config: Optional[_core.InstanceAvailabilityConfigArgs] = None,
availability_domain: Optional[str] = None,
boot_volume_id: Optional[str] = None,
capacity_reservation_id: Optional[str] = None,
cluster_placement_group_id: Optional[str] = None,
compartment_id: Optional[str] = None,
compute_cluster_id: Optional[str] = None,
create_vnic_details: Optional[_core.InstanceCreateVnicDetailsArgs] = None,
dedicated_vm_host_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
extended_metadata: Optional[Mapping[str, str]] = None,
fault_domain: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
hostname_label: Optional[str] = None,
image: Optional[str] = None,
instance_configuration_id: Optional[str] = None,
instance_options: Optional[_core.InstanceInstanceOptionsArgs] = None,
ipxe_script: Optional[str] = None,
is_cross_numa_node: Optional[bool] = None,
is_pv_encryption_in_transit_enabled: Optional[bool] = None,
launch_mode: Optional[str] = None,
launch_options: Optional[_core.InstanceLaunchOptionsArgs] = None,
launch_volume_attachments: Optional[Sequence[_core.InstanceLaunchVolumeAttachmentArgs]] = None,
metadata: Optional[Mapping[str, str]] = None,
platform_config: Optional[_core.InstancePlatformConfigArgs] = None,
preemptible_instance_config: Optional[_core.InstancePreemptibleInstanceConfigArgs] = None,
preserve_boot_volume: Optional[bool] = None,
preserve_data_volumes_created_at_launch: Optional[bool] = None,
private_ip: Optional[str] = None,
public_ip: Optional[str] = None,
region: Optional[str] = None,
shape: Optional[str] = None,
shape_config: Optional[_core.InstanceShapeConfigArgs] = None,
source_details: Optional[_core.InstanceSourceDetailsArgs] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_maintenance_reboot_due: Optional[str] = None,
update_operation_constraint: Optional[str] = None) -> Instance
func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Agent
Config InstanceAgent Config - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- Async bool
- Availability
Config InstanceAvailability Config - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- Availability
Domain string - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- Boot
Volume stringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - Capacity
Reservation stringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the instance.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Cluster stringId - The OCID of the compute cluster that the instance will be created in.
- Create
Vnic InstanceDetails Create Vnic Details - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- Dedicated
Vm stringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Extended
Metadata Dictionary<string, string> - Fault
Domain string (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"}
- Hostname
Label string - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - Image string
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - Instance
Configuration stringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- Instance
Options InstanceInstance Options - (Updatable) Optional mutable instance options
- Ipxe
Script string This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- Is
Cross boolNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- Is
Pv boolEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - Launch
Mode string - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- Launch
Options InstanceLaunch Options - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- Launch
Volume List<InstanceAttachments Launch Volume Attachment> Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- Metadata Dictionary<string, string>
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- Platform
Config InstancePlatform Config (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- Preemptible
Instance InstanceConfig Preemptible Instance Config - Configuration options for preemptible instances.
- Preserve
Boot boolVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- Preserve
Data boolVolumes Created At Launch - Private
Ip string - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - Public
Ip string - The public IP address of instance VNIC (if enabled).
- Region string
- The region that contains the availability domain the instance is running in.
- Shape string
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- Shape
Config InstanceShape Config (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- Source
Details InstanceSource Details - (Updatable)
- State string
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Subnet
Id string - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Time
Created string - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Maintenance stringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- Update
Operation stringConstraint
- Agent
Config InstanceAgent Config Args - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- Async bool
- Availability
Config InstanceAvailability Config Args - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- Availability
Domain string - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- Boot
Volume stringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - Capacity
Reservation stringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- Cluster
Placement stringGroup Id - The OCID of the cluster placement group of the instance.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Compute
Cluster stringId - The OCID of the compute cluster that the instance will be created in.
- Create
Vnic InstanceDetails Create Vnic Details Args - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- Dedicated
Vm stringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Extended
Metadata map[string]string - Fault
Domain string (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- map[string]string
- (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. Example:
{"Department": "Finance"}
- Hostname
Label string - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - Image string
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - Instance
Configuration stringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- Instance
Options InstanceInstance Options Args - (Updatable) Optional mutable instance options
- Ipxe
Script string This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- Is
Cross boolNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- Is
Pv boolEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - Launch
Mode string - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- Launch
Options InstanceLaunch Options Args - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- Launch
Volume []InstanceAttachments Launch Volume Attachment Args Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- Metadata map[string]string
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- Platform
Config InstancePlatform Config Args (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- Preemptible
Instance InstanceConfig Preemptible Instance Config Args - Configuration options for preemptible instances.
- Preserve
Boot boolVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- Preserve
Data boolVolumes Created At Launch - Private
Ip string - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - Public
Ip string - The public IP address of instance VNIC (if enabled).
- Region string
- The region that contains the availability domain the instance is running in.
- Shape string
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- Shape
Config InstanceShape Config Args (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- Source
Details InstanceSource Details Args - (Updatable)
- State string
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Subnet
Id string - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Time
Created string - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- Time
Maintenance stringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- Update
Operation stringConstraint
- agent
Config InstanceAgent Config - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async Boolean
- availability
Config InstanceAvailability Config - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- availability
Domain String - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- boot
Volume StringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - capacity
Reservation StringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the instance.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Cluster StringId - The OCID of the compute cluster that the instance will be created in.
- create
Vnic InstanceDetails Create Vnic Details - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated
Vm StringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended
Metadata Map<String,String> - fault
Domain String (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Map<String,String>
- (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. Example:
{"Department": "Finance"}
- hostname
Label String - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image String
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance
Configuration StringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance
Options InstanceInstance Options - (Updatable) Optional mutable instance options
- ipxe
Script String This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is
Cross BooleanNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- is
Pv BooleanEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch
Mode String - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- launch
Options InstanceLaunch Options - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch
Volume List<InstanceAttachments Launch Volume Attachment> Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata Map<String,String>
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform
Config InstancePlatform Config (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible
Instance InstanceConfig Preemptible Instance Config - Configuration options for preemptible instances.
- preserve
Boot BooleanVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve
Data BooleanVolumes Created At Launch - private
Ip String - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public
Ip String - The public IP address of instance VNIC (if enabled).
- region String
- The region that contains the availability domain the instance is running in.
- shape String
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape
Config InstanceShape Config (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source
Details InstanceSource Details - (Updatable)
- state String
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet
Id String - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time
Created String - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Maintenance StringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- update
Operation StringConstraint
- agent
Config InstanceAgent Config - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async boolean
- availability
Config InstanceAvailability Config - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- availability
Domain string - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- boot
Volume stringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - capacity
Reservation stringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster
Placement stringGroup Id - The OCID of the cluster placement group of the instance.
- compartment
Id string - (Updatable) The OCID of the compartment.
- compute
Cluster stringId - The OCID of the compute cluster that the instance will be created in.
- create
Vnic InstanceDetails Create Vnic Details - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated
Vm stringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended
Metadata {[key: string]: string} - fault
Domain string (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"}
- hostname
Label string - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image string
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance
Configuration stringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance
Options InstanceInstance Options - (Updatable) Optional mutable instance options
- ipxe
Script string This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is
Cross booleanNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- is
Pv booleanEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch
Mode string - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- launch
Options InstanceLaunch Options - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch
Volume InstanceAttachments Launch Volume Attachment[] Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata {[key: string]: string}
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform
Config InstancePlatform Config (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible
Instance InstanceConfig Preemptible Instance Config - Configuration options for preemptible instances.
- preserve
Boot booleanVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve
Data booleanVolumes Created At Launch - private
Ip string - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public
Ip string - The public IP address of instance VNIC (if enabled).
- region string
- The region that contains the availability domain the instance is running in.
- shape string
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape
Config InstanceShape Config (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source
Details InstanceSource Details - (Updatable)
- state string
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet
Id string - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time
Created string - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Maintenance stringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- update
Operation stringConstraint
- agent_
config core.Instance Agent Config Args - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async_ bool
- availability_
config core.Instance Availability Config Args - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- availability_
domain str - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- boot_
volume_ strid - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - capacity_
reservation_ strid - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster_
placement_ strgroup_ id - The OCID of the cluster placement group of the instance.
- compartment_
id str - (Updatable) The OCID of the compartment.
- compute_
cluster_ strid - The OCID of the compute cluster that the instance will be created in.
- create_
vnic_ core.details Instance Create Vnic Details Args - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated_
vm_ strhost_ id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended_
metadata Mapping[str, str] - fault_
domain str (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"}
- hostname_
label str - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image str
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance_
configuration_ strid - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance_
options core.Instance Instance Options Args - (Updatable) Optional mutable instance options
- ipxe_
script str This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is_
cross_ boolnuma_ node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- is_
pv_ boolencryption_ in_ transit_ enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch_
mode str - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- launch_
options core.Instance Launch Options Args - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch_
volume_ Sequence[core.attachments Instance Launch Volume Attachment Args] Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata Mapping[str, str]
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform_
config core.Instance Platform Config Args (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible_
instance_ core.config Instance Preemptible Instance Config Args - Configuration options for preemptible instances.
- preserve_
boot_ boolvolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve_
data_ boolvolumes_ created_ at_ launch - private_
ip str - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public_
ip str - The public IP address of instance VNIC (if enabled).
- region str
- The region that contains the availability domain the instance is running in.
- shape str
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape_
config core.Instance Shape Config Args (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source_
details core.Instance Source Details Args - (Updatable)
- state str
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet_
id str - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time_
created str - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time_
maintenance_ strreboot_ due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- update_
operation_ strconstraint
- agent
Config Property Map - (Updatable) Configuration options for the Oracle Cloud Agent software running on the instance.
- async Boolean
- availability
Config Property Map - (Updatable) Options for VM migration during infrastructure maintenance events and for defining the availability of a VM instance after a maintenance event that impacts the underlying hardware.
- availability
Domain String - The availability domain of the instance. Example:
Uocm:PHX-AD-1
- boot
Volume StringId - The OCID of the attached boot volume. If the
source_type
isbootVolume
, this will be the same OCID as thesource_id
. - capacity
Reservation StringId - (Updatable) The OCID of the compute capacity reservation this instance is launched under. You can opt out of all default reservations by specifying an empty string as input for this field. For more information, see Capacity Reservations.
- cluster
Placement StringGroup Id - The OCID of the cluster placement group of the instance.
- compartment
Id String - (Updatable) The OCID of the compartment.
- compute
Cluster StringId - The OCID of the compute cluster that the instance will be created in.
- create
Vnic Property MapDetails - (Updatable) Contains properties for a VNIC. You use this object when creating the primary VNIC during instance launch or when creating a secondary VNIC. For more information about VNICs, see Virtual Network Interface Cards (VNICs).
- dedicated
Vm StringHost Id - (Updatable) The OCID of the dedicated virtual machine host to place the instance on.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- extended
Metadata Map<String> - fault
Domain String (Updatable) A fault domain is a grouping of hardware and infrastructure within an availability domain. Each availability domain contains three fault domains. Fault domains let you distribute your instances so that they are not on the same physical hardware within a single availability domain. A hardware failure or Compute hardware maintenance that affects one fault domain does not affect instances in other fault domains.
If you do not specify the fault domain, the system selects one for you.
To get a list of fault domains, use the ListFaultDomains operation in the Identity and Access Management Service API.
Example:
FAULT-DOMAIN-1
- Map<String>
- (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. Example:
{"Department": "Finance"}
- hostname
Label String - Deprecated. Instead use
hostnameLabel
in CreateVnicDetails. If you provide both, the values must match. - image String
- Deprecated. Use
sourceDetails
with InstanceSourceViaImageDetails source type instead. If you specify values for both, the values must match. - instance
Configuration StringId - The OCID of the Instance Configuration containing instance launch details. Any other fields supplied in this instance launch request will override the details stored in the Instance Configuration for this instance launch.
- instance
Options Property Map - (Updatable) Optional mutable instance options
- ipxe
Script String This is an advanced option.
When a bare metal or virtual machine instance boots, the iPXE firmware that runs on the instance is configured to run an iPXE script to continue the boot process.
If you want more control over the boot process, you can provide your own custom iPXE script that will run when the instance boots. Be aware that the same iPXE script will run every time an instance boots, not only after the initial LaunchInstance call.
The default iPXE script connects to the instance's local boot volume over iSCSI and performs a network boot. If you use a custom iPXE script and want to network-boot from the instance's local boot volume over iSCSI the same way as the default iPXE script, use the following iSCSI IP address: 169.254.0.2, and boot volume IQN: iqn.2015-02.oracle.boot.
If your instance boot volume attachment type is paravirtualized, the boot volume is attached to the instance through virtio-scsi and no iPXE script is used. If your instance boot volume attachment type is paravirtualized and you use custom iPXE to network boot into your instance, the primary boot volume is attached as a data volume through virtio-scsi drive.
For more information about the Bring Your Own Image feature of Oracle Cloud Infrastructure, see Bring Your Own Image.
For more information about iPXE, see http://ipxe.org.
- is
Cross BooleanNuma Node - Whether the instance’s OCPUs and memory are distributed across multiple NUMA nodes.
- is
Pv BooleanEncryption In Transit Enabled - Whether to enable in-transit encryption for the data volume's paravirtualized attachment. The default value is false. Use this field only during create. To update use
is_pv_encryption_in_transit_enabled
underlaunch_options
instead. - launch
Mode String - Specifies the configuration mode for launching virtual machine (VM) instances. The configuration modes are:
NATIVE
- VM instances launch with iSCSI boot and VFIO devices. The default value for platform images.EMULATED
- VM instances launch with emulated devices, such as the E1000 network driver and emulated SCSI disk controller.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.CUSTOM
- VM instances launch with custom configuration settings specified in theLaunchOptions
parameter.
- launch
Options Property Map - (Updatable) Options for tuning the compatibility and performance of VM shapes. The values that you specify override any default values.
- launch
Volume List<Property Map>Attachments Volume attachments to create as part of the launch instance operation.
Note: This property is used for initial instance provisioning only. Updates to this property will not be supported. To update volume attachments, user should use
oci.Core.VolumeAttachment
. To update volume details, user should useoci.Core.Volume
- metadata Map<String>
(Updatable) Custom metadata key/value pairs that you provide, such as the SSH public key required to connect to the instance.
A metadata service runs on every launched instance. The service is an HTTP endpoint listening on 169.254.169.254. You can use the service to:
- Provide information to Cloud-Init to be used for various system initialization tasks.
- Get information about the instance, including the custom metadata that you provide when you launch the instance.
Providing Cloud-Init Metadata
You can use the following metadata key names to provide information to Cloud-Init:
"ssh_authorized_keys" - Provide one or more public SSH keys to be included in the
~/.ssh/authorized_keys
file for the default user on the instance. Use a newline character to separate multiple keys. The SSH keys must be in the format necessary for theauthorized_keys
file, as shown in the example below."user_data" - Provide your own base64-encoded data to be used by Cloud-Init to run custom scripts or provide custom Cloud-Init configuration. For information about how to take advantage of user data, see the Cloud-Init Documentation.
Metadata Example
"metadata" : { "quake_bot_level" : "Severe", "ssh_authorized_keys" : "ssh-rsa <your_public_SSH_key>== rsa-key-20160227", "user_data" : "<your_public_SSH_key>==" }
Getting Metadata on the Instance
To get information about your instance, connect to the instance using SSH and issue any of the following GET requests:
curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/ curl -H "Authorization: Bearer Oracle" http://169.254.169.254/opc/v2/instance/metadata/<any-key-name>
You'll get back a response that includes all the instance information; only the metadata information; or the metadata information for the specified key name, respectively.
The combined size of the
metadata
andextendedMetadata
objects can be a maximum of 32,000 bytes.Note: Both the 'user_data' and 'ssh_authorized_keys' fields cannot be changed after an instance has launched. Any request which updates, removes, or adds either of these fields will be rejected. You must provide the same values for 'user_data' and 'ssh_authorized_keys' that already exist on the instance.
- platform
Config Property Map (Updatable only for VM's) The platform configuration requested for the instance.
If you provide the parameter, the instance is created with the platform configuration that you specify. For any values that you omit, the instance uses the default configuration values for the
shape
that you specify. If you don't provide the parameter, the default values for theshape
are used.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.For more information about shielded instances, see Shielded Instances.
For more information about BIOS settings for bare metal instances, see BIOS Settings for Bare Metal Instances.
- preemptible
Instance Property MapConfig - Configuration options for preemptible instances.
- preserve
Boot BooleanVolume - (Optional) Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- preserve
Data BooleanVolumes Created At Launch - private
Ip String - The private IP address of instance VNIC. To set the private IP address, use the
private_ip
argument in create_vnic_details. - public
Ip String - The public IP address of instance VNIC (if enabled).
- region String
- The region that contains the availability domain the instance is running in.
- shape String
(Updatable) The shape of an instance. The shape determines the number of CPUs, amount of memory, and other resources allocated to the instance.
You can enumerate all available shapes by calling ListShapes.
- shape
Config Property Map (Updatable) The shape configuration requested for the instance.
If the parameter is provided, the instance is created with the resources that you specify. If some properties are missing or the entire parameter is not provided, the instance is created with the default configuration values for the
shape
that you specify.Each shape only supports certain configurable values. If the values that you provide are not valid for the specified
shape
, an error is returned.- source
Details Property Map - (Updatable)
- state String
(Updatable) The target state for the instance. Could be set to RUNNING or STOPPED.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- subnet
Id String - Deprecated. Instead use
subnetId
in CreateVnicDetails. At least one of them is required; if you provide both, the values must match. - Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- time
Created String - The date and time the instance was created, in the format defined by RFC3339. Example:
2016-08-25T21:10:29.600Z
- time
Maintenance StringReboot Due - The date and time the instance is expected to be stopped / started, in the format defined by RFC3339. After that time if instance hasn't been rebooted, Oracle will reboot the instance within 24 hours of the due time. Regardless of how the instance was stopped, the flag will be reset to empty as soon as instance reaches Stopped state. Example:
2018-05-25T21:10:29.600Z
- update
Operation StringConstraint
Supporting Types
InstanceAgentConfig, InstanceAgentConfigArgs
- Are
All boolPlugins Disabled (Updatable) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- Is
Management boolDisabled (Updatable) Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. - If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
- If
- Is
Monitoring boolDisabled (Updatable) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. - If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
- If
- Plugins
Configs List<InstanceAgent Config Plugins Config> - (Updatable) The configuration of plugins associated with this instance.
- Are
All boolPlugins Disabled (Updatable) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- Is
Management boolDisabled (Updatable) Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. - If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
- If
- Is
Monitoring boolDisabled (Updatable) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. - If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
- If
- Plugins
Configs []InstanceAgent Config Plugins Config - (Updatable) The configuration of plugins associated with this instance.
- are
All BooleanPlugins Disabled (Updatable) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- is
Management BooleanDisabled (Updatable) Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. - If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
- If
- is
Monitoring BooleanDisabled (Updatable) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. - If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
- If
- plugins
Configs List<InstanceAgent Config Plugins Config> - (Updatable) The configuration of plugins associated with this instance.
- are
All booleanPlugins Disabled (Updatable) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- is
Management booleanDisabled (Updatable) Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. - If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
- If
- is
Monitoring booleanDisabled (Updatable) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. - If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
- If
- plugins
Configs InstanceAgent Config Plugins Config[] - (Updatable) The configuration of plugins associated with this instance.
- are_
all_ boolplugins_ disabled (Updatable) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- is_
management_ booldisabled (Updatable) Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. - If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
- If
- is_
monitoring_ booldisabled (Updatable) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. - If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
- If
- plugins_
configs Sequence[core.Instance Agent Config Plugins Config] - (Updatable) The configuration of plugins associated with this instance.
- are
All BooleanPlugins Disabled (Updatable) Whether Oracle Cloud Agent can run all the available plugins. This includes the management and monitoring plugins.
To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- is
Management BooleanDisabled (Updatable) Whether Oracle Cloud Agent can run all the available management plugins. Default value is false (management plugins are enabled).
These are the management plugins: OS Management Service Agent and Compute Instance Run Command.
The management plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isManagementDisabled
is true, all of the management plugins are disabled, regardless of the per-plugin configuration. - If
isManagementDisabled
is false, all of the management plugins are enabled. You can optionally disable individual management plugins by providing a value in thepluginsConfig
object.
- If
- is
Monitoring BooleanDisabled (Updatable) Whether Oracle Cloud Agent can gather performance metrics and monitor the instance using the monitoring plugins. Default value is false (monitoring plugins are enabled).
These are the monitoring plugins: Compute Instance Monitoring and Custom Logs Monitoring.
The monitoring plugins are controlled by this parameter and by the per-plugin configuration in the
pluginsConfig
object.- If
isMonitoringDisabled
is true, all of the monitoring plugins are disabled, regardless of the per-plugin configuration. - If
isMonitoringDisabled
is false, all of the monitoring plugins are enabled. You can optionally disable individual monitoring plugins by providing a value in thepluginsConfig
object.
- If
- plugins
Configs List<Property Map> - (Updatable) The configuration of plugins associated with this instance.
InstanceAgentConfigPluginsConfig, InstanceAgentConfigPluginsConfigArgs
- Desired
State string (Updatable) Whether the plugin should be enabled or disabled.
To enable the monitoring and management plugins, the
isMonitoringDisabled
andisManagementDisabled
attributes must also be set to false.- Name string
- (Updatable) The plugin name. To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- Desired
State string (Updatable) Whether the plugin should be enabled or disabled.
To enable the monitoring and management plugins, the
isMonitoringDisabled
andisManagementDisabled
attributes must also be set to false.- Name string
- (Updatable) The plugin name. To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- desired
State String (Updatable) Whether the plugin should be enabled or disabled.
To enable the monitoring and management plugins, the
isMonitoringDisabled
andisManagementDisabled
attributes must also be set to false.- name String
- (Updatable) The plugin name. To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- desired
State string (Updatable) Whether the plugin should be enabled or disabled.
To enable the monitoring and management plugins, the
isMonitoringDisabled
andisManagementDisabled
attributes must also be set to false.- name string
- (Updatable) The plugin name. To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- desired_
state str (Updatable) Whether the plugin should be enabled or disabled.
To enable the monitoring and management plugins, the
isMonitoringDisabled
andisManagementDisabled
attributes must also be set to false.- name str
- (Updatable) The plugin name. To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
- desired
State String (Updatable) Whether the plugin should be enabled or disabled.
To enable the monitoring and management plugins, the
isMonitoringDisabled
andisManagementDisabled
attributes must also be set to false.- name String
- (Updatable) The plugin name. To get a list of available plugins, use the ListInstanceagentAvailablePlugins operation in the Oracle Cloud Agent API. For more information about the available plugins, see Managing Plugins with Oracle Cloud Agent.
InstanceAvailabilityConfig, InstanceAvailabilityConfigArgs
- Is
Live boolMigration Preferred - (Updatable) Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.
- Recovery
Action string - (Updatable) The lifecycle state for an instance when it is recovered after infrastructure maintenance.
RESTORE_INSTANCE
- The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.STOP_INSTANCE
- The instance is recovered in the stopped state.
- Is
Live boolMigration Preferred - (Updatable) Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.
- Recovery
Action string - (Updatable) The lifecycle state for an instance when it is recovered after infrastructure maintenance.
RESTORE_INSTANCE
- The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.STOP_INSTANCE
- The instance is recovered in the stopped state.
- is
Live BooleanMigration Preferred - (Updatable) Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.
- recovery
Action String - (Updatable) The lifecycle state for an instance when it is recovered after infrastructure maintenance.
RESTORE_INSTANCE
- The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.STOP_INSTANCE
- The instance is recovered in the stopped state.
- is
Live booleanMigration Preferred - (Updatable) Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.
- recovery
Action string - (Updatable) The lifecycle state for an instance when it is recovered after infrastructure maintenance.
RESTORE_INSTANCE
- The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.STOP_INSTANCE
- The instance is recovered in the stopped state.
- is_
live_ boolmigration_ preferred - (Updatable) Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.
- recovery_
action str - (Updatable) The lifecycle state for an instance when it is recovered after infrastructure maintenance.
RESTORE_INSTANCE
- The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.STOP_INSTANCE
- The instance is recovered in the stopped state.
- is
Live BooleanMigration Preferred - (Updatable) Whether to live migrate supported VM instances to a healthy physical VM host without disrupting running instances during infrastructure maintenance events. If null, Oracle chooses the best option for migrating the VM during infrastructure maintenance events.
- recovery
Action String - (Updatable) The lifecycle state for an instance when it is recovered after infrastructure maintenance.
RESTORE_INSTANCE
- The instance is restored to the lifecycle state it was in before the maintenance event. If the instance was running, it is automatically rebooted. This is the default action when a value is not set.STOP_INSTANCE
- The instance is recovered in the stopped state.
InstanceCreateVnicDetails, InstanceCreateVnicDetailsArgs
- Assign
Ipv6ip bool - Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you. - Assign
Private boolDns Record - Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true.
If you specify a
hostnameLabel
, theassignPrivateDnsRecord
is require to be set to true. - Assign
Public stringIp (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where
prohibitPublicIpOnVnic
= true in the Subnet), then no public IP address is assigned. If not set and the subnet is public (prohibitPublicIpOnVnic
= false), then a public IP address is assigned. If set to true andprohibitPublicIpOnVnic
= true, an error is returned.Note: This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses.
Note: There's a limit to the number of public IPs a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses.
Example:
false
If you specify a
vlanId
, thenassignPublicIp
must be set to false. See Vlan.- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Dictionary<string, string>
- (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. Example:
{"Department": "Finance"}
- Hostname
Label string (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 FQDNbminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. 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)
.For more information, see DNS in Your Virtual Cloud Network.
When launching an instance, use this
hostnameLabel
instead of the deprecatedhostnameLabel
in[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)
. If you provide both, the values must match.Example:
bminstance1
If you specify a
vlanId
, thehostnameLabel
cannot be specified. VNICs on a VLAN can not be assigned a hostname. See Vlan.- Ipv6address
Ipv6subnet List<InstanceCidr Pair Details Create Vnic Details Ipv6address Ipv6subnet Cidr Pair Detail> - A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges from which Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Nsg
Ids List<string> (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NetworkSecurityGroup.
If a
vlanId
is specified, thensgIds
cannot be specified. ThevlanId
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.- Private
Ip string 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)
.If you specify a
vlanId
, theprivateIp
cannot be specified. See Vlan.Example:
10.0.3.3
- Skip
Source boolDest Check (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to
false
, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target.If you specify a
vlanId
, theskipSourceDestCheck
cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See Vlan.Example:
true
- Subnet
Id string The OCID of the subnet to create the VNIC in. When launching an instance, use this
subnetId
instead of the deprecatedsubnetId
in LaunchInstanceDetails. At least one of them is required; if you provide both, the values must match.If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.- Vlan
Id string Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See Vlan.
Provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.
- Assign
Ipv6ip bool - Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you. - Assign
Private boolDns Record - Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true.
If you specify a
hostnameLabel
, theassignPrivateDnsRecord
is require to be set to true. - Assign
Public stringIp (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where
prohibitPublicIpOnVnic
= true in the Subnet), then no public IP address is assigned. If not set and the subnet is public (prohibitPublicIpOnVnic
= false), then a public IP address is assigned. If set to true andprohibitPublicIpOnVnic
= true, an error is returned.Note: This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses.
Note: There's a limit to the number of public IPs a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses.
Example:
false
If you specify a
vlanId
, thenassignPublicIp
must be set to false. See Vlan.- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- Display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- map[string]string
- (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. Example:
{"Department": "Finance"}
- Hostname
Label string (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 FQDNbminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. 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)
.For more information, see DNS in Your Virtual Cloud Network.
When launching an instance, use this
hostnameLabel
instead of the deprecatedhostnameLabel
in[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)
. If you provide both, the values must match.Example:
bminstance1
If you specify a
vlanId
, thehostnameLabel
cannot be specified. VNICs on a VLAN can not be assigned a hostname. See Vlan.- Ipv6address
Ipv6subnet []InstanceCidr Pair Details Create Vnic Details Ipv6address Ipv6subnet Cidr Pair Detail - A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges from which Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- Nsg
Ids []string (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NetworkSecurityGroup.
If a
vlanId
is specified, thensgIds
cannot be specified. ThevlanId
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.- Private
Ip string 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)
.If you specify a
vlanId
, theprivateIp
cannot be specified. See Vlan.Example:
10.0.3.3
- Skip
Source boolDest Check (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to
false
, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target.If you specify a
vlanId
, theskipSourceDestCheck
cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See Vlan.Example:
true
- Subnet
Id string The OCID of the subnet to create the VNIC in. When launching an instance, use this
subnetId
instead of the deprecatedsubnetId
in LaunchInstanceDetails. At least one of them is required; if you provide both, the values must match.If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.- Vlan
Id string Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See Vlan.
Provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.
- assign
Ipv6ip Boolean - Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you. - assign
Private BooleanDns Record - Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true.
If you specify a
hostnameLabel
, theassignPrivateDnsRecord
is require to be set to true. - assign
Public StringIp (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where
prohibitPublicIpOnVnic
= true in the Subnet), then no public IP address is assigned. If not set and the subnet is public (prohibitPublicIpOnVnic
= false), then a public IP address is assigned. If set to true andprohibitPublicIpOnVnic
= true, an error is returned.Note: This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses.
Note: There's a limit to the number of public IPs a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses.
Example:
false
If you specify a
vlanId
, thenassignPublicIp
must be set to false. See Vlan.- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String,String>
- (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. Example:
{"Department": "Finance"}
- hostname
Label String (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 FQDNbminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. 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)
.For more information, see DNS in Your Virtual Cloud Network.
When launching an instance, use this
hostnameLabel
instead of the deprecatedhostnameLabel
in[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)
. If you provide both, the values must match.Example:
bminstance1
If you specify a
vlanId
, thehostnameLabel
cannot be specified. VNICs on a VLAN can not be assigned a hostname. See Vlan.- ipv6address
Ipv6subnet List<InstanceCidr Pair Details Create Vnic Details Ipv6address Ipv6subnet Cidr Pair Detail> - A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges from which Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- nsg
Ids List<String> (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NetworkSecurityGroup.
If a
vlanId
is specified, thensgIds
cannot be specified. ThevlanId
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.- private
Ip String 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)
.If you specify a
vlanId
, theprivateIp
cannot be specified. See Vlan.Example:
10.0.3.3
- skip
Source BooleanDest Check (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to
false
, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target.If you specify a
vlanId
, theskipSourceDestCheck
cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See Vlan.Example:
true
- subnet
Id String The OCID of the subnet to create the VNIC in. When launching an instance, use this
subnetId
instead of the deprecatedsubnetId
in LaunchInstanceDetails. At least one of them is required; if you provide both, the values must match.If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.- vlan
Id String Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See Vlan.
Provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.
- assign
Ipv6ip boolean - Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you. - assign
Private booleanDns Record - Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true.
If you specify a
hostnameLabel
, theassignPrivateDnsRecord
is require to be set to true. - assign
Public stringIp (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where
prohibitPublicIpOnVnic
= true in the Subnet), then no public IP address is assigned. If not set and the subnet is public (prohibitPublicIpOnVnic
= false), then a public IP address is assigned. If set to true andprohibitPublicIpOnVnic
= true, an error is returned.Note: This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses.
Note: There's a limit to the number of public IPs a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses.
Example:
false
If you specify a
vlanId
, thenassignPublicIp
must be set to false. See Vlan.- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name string - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- {[key: string]: string}
- (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. Example:
{"Department": "Finance"}
- hostname
Label string (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 FQDNbminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. 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)
.For more information, see DNS in Your Virtual Cloud Network.
When launching an instance, use this
hostnameLabel
instead of the deprecatedhostnameLabel
in[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)
. If you provide both, the values must match.Example:
bminstance1
If you specify a
vlanId
, thehostnameLabel
cannot be specified. VNICs on a VLAN can not be assigned a hostname. See Vlan.- ipv6address
Ipv6subnet InstanceCidr Pair Details Create Vnic Details Ipv6address Ipv6subnet Cidr Pair Detail[] - A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges from which Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- nsg
Ids string[] (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NetworkSecurityGroup.
If a
vlanId
is specified, thensgIds
cannot be specified. ThevlanId
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.- private
Ip string 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)
.If you specify a
vlanId
, theprivateIp
cannot be specified. See Vlan.Example:
10.0.3.3
- skip
Source booleanDest Check (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to
false
, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target.If you specify a
vlanId
, theskipSourceDestCheck
cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See Vlan.Example:
true
- subnet
Id string The OCID of the subnet to create the VNIC in. When launching an instance, use this
subnetId
instead of the deprecatedsubnetId
in LaunchInstanceDetails. At least one of them is required; if you provide both, the values must match.If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.- vlan
Id string Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See Vlan.
Provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.
- assign_
ipv6ip bool - Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you. - assign_
private_ booldns_ record - Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true.
If you specify a
hostnameLabel
, theassignPrivateDnsRecord
is require to be set to true. - assign_
public_ strip (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where
prohibitPublicIpOnVnic
= true in the Subnet), then no public IP address is assigned. If not set and the subnet is public (prohibitPublicIpOnVnic
= false), then a public IP address is assigned. If set to true andprohibitPublicIpOnVnic
= true, an error is returned.Note: This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses.
Note: There's a limit to the number of public IPs a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses.
Example:
false
If you specify a
vlanId
, thenassignPublicIp
must be set to false. See Vlan.- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display_
name str - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Mapping[str, str]
- (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. Example:
{"Department": "Finance"}
- hostname_
label str (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 FQDNbminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. 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)
.For more information, see DNS in Your Virtual Cloud Network.
When launching an instance, use this
hostnameLabel
instead of the deprecatedhostnameLabel
in[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)
. If you provide both, the values must match.Example:
bminstance1
If you specify a
vlanId
, thehostnameLabel
cannot be specified. VNICs on a VLAN can not be assigned a hostname. See Vlan.- ipv6address_
ipv6subnet_ Sequence[core.cidr_ pair_ details Instance Create Vnic Details Ipv6address Ipv6subnet Cidr Pair Detail] - A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges from which Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- nsg_
ids Sequence[str] (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NetworkSecurityGroup.
If a
vlanId
is specified, thensgIds
cannot be specified. ThevlanId
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.- private_
ip str 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)
.If you specify a
vlanId
, theprivateIp
cannot be specified. See Vlan.Example:
10.0.3.3
- skip_
source_ booldest_ check (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to
false
, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target.If you specify a
vlanId
, theskipSourceDestCheck
cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See Vlan.Example:
true
- subnet_
id str The OCID of the subnet to create the VNIC in. When launching an instance, use this
subnetId
instead of the deprecatedsubnetId
in LaunchInstanceDetails. At least one of them is required; if you provide both, the values must match.If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.- vlan_
id str Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See Vlan.
Provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.
- assign
Ipv6ip Boolean - Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled subnet. Default: False. When provided you may optionally provide an IPv6 prefix (
ipv6SubnetCidr
) of your choice to assign the IPv6 address from. Ifipv6SubnetCidr
is not provided then an IPv6 prefix is chosen for you. - assign
Private BooleanDns Record - Whether the VNIC should be assigned a DNS record. If set to false, there will be no DNS record registration for the VNIC. If set to true, the DNS record will be registered. The default value is true.
If you specify a
hostnameLabel
, theassignPrivateDnsRecord
is require to be set to true. - assign
Public StringIp (Updatable) Whether the VNIC should be assigned a public IP address. Defaults to whether the subnet is public or private. If not set and the VNIC is being created in a private subnet (that is, where
prohibitPublicIpOnVnic
= true in the Subnet), then no public IP address is assigned. If not set and the subnet is public (prohibitPublicIpOnVnic
= false), then a public IP address is assigned. If set to true andprohibitPublicIpOnVnic
= true, an error is returned.Note: This public IP address is associated with the primary private IP on the VNIC. For more information, see IP Addresses.
Note: There's a limit to the number of public IPs a VNIC or instance can have. If you try to create a secondary VNIC with an assigned public IP for an instance that has already reached its public IP limit, an error is returned. For information about the public IP limits, see Public IP Addresses.
Example:
false
If you specify a
vlanId
, thenassignPublicIp
must be set to false. See Vlan.- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example:
{"Operations.CostCenter": "42"}
- display
Name String - (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Map<String>
- (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. Example:
{"Department": "Finance"}
- hostname
Label String (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 FQDNbminstance1.subnet123.vcn1.oraclevcn.com
). Must be unique across all VNICs in the subnet and comply with RFC 952 and RFC 1123. 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)
.For more information, see DNS in Your Virtual Cloud Network.
When launching an instance, use this
hostnameLabel
instead of the deprecatedhostnameLabel
in[LaunchInstanceDetails](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/requests/LaunchInstanceDetails)
. If you provide both, the values must match.Example:
bminstance1
If you specify a
vlanId
, thehostnameLabel
cannot be specified. VNICs on a VLAN can not be assigned a hostname. See Vlan.- ipv6address
Ipv6subnet List<Property Map>Cidr Pair Details - A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges from which Oracle Cloud Infrastructure will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range.
- nsg
Ids List<String> (Updatable) A list of the OCIDs of the network security groups (NSGs) to add the VNIC to. For more information about NSGs, see NetworkSecurityGroup.
If a
vlanId
is specified, thensgIds
cannot be specified. ThevlanId
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.- private
Ip String 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)
.If you specify a
vlanId
, theprivateIp
cannot be specified. See Vlan.Example:
10.0.3.3
- skip
Source BooleanDest Check (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to
false
, which means the check is performed. For information about why you would skip the source/destination check, see Using a Private IP as a Route Target.If you specify a
vlanId
, theskipSourceDestCheck
cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See Vlan.Example:
true
- subnet
Id String The OCID of the subnet to create the VNIC in. When launching an instance, use this
subnetId
instead of the deprecatedsubnetId
in LaunchInstanceDetails. At least one of them is required; if you provide both, the values must match.If you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN instead of a subnet, provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.- vlan
Id String Provide this attribute only if you are an Oracle Cloud VMware Solution customer and creating a secondary VNIC in a VLAN. The value is the OCID of the VLAN. See Vlan.
Provide a
vlanId
instead of asubnetId
. If you provide both avlanId
andsubnetId
, the request fails.
InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetail, InstanceCreateVnicDetailsIpv6addressIpv6subnetCidrPairDetailArgs
- Ipv6address string
- Ipv6subnet
Cidr string
- Ipv6address string
- Ipv6subnet
Cidr string
- ipv6address String
- ipv6subnet
Cidr String
- ipv6address string
- ipv6subnet
Cidr string
- ipv6address str
- ipv6subnet_
cidr str
- ipv6address String
- ipv6subnet
Cidr String
InstanceInstanceOptions, InstanceInstanceOptionsArgs
- Are
Legacy boolImds Endpoints Disabled - (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
- Are
Legacy boolImds Endpoints Disabled - (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
- are
Legacy BooleanImds Endpoints Disabled - (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
- are
Legacy booleanImds Endpoints Disabled - (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
- are_
legacy_ boolimds_ endpoints_ disabled - (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
- are
Legacy BooleanImds Endpoints Disabled - (Updatable) Whether to disable the legacy (/v1) instance metadata service endpoints. Customers who have migrated to /v2 should set this to true for added security. Default is false.
InstanceLaunchOptions, InstanceLaunchOptionsArgs
- Boot
Volume stringType - (Updatable) Emulation type for the boot volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- Firmware string
- Firmware used to boot VM. Select the option that matches your operating system.
BIOS
- Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.UEFI_64
- Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
- Is
Consistent boolVolume Naming Enabled - Whether to enable consistent volume naming feature. Defaults to false.
- Is
Pv boolEncryption In Transit Enabled - (Updatable) Use this for update operation only. This field is Deprecated during create. For create use
isPvEncryptionInTransitEnabled
in LaunchInstanceDetails. - Network
Type string - (Updatable) Emulation type for the physical network interface card (NIC).
E1000
- Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.VFIO
- Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.
- Remote
Data stringVolume Type - Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- Boot
Volume stringType - (Updatable) Emulation type for the boot volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- Firmware string
- Firmware used to boot VM. Select the option that matches your operating system.
BIOS
- Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.UEFI_64
- Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
- Is
Consistent boolVolume Naming Enabled - Whether to enable consistent volume naming feature. Defaults to false.
- Is
Pv boolEncryption In Transit Enabled - (Updatable) Use this for update operation only. This field is Deprecated during create. For create use
isPvEncryptionInTransitEnabled
in LaunchInstanceDetails. - Network
Type string - (Updatable) Emulation type for the physical network interface card (NIC).
E1000
- Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.VFIO
- Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.
- Remote
Data stringVolume Type - Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- boot
Volume StringType - (Updatable) Emulation type for the boot volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- firmware String
- Firmware used to boot VM. Select the option that matches your operating system.
BIOS
- Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.UEFI_64
- Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
- is
Consistent BooleanVolume Naming Enabled - Whether to enable consistent volume naming feature. Defaults to false.
- is
Pv BooleanEncryption In Transit Enabled - (Updatable) Use this for update operation only. This field is Deprecated during create. For create use
isPvEncryptionInTransitEnabled
in LaunchInstanceDetails. - network
Type String - (Updatable) Emulation type for the physical network interface card (NIC).
E1000
- Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.VFIO
- Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.
- remote
Data StringVolume Type - Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- boot
Volume stringType - (Updatable) Emulation type for the boot volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- firmware string
- Firmware used to boot VM. Select the option that matches your operating system.
BIOS
- Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.UEFI_64
- Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
- is
Consistent booleanVolume Naming Enabled - Whether to enable consistent volume naming feature. Defaults to false.
- is
Pv booleanEncryption In Transit Enabled - (Updatable) Use this for update operation only. This field is Deprecated during create. For create use
isPvEncryptionInTransitEnabled
in LaunchInstanceDetails. - network
Type string - (Updatable) Emulation type for the physical network interface card (NIC).
E1000
- Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.VFIO
- Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.
- remote
Data stringVolume Type - Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- boot_
volume_ strtype - (Updatable) Emulation type for the boot volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- firmware str
- Firmware used to boot VM. Select the option that matches your operating system.
BIOS
- Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.UEFI_64
- Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
- is_
consistent_ boolvolume_ naming_ enabled - Whether to enable consistent volume naming feature. Defaults to false.
- is_
pv_ boolencryption_ in_ transit_ enabled - (Updatable) Use this for update operation only. This field is Deprecated during create. For create use
isPvEncryptionInTransitEnabled
in LaunchInstanceDetails. - network_
type str - (Updatable) Emulation type for the physical network interface card (NIC).
E1000
- Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.VFIO
- Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.
- remote_
data_ strvolume_ type - Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- boot
Volume StringType - (Updatable) Emulation type for the boot volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
- firmware String
- Firmware used to boot VM. Select the option that matches your operating system.
BIOS
- Boot VM using BIOS style firmware. This is compatible with both 32 bit and 64 bit operating systems that boot using MBR style bootloaders.UEFI_64
- Boot VM using UEFI style firmware compatible with 64 bit operating systems. This is the default for platform images.
- is
Consistent BooleanVolume Naming Enabled - Whether to enable consistent volume naming feature. Defaults to false.
- is
Pv BooleanEncryption In Transit Enabled - (Updatable) Use this for update operation only. This field is Deprecated during create. For create use
isPvEncryptionInTransitEnabled
in LaunchInstanceDetails. - network
Type String - (Updatable) Emulation type for the physical network interface card (NIC).
E1000
- Emulated Gigabit ethernet controller. Compatible with Linux e1000 network driver.VFIO
- Direct attached Virtual Function network controller. This is the networking type when you launch an instance using hardware-assisted (SR-IOV) networking.PARAVIRTUALIZED
- VM instances launch with paravirtualized devices using VirtIO drivers.
- remote
Data StringVolume Type - Emulation type for volume.
ISCSI
- ISCSI attached block storage device.SCSI
- Emulated SCSI disk.IDE
- Emulated IDE disk.VFIO
- Direct attached Virtual Function storage. This is the default option for local data volumes on platform images.PARAVIRTUALIZED
- Paravirtualized disk. This is the default for boot volumes and remote block storage volumes on platform images.
InstanceLaunchVolumeAttachment, InstanceLaunchVolumeAttachmentArgs
- Type string
- The type of volume. Currently, the only supported value is "iscsi".
- Device string
- The device name. To retrieve a list of devices for a given instance, see ListInstanceDevices.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Encryption
In stringTransit Type - Refer the top-level definition of encryptionInTransitType. The default value is NONE.
- Is
Agent boolAuto Iscsi Login Enabled - Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
- Is
Read boolOnly - Whether the attachment was created in read-only mode.
- bool
- Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
- Launch
Create InstanceVolume Details Launch Volume Attachment Launch Create Volume Details - Define a volume that will be created and attached or attached to an instance on creation.
- Use
Chap bool - Whether to use CHAP authentication for the volume attachment. Defaults to false.
- Volume
Id string - The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
- Type string
- The type of volume. Currently, the only supported value is "iscsi".
- Device string
- The device name. To retrieve a list of devices for a given instance, see ListInstanceDevices.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Encryption
In stringTransit Type - Refer the top-level definition of encryptionInTransitType. The default value is NONE.
- Is
Agent boolAuto Iscsi Login Enabled - Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
- Is
Read boolOnly - Whether the attachment was created in read-only mode.
- bool
- Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
- Launch
Create InstanceVolume Details Launch Volume Attachment Launch Create Volume Details - Define a volume that will be created and attached or attached to an instance on creation.
- Use
Chap bool - Whether to use CHAP authentication for the volume attachment. Defaults to false.
- Volume
Id string - The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
- type String
- The type of volume. Currently, the only supported value is "iscsi".
- device String
- The device name. To retrieve a list of devices for a given instance, see ListInstanceDevices.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- encryption
In StringTransit Type - Refer the top-level definition of encryptionInTransitType. The default value is NONE.
- is
Agent BooleanAuto Iscsi Login Enabled - Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
- is
Read BooleanOnly - Whether the attachment was created in read-only mode.
- Boolean
- Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
- launch
Create InstanceVolume Details Launch Volume Attachment Launch Create Volume Details - Define a volume that will be created and attached or attached to an instance on creation.
- use
Chap Boolean - Whether to use CHAP authentication for the volume attachment. Defaults to false.
- volume
Id String - The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
- type string
- The type of volume. Currently, the only supported value is "iscsi".
- device string
- The device name. To retrieve a list of devices for a given instance, see ListInstanceDevices.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- encryption
In stringTransit Type - Refer the top-level definition of encryptionInTransitType. The default value is NONE.
- is
Agent booleanAuto Iscsi Login Enabled - Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
- is
Read booleanOnly - Whether the attachment was created in read-only mode.
- boolean
- Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
- launch
Create InstanceVolume Details Launch Volume Attachment Launch Create Volume Details - Define a volume that will be created and attached or attached to an instance on creation.
- use
Chap boolean - Whether to use CHAP authentication for the volume attachment. Defaults to false.
- volume
Id string - The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
- type str
- The type of volume. Currently, the only supported value is "iscsi".
- device str
- The device name. To retrieve a list of devices for a given instance, see ListInstanceDevices.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- encryption_
in_ strtransit_ type - Refer the top-level definition of encryptionInTransitType. The default value is NONE.
- is_
agent_ boolauto_ iscsi_ login_ enabled - Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
- is_
read_ boolonly - Whether the attachment was created in read-only mode.
- bool
- Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
- launch_
create_ core.volume_ details Instance Launch Volume Attachment Launch Create Volume Details - Define a volume that will be created and attached or attached to an instance on creation.
- use_
chap bool - Whether to use CHAP authentication for the volume attachment. Defaults to false.
- volume_
id str - The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
- type String
- The type of volume. Currently, the only supported value is "iscsi".
- device String
- The device name. To retrieve a list of devices for a given instance, see ListInstanceDevices.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- encryption
In StringTransit Type - Refer the top-level definition of encryptionInTransitType. The default value is NONE.
- is
Agent BooleanAuto Iscsi Login Enabled - Whether to enable Oracle Cloud Agent to perform the iSCSI login and logout commands after the volume attach or detach operations for non multipath-enabled iSCSI attachments.
- is
Read BooleanOnly - Whether the attachment was created in read-only mode.
- Boolean
- Whether the attachment should be created in shareable mode. If an attachment is created in shareable mode, then other instances can attach the same volume, provided that they also create their attachments in shareable mode. Only certain volume types can be attached in shareable mode. Defaults to false if not specified.
- launch
Create Property MapVolume Details - Define a volume that will be created and attached or attached to an instance on creation.
- use
Chap Boolean - Whether to use CHAP authentication for the volume attachment. Defaults to false.
- volume
Id String - The OCID of the volume. If CreateVolumeDetails is specified, this field must be omitted from the request.
InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetails, InstanceLaunchVolumeAttachmentLaunchCreateVolumeDetailsArgs
- Size
In stringGbs - The size of the volume in GBs.
- Volume
Creation stringType - Specifies the method for volume creation.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the volume. If not provided, it will be inherited from the instance.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Kms
Key stringId - The OCID of the Vault service key to assign as the master encryption key for the volume.
- Vpus
Per stringGb 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 for more information.
Allowed values:
- Size
In stringGbs - The size of the volume in GBs.
- Volume
Creation stringType - Specifies the method for volume creation.
- Compartment
Id string - (Updatable) The OCID of the compartment that contains the volume. If not provided, it will be inherited from the instance.
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- Kms
Key stringId - The OCID of the Vault service key to assign as the master encryption key for the volume.
- Vpus
Per stringGb 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 for more information.
Allowed values:
- size
In StringGbs - The size of the volume in GBs.
- volume
Creation StringType - Specifies the method for volume creation.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the volume. If not provided, it will be inherited from the instance.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms
Key StringId - The OCID of the Vault service key to assign as the master encryption key for the volume.
- vpus
Per StringGb 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 for more information.
Allowed values:
- size
In stringGbs - The size of the volume in GBs.
- volume
Creation stringType - Specifies the method for volume creation.
- compartment
Id string - (Updatable) The OCID of the compartment that contains the volume. If not provided, it will be inherited from the instance.
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms
Key stringId - The OCID of the Vault service key to assign as the master encryption key for the volume.
- vpus
Per stringGb 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 for more information.
Allowed values:
- size_
in_ strgbs - The size of the volume in GBs.
- volume_
creation_ strtype - Specifies the method for volume creation.
- compartment_
id str - (Updatable) The OCID of the compartment that contains the volume. If not provided, it will be inherited from the instance.
- display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms_
key_ strid - The OCID of the Vault service key to assign as the master encryption key for the volume.
- vpus_
per_ strgb 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 for more information.
Allowed values:
- size
In StringGbs - The size of the volume in GBs.
- volume
Creation StringType - Specifies the method for volume creation.
- compartment
Id String - (Updatable) The OCID of the compartment that contains the volume. If not provided, it will be inherited from the instance.
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
- kms
Key StringId - The OCID of the Vault service key to assign as the master encryption key for the volume.
- vpus
Per StringGb 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 for more information.
Allowed values:
InstancePlatformConfig, InstancePlatformConfigArgs
- Type string
- The type of platform being configured.
- Are
Virtual boolInstructions Enabled - Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
- Config
Map Dictionary<string, string> - Instance Platform Configuration Configuration Map for flexible setting input.
- Is
Access boolControl Service Enabled - Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
- Is
Input boolOutput Memory Management Unit Enabled - Whether the input-output memory management unit is enabled.
- Is
Measured boolBoot Enabled - Whether the Measured Boot feature is enabled on the instance.
- Is
Memory boolEncryption Enabled - Whether the instance is a confidential instance. If this value is
true
, the instance is a confidential instance. The default value isfalse
. - Is
Secure boolBoot Enabled - Whether Secure Boot is enabled on the instance.
- Is
Symmetric boolMulti Threading Enabled (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
- Is
Trusted boolPlatform Module Enabled - Whether the Trusted Platform Module (TPM) is enabled on the instance.
- Numa
Nodes stringPer Socket - The number of NUMA nodes per socket (NPS).
- Percentage
Of intCores Enabled The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
- Type string
- The type of platform being configured.
- Are
Virtual boolInstructions Enabled - Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
- Config
Map map[string]string - Instance Platform Configuration Configuration Map for flexible setting input.
- Is
Access boolControl Service Enabled - Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
- Is
Input boolOutput Memory Management Unit Enabled - Whether the input-output memory management unit is enabled.
- Is
Measured boolBoot Enabled - Whether the Measured Boot feature is enabled on the instance.
- Is
Memory boolEncryption Enabled - Whether the instance is a confidential instance. If this value is
true
, the instance is a confidential instance. The default value isfalse
. - Is
Secure boolBoot Enabled - Whether Secure Boot is enabled on the instance.
- Is
Symmetric boolMulti Threading Enabled (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
- Is
Trusted boolPlatform Module Enabled - Whether the Trusted Platform Module (TPM) is enabled on the instance.
- Numa
Nodes stringPer Socket - The number of NUMA nodes per socket (NPS).
- Percentage
Of intCores Enabled The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
- type String
- The type of platform being configured.
- are
Virtual BooleanInstructions Enabled - Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
- config
Map Map<String,String> - Instance Platform Configuration Configuration Map for flexible setting input.
- is
Access BooleanControl Service Enabled - Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
- is
Input BooleanOutput Memory Management Unit Enabled - Whether the input-output memory management unit is enabled.
- is
Measured BooleanBoot Enabled - Whether the Measured Boot feature is enabled on the instance.
- is
Memory BooleanEncryption Enabled - Whether the instance is a confidential instance. If this value is
true
, the instance is a confidential instance. The default value isfalse
. - is
Secure BooleanBoot Enabled - Whether Secure Boot is enabled on the instance.
- is
Symmetric BooleanMulti Threading Enabled (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
- is
Trusted BooleanPlatform Module Enabled - Whether the Trusted Platform Module (TPM) is enabled on the instance.
- numa
Nodes StringPer Socket - The number of NUMA nodes per socket (NPS).
- percentage
Of IntegerCores Enabled The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
- type string
- The type of platform being configured.
- are
Virtual booleanInstructions Enabled - Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
- config
Map {[key: string]: string} - Instance Platform Configuration Configuration Map for flexible setting input.
- is
Access booleanControl Service Enabled - Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
- is
Input booleanOutput Memory Management Unit Enabled - Whether the input-output memory management unit is enabled.
- is
Measured booleanBoot Enabled - Whether the Measured Boot feature is enabled on the instance.
- is
Memory booleanEncryption Enabled - Whether the instance is a confidential instance. If this value is
true
, the instance is a confidential instance. The default value isfalse
. - is
Secure booleanBoot Enabled - Whether Secure Boot is enabled on the instance.
- is
Symmetric booleanMulti Threading Enabled (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
- is
Trusted booleanPlatform Module Enabled - Whether the Trusted Platform Module (TPM) is enabled on the instance.
- numa
Nodes stringPer Socket - The number of NUMA nodes per socket (NPS).
- percentage
Of numberCores Enabled The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
- type str
- The type of platform being configured.
- are_
virtual_ boolinstructions_ enabled - Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
- config_
map Mapping[str, str] - Instance Platform Configuration Configuration Map for flexible setting input.
- is_
access_ boolcontrol_ service_ enabled - Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
- is_
input_ booloutput_ memory_ management_ unit_ enabled - Whether the input-output memory management unit is enabled.
- is_
measured_ boolboot_ enabled - Whether the Measured Boot feature is enabled on the instance.
- is_
memory_ boolencryption_ enabled - Whether the instance is a confidential instance. If this value is
true
, the instance is a confidential instance. The default value isfalse
. - is_
secure_ boolboot_ enabled - Whether Secure Boot is enabled on the instance.
- is_
symmetric_ boolmulti_ threading_ enabled (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
- is_
trusted_ boolplatform_ module_ enabled - Whether the Trusted Platform Module (TPM) is enabled on the instance.
- numa_
nodes_ strper_ socket - The number of NUMA nodes per socket (NPS).
- percentage_
of_ intcores_ enabled The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
- type String
- The type of platform being configured.
- are
Virtual BooleanInstructions Enabled - Whether virtualization instructions are available. For example, Secure Virtual Machine for AMD shapes or VT-x for Intel shapes.
- config
Map Map<String> - Instance Platform Configuration Configuration Map for flexible setting input.
- is
Access BooleanControl Service Enabled - Whether the Access Control Service is enabled on the instance. When enabled, the platform can enforce PCIe device isolation, required for VFIO device pass-through.
- is
Input BooleanOutput Memory Management Unit Enabled - Whether the input-output memory management unit is enabled.
- is
Measured BooleanBoot Enabled - Whether the Measured Boot feature is enabled on the instance.
- is
Memory BooleanEncryption Enabled - Whether the instance is a confidential instance. If this value is
true
, the instance is a confidential instance. The default value isfalse
. - is
Secure BooleanBoot Enabled - Whether Secure Boot is enabled on the instance.
- is
Symmetric BooleanMulti Threading Enabled (Updatable only for INTEL_VM and AMD_VM) Whether symmetric multithreading is enabled on the instance. Symmetric multithreading is also called simultaneous multithreading (SMT) or Intel Hyper-Threading.
Intel and AMD processors have two hardware execution threads per core (OCPU). SMT permits multiple independent threads of execution, to better use the resources and increase the efficiency of the CPU. When multithreading is disabled, only one thread is permitted to run on each core, which can provide higher or more predictable performance for some workloads.
- is
Trusted BooleanPlatform Module Enabled - Whether the Trusted Platform Module (TPM) is enabled on the instance.
- numa
Nodes StringPer Socket - The number of NUMA nodes per socket (NPS).
- percentage
Of NumberCores Enabled The percentage of cores enabled. Value must be a multiple of 25%. If the requested percentage results in a fractional number of cores, the system rounds up the number of cores across processors and provisions an instance with a whole number of cores.
If the applications that you run on the instance use a core-based licensing model and need fewer cores than the full size of the shape, you can disable cores to reduce your licensing costs. The instance itself is billed for the full shape, regardless of whether all cores are enabled.
InstancePreemptibleInstanceConfig, InstancePreemptibleInstanceConfigArgs
- Preemption
Action InstancePreemptible Instance Config Preemption Action - The action to run when the preemptible instance is interrupted for eviction.
- Preemption
Action InstancePreemptible Instance Config Preemption Action - The action to run when the preemptible instance is interrupted for eviction.
- preemption
Action InstancePreemptible Instance Config Preemption Action - The action to run when the preemptible instance is interrupted for eviction.
- preemption
Action InstancePreemptible Instance Config Preemption Action - The action to run when the preemptible instance is interrupted for eviction.
- preemption_
action core.Instance Preemptible Instance Config Preemption Action - The action to run when the preemptible instance is interrupted for eviction.
- preemption
Action Property Map - The action to run when the preemptible instance is interrupted for eviction.
InstancePreemptibleInstanceConfigPreemptionAction, InstancePreemptibleInstanceConfigPreemptionActionArgs
- Type string
- The type of action to run when the instance is interrupted for eviction.
- Preserve
Boot boolVolume - Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- Type string
- The type of action to run when the instance is interrupted for eviction.
- Preserve
Boot boolVolume - Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- type String
- The type of action to run when the instance is interrupted for eviction.
- preserve
Boot BooleanVolume - Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- type string
- The type of action to run when the instance is interrupted for eviction.
- preserve
Boot booleanVolume - Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- type str
- The type of action to run when the instance is interrupted for eviction.
- preserve_
boot_ boolvolume - Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
- type String
- The type of action to run when the instance is interrupted for eviction.
- preserve
Boot BooleanVolume - Whether to preserve the boot volume that was used to launch the preemptible instance when the instance is terminated. Defaults to false if not specified.
InstanceShapeConfig, InstanceShapeConfigArgs
- Baseline
Ocpu stringUtilization (Updatable) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
BASELINE_1_1
.The following values are supported:
BASELINE_1_8
- baseline usage is 1/8 of an OCPU.BASELINE_1_2
- baseline usage is 1/2 of an OCPU.BASELINE_1_1
- baseline usage is an entire OCPU. This represents a non-burstable instance.
- Gpu
Description string - A short description of the instance's graphics processing unit (GPU).
- Gpus int
- The number of GPUs available to the instance.
- Local
Disk stringDescription - A short description of the local disks available to this instance.
- Local
Disks int - The number of local disks available to the instance.
- Local
Disks doubleTotal Size In Gbs - The aggregate size of all local disks, in gigabytes.
- Max
Vnic intAttachments - The maximum number of VNIC attachments for the instance.
- Memory
In doubleGbs - (Updatable) The total amount of memory available to the instance, in gigabytes.
- Networking
Bandwidth doubleIn Gbps - The networking bandwidth available to the instance, in gigabits per second.
- Nvmes int
- (Updatable) The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
- Ocpus double
- (Updatable) The total number of OCPUs available to the instance.
- Processor
Description string - A short description of the instance's processor (CPU).
- Vcpus int
- (Updatable) The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.
- Baseline
Ocpu stringUtilization (Updatable) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
BASELINE_1_1
.The following values are supported:
BASELINE_1_8
- baseline usage is 1/8 of an OCPU.BASELINE_1_2
- baseline usage is 1/2 of an OCPU.BASELINE_1_1
- baseline usage is an entire OCPU. This represents a non-burstable instance.
- Gpu
Description string - A short description of the instance's graphics processing unit (GPU).
- Gpus int
- The number of GPUs available to the instance.
- Local
Disk stringDescription - A short description of the local disks available to this instance.
- Local
Disks int - The number of local disks available to the instance.
- Local
Disks float64Total Size In Gbs - The aggregate size of all local disks, in gigabytes.
- Max
Vnic intAttachments - The maximum number of VNIC attachments for the instance.
- Memory
In float64Gbs - (Updatable) The total amount of memory available to the instance, in gigabytes.
- Networking
Bandwidth float64In Gbps - The networking bandwidth available to the instance, in gigabits per second.
- Nvmes int
- (Updatable) The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
- Ocpus float64
- (Updatable) The total number of OCPUs available to the instance.
- Processor
Description string - A short description of the instance's processor (CPU).
- Vcpus int
- (Updatable) The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.
- baseline
Ocpu StringUtilization (Updatable) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
BASELINE_1_1
.The following values are supported:
BASELINE_1_8
- baseline usage is 1/8 of an OCPU.BASELINE_1_2
- baseline usage is 1/2 of an OCPU.BASELINE_1_1
- baseline usage is an entire OCPU. This represents a non-burstable instance.
- gpu
Description String - A short description of the instance's graphics processing unit (GPU).
- gpus Integer
- The number of GPUs available to the instance.
- local
Disk StringDescription - A short description of the local disks available to this instance.
- local
Disks Integer - The number of local disks available to the instance.
- local
Disks DoubleTotal Size In Gbs - The aggregate size of all local disks, in gigabytes.
- max
Vnic IntegerAttachments - The maximum number of VNIC attachments for the instance.
- memory
In DoubleGbs - (Updatable) The total amount of memory available to the instance, in gigabytes.
- networking
Bandwidth DoubleIn Gbps - The networking bandwidth available to the instance, in gigabits per second.
- nvmes Integer
- (Updatable) The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
- ocpus Double
- (Updatable) The total number of OCPUs available to the instance.
- processor
Description String - A short description of the instance's processor (CPU).
- vcpus Integer
- (Updatable) The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.
- baseline
Ocpu stringUtilization (Updatable) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
BASELINE_1_1
.The following values are supported:
BASELINE_1_8
- baseline usage is 1/8 of an OCPU.BASELINE_1_2
- baseline usage is 1/2 of an OCPU.BASELINE_1_1
- baseline usage is an entire OCPU. This represents a non-burstable instance.
- gpu
Description string - A short description of the instance's graphics processing unit (GPU).
- gpus number
- The number of GPUs available to the instance.
- local
Disk stringDescription - A short description of the local disks available to this instance.
- local
Disks number - The number of local disks available to the instance.
- local
Disks numberTotal Size In Gbs - The aggregate size of all local disks, in gigabytes.
- max
Vnic numberAttachments - The maximum number of VNIC attachments for the instance.
- memory
In numberGbs - (Updatable) The total amount of memory available to the instance, in gigabytes.
- networking
Bandwidth numberIn Gbps - The networking bandwidth available to the instance, in gigabits per second.
- nvmes number
- (Updatable) The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
- ocpus number
- (Updatable) The total number of OCPUs available to the instance.
- processor
Description string - A short description of the instance's processor (CPU).
- vcpus number
- (Updatable) The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.
- baseline_
ocpu_ strutilization (Updatable) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
BASELINE_1_1
.The following values are supported:
BASELINE_1_8
- baseline usage is 1/8 of an OCPU.BASELINE_1_2
- baseline usage is 1/2 of an OCPU.BASELINE_1_1
- baseline usage is an entire OCPU. This represents a non-burstable instance.
- gpu_
description str - A short description of the instance's graphics processing unit (GPU).
- gpus int
- The number of GPUs available to the instance.
- local_
disk_ strdescription - A short description of the local disks available to this instance.
- local_
disks int - The number of local disks available to the instance.
- local_
disks_ floattotal_ size_ in_ gbs - The aggregate size of all local disks, in gigabytes.
- max_
vnic_ intattachments - The maximum number of VNIC attachments for the instance.
- memory_
in_ floatgbs - (Updatable) The total amount of memory available to the instance, in gigabytes.
- networking_
bandwidth_ floatin_ gbps - The networking bandwidth available to the instance, in gigabits per second.
- nvmes int
- (Updatable) The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
- ocpus float
- (Updatable) The total number of OCPUs available to the instance.
- processor_
description str - A short description of the instance's processor (CPU).
- vcpus int
- (Updatable) The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.
- baseline
Ocpu StringUtilization (Updatable) The baseline OCPU utilization for a subcore burstable VM instance. Leave this attribute blank for a non-burstable instance, or explicitly specify non-burstable with
BASELINE_1_1
.The following values are supported:
BASELINE_1_8
- baseline usage is 1/8 of an OCPU.BASELINE_1_2
- baseline usage is 1/2 of an OCPU.BASELINE_1_1
- baseline usage is an entire OCPU. This represents a non-burstable instance.
- gpu
Description String - A short description of the instance's graphics processing unit (GPU).
- gpus Number
- The number of GPUs available to the instance.
- local
Disk StringDescription - A short description of the local disks available to this instance.
- local
Disks Number - The number of local disks available to the instance.
- local
Disks NumberTotal Size In Gbs - The aggregate size of all local disks, in gigabytes.
- max
Vnic NumberAttachments - The maximum number of VNIC attachments for the instance.
- memory
In NumberGbs - (Updatable) The total amount of memory available to the instance, in gigabytes.
- networking
Bandwidth NumberIn Gbps - The networking bandwidth available to the instance, in gigabits per second.
- nvmes Number
- (Updatable) The number of NVMe drives to be used for storage. A single drive has 6.8 TB available.
- ocpus Number
- (Updatable) The total number of OCPUs available to the instance.
- processor
Description String - A short description of the instance's processor (CPU).
- vcpus Number
- (Updatable) The total number of VCPUs available to the instance. This can be used instead of OCPUs, in which case the actual number of OCPUs will be calculated based on this value and the actual hardware. This must be a multiple of 2.
InstanceSourceDetails, InstanceSourceDetailsArgs
- Source
Type string - (Updatable) The source type for the instance. Use
image
when specifying the image OCID. UsebootVolume
when specifying the boot volume OCID. - Boot
Volume stringSize 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).
- Boot
Volume stringVpus 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 for more information.
Allowed values:
- Instance
Source InstanceImage Filter Details Source Details Instance Source Image Filter Details - These are the criteria for selecting an image. This is required if imageId is not specified.
- Is
Preserve boolBoot Volume Enabled - (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
- Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
- Source
Id string - (Updatable) The OCID of the boot volume used to boot the instance.
- Source
Type string - (Updatable) The source type for the instance. Use
image
when specifying the image OCID. UsebootVolume
when specifying the boot volume OCID. - Boot
Volume stringSize 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).
- Boot
Volume stringVpus 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 for more information.
Allowed values:
- Instance
Source InstanceImage Filter Details Source Details Instance Source Image Filter Details - These are the criteria for selecting an image. This is required if imageId is not specified.
- Is
Preserve boolBoot Volume Enabled - (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
- Kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
- Source
Id string - (Updatable) The OCID of the boot volume used to boot the instance.
- source
Type String - (Updatable) The source type for the instance. Use
image
when specifying the image OCID. UsebootVolume
when specifying the boot volume OCID. - boot
Volume StringSize 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).
- boot
Volume StringVpus 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 for more information.
Allowed values:
- instance
Source InstanceImage Filter Details Source Details Instance Source Image Filter Details - These are the criteria for selecting an image. This is required if imageId is not specified.
- is
Preserve BooleanBoot Volume Enabled - (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
- kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
- source
Id String - (Updatable) The OCID of the boot volume used to boot the instance.
- source
Type string - (Updatable) The source type for the instance. Use
image
when specifying the image OCID. UsebootVolume
when specifying the boot volume OCID. - boot
Volume stringSize 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).
- boot
Volume stringVpus 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 for more information.
Allowed values:
- instance
Source InstanceImage Filter Details Source Details Instance Source Image Filter Details - These are the criteria for selecting an image. This is required if imageId is not specified.
- is
Preserve booleanBoot Volume Enabled - (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
- kms
Key stringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
- source
Id string - (Updatable) The OCID of the boot volume used to boot the instance.
- source_
type str - (Updatable) The source type for the instance. Use
image
when specifying the image OCID. UsebootVolume
when specifying the boot volume OCID. - boot_
volume_ strsize_ 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).
- boot_
volume_ strvpus_ 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 for more information.
Allowed values:
- instance_
source_ core.image_ filter_ details Instance Source Details Instance Source Image Filter Details - These are the criteria for selecting an image. This is required if imageId is not specified.
- is_
preserve_ boolboot_ volume_ enabled - (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
- kms_
key_ strid - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
- source_
id str - (Updatable) The OCID of the boot volume used to boot the instance.
- source
Type String - (Updatable) The source type for the instance. Use
image
when specifying the image OCID. UsebootVolume
when specifying the boot volume OCID. - boot
Volume StringSize 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).
- boot
Volume StringVpus 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 for more information.
Allowed values:
- instance
Source Property MapImage Filter Details - These are the criteria for selecting an image. This is required if imageId is not specified.
- is
Preserve BooleanBoot Volume Enabled - (Updatable) Whether to preserve the boot volume that was previously attached to the instance after a successful replacement of that boot volume.
- kms
Key StringId - (Updatable) The OCID of the Vault service key to assign as the master encryption key for the boot volume.
- source
Id String - (Updatable) The OCID of the boot volume used to boot the instance.
InstanceSourceDetailsInstanceSourceImageFilterDetails, InstanceSourceDetailsInstanceSourceImageFilterDetailsArgs
- Compartment
Id string - (Updatable) The OCID of the compartment containing images to search
- Dictionary<string, string>
- Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Operating
System string - The image's operating system. Example:
Oracle Linux
- Operating
System stringVersion - The image's operating system version. Example:
7.2
- Compartment
Id string - (Updatable) The OCID of the compartment containing images to search
- map[string]string
- Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Operating
System string - The image's operating system. Example:
Oracle Linux
- Operating
System stringVersion - The image's operating system version. Example:
7.2
- compartment
Id String - (Updatable) The OCID of the compartment containing images to search
- Map<String,String>
- Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- operating
System String - The image's operating system. Example:
Oracle Linux
- operating
System StringVersion - The image's operating system version. Example:
7.2
- compartment
Id string - (Updatable) The OCID of the compartment containing images to search
- {[key: string]: string}
- Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- operating
System string - The image's operating system. Example:
Oracle Linux
- operating
System stringVersion - The image's operating system version. Example:
7.2
- compartment_
id str - (Updatable) The OCID of the compartment containing images to search
- Mapping[str, str]
- Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- operating_
system str - The image's operating system. Example:
Oracle Linux
- operating_
system_ strversion - The image's operating system version. Example:
7.2
- compartment
Id String - (Updatable) The OCID of the compartment containing images to search
- Map<String>
- Filter based on these defined tags. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- operating
System String - The image's operating system. Example:
Oracle Linux
- operating
System StringVersion - The image's operating system version. Example:
7.2
Import
Instances can be imported using the id
, e.g.
$ pulumi import oci:Core/instance:Instance test_instance "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.