outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getVms
Explore with Pulumi AI
Provides information about virtual machines (VMs).
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 vms01 = outscale.getVms({
filters: [
{
name: "tag_keys",
values: ["env"],
},
{
name: "tag_values",
values: [
"prod",
"test",
],
},
],
});
import pulumi
import pulumi_outscale as outscale
vms01 = outscale.get_vms(filters=[
{
"name": "tag_keys",
"values": ["env"],
},
{
"name": "tag_values",
"values": [
"prod",
"test",
],
},
])
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.GetVms(ctx, &outscale.GetVmsArgs{
Filters: []outscale.GetVmsFilter{
{
Name: "tag_keys",
Values: []string{
"env",
},
},
{
Name: "tag_values",
Values: []string{
"prod",
"test",
},
},
},
}, 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 vms01 = Outscale.GetVms.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetVmsFilterInputArgs
{
Name = "tag_keys",
Values = new[]
{
"env",
},
},
new Outscale.Inputs.GetVmsFilterInputArgs
{
Name = "tag_values",
Values = new[]
{
"prod",
"test",
},
},
},
});
});
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.GetVmsArgs;
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 vms01 = OutscaleFunctions.getVms(GetVmsArgs.builder()
.filters(
GetVmsFilterArgs.builder()
.name("tag_keys")
.values("env")
.build(),
GetVmsFilterArgs.builder()
.name("tag_values")
.values(
"prod",
"test")
.build())
.build());
}
}
variables:
vms01:
fn::invoke:
function: outscale:getVms
arguments:
filters:
- name: tag_keys
values:
- env
- name: tag_values
values:
- prod
- test
Using getVms
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 getVms(args: GetVmsArgs, opts?: InvokeOptions): Promise<GetVmsResult>
function getVmsOutput(args: GetVmsOutputArgs, opts?: InvokeOptions): Output<GetVmsResult>
def get_vms(filters: Optional[Sequence[GetVmsFilter]] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetVmsResult
def get_vms_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetVmsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVmsResult]
func GetVms(ctx *Context, args *GetVmsArgs, opts ...InvokeOption) (*GetVmsResult, error)
func GetVmsOutput(ctx *Context, args *GetVmsOutputArgs, opts ...InvokeOption) GetVmsResultOutput
> Note: This function is named GetVms
in the Go SDK.
public static class GetVms
{
public static Task<GetVmsResult> InvokeAsync(GetVmsArgs args, InvokeOptions? opts = null)
public static Output<GetVmsResult> Invoke(GetVmsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVmsResult> getVms(GetVmsArgs args, InvokeOptions options)
public static Output<GetVmsResult> getVms(GetVmsArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getVms:getVms
arguments:
# arguments dictionary
The following arguments are supported:
- Filters
List<Get
Vms 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
[]Get
Vms 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<Get
Vms 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
Get
Vms 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[Get
Vms 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
getVms Result
The following output properties are available:
- Id string
- Request
Id string - Vms
List<Get
Vms Vm> - Information about one or more VMs.
- Filters
List<Get
Vms Filter>
- Id string
- Request
Id string - Vms
[]Get
Vms Vm - Information about one or more VMs.
- Filters
[]Get
Vms Filter
- id String
- request
Id String - vms
List<Get
Vms Vm> - Information about one or more VMs.
- filters
List<Get
Vms Filter>
- id string
- request
Id string - vms
Get
Vms Vm[] - Information about one or more VMs.
- filters
Get
Vms Filter[]
- id str
- request_
id str - vms
Sequence[Get
Vms Vm] - Information about one or more VMs.
- filters
Sequence[Get
Vms Filter]
- id String
- request
Id String - vms List<Property Map>
- Information about one or more VMs.
- filters List<Property Map>
Supporting Types
GetVmsFilter
GetVmsVm
- Architecture string
- The architecture of the VM (
i386
|x86_64
). - Block
Device List<GetMappings Createds Vms Vm Block Device Mappings Created> - The block device mapping of the VM.
- Bsu
Optimized bool - Client
Token string - The idempotency token provided when launching the VM.
- Creation
Date string - 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 string
- The hypervisor type of the VMs (
ovm
|xen
). - Image
Id string - 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 string - The name of the keypair used when launching the VM.
- Launch
Number double - 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 string - The ID of the Net for the NIC.
- Nics
List<Get
Vms Vm Nic> - (Net only) The network interface cards (NICs) the VMs are attached to.
- Os
Family string - Indicates the operating system (OS) of the VM.
- Performance string
- The performance of the VM (
medium
|high
|highest
). - Placement
Subregion stringName - Placement
Tenancy string - Primary
Nics List<GetVms Vm Primary Nic> - Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- Private
Ips List<string> - The private IP or IPs of the NIC.
- Product
Codes List<string> - The product codes associated with the OMI used to create the VM.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Request
Id string - Reservation
Id string - The reservation ID of the VM.
- Root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - Root
Device stringType - The type of root device used by the VM (always
bsu
). - Security
Group List<string>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- Security
Group List<string>Names - The names of the security groups for the VMs (only in the public Cloud).
- Security
Groups List<GetVms Vm 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
). - State
Reason string - The reason explaining the current state of the VM.
- Subnet
Id string - The ID of the Subnet for the VM.
- List<Get
Vms Vm Tag> - One or more tags associated with the VM.
- User
Data string - The Base64-encoded MIME user data.
- Vm
Id string - The ID of the VM.
- Vm
Initiated 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. - Vm
Type string - The type of VM. For more information, see VM Types.
- Architecture string
- The architecture of the VM (
i386
|x86_64
). - Block
Device []GetMappings Createds Vms Vm Block Device Mappings Created - The block device mapping of the VM.
- Bsu
Optimized bool - Client
Token string - The idempotency token provided when launching the VM.
- Creation
Date string - 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 string
- The hypervisor type of the VMs (
ovm
|xen
). - Image
Id string - 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 string - The name of the keypair used when launching the VM.
- Launch
Number float64 - 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 string - The ID of the Net for the NIC.
- Nics
[]Get
Vms Vm Nic - (Net only) The network interface cards (NICs) the VMs are attached to.
- Os
Family string - Indicates the operating system (OS) of the VM.
- Performance string
- The performance of the VM (
medium
|high
|highest
). - Placement
Subregion stringName - Placement
Tenancy string - Primary
Nics []GetVms Vm Primary Nic - Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- Private
Ips []string - The private IP or IPs of the NIC.
- Product
Codes []string - The product codes associated with the OMI used to create the VM.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Request
Id string - Reservation
Id string - The reservation ID of the VM.
- Root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - Root
Device stringType - The type of root device used by the VM (always
bsu
). - Security
Group []stringIds - The IDs of the security groups for the VMs (only in the public Cloud).
- Security
Group []stringNames - The names of the security groups for the VMs (only in the public Cloud).
- Security
Groups []GetVms Vm 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
). - State
Reason string - The reason explaining the current state of the VM.
- Subnet
Id string - The ID of the Subnet for the VM.
- []Get
Vms Vm Tag - One or more tags associated with the VM.
- User
Data string - The Base64-encoded MIME user data.
- Vm
Id string - The ID of the VM.
- Vm
Initiated 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. - Vm
Type string - The type of VM. For more information, see VM Types.
- architecture String
- The architecture of the VM (
i386
|x86_64
). - block
Device List<GetMappings Createds Vms Vm Block Device Mappings Created> - The block device mapping of the VM.
- bsu
Optimized Boolean - client
Token String - The idempotency token provided when launching the VM.
- creation
Date String - The date and time (UTC) at which the VM was created.
- deletion
Protection 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
). - image
Id String - The ID of the OMI used to create the VM.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name String - The name of the keypair used when launching the VM.
- launch
Number Double - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested
Virtualization Boolean - If true, nested virtualization is enabled. If false, it is disabled.
- net
Id String - The ID of the Net for the NIC.
- nics
List<Get
Vms Vm Nic> - (Net only) The network interface cards (NICs) the VMs are attached to.
- os
Family String - Indicates the operating system (OS) of the VM.
- performance String
- The performance of the VM (
medium
|high
|highest
). - placement
Subregion StringName - placement
Tenancy String - primary
Nics List<GetVms Vm Primary Nic> - private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- private
Ips List<String> - The private IP or IPs of the NIC.
- product
Codes List<String> - The product codes associated with the OMI used to create the VM.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- request
Id String - reservation
Id String - The reservation ID of the VM.
- root
Device StringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device StringType - The type of root device used by the VM (always
bsu
). - security
Group List<String>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Group List<String>Names - The names of the security groups for the VMs (only in the public Cloud).
- security
Groups List<GetVms Vm 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
). - state
Reason String - The reason explaining the current state of the VM.
- subnet
Id String - The ID of the Subnet for the VM.
- List<Get
Vms Vm Tag> - One or more tags associated with the VM.
- user
Data String - The Base64-encoded MIME user data.
- vm
Id String - The ID of the VM.
- vm
Initiated 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. - vm
Type String - The type of VM. For more information, see VM Types.
- architecture string
- The architecture of the VM (
i386
|x86_64
). - block
Device GetMappings Createds Vms Vm Block Device Mappings Created[] - The block device mapping of the VM.
- bsu
Optimized boolean - client
Token string - The idempotency token provided when launching the VM.
- creation
Date string - The date and time (UTC) at which the VM was created.
- deletion
Protection 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
). - image
Id string - The ID of the OMI used to create the VM.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name string - The name of the keypair used when launching the VM.
- launch
Number number - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested
Virtualization boolean - If true, nested virtualization is enabled. If false, it is disabled.
- net
Id string - The ID of the Net for the NIC.
- nics
Get
Vms Vm Nic[] - (Net only) The network interface cards (NICs) the VMs are attached to.
- os
Family string - Indicates the operating system (OS) of the VM.
- performance string
- The performance of the VM (
medium
|high
|highest
). - placement
Subregion stringName - placement
Tenancy string - primary
Nics GetVms Vm Primary Nic[] - private
Dns stringName - The name of the private DNS.
- private
Ip string - The primary private IP of the VM.
- private
Ips string[] - The private IP or IPs of the NIC.
- product
Codes string[] - The product codes associated with the OMI used to create the VM.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- request
Id string - reservation
Id string - The reservation ID of the VM.
- root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device stringType - The type of root device used by the VM (always
bsu
). - security
Group string[]Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Group string[]Names - The names of the security groups for the VMs (only in the public Cloud).
- security
Groups GetVms Vm 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
). - state
Reason string - The reason explaining the current state of the VM.
- subnet
Id string - The ID of the Subnet for the VM.
- Get
Vms Vm Tag[] - One or more tags associated with the VM.
- user
Data string - The Base64-encoded MIME user data.
- vm
Id string - The ID of the VM.
- vm
Initiated 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. - vm
Type string - The type of VM. For more information, see VM Types.
- architecture str
- The architecture of the VM (
i386
|x86_64
). - block_
device_ Sequence[Getmappings_ createds Vms 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
). - 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[Get
Vms Vm 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[GetVms Vm 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 - The IDs of the security groups for the VMs (only in the public Cloud).
- security_
group_ Sequence[str]names - The names of the security groups for the VMs (only in the public Cloud).
- security_
groups Sequence[GetVms Vm 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[Get
Vms Vm 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.
- architecture String
- The architecture of the VM (
i386
|x86_64
). - block
Device List<Property Map>Mappings Createds - The block device mapping of the VM.
- bsu
Optimized Boolean - client
Token String - The idempotency token provided when launching the VM.
- creation
Date String - The date and time (UTC) at which the VM was created.
- deletion
Protection 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
). - image
Id String - The ID of the OMI used to create the VM.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name String - The name of the keypair used when launching the VM.
- launch
Number Number - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested
Virtualization Boolean - If true, nested virtualization is enabled. If false, it is disabled.
- net
Id 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.
- os
Family String - Indicates the operating system (OS) of the VM.
- performance String
- The performance of the VM (
medium
|high
|highest
). - placement
Subregion StringName - placement
Tenancy String - primary
Nics List<Property Map> - private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- private
Ips List<String> - The private IP or IPs of the NIC.
- product
Codes List<String> - The product codes associated with the OMI used to create the VM.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- request
Id String - reservation
Id String - The reservation ID of the VM.
- root
Device StringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device StringType - The type of root device used by the VM (always
bsu
). - security
Group List<String>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Group List<String>Names - The names of the security groups for the VMs (only in the public Cloud).
- security
Groups 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
). - state
Reason String - The reason explaining the current state of the VM.
- subnet
Id String - The ID of the Subnet for the VM.
- List<Property Map>
- One or more tags associated with the VM.
- user
Data String - The Base64-encoded MIME user data.
- vm
Id String - The ID of the VM.
- vm
Initiated 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. - vm
Type String - The type of VM. For more information, see VM Types.
GetVmsVmBlockDeviceMappingsCreated
- Bsus
List<Get
Vms Vm Block Device Mappings Created Bsus> - Information about the created BSU volume.
- Device
Name string - The name of the device.
- Bsus
[]Get
Vms Vm Block Device Mappings Created Bsus - Information about the created BSU volume.
- Device
Name string - The name of the device.
- bsus
List<Get
Vms Vm Block Device Mappings Created Bsus> - Information about the created BSU volume.
- device
Name String - The name of the device.
- bsus
Get
Vms Vm Block Device Mappings Created Bsus[] - Information about the created BSU volume.
- device
Name string - The name of the device.
- bsus
Sequence[Get
Vms Vm 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.
- device
Name String - The name of the device.
GetVmsVmBlockDeviceMappingsCreatedBsus
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Link
Date 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<Get
Vms Vm Block Device Mappings Created Bsus Tag> - One or more tags associated with the VM.
- Volume
Id string - The ID of the volume.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Link
Date 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
). - []Get
Vms Vm Block Device Mappings Created Bsus Tag - One or more tags associated with the VM.
- Volume
Id string - The ID of the volume.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- link
Date 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<Get
Vms Vm Block Device Mappings Created Bsus Tag> - One or more tags associated with the VM.
- volume
Id String - The ID of the volume.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- link
Date 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
). - Get
Vms Vm Block Device Mappings Created Bsus Tag[] - One or more tags associated with the VM.
- volume
Id 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[Get
Vms Vm Block Device Mappings Created Bsus Tag] - One or more tags associated with the VM.
- volume_
id str - The ID of the volume.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- link
Date 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.
- volume
Id String - The ID of the volume.
GetVmsVmBlockDeviceMappingsCreatedBsusTag
GetVmsVmNic
- Account
Id string - 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 string
- The description of the NIC.
- Device
Number double - The device index for the NIC attachment (between
1
and7
, both included). - Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<GetVms Vm Nic Link Nic> - Information about the network interface card (NIC).
- Link
Public List<GetIps Vms Vm Nic Link Public Ip> - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips List<GetVms Vm Nic Private Ip> - The private IP or IPs of the NIC.
- Secondary
Private doubleIp Count - Security
Group List<string>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- Security
Groups List<GetVms Vm Nic Security Group> - One or more security groups associated with the VM.
- Security
Groups List<string>Names - State string
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
). - Subnet
Id string - The ID of the Subnet for the VM.
- Account
Id string - 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 string
- The description of the NIC.
- Device
Number float64 - The device index for the NIC attachment (between
1
and7
, both included). - Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []GetVms Vm Nic Link Nic - Information about the network interface card (NIC).
- Link
Public []GetIps Vms Vm Nic Link Public Ip - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips []GetVms Vm Nic Private Ip - The private IP or IPs of the NIC.
- Secondary
Private float64Ip Count - Security
Group []stringIds - The IDs of the security groups for the VMs (only in the public Cloud).
- Security
Groups []GetVms Vm Nic Security Group - One or more security groups associated with the VM.
- Security
Groups []stringNames - State string
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
). - Subnet
Id string - The ID of the Subnet for the VM.
- account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- description String
- The description of the NIC.
- device
Number Double - The device index for the NIC attachment (between
1
and7
, both included). - is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<GetVms Vm Nic Link Nic> - Information about the network interface card (NIC).
- link
Public List<GetIps Vms Vm Nic Link Public Ip> - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<GetVms Vm Nic Private Ip> - The private IP or IPs of the NIC.
- secondary
Private DoubleIp Count - security
Group List<String>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Groups List<GetVms Vm Nic Security Group> - One or more security groups associated with the VM.
- security
Groups List<String>Names - state String
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
). - subnet
Id String - The ID of the Subnet for the VM.
- account
Id string - The account ID of the owner of the NIC.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- description string
- The description of the NIC.
- device
Number number - The device index for the NIC attachment (between
1
and7
, both included). - is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics GetVms Vm Nic Link Nic[] - Information about the network interface card (NIC).
- link
Public GetIps Vms Vm Nic Link Public Ip[] - Information about the public IP associated with the NIC.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ips GetVms Vm Nic Private Ip[] - The private IP or IPs of the NIC.
- secondary
Private numberIp Count - security
Group string[]Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Groups GetVms Vm Nic Security Group[] - One or more security groups associated with the VM.
- security
Groups string[]Names - state string
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
). - subnet
Id 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
1
and7
, both included). - is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[GetVms Vm Nic Link Nic] - Information about the network interface card (NIC).
- link_
public_ Sequence[Getips Vms 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[GetVms Vm 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[GetVms Vm 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.
- account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- description String
- The description of the NIC.
- device
Number Number - The device index for the NIC attachment (between
1
and7
, both included). - is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the network interface card (NIC).
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<Property Map> - The private IP or IPs of the NIC.
- secondary
Private NumberIp Count - security
Group List<String>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Groups List<Property Map> - One or more security groups associated with the VM.
- security
Groups List<String>Names - state String
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
). - subnet
Id String - The ID of the Subnet for the VM.
GetVmsVmNicLinkNic
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic 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 string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic 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 BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic 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 booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic 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
1
and7
, 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
).
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
GetVmsVmNicLinkPublicIp
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip 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.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
GetVmsVmNicPrivateIp
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public List<GetIps Vms Vm Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip 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 []GetIps Vms Vm Nic Private Ip Link Public Ip - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<GetIps Vms Vm Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- is
Primary boolean - If true, the IP is the primary private IP of the NIC.
- link
Public GetIps Vms Vm Nic Private Ip Link Public Ip[] - Information about the public IP associated with the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ip 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 Vms 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.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
GetVmsVmNicPrivateIpLinkPublicIp
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip 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.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
GetVmsVmNicSecurityGroup
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group 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.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
GetVmsVmPrimaryNic
- Account
Id string - 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 string
- The description of the NIC.
- Device
Number double - The device index for the NIC attachment (between
1
and7
, both included). - Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<GetVms Vm Primary Nic Link Nic> - Information about the network interface card (NIC).
- Link
Public List<GetIps Vms Vm Primary Nic Link Public Ip> - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips List<GetVms Vm Primary Nic Private Ip> - The private IP or IPs of the NIC.
- Secondary
Private doubleIp Count - Security
Group List<string>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- Security
Groups List<GetVms Vm 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
). - Subnet
Id string - The ID of the Subnet for the VM.
- Account
Id string - 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 string
- The description of the NIC.
- Device
Number float64 - The device index for the NIC attachment (between
1
and7
, both included). - Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []GetVms Vm Primary Nic Link Nic - Information about the network interface card (NIC).
- Link
Public []GetIps Vms Vm Primary Nic Link Public Ip - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips []GetVms Vm Primary Nic Private Ip - The private IP or IPs of the NIC.
- Secondary
Private float64Ip Count - Security
Group []stringIds - The IDs of the security groups for the VMs (only in the public Cloud).
- Security
Groups []GetVms Vm 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
). - Subnet
Id string - The ID of the Subnet for the VM.
- account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- description String
- The description of the NIC.
- device
Number Double - The device index for the NIC attachment (between
1
and7
, both included). - is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<GetVms Vm Primary Nic Link Nic> - Information about the network interface card (NIC).
- link
Public List<GetIps Vms Vm Primary Nic Link Public Ip> - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<GetVms Vm Primary Nic Private Ip> - The private IP or IPs of the NIC.
- secondary
Private DoubleIp Count - security
Group List<String>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Groups List<GetVms Vm 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
). - subnet
Id String - The ID of the Subnet for the VM.
- account
Id string - The account ID of the owner of the NIC.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- description string
- The description of the NIC.
- device
Number number - The device index for the NIC attachment (between
1
and7
, both included). - is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics GetVms Vm Primary Nic Link Nic[] - Information about the network interface card (NIC).
- link
Public GetIps Vms Vm Primary Nic Link Public Ip[] - Information about the public IP associated with the NIC.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ips GetVms Vm Primary Nic Private Ip[] - The private IP or IPs of the NIC.
- secondary
Private numberIp Count - security
Group string[]Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Groups GetVms Vm 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
). - subnet
Id 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
1
and7
, both included). - is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[GetVms Vm Primary Nic Link Nic] - Information about the network interface card (NIC).
- link_
public_ Sequence[Getips Vms 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[GetVms Vm 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[GetVms Vm 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.
- account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- description String
- The description of the NIC.
- device
Number Number - The device index for the NIC attachment (between
1
and7
, both included). - is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the network interface card (NIC).
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<Property Map> - The private IP or IPs of the NIC.
- secondary
Private NumberIp Count - security
Group List<String>Ids - The IDs of the security groups for the VMs (only in the public Cloud).
- security
Groups 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
). - subnet
Id String - The ID of the Subnet for the VM.
GetVmsVmPrimaryNicLinkNic
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic 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 string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic 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 BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic 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 booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic 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
1
and7
, 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
).
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
GetVmsVmPrimaryNicLinkPublicIp
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip 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.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
GetVmsVmPrimaryNicPrivateIp
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public List<GetIps Vms Vm Primary Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip 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 []GetIps Vms Vm Primary Nic Private Ip Link Public Ip - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<GetIps Vms Vm Primary Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- is
Primary boolean - If true, the IP is the primary private IP of the NIC.
- link
Public GetIps Vms Vm Primary Nic Private Ip Link Public Ip[] - Information about the public IP associated with the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ip 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 Vms 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.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
GetVmsVmPrimaryNicPrivateIpLinkPublicIp
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip 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.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
GetVmsVmPrimaryNicSecurityGroup
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group 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.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
GetVmsVmSecurityGroup
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group 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.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
GetVmsVmTag
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.