outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getVm
Explore with Pulumi AI
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 dictionaryThe following arguments are supported:
- Filters
List<GetVm Filter> 
- 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
[]GetVm Filter 
- 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<GetVm Filter> 
- 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
GetVm Filter[] 
- 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[GetVm Filter] 
- 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).
- BlockDevice List<GetMappings Createds Vm Block Device Mappings Created> 
- 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.
- IsSource boolDest Checked 
- (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<GetVm Nic> 
- (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).
- PlacementSubregion stringName 
- PlacementTenancy string
- PrimaryNics List<GetVm Primary Nic> 
- PrivateDns stringName 
- 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.
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- RequestId string
- ReservationId string
- The reservation ID of the VM.
- RootDevice stringName 
- The name of the root device for the VM (for example, /dev/sda1).
- RootDevice stringType 
- The type of root device used by the VM (always bsu).
- SecurityGroup List<string>Ids 
- SecurityGroup List<string>Names 
- SecurityGroups List<GetVm Security Group> 
- 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.
- 
List<GetVm Tag> 
- One or more tags associated with the VM.
- UserData string
- The Base64-encoded MIME user data.
- VmId string
- The ID of the VM.
- VmInitiated stringShutdown Behavior 
- The VM behavior when you stop it. If set to stop, the VM stops. If set torestart, the VM stops then automatically restarts. If set toterminate, the VM stops and is deleted.
- VmType string
- The type of VM. For more information, see VM Types.
- Filters
List<GetVm Filter> 
- Architecture string
- The architecture of the VM (i386|x86_64).
- BlockDevice []GetMappings Createds Vm Block Device Mappings Created 
- 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.
- IsSource boolDest Checked 
- (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
[]GetVm Nic 
- (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).
- PlacementSubregion stringName 
- PlacementTenancy string
- PrimaryNics []GetVm Primary Nic 
- PrivateDns stringName 
- 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.
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- RequestId string
- ReservationId string
- The reservation ID of the VM.
- RootDevice stringName 
- The name of the root device for the VM (for example, /dev/sda1).
- RootDevice stringType 
- The type of root device used by the VM (always bsu).
- SecurityGroup []stringIds 
- SecurityGroup []stringNames 
- SecurityGroups []GetVm Security Group 
- 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.
- 
[]GetVm Tag 
- One or more tags associated with the VM.
- UserData string
- The Base64-encoded MIME user data.
- VmId string
- The ID of the VM.
- VmInitiated stringShutdown Behavior 
- The VM behavior when you stop it. If set to stop, the VM stops. If set torestart, the VM stops then automatically restarts. If set toterminate, the VM stops and is deleted.
- VmType string
- The type of VM. For more information, see VM Types.
- Filters
[]GetVm Filter 
- architecture String
- The architecture of the VM (i386|x86_64).
- blockDevice List<GetMappings Createds Vm Block Device Mappings Created> 
- 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.
- isSource BooleanDest Checked 
- (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<GetVm Nic> 
- (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).
- placementSubregion StringName 
- placementTenancy String
- primaryNics List<GetVm Primary Nic> 
- privateDns StringName 
- 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.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- requestId String
- reservationId String
- The reservation ID of the VM.
- rootDevice StringName 
- The name of the root device for the VM (for example, /dev/sda1).
- rootDevice StringType 
- The type of root device used by the VM (always bsu).
- securityGroup List<String>Ids 
- securityGroup List<String>Names 
- securityGroups List<GetVm Security Group> 
- 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.
- 
List<GetVm Tag> 
- One or more tags associated with the VM.
- userData String
- The Base64-encoded MIME user data.
- vmId String
- The ID of the VM.
- vmInitiated StringShutdown Behavior 
- The VM behavior when you stop it. If set to stop, the VM stops. If set torestart, the VM stops then automatically restarts. If set toterminate, the VM stops and is deleted.
- vmType String
- The type of VM. For more information, see VM Types.
- filters
List<GetVm Filter> 
- architecture string
- The architecture of the VM (i386|x86_64).
- blockDevice GetMappings Createds Vm Block Device Mappings Created[] 
- 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.
- isSource booleanDest Checked 
- (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
GetVm Nic[] 
- (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).
- placementSubregion stringName 
- placementTenancy string
- primaryNics GetVm Primary Nic[] 
- privateDns stringName 
- 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.
- publicDns stringName 
- The name of the public DNS.
- publicIp string
- The public IP of the VM.
- requestId string
- reservationId string
- The reservation ID of the VM.
- rootDevice stringName 
- The name of the root device for the VM (for example, /dev/sda1).
- rootDevice stringType 
- The type of root device used by the VM (always bsu).
- securityGroup string[]Ids 
- securityGroup string[]Names 
- securityGroups GetVm Security Group[] 
- 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.
- 
GetVm Tag[] 
- One or more tags associated with the VM.
- userData string
- The Base64-encoded MIME user data.
- vmId string
- The ID of the VM.
- vmInitiated stringShutdown Behavior 
- The VM behavior when you stop it. If set to stop, the VM stops. If set torestart, the VM stops then automatically restarts. If set toterminate, the VM stops and is deleted.
- vmType string
- The type of VM. For more information, see VM Types.
- filters
GetVm Filter[] 
- architecture str
- The architecture of the VM (i386|x86_64).
- block_device_ Sequence[Getmappings_ createds Vm Block Device Mappings Created] 
- 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_ booldest_ checked 
- (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[GetVm Nic] 
- (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_ strname 
- placement_tenancy str
- primary_nics Sequence[GetVm Primary Nic] 
- private_dns_ strname 
- 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_ strname 
- 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_ strname 
- The name of the root device for the VM (for example, /dev/sda1).
- root_device_ strtype 
- The type of root device used by the VM (always bsu).
- security_group_ Sequence[str]ids 
- security_group_ Sequence[str]names 
- security_groups Sequence[GetVm Security Group] 
- 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.
- 
Sequence[GetVm Tag] 
- 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_ strshutdown_ behavior 
- The VM behavior when you stop it. If set to stop, the VM stops. If set torestart, the VM stops then automatically restarts. If set toterminate, the VM stops and is deleted.
- vm_type str
- The type of VM. For more information, see VM Types.
- filters
Sequence[GetVm Filter] 
- architecture String
- The architecture of the VM (i386|x86_64).
- blockDevice List<Property Map>Mappings Createds 
- 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.
- isSource BooleanDest Checked 
- (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).
- placementSubregion StringName 
- placementTenancy String
- primaryNics List<Property Map>
- privateDns StringName 
- 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.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- requestId String
- reservationId String
- The reservation ID of the VM.
- rootDevice StringName 
- The name of the root device for the VM (for example, /dev/sda1).
- rootDevice StringType 
- The type of root device used by the VM (always bsu).
- securityGroup List<String>Ids 
- securityGroup List<String>Names 
- 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.
- 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.
- vmInitiated StringShutdown Behavior 
- The VM behavior when you stop it. If set to stop, the VM stops. If set torestart, the VM stops then automatically restarts. If set toterminate, 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<GetVm Block Device Mappings Created Bsus> 
- Information about the created BSU volume.
- DeviceName string
- The name of the device.
- Bsus
[]GetVm Block Device Mappings Created Bsus 
- Information about the created BSU volume.
- DeviceName string
- The name of the device.
- bsus
List<GetVm Block Device Mappings Created Bsus> 
- Information about the created BSU volume.
- deviceName String
- The name of the device.
- bsus
GetVm Block Device Mappings Created Bsus[] 
- Information about the created BSU volume.
- deviceName string
- The name of the device.
- bsus
Sequence[GetVm Block Device Mappings Created Bsus] 
- 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      
- DeleteOn boolVm Deletion 
- 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).
- 
List<GetVm Block Device Mappings Created Bsus Tag> 
- One or more tags associated with the VM.
- VolumeId string
- The ID of the volume.
- DeleteOn boolVm Deletion 
- 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).
- 
[]GetVm Block Device Mappings Created Bsus Tag 
- One or more tags associated with the VM.
- VolumeId string
- The ID of the volume.
- deleteOn BooleanVm Deletion 
- 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).
- 
List<GetVm Block Device Mappings Created Bsus Tag> 
- One or more tags associated with the VM.
- volumeId String
- The ID of the volume.
- deleteOn booleanVm Deletion 
- 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).
- 
GetVm Block Device Mappings Created Bsus Tag[] 
- One or more tags associated with the VM.
- volumeId string
- The ID of the volume.
- delete_on_ boolvm_ deletion 
- 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).
- 
Sequence[GetVm Block Device Mappings Created Bsus Tag] 
- One or more tags associated with the VM.
- volume_id str
- The ID of the volume.
- deleteOn BooleanVm Deletion 
- 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).
- List<Property Map>
- One or more tags associated with the VM.
- volumeId String
- The ID of the volume.
GetVmBlockDeviceMappingsCreatedBsusTag       
GetVmFilter  
GetVmNic  
- AccountId string
- The account ID of the owner of the NIC.
- DeleteOn boolVm Deletion 
- 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 1and7, both included).
- IsSource boolDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- LinkNics List<GetVm Nic Link Nic> 
- Information about the network interface card (NIC).
- LinkPublic List<GetIps Vm Nic Link Public Ip> 
- 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.
- PrivateDns stringName 
- The name of the private DNS.
- PrivateIps List<GetVm Nic Private Ip> 
- The private IP or IPs of the NIC.
- SecondaryPrivate doubleIp Count 
- SecurityGroup List<string>Ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- SecurityGroups List<GetVm Nic Security Group> 
- One or more security groups associated with the VM.
- SecurityGroups List<string>Names 
- 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.
- DeleteOn boolVm Deletion 
- 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 1and7, both included).
- IsSource boolDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- LinkNics []GetVm Nic Link Nic 
- Information about the network interface card (NIC).
- LinkPublic []GetIps Vm Nic Link Public Ip 
- 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.
- PrivateDns stringName 
- The name of the private DNS.
- PrivateIps []GetVm Nic Private Ip 
- The private IP or IPs of the NIC.
- SecondaryPrivate float64Ip Count 
- SecurityGroup []stringIds 
- The IDs of the security groups for the VMs (only in the public Cloud).
- SecurityGroups []GetVm Nic Security Group 
- One or more security groups associated with the VM.
- SecurityGroups []stringNames 
- 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.
- deleteOn BooleanVm Deletion 
- 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 1and7, both included).
- isSource BooleanDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- linkNics List<GetVm Nic Link Nic> 
- Information about the network interface card (NIC).
- linkPublic List<GetIps Vm Nic Link Public Ip> 
- 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.
- privateDns StringName 
- The name of the private DNS.
- privateIps List<GetVm Nic Private Ip> 
- The private IP or IPs of the NIC.
- secondaryPrivate DoubleIp Count 
- securityGroup List<String>Ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- securityGroups List<GetVm Nic Security Group> 
- One or more security groups associated with the VM.
- securityGroups List<String>Names 
- 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.
- deleteOn booleanVm Deletion 
- 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 1and7, both included).
- isSource booleanDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- linkNics GetVm Nic Link Nic[] 
- Information about the network interface card (NIC).
- linkPublic GetIps Vm Nic Link Public Ip[] 
- 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.
- privateDns stringName 
- The name of the private DNS.
- privateIps GetVm Nic Private Ip[] 
- The private IP or IPs of the NIC.
- secondaryPrivate numberIp Count 
- securityGroup string[]Ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- securityGroups GetVm Nic Security Group[] 
- One or more security groups associated with the VM.
- securityGroups string[]Names 
- 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_ boolvm_ deletion 
- 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 1and7, both included).
- is_source_ booldest_ checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_nics Sequence[GetVm Nic Link Nic] 
- Information about the network interface card (NIC).
- link_public_ Sequence[Getips Vm Nic Link Public Ip] 
- 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_ strname 
- The name of the private DNS.
- private_ips Sequence[GetVm Nic Private Ip] 
- The private IP or IPs of the NIC.
- secondary_private_ floatip_ count 
- security_group_ Sequence[str]ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- security_groups Sequence[GetVm Nic Security Group] 
- One or more security groups associated with the VM.
- security_groups_ Sequence[str]names 
- 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.
- deleteOn BooleanVm Deletion 
- 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 1and7, both included).
- isSource BooleanDest Checked 
- (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).
- linkPublic List<Property Map>Ips 
- 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.
- privateDns StringName 
- The name of the private DNS.
- privateIps List<Property Map>
- The private IP or IPs of the NIC.
- secondaryPrivate NumberIp Count 
- securityGroup List<String>Ids 
- 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.
- securityGroups List<String>Names 
- 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    
- DeleteOn boolVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- DeviceNumber string
- The device index for the NIC attachment (between 1and7, both included).
- LinkNic stringId 
- The ID of the NIC to attach.
- State string
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- DeleteOn boolVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- DeviceNumber string
- The device index for the NIC attachment (between 1and7, both included).
- LinkNic stringId 
- The ID of the NIC to attach.
- State string
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- deleteOn BooleanVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- deviceNumber String
- The device index for the NIC attachment (between 1and7, both included).
- linkNic StringId 
- The ID of the NIC to attach.
- state String
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- deleteOn booleanVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- deviceNumber string
- The device index for the NIC attachment (between 1and7, both included).
- linkNic stringId 
- The ID of the NIC to attach.
- state string
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- delete_on_ boolvm_ deletion 
- If true, the NIC is deleted when the VM is terminated.
- device_number str
- The device index for the NIC attachment (between 1and7, both included).
- link_nic_ strid 
- The ID of the NIC to attach.
- state str
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- deleteOn BooleanVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- deviceNumber String
- The device index for the NIC attachment (between 1and7, both included).
- linkNic StringId 
- The ID of the NIC to attach.
- state String
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
GetVmNicLinkPublicIp     
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- The account ID of the owner of the public IP.
- publicDns stringName 
- The name of the public DNS.
- publicIp string
- The public IP of the VM.
- publicIp stringAccount Id 
- The account ID of the owner of the public IP.
- public_dns_ strname 
- The name of the public DNS.
- public_ip str
- The public IP of the VM.
- public_ip_ straccount_ id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- 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.
- LinkPublic List<GetIps Vm Nic Private Ip Link Public Ip> 
- Information about the public IP associated with the NIC.
- PrivateDns stringName 
- 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.
- LinkPublic []GetIps Vm Nic Private Ip Link Public Ip 
- Information about the public IP associated with the NIC.
- PrivateDns stringName 
- 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.
- linkPublic List<GetIps Vm Nic Private Ip Link Public Ip> 
- Information about the public IP associated with the NIC.
- privateDns StringName 
- 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.
- linkPublic GetIps Vm Nic Private Ip Link Public Ip[] 
- Information about the public IP associated with the NIC.
- privateDns stringName 
- 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_ Sequence[Getips Vm Nic Private Ip Link Public Ip] 
- Information about the public IP associated with the NIC.
- private_dns_ strname 
- 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.
- linkPublic List<Property Map>Ips 
- Information about the public IP associated with the NIC.
- privateDns StringName 
- The name of the private DNS.
- privateIp String
- The primary private IP of the VM.
GetVmNicPrivateIpLinkPublicIp       
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- The account ID of the owner of the public IP.
- publicDns stringName 
- The name of the public DNS.
- publicIp string
- The public IP of the VM.
- publicIp stringAccount Id 
- The account ID of the owner of the public IP.
- public_dns_ strname 
- The name of the public DNS.
- public_ip str
- The public IP of the VM.
- public_ip_ straccount_ id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- The account ID of the owner of the public IP.
GetVmNicSecurityGroup    
- SecurityGroup stringId 
- The ID of the security group.
- SecurityGroup stringName 
- The name of the security group.
- SecurityGroup stringId 
- The ID of the security group.
- SecurityGroup stringName 
- The name of the security group.
- securityGroup StringId 
- The ID of the security group.
- securityGroup StringName 
- The name of the security group.
- securityGroup stringId 
- The ID of the security group.
- securityGroup stringName 
- The name of the security group.
- security_group_ strid 
- The ID of the security group.
- security_group_ strname 
- The name of the security group.
- securityGroup StringId 
- The ID of the security group.
- securityGroup StringName 
- The name of the security group.
GetVmPrimaryNic   
- AccountId string
- The account ID of the owner of the NIC.
- DeleteOn boolVm Deletion 
- 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 1and7, both included).
- IsSource boolDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- LinkNics List<GetVm Primary Nic Link Nic> 
- Information about the network interface card (NIC).
- LinkPublic List<GetIps Vm Primary Nic Link Public Ip> 
- 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.
- PrivateDns stringName 
- The name of the private DNS.
- PrivateIps List<GetVm Primary Nic Private Ip> 
- The private IP or IPs of the NIC.
- SecondaryPrivate doubleIp Count 
- SecurityGroup List<string>Ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- SecurityGroups List<GetVm Primary Nic Security Group> 
- 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.
- DeleteOn boolVm Deletion 
- 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 1and7, both included).
- IsSource boolDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- LinkNics []GetVm Primary Nic Link Nic 
- Information about the network interface card (NIC).
- LinkPublic []GetIps Vm Primary Nic Link Public Ip 
- 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.
- PrivateDns stringName 
- The name of the private DNS.
- PrivateIps []GetVm Primary Nic Private Ip 
- The private IP or IPs of the NIC.
- SecondaryPrivate float64Ip Count 
- SecurityGroup []stringIds 
- The IDs of the security groups for the VMs (only in the public Cloud).
- SecurityGroups []GetVm Primary Nic Security Group 
- 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.
- deleteOn BooleanVm Deletion 
- 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 1and7, both included).
- isSource BooleanDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- linkNics List<GetVm Primary Nic Link Nic> 
- Information about the network interface card (NIC).
- linkPublic List<GetIps Vm Primary Nic Link Public Ip> 
- 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.
- privateDns StringName 
- The name of the private DNS.
- privateIps List<GetVm Primary Nic Private Ip> 
- The private IP or IPs of the NIC.
- secondaryPrivate DoubleIp Count 
- securityGroup List<String>Ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- securityGroups List<GetVm Primary Nic Security Group> 
- 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.
- deleteOn booleanVm Deletion 
- 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 1and7, both included).
- isSource booleanDest Checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- linkNics GetVm Primary Nic Link Nic[] 
- Information about the network interface card (NIC).
- linkPublic GetIps Vm Primary Nic Link Public Ip[] 
- 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.
- privateDns stringName 
- The name of the private DNS.
- privateIps GetVm Primary Nic Private Ip[] 
- The private IP or IPs of the NIC.
- secondaryPrivate numberIp Count 
- securityGroup string[]Ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- securityGroups GetVm Primary Nic Security Group[] 
- 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_ boolvm_ deletion 
- 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 1and7, both included).
- is_source_ booldest_ checked 
- (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_nics Sequence[GetVm Primary Nic Link Nic] 
- Information about the network interface card (NIC).
- link_public_ Sequence[Getips Vm Primary Nic Link Public Ip] 
- 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_ strname 
- The name of the private DNS.
- private_ips Sequence[GetVm Primary Nic Private Ip] 
- The private IP or IPs of the NIC.
- secondary_private_ floatip_ count 
- security_group_ Sequence[str]ids 
- The IDs of the security groups for the VMs (only in the public Cloud).
- security_groups Sequence[GetVm Primary Nic Security Group] 
- 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.
- deleteOn BooleanVm Deletion 
- 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 1and7, both included).
- isSource BooleanDest Checked 
- (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).
- linkPublic List<Property Map>Ips 
- 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.
- privateDns StringName 
- The name of the private DNS.
- privateIps List<Property Map>
- The private IP or IPs of the NIC.
- secondaryPrivate NumberIp Count 
- securityGroup List<String>Ids 
- 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     
- DeleteOn boolVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- DeviceNumber string
- The device index for the NIC attachment (between 1and7, both included).
- LinkNic stringId 
- The ID of the NIC to attach.
- State string
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- DeleteOn boolVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- DeviceNumber string
- The device index for the NIC attachment (between 1and7, both included).
- LinkNic stringId 
- The ID of the NIC to attach.
- State string
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- deleteOn BooleanVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- deviceNumber String
- The device index for the NIC attachment (between 1and7, both included).
- linkNic StringId 
- The ID of the NIC to attach.
- state String
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- deleteOn booleanVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- deviceNumber string
- The device index for the NIC attachment (between 1and7, both included).
- linkNic stringId 
- The ID of the NIC to attach.
- state string
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- delete_on_ boolvm_ deletion 
- If true, the NIC is deleted when the VM is terminated.
- device_number str
- The device index for the NIC attachment (between 1and7, both included).
- link_nic_ strid 
- The ID of the NIC to attach.
- state str
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
- deleteOn BooleanVm Deletion 
- If true, the NIC is deleted when the VM is terminated.
- deviceNumber String
- The device index for the NIC attachment (between 1and7, both included).
- linkNic StringId 
- The ID of the NIC to attach.
- state String
- The state of the VM (pending|running|stopping|stopped|shutting-down|terminated|quarantine).
GetVmPrimaryNicLinkPublicIp      
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- The account ID of the owner of the public IP.
- publicDns stringName 
- The name of the public DNS.
- publicIp string
- The public IP of the VM.
- publicIp stringAccount Id 
- The account ID of the owner of the public IP.
- public_dns_ strname 
- The name of the public DNS.
- public_ip str
- The public IP of the VM.
- public_ip_ straccount_ id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- 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.
- LinkPublic List<GetIps Vm Primary Nic Private Ip Link Public Ip> 
- Information about the public IP associated with the NIC.
- PrivateDns stringName 
- 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.
- LinkPublic []GetIps Vm Primary Nic Private Ip Link Public Ip 
- Information about the public IP associated with the NIC.
- PrivateDns stringName 
- 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.
- linkPublic List<GetIps Vm Primary Nic Private Ip Link Public Ip> 
- Information about the public IP associated with the NIC.
- privateDns StringName 
- 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.
- linkPublic GetIps Vm Primary Nic Private Ip Link Public Ip[] 
- Information about the public IP associated with the NIC.
- privateDns stringName 
- 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_ Sequence[Getips Vm Primary Nic Private Ip Link Public Ip] 
- Information about the public IP associated with the NIC.
- private_dns_ strname 
- 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.
- linkPublic List<Property Map>Ips 
- Information about the public IP associated with the NIC.
- privateDns StringName 
- The name of the private DNS.
- privateIp String
- The primary private IP of the VM.
GetVmPrimaryNicPrivateIpLinkPublicIp        
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- PublicDns stringName 
- The name of the public DNS.
- PublicIp string
- The public IP of the VM.
- PublicIp stringAccount Id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- The account ID of the owner of the public IP.
- publicDns stringName 
- The name of the public DNS.
- publicIp string
- The public IP of the VM.
- publicIp stringAccount Id 
- The account ID of the owner of the public IP.
- public_dns_ strname 
- The name of the public DNS.
- public_ip str
- The public IP of the VM.
- public_ip_ straccount_ id 
- The account ID of the owner of the public IP.
- publicDns StringName 
- The name of the public DNS.
- publicIp String
- The public IP of the VM.
- publicIp StringAccount Id 
- The account ID of the owner of the public IP.
GetVmPrimaryNicSecurityGroup     
- SecurityGroup stringId 
- The ID of the security group.
- SecurityGroup stringName 
- The name of the security group.
- SecurityGroup stringId 
- The ID of the security group.
- SecurityGroup stringName 
- The name of the security group.
- securityGroup StringId 
- The ID of the security group.
- securityGroup StringName 
- The name of the security group.
- securityGroup stringId 
- The ID of the security group.
- securityGroup stringName 
- The name of the security group.
- security_group_ strid 
- The ID of the security group.
- security_group_ strname 
- The name of the security group.
- securityGroup StringId 
- The ID of the security group.
- securityGroup StringName 
- The name of the security group.
GetVmSecurityGroup   
- SecurityGroup stringId 
- The ID of the security group.
- SecurityGroup stringName 
- The name of the security group.
- SecurityGroup stringId 
- The ID of the security group.
- SecurityGroup stringName 
- The name of the security group.
- securityGroup StringId 
- The ID of the security group.
- securityGroup StringName 
- The name of the security group.
- securityGroup stringId 
- The ID of the security group.
- securityGroup stringName 
- The name of the security group.
- security_group_ strid 
- The ID of the security group.
- security_group_ strname 
- The name of the security group.
- securityGroup StringId 
- The ID of the security group.
- securityGroup StringName 
- The name of the security group.
GetVmTag  
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the outscaleTerraform Provider.