1. Packages
  2. Outscale Provider
  3. API Docs
  4. getVm
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

outscale.getVm

Explore with Pulumi AI

outscale logo
outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale

    Provides information about a virtual machine (VM).

    For more information on this resource, see the User Guide.
    For more information on this resource actions, see the API documentation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const vm01 = outscale.getVm({
        filters: [{
            name: "vm_ids",
            values: ["i-12345678"],
        }],
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    vm01 = outscale.get_vm(filters=[{
        "name": "vm_ids",
        "values": ["i-12345678"],
    }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.LookupVm(ctx, &outscale.LookupVmArgs{
    			Filters: []outscale.GetVmFilter{
    				{
    					Name: "vm_ids",
    					Values: []string{
    						"i-12345678",
    					},
    				},
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var vm01 = Outscale.GetVm.Invoke(new()
        {
            Filters = new[]
            {
                new Outscale.Inputs.GetVmFilterInputArgs
                {
                    Name = "vm_ids",
                    Values = new[]
                    {
                        "i-12345678",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OutscaleFunctions;
    import com.pulumi.outscale.inputs.GetVmArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var vm01 = OutscaleFunctions.getVm(GetVmArgs.builder()
                .filters(GetVmFilterArgs.builder()
                    .name("vm_ids")
                    .values("i-12345678")
                    .build())
                .build());
    
        }
    }
    
    variables:
      vm01:
        fn::invoke:
          function: outscale:getVm
          arguments:
            filters:
              - name: vm_ids
                values:
                  - i-12345678
    

    Using getVm

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVm(args: GetVmArgs, opts?: InvokeOptions): Promise<GetVmResult>
    function getVmOutput(args: GetVmOutputArgs, opts?: InvokeOptions): Output<GetVmResult>
    def get_vm(filters: Optional[Sequence[GetVmFilter]] = None,
               id: Optional[str] = None,
               opts: Optional[InvokeOptions] = None) -> GetVmResult
    def get_vm_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetVmFilterArgs]]]] = None,
               id: Optional[pulumi.Input[str]] = None,
               opts: Optional[InvokeOptions] = None) -> Output[GetVmResult]
    func LookupVm(ctx *Context, args *LookupVmArgs, opts ...InvokeOption) (*LookupVmResult, error)
    func LookupVmOutput(ctx *Context, args *LookupVmOutputArgs, opts ...InvokeOption) LookupVmResultOutput

    > Note: This function is named LookupVm in the Go SDK.

    public static class GetVm 
    {
        public static Task<GetVmResult> InvokeAsync(GetVmArgs args, InvokeOptions? opts = null)
        public static Output<GetVmResult> Invoke(GetVmInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVmResult> getVm(GetVmArgs args, InvokeOptions options)
    public static Output<GetVmResult> getVm(GetVmArgs args, InvokeOptions options)
    
    fn::invoke:
      function: outscale:index/getVm:getVm
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Filters List<GetVmFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    Filters []GetVmFilter
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    Id string
    filters List<GetVmFilter>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String
    filters GetVmFilter[]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id string
    filters Sequence[GetVmFilter]
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id str
    filters List<Property Map>
    A combination of a filter name and one or more filter values. You can specify this argument for as many filter names as you need. The filter name can be any of the following:
    id String

    getVm Result

    The following output properties are available:

    Architecture string
    The architecture of the VM (i386 | x86_64).
    BlockDeviceMappingsCreateds List<GetVmBlockDeviceMappingsCreated>
    The block device mapping of the VM.
    BsuOptimized bool
    ClientToken string
    The idempotency token provided when launching the VM.
    CreationDate string
    The date and time (UTC) at which the VM was created.
    DeletionProtection bool
    If true, you cannot delete the VM unless you change this parameter back to false.
    Hypervisor string
    The hypervisor type of the VMs (ovm | xen).
    Id string
    ImageId string
    The ID of the OMI used to create the VM.
    IsSourceDestChecked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    KeypairName string
    The name of the keypair used when launching the VM.
    LaunchNumber double
    The number for the VM when launching a group of several VMs (for example, 0, 1, 2, and so on).
    NestedVirtualization bool
    If true, nested virtualization is enabled. If false, it is disabled.
    NetId string
    The ID of the Net for the NIC.
    Nics List<GetVmNic>
    (Net only) The network interface cards (NICs) the VMs are attached to.
    OsFamily string
    Indicates the operating system (OS) of the VM.
    Performance string
    The performance of the VM (medium | high | highest).
    PlacementSubregionName string
    PlacementTenancy string
    PrimaryNics List<GetVmPrimaryNic>
    PrivateDnsName string
    The name of the private DNS.
    PrivateIp string
    The primary private IP of the VM.
    PrivateIps List<string>
    The private IP or IPs of the NIC.
    ProductCodes List<string>
    The product codes associated with the OMI used to create the VM.
    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    RequestId string
    ReservationId string
    The reservation ID of the VM.
    RootDeviceName string
    The name of the root device for the VM (for example, /dev/sda1).
    RootDeviceType string
    The type of root device used by the VM (always bsu).
    SecurityGroupIds List<string>
    SecurityGroupNames List<string>
    SecurityGroups List<GetVmSecurityGroup>
    One or more security groups associated with the VM.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    StateReason string
    The reason explaining the current state of the VM.
    SubnetId string
    The ID of the Subnet for the VM.
    Tags List<GetVmTag>
    One or more tags associated with the VM.
    UserData string
    The Base64-encoded MIME user data.
    VmId string
    The ID of the VM.
    VmInitiatedShutdownBehavior string
    The VM behavior when you stop it. If set to stop, the VM stops. If set to restart, the VM stops then automatically restarts. If set to terminate, the VM stops and is deleted.
    VmType string
    The type of VM. For more information, see VM Types.
    Filters List<GetVmFilter>
    Architecture string
    The architecture of the VM (i386 | x86_64).
    BlockDeviceMappingsCreateds []GetVmBlockDeviceMappingsCreated
    The block device mapping of the VM.
    BsuOptimized bool
    ClientToken string
    The idempotency token provided when launching the VM.
    CreationDate string
    The date and time (UTC) at which the VM was created.
    DeletionProtection bool
    If true, you cannot delete the VM unless you change this parameter back to false.
    Hypervisor string
    The hypervisor type of the VMs (ovm | xen).
    Id string
    ImageId string
    The ID of the OMI used to create the VM.
    IsSourceDestChecked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    KeypairName string
    The name of the keypair used when launching the VM.
    LaunchNumber float64
    The number for the VM when launching a group of several VMs (for example, 0, 1, 2, and so on).
    NestedVirtualization bool
    If true, nested virtualization is enabled. If false, it is disabled.
    NetId string
    The ID of the Net for the NIC.
    Nics []GetVmNic
    (Net only) The network interface cards (NICs) the VMs are attached to.
    OsFamily string
    Indicates the operating system (OS) of the VM.
    Performance string
    The performance of the VM (medium | high | highest).
    PlacementSubregionName string
    PlacementTenancy string
    PrimaryNics []GetVmPrimaryNic
    PrivateDnsName string
    The name of the private DNS.
    PrivateIp string
    The primary private IP of the VM.
    PrivateIps []string
    The private IP or IPs of the NIC.
    ProductCodes []string
    The product codes associated with the OMI used to create the VM.
    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    RequestId string
    ReservationId string
    The reservation ID of the VM.
    RootDeviceName string
    The name of the root device for the VM (for example, /dev/sda1).
    RootDeviceType string
    The type of root device used by the VM (always bsu).
    SecurityGroupIds []string
    SecurityGroupNames []string
    SecurityGroups []GetVmSecurityGroup
    One or more security groups associated with the VM.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    StateReason string
    The reason explaining the current state of the VM.
    SubnetId string
    The ID of the Subnet for the VM.
    Tags []GetVmTag
    One or more tags associated with the VM.
    UserData string
    The Base64-encoded MIME user data.
    VmId string
    The ID of the VM.
    VmInitiatedShutdownBehavior string
    The VM behavior when you stop it. If set to stop, the VM stops. If set to restart, the VM stops then automatically restarts. If set to terminate, the VM stops and is deleted.
    VmType string
    The type of VM. For more information, see VM Types.
    Filters []GetVmFilter
    architecture String
    The architecture of the VM (i386 | x86_64).
    blockDeviceMappingsCreateds List<GetVmBlockDeviceMappingsCreated>
    The block device mapping of the VM.
    bsuOptimized Boolean
    clientToken String
    The idempotency token provided when launching the VM.
    creationDate String
    The date and time (UTC) at which the VM was created.
    deletionProtection Boolean
    If true, you cannot delete the VM unless you change this parameter back to false.
    hypervisor String
    The hypervisor type of the VMs (ovm | xen).
    id String
    imageId String
    The ID of the OMI used to create the VM.
    isSourceDestChecked Boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    keypairName String
    The name of the keypair used when launching the VM.
    launchNumber Double
    The number for the VM when launching a group of several VMs (for example, 0, 1, 2, and so on).
    nestedVirtualization Boolean
    If true, nested virtualization is enabled. If false, it is disabled.
    netId String
    The ID of the Net for the NIC.
    nics List<GetVmNic>
    (Net only) The network interface cards (NICs) the VMs are attached to.
    osFamily String
    Indicates the operating system (OS) of the VM.
    performance String
    The performance of the VM (medium | high | highest).
    placementSubregionName String
    placementTenancy String
    primaryNics List<GetVmPrimaryNic>
    privateDnsName String
    The name of the private DNS.
    privateIp String
    The primary private IP of the VM.
    privateIps List<String>
    The private IP or IPs of the NIC.
    productCodes List<String>
    The product codes associated with the OMI used to create the VM.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    requestId String
    reservationId String
    The reservation ID of the VM.
    rootDeviceName String
    The name of the root device for the VM (for example, /dev/sda1).
    rootDeviceType String
    The type of root device used by the VM (always bsu).
    securityGroupIds List<String>
    securityGroupNames List<String>
    securityGroups List<GetVmSecurityGroup>
    One or more security groups associated with the VM.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    stateReason String
    The reason explaining the current state of the VM.
    subnetId String
    The ID of the Subnet for the VM.
    tags List<GetVmTag>
    One or more tags associated with the VM.
    userData String
    The Base64-encoded MIME user data.
    vmId String
    The ID of the VM.
    vmInitiatedShutdownBehavior String
    The VM behavior when you stop it. If set to stop, the VM stops. If set to restart, the VM stops then automatically restarts. If set to terminate, the VM stops and is deleted.
    vmType String
    The type of VM. For more information, see VM Types.
    filters List<GetVmFilter>
    architecture string
    The architecture of the VM (i386 | x86_64).
    blockDeviceMappingsCreateds GetVmBlockDeviceMappingsCreated[]
    The block device mapping of the VM.
    bsuOptimized boolean
    clientToken string
    The idempotency token provided when launching the VM.
    creationDate string
    The date and time (UTC) at which the VM was created.
    deletionProtection boolean
    If true, you cannot delete the VM unless you change this parameter back to false.
    hypervisor string
    The hypervisor type of the VMs (ovm | xen).
    id string
    imageId string
    The ID of the OMI used to create the VM.
    isSourceDestChecked boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    keypairName string
    The name of the keypair used when launching the VM.
    launchNumber number
    The number for the VM when launching a group of several VMs (for example, 0, 1, 2, and so on).
    nestedVirtualization boolean
    If true, nested virtualization is enabled. If false, it is disabled.
    netId string
    The ID of the Net for the NIC.
    nics GetVmNic[]
    (Net only) The network interface cards (NICs) the VMs are attached to.
    osFamily string
    Indicates the operating system (OS) of the VM.
    performance string
    The performance of the VM (medium | high | highest).
    placementSubregionName string
    placementTenancy string
    primaryNics GetVmPrimaryNic[]
    privateDnsName string
    The name of the private DNS.
    privateIp string
    The primary private IP of the VM.
    privateIps string[]
    The private IP or IPs of the NIC.
    productCodes string[]
    The product codes associated with the OMI used to create the VM.
    publicDnsName string
    The name of the public DNS.
    publicIp string
    The public IP of the VM.
    requestId string
    reservationId string
    The reservation ID of the VM.
    rootDeviceName string
    The name of the root device for the VM (for example, /dev/sda1).
    rootDeviceType string
    The type of root device used by the VM (always bsu).
    securityGroupIds string[]
    securityGroupNames string[]
    securityGroups GetVmSecurityGroup[]
    One or more security groups associated with the VM.
    state string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    stateReason string
    The reason explaining the current state of the VM.
    subnetId string
    The ID of the Subnet for the VM.
    tags GetVmTag[]
    One or more tags associated with the VM.
    userData string
    The Base64-encoded MIME user data.
    vmId string
    The ID of the VM.
    vmInitiatedShutdownBehavior string
    The VM behavior when you stop it. If set to stop, the VM stops. If set to restart, the VM stops then automatically restarts. If set to terminate, the VM stops and is deleted.
    vmType string
    The type of VM. For more information, see VM Types.
    filters GetVmFilter[]
    architecture str
    The architecture of the VM (i386 | x86_64).
    block_device_mappings_createds Sequence[GetVmBlockDeviceMappingsCreated]
    The block device mapping of the VM.
    bsu_optimized bool
    client_token str
    The idempotency token provided when launching the VM.
    creation_date str
    The date and time (UTC) at which the VM was created.
    deletion_protection bool
    If true, you cannot delete the VM unless you change this parameter back to false.
    hypervisor str
    The hypervisor type of the VMs (ovm | xen).
    id str
    image_id str
    The ID of the OMI used to create the VM.
    is_source_dest_checked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    keypair_name str
    The name of the keypair used when launching the VM.
    launch_number float
    The number for the VM when launching a group of several VMs (for example, 0, 1, 2, and so on).
    nested_virtualization bool
    If true, nested virtualization is enabled. If false, it is disabled.
    net_id str
    The ID of the Net for the NIC.
    nics Sequence[GetVmNic]
    (Net only) The network interface cards (NICs) the VMs are attached to.
    os_family str
    Indicates the operating system (OS) of the VM.
    performance str
    The performance of the VM (medium | high | highest).
    placement_subregion_name str
    placement_tenancy str
    primary_nics Sequence[GetVmPrimaryNic]
    private_dns_name str
    The name of the private DNS.
    private_ip str
    The primary private IP of the VM.
    private_ips Sequence[str]
    The private IP or IPs of the NIC.
    product_codes Sequence[str]
    The product codes associated with the OMI used to create the VM.
    public_dns_name str
    The name of the public DNS.
    public_ip str
    The public IP of the VM.
    request_id str
    reservation_id str
    The reservation ID of the VM.
    root_device_name str
    The name of the root device for the VM (for example, /dev/sda1).
    root_device_type str
    The type of root device used by the VM (always bsu).
    security_group_ids Sequence[str]
    security_group_names Sequence[str]
    security_groups Sequence[GetVmSecurityGroup]
    One or more security groups associated with the VM.
    state str
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    state_reason str
    The reason explaining the current state of the VM.
    subnet_id str
    The ID of the Subnet for the VM.
    tags Sequence[GetVmTag]
    One or more tags associated with the VM.
    user_data str
    The Base64-encoded MIME user data.
    vm_id str
    The ID of the VM.
    vm_initiated_shutdown_behavior str
    The VM behavior when you stop it. If set to stop, the VM stops. If set to restart, the VM stops then automatically restarts. If set to terminate, the VM stops and is deleted.
    vm_type str
    The type of VM. For more information, see VM Types.
    filters Sequence[GetVmFilter]
    architecture String
    The architecture of the VM (i386 | x86_64).
    blockDeviceMappingsCreateds List<Property Map>
    The block device mapping of the VM.
    bsuOptimized Boolean
    clientToken String
    The idempotency token provided when launching the VM.
    creationDate String
    The date and time (UTC) at which the VM was created.
    deletionProtection Boolean
    If true, you cannot delete the VM unless you change this parameter back to false.
    hypervisor String
    The hypervisor type of the VMs (ovm | xen).
    id String
    imageId String
    The ID of the OMI used to create the VM.
    isSourceDestChecked Boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    keypairName String
    The name of the keypair used when launching the VM.
    launchNumber Number
    The number for the VM when launching a group of several VMs (for example, 0, 1, 2, and so on).
    nestedVirtualization Boolean
    If true, nested virtualization is enabled. If false, it is disabled.
    netId String
    The ID of the Net for the NIC.
    nics List<Property Map>
    (Net only) The network interface cards (NICs) the VMs are attached to.
    osFamily String
    Indicates the operating system (OS) of the VM.
    performance String
    The performance of the VM (medium | high | highest).
    placementSubregionName String
    placementTenancy String
    primaryNics List<Property Map>
    privateDnsName String
    The name of the private DNS.
    privateIp String
    The primary private IP of the VM.
    privateIps List<String>
    The private IP or IPs of the NIC.
    productCodes List<String>
    The product codes associated with the OMI used to create the VM.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    requestId String
    reservationId String
    The reservation ID of the VM.
    rootDeviceName String
    The name of the root device for the VM (for example, /dev/sda1).
    rootDeviceType String
    The type of root device used by the VM (always bsu).
    securityGroupIds List<String>
    securityGroupNames List<String>
    securityGroups List<Property Map>
    One or more security groups associated with the VM.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    stateReason String
    The reason explaining the current state of the VM.
    subnetId String
    The ID of the Subnet for the VM.
    tags List<Property Map>
    One or more tags associated with the VM.
    userData String
    The Base64-encoded MIME user data.
    vmId String
    The ID of the VM.
    vmInitiatedShutdownBehavior String
    The VM behavior when you stop it. If set to stop, the VM stops. If set to restart, the VM stops then automatically restarts. If set to terminate, the VM stops and is deleted.
    vmType String
    The type of VM. For more information, see VM Types.
    filters List<Property Map>

    Supporting Types

    GetVmBlockDeviceMappingsCreated

    Bsus List<GetVmBlockDeviceMappingsCreatedBsus>
    Information about the created BSU volume.
    DeviceName string
    The name of the device.
    Bsus []GetVmBlockDeviceMappingsCreatedBsus
    Information about the created BSU volume.
    DeviceName string
    The name of the device.
    bsus List<GetVmBlockDeviceMappingsCreatedBsus>
    Information about the created BSU volume.
    deviceName String
    The name of the device.
    bsus GetVmBlockDeviceMappingsCreatedBsus[]
    Information about the created BSU volume.
    deviceName string
    The name of the device.
    bsus Sequence[GetVmBlockDeviceMappingsCreatedBsus]
    Information about the created BSU volume.
    device_name str
    The name of the device.
    bsus List<Property Map>
    Information about the created BSU volume.
    deviceName String
    The name of the device.

    GetVmBlockDeviceMappingsCreatedBsus

    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    LinkDate string
    The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    Tags List<GetVmBlockDeviceMappingsCreatedBsusTag>
    One or more tags associated with the VM.
    VolumeId string
    The ID of the volume.
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    LinkDate string
    The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    Tags []GetVmBlockDeviceMappingsCreatedBsusTag
    One or more tags associated with the VM.
    VolumeId string
    The ID of the volume.
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    linkDate String
    The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    tags List<GetVmBlockDeviceMappingsCreatedBsusTag>
    One or more tags associated with the VM.
    volumeId String
    The ID of the volume.
    deleteOnVmDeletion boolean
    If true, the NIC is deleted when the VM is terminated.
    linkDate string
    The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
    state string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    tags GetVmBlockDeviceMappingsCreatedBsusTag[]
    One or more tags associated with the VM.
    volumeId string
    The ID of the volume.
    delete_on_vm_deletion bool
    If true, the NIC is deleted when the VM is terminated.
    link_date str
    The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
    state str
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    tags Sequence[GetVmBlockDeviceMappingsCreatedBsusTag]
    One or more tags associated with the VM.
    volume_id str
    The ID of the volume.
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    linkDate String
    The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    tags List<Property Map>
    One or more tags associated with the VM.
    volumeId String
    The ID of the volume.

    GetVmBlockDeviceMappingsCreatedBsusTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    GetVmFilter

    Name string
    Values List<string>
    Name string
    Values []string
    name String
    values List<String>
    name string
    values string[]
    name str
    values Sequence[str]
    name String
    values List<String>

    GetVmNic

    AccountId string
    The account ID of the owner of the NIC.
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    Description string
    The description of the NIC.
    DeviceNumber double
    The device index for the NIC attachment (between 1 and 7, both included).
    IsSourceDestChecked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    LinkNics List<GetVmNicLinkNic>
    Information about the network interface card (NIC).
    LinkPublicIps List<GetVmNicLinkPublicIp>
    Information about the public IP associated with the NIC.
    MacAddress string
    The Media Access Control (MAC) address of the NIC.
    NetId string
    The ID of the Net for the NIC.
    NicId string
    The ID of the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIps List<GetVmNicPrivateIp>
    The private IP or IPs of the NIC.
    SecondaryPrivateIpCount double
    SecurityGroupIds List<string>
    The IDs of the security groups for the VMs (only in the public Cloud).
    SecurityGroups List<GetVmNicSecurityGroup>
    One or more security groups associated with the VM.
    SecurityGroupsNames List<string>
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    SubnetId string
    The ID of the Subnet for the VM.
    AccountId string
    The account ID of the owner of the NIC.
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    Description string
    The description of the NIC.
    DeviceNumber float64
    The device index for the NIC attachment (between 1 and 7, both included).
    IsSourceDestChecked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    LinkNics []GetVmNicLinkNic
    Information about the network interface card (NIC).
    LinkPublicIps []GetVmNicLinkPublicIp
    Information about the public IP associated with the NIC.
    MacAddress string
    The Media Access Control (MAC) address of the NIC.
    NetId string
    The ID of the Net for the NIC.
    NicId string
    The ID of the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIps []GetVmNicPrivateIp
    The private IP or IPs of the NIC.
    SecondaryPrivateIpCount float64
    SecurityGroupIds []string
    The IDs of the security groups for the VMs (only in the public Cloud).
    SecurityGroups []GetVmNicSecurityGroup
    One or more security groups associated with the VM.
    SecurityGroupsNames []string
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    SubnetId string
    The ID of the Subnet for the VM.
    accountId String
    The account ID of the owner of the NIC.
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    description String
    The description of the NIC.
    deviceNumber Double
    The device index for the NIC attachment (between 1 and 7, both included).
    isSourceDestChecked Boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    linkNics List<GetVmNicLinkNic>
    Information about the network interface card (NIC).
    linkPublicIps List<GetVmNicLinkPublicIp>
    Information about the public IP associated with the NIC.
    macAddress String
    The Media Access Control (MAC) address of the NIC.
    netId String
    The ID of the Net for the NIC.
    nicId String
    The ID of the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIps List<GetVmNicPrivateIp>
    The private IP or IPs of the NIC.
    secondaryPrivateIpCount Double
    securityGroupIds List<String>
    The IDs of the security groups for the VMs (only in the public Cloud).
    securityGroups List<GetVmNicSecurityGroup>
    One or more security groups associated with the VM.
    securityGroupsNames List<String>
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnetId String
    The ID of the Subnet for the VM.
    accountId string
    The account ID of the owner of the NIC.
    deleteOnVmDeletion boolean
    If true, the NIC is deleted when the VM is terminated.
    description string
    The description of the NIC.
    deviceNumber number
    The device index for the NIC attachment (between 1 and 7, both included).
    isSourceDestChecked boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    linkNics GetVmNicLinkNic[]
    Information about the network interface card (NIC).
    linkPublicIps GetVmNicLinkPublicIp[]
    Information about the public IP associated with the NIC.
    macAddress string
    The Media Access Control (MAC) address of the NIC.
    netId string
    The ID of the Net for the NIC.
    nicId string
    The ID of the NIC.
    privateDnsName string
    The name of the private DNS.
    privateIps GetVmNicPrivateIp[]
    The private IP or IPs of the NIC.
    secondaryPrivateIpCount number
    securityGroupIds string[]
    The IDs of the security groups for the VMs (only in the public Cloud).
    securityGroups GetVmNicSecurityGroup[]
    One or more security groups associated with the VM.
    securityGroupsNames string[]
    state string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnetId string
    The ID of the Subnet for the VM.
    account_id str
    The account ID of the owner of the NIC.
    delete_on_vm_deletion bool
    If true, the NIC is deleted when the VM is terminated.
    description str
    The description of the NIC.
    device_number float
    The device index for the NIC attachment (between 1 and 7, both included).
    is_source_dest_checked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    link_nics Sequence[GetVmNicLinkNic]
    Information about the network interface card (NIC).
    link_public_ips Sequence[GetVmNicLinkPublicIp]
    Information about the public IP associated with the NIC.
    mac_address str
    The Media Access Control (MAC) address of the NIC.
    net_id str
    The ID of the Net for the NIC.
    nic_id str
    The ID of the NIC.
    private_dns_name str
    The name of the private DNS.
    private_ips Sequence[GetVmNicPrivateIp]
    The private IP or IPs of the NIC.
    secondary_private_ip_count float
    security_group_ids Sequence[str]
    The IDs of the security groups for the VMs (only in the public Cloud).
    security_groups Sequence[GetVmNicSecurityGroup]
    One or more security groups associated with the VM.
    security_groups_names Sequence[str]
    state str
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnet_id str
    The ID of the Subnet for the VM.
    accountId String
    The account ID of the owner of the NIC.
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    description String
    The description of the NIC.
    deviceNumber Number
    The device index for the NIC attachment (between 1 and 7, both included).
    isSourceDestChecked Boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    linkNics List<Property Map>
    Information about the network interface card (NIC).
    linkPublicIps List<Property Map>
    Information about the public IP associated with the NIC.
    macAddress String
    The Media Access Control (MAC) address of the NIC.
    netId String
    The ID of the Net for the NIC.
    nicId String
    The ID of the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIps List<Property Map>
    The private IP or IPs of the NIC.
    secondaryPrivateIpCount Number
    securityGroupIds List<String>
    The IDs of the security groups for the VMs (only in the public Cloud).
    securityGroups List<Property Map>
    One or more security groups associated with the VM.
    securityGroupsNames List<String>
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnetId String
    The ID of the Subnet for the VM.

    GetVmNicLinkNic

    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    DeviceNumber string
    The device index for the NIC attachment (between 1 and 7, both included).
    LinkNicId string
    The ID of the NIC to attach.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    DeviceNumber string
    The device index for the NIC attachment (between 1 and 7, both included).
    LinkNicId string
    The ID of the NIC to attach.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    deviceNumber String
    The device index for the NIC attachment (between 1 and 7, both included).
    linkNicId String
    The ID of the NIC to attach.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    deleteOnVmDeletion boolean
    If true, the NIC is deleted when the VM is terminated.
    deviceNumber string
    The device index for the NIC attachment (between 1 and 7, both included).
    linkNicId string
    The ID of the NIC to attach.
    state string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    delete_on_vm_deletion bool
    If true, the NIC is deleted when the VM is terminated.
    device_number str
    The device index for the NIC attachment (between 1 and 7, both included).
    link_nic_id str
    The ID of the NIC to attach.
    state str
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    deviceNumber String
    The device index for the NIC attachment (between 1 and 7, both included).
    linkNicId String
    The ID of the NIC to attach.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).

    GetVmNicLinkPublicIp

    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.
    publicDnsName string
    The name of the public DNS.
    publicIp string
    The public IP of the VM.
    publicIpAccountId string
    The account ID of the owner of the public IP.
    public_dns_name str
    The name of the public DNS.
    public_ip str
    The public IP of the VM.
    public_ip_account_id str
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.

    GetVmNicPrivateIp

    IsPrimary bool
    If true, the IP is the primary private IP of the NIC.
    LinkPublicIps List<GetVmNicPrivateIpLinkPublicIp>
    Information about the public IP associated with the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIp string
    The primary private IP of the VM.
    IsPrimary bool
    If true, the IP is the primary private IP of the NIC.
    LinkPublicIps []GetVmNicPrivateIpLinkPublicIp
    Information about the public IP associated with the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIp string
    The primary private IP of the VM.
    isPrimary Boolean
    If true, the IP is the primary private IP of the NIC.
    linkPublicIps List<GetVmNicPrivateIpLinkPublicIp>
    Information about the public IP associated with the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIp String
    The primary private IP of the VM.
    isPrimary boolean
    If true, the IP is the primary private IP of the NIC.
    linkPublicIps GetVmNicPrivateIpLinkPublicIp[]
    Information about the public IP associated with the NIC.
    privateDnsName string
    The name of the private DNS.
    privateIp string
    The primary private IP of the VM.
    is_primary bool
    If true, the IP is the primary private IP of the NIC.
    link_public_ips Sequence[GetVmNicPrivateIpLinkPublicIp]
    Information about the public IP associated with the NIC.
    private_dns_name str
    The name of the private DNS.
    private_ip str
    The primary private IP of the VM.
    isPrimary Boolean
    If true, the IP is the primary private IP of the NIC.
    linkPublicIps List<Property Map>
    Information about the public IP associated with the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIp String
    The primary private IP of the VM.

    GetVmNicPrivateIpLinkPublicIp

    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.
    publicDnsName string
    The name of the public DNS.
    publicIp string
    The public IP of the VM.
    publicIpAccountId string
    The account ID of the owner of the public IP.
    public_dns_name str
    The name of the public DNS.
    public_ip str
    The public IP of the VM.
    public_ip_account_id str
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.

    GetVmNicSecurityGroup

    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    securityGroupId string
    The ID of the security group.
    securityGroupName string
    The name of the security group.
    security_group_id str
    The ID of the security group.
    security_group_name str
    The name of the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.

    GetVmPrimaryNic

    AccountId string
    The account ID of the owner of the NIC.
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    Description string
    The description of the NIC.
    DeviceNumber double
    The device index for the NIC attachment (between 1 and 7, both included).
    IsSourceDestChecked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    LinkNics List<GetVmPrimaryNicLinkNic>
    Information about the network interface card (NIC).
    LinkPublicIps List<GetVmPrimaryNicLinkPublicIp>
    Information about the public IP associated with the NIC.
    MacAddress string
    The Media Access Control (MAC) address of the NIC.
    NetId string
    The ID of the Net for the NIC.
    NicId string
    The ID of the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIps List<GetVmPrimaryNicPrivateIp>
    The private IP or IPs of the NIC.
    SecondaryPrivateIpCount double
    SecurityGroupIds List<string>
    The IDs of the security groups for the VMs (only in the public Cloud).
    SecurityGroups List<GetVmPrimaryNicSecurityGroup>
    One or more security groups associated with the VM.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    SubnetId string
    The ID of the Subnet for the VM.
    AccountId string
    The account ID of the owner of the NIC.
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    Description string
    The description of the NIC.
    DeviceNumber float64
    The device index for the NIC attachment (between 1 and 7, both included).
    IsSourceDestChecked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    LinkNics []GetVmPrimaryNicLinkNic
    Information about the network interface card (NIC).
    LinkPublicIps []GetVmPrimaryNicLinkPublicIp
    Information about the public IP associated with the NIC.
    MacAddress string
    The Media Access Control (MAC) address of the NIC.
    NetId string
    The ID of the Net for the NIC.
    NicId string
    The ID of the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIps []GetVmPrimaryNicPrivateIp
    The private IP or IPs of the NIC.
    SecondaryPrivateIpCount float64
    SecurityGroupIds []string
    The IDs of the security groups for the VMs (only in the public Cloud).
    SecurityGroups []GetVmPrimaryNicSecurityGroup
    One or more security groups associated with the VM.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    SubnetId string
    The ID of the Subnet for the VM.
    accountId String
    The account ID of the owner of the NIC.
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    description String
    The description of the NIC.
    deviceNumber Double
    The device index for the NIC attachment (between 1 and 7, both included).
    isSourceDestChecked Boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    linkNics List<GetVmPrimaryNicLinkNic>
    Information about the network interface card (NIC).
    linkPublicIps List<GetVmPrimaryNicLinkPublicIp>
    Information about the public IP associated with the NIC.
    macAddress String
    The Media Access Control (MAC) address of the NIC.
    netId String
    The ID of the Net for the NIC.
    nicId String
    The ID of the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIps List<GetVmPrimaryNicPrivateIp>
    The private IP or IPs of the NIC.
    secondaryPrivateIpCount Double
    securityGroupIds List<String>
    The IDs of the security groups for the VMs (only in the public Cloud).
    securityGroups List<GetVmPrimaryNicSecurityGroup>
    One or more security groups associated with the VM.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnetId String
    The ID of the Subnet for the VM.
    accountId string
    The account ID of the owner of the NIC.
    deleteOnVmDeletion boolean
    If true, the NIC is deleted when the VM is terminated.
    description string
    The description of the NIC.
    deviceNumber number
    The device index for the NIC attachment (between 1 and 7, both included).
    isSourceDestChecked boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    linkNics GetVmPrimaryNicLinkNic[]
    Information about the network interface card (NIC).
    linkPublicIps GetVmPrimaryNicLinkPublicIp[]
    Information about the public IP associated with the NIC.
    macAddress string
    The Media Access Control (MAC) address of the NIC.
    netId string
    The ID of the Net for the NIC.
    nicId string
    The ID of the NIC.
    privateDnsName string
    The name of the private DNS.
    privateIps GetVmPrimaryNicPrivateIp[]
    The private IP or IPs of the NIC.
    secondaryPrivateIpCount number
    securityGroupIds string[]
    The IDs of the security groups for the VMs (only in the public Cloud).
    securityGroups GetVmPrimaryNicSecurityGroup[]
    One or more security groups associated with the VM.
    state string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnetId string
    The ID of the Subnet for the VM.
    account_id str
    The account ID of the owner of the NIC.
    delete_on_vm_deletion bool
    If true, the NIC is deleted when the VM is terminated.
    description str
    The description of the NIC.
    device_number float
    The device index for the NIC attachment (between 1 and 7, both included).
    is_source_dest_checked bool
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    link_nics Sequence[GetVmPrimaryNicLinkNic]
    Information about the network interface card (NIC).
    link_public_ips Sequence[GetVmPrimaryNicLinkPublicIp]
    Information about the public IP associated with the NIC.
    mac_address str
    The Media Access Control (MAC) address of the NIC.
    net_id str
    The ID of the Net for the NIC.
    nic_id str
    The ID of the NIC.
    private_dns_name str
    The name of the private DNS.
    private_ips Sequence[GetVmPrimaryNicPrivateIp]
    The private IP or IPs of the NIC.
    secondary_private_ip_count float
    security_group_ids Sequence[str]
    The IDs of the security groups for the VMs (only in the public Cloud).
    security_groups Sequence[GetVmPrimaryNicSecurityGroup]
    One or more security groups associated with the VM.
    state str
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnet_id str
    The ID of the Subnet for the VM.
    accountId String
    The account ID of the owner of the NIC.
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    description String
    The description of the NIC.
    deviceNumber Number
    The device index for the NIC attachment (between 1 and 7, both included).
    isSourceDestChecked Boolean
    (Net only) If true, the source/destination check is enabled. If false, it is disabled.
    linkNics List<Property Map>
    Information about the network interface card (NIC).
    linkPublicIps List<Property Map>
    Information about the public IP associated with the NIC.
    macAddress String
    The Media Access Control (MAC) address of the NIC.
    netId String
    The ID of the Net for the NIC.
    nicId String
    The ID of the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIps List<Property Map>
    The private IP or IPs of the NIC.
    secondaryPrivateIpCount Number
    securityGroupIds List<String>
    The IDs of the security groups for the VMs (only in the public Cloud).
    securityGroups List<Property Map>
    One or more security groups associated with the VM.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    subnetId String
    The ID of the Subnet for the VM.

    GetVmPrimaryNicLinkNic

    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    DeviceNumber string
    The device index for the NIC attachment (between 1 and 7, both included).
    LinkNicId string
    The ID of the NIC to attach.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    DeleteOnVmDeletion bool
    If true, the NIC is deleted when the VM is terminated.
    DeviceNumber string
    The device index for the NIC attachment (between 1 and 7, both included).
    LinkNicId string
    The ID of the NIC to attach.
    State string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    deviceNumber String
    The device index for the NIC attachment (between 1 and 7, both included).
    linkNicId String
    The ID of the NIC to attach.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    deleteOnVmDeletion boolean
    If true, the NIC is deleted when the VM is terminated.
    deviceNumber string
    The device index for the NIC attachment (between 1 and 7, both included).
    linkNicId string
    The ID of the NIC to attach.
    state string
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    delete_on_vm_deletion bool
    If true, the NIC is deleted when the VM is terminated.
    device_number str
    The device index for the NIC attachment (between 1 and 7, both included).
    link_nic_id str
    The ID of the NIC to attach.
    state str
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).
    deleteOnVmDeletion Boolean
    If true, the NIC is deleted when the VM is terminated.
    deviceNumber String
    The device index for the NIC attachment (between 1 and 7, both included).
    linkNicId String
    The ID of the NIC to attach.
    state String
    The state of the VM (pending | running | stopping | stopped | shutting-down | terminated | quarantine).

    GetVmPrimaryNicLinkPublicIp

    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.
    publicDnsName string
    The name of the public DNS.
    publicIp string
    The public IP of the VM.
    publicIpAccountId string
    The account ID of the owner of the public IP.
    public_dns_name str
    The name of the public DNS.
    public_ip str
    The public IP of the VM.
    public_ip_account_id str
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.

    GetVmPrimaryNicPrivateIp

    IsPrimary bool
    If true, the IP is the primary private IP of the NIC.
    LinkPublicIps List<GetVmPrimaryNicPrivateIpLinkPublicIp>
    Information about the public IP associated with the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIp string
    The primary private IP of the VM.
    IsPrimary bool
    If true, the IP is the primary private IP of the NIC.
    LinkPublicIps []GetVmPrimaryNicPrivateIpLinkPublicIp
    Information about the public IP associated with the NIC.
    PrivateDnsName string
    The name of the private DNS.
    PrivateIp string
    The primary private IP of the VM.
    isPrimary Boolean
    If true, the IP is the primary private IP of the NIC.
    linkPublicIps List<GetVmPrimaryNicPrivateIpLinkPublicIp>
    Information about the public IP associated with the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIp String
    The primary private IP of the VM.
    isPrimary boolean
    If true, the IP is the primary private IP of the NIC.
    linkPublicIps GetVmPrimaryNicPrivateIpLinkPublicIp[]
    Information about the public IP associated with the NIC.
    privateDnsName string
    The name of the private DNS.
    privateIp string
    The primary private IP of the VM.
    is_primary bool
    If true, the IP is the primary private IP of the NIC.
    link_public_ips Sequence[GetVmPrimaryNicPrivateIpLinkPublicIp]
    Information about the public IP associated with the NIC.
    private_dns_name str
    The name of the private DNS.
    private_ip str
    The primary private IP of the VM.
    isPrimary Boolean
    If true, the IP is the primary private IP of the NIC.
    linkPublicIps List<Property Map>
    Information about the public IP associated with the NIC.
    privateDnsName String
    The name of the private DNS.
    privateIp String
    The primary private IP of the VM.

    GetVmPrimaryNicPrivateIpLinkPublicIp

    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    PublicDnsName string
    The name of the public DNS.
    PublicIp string
    The public IP of the VM.
    PublicIpAccountId string
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.
    publicDnsName string
    The name of the public DNS.
    publicIp string
    The public IP of the VM.
    publicIpAccountId string
    The account ID of the owner of the public IP.
    public_dns_name str
    The name of the public DNS.
    public_ip str
    The public IP of the VM.
    public_ip_account_id str
    The account ID of the owner of the public IP.
    publicDnsName String
    The name of the public DNS.
    publicIp String
    The public IP of the VM.
    publicIpAccountId String
    The account ID of the owner of the public IP.

    GetVmPrimaryNicSecurityGroup

    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    securityGroupId string
    The ID of the security group.
    securityGroupName string
    The name of the security group.
    security_group_id str
    The ID of the security group.
    security_group_name str
    The name of the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.

    GetVmSecurityGroup

    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    SecurityGroupId string
    The ID of the security group.
    SecurityGroupName string
    The name of the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.
    securityGroupId string
    The ID of the security group.
    securityGroupName string
    The name of the security group.
    security_group_id str
    The ID of the security group.
    security_group_name str
    The name of the security group.
    securityGroupId String
    The ID of the security group.
    securityGroupName String
    The name of the security group.

    GetVmTag

    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    Key string
    The key of the tag, with a minimum of 1 character.
    Value string
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.
    key string
    The key of the tag, with a minimum of 1 character.
    value string
    The value of the tag, between 0 and 255 characters.
    key str
    The key of the tag, with a minimum of 1 character.
    value str
    The value of the tag, between 0 and 255 characters.
    key String
    The key of the tag, with a minimum of 1 character.
    value String
    The value of the tag, between 0 and 255 characters.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    outscale logo
    outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale