outscale 1.0.1 published on Thursday, Mar 13, 2025 by outscale
outscale.getVmStates
Explore with Pulumi AI
Provides information about VM states.
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 vmStates01 = outscale.getVmStates({
filters: [
{
name: "vm_ids",
values: [
"i-12345678",
"i-87654321",
],
},
{
name: "vm_states",
values: ["running"],
},
],
});
import pulumi
import pulumi_outscale as outscale
vm_states01 = outscale.get_vm_states(filters=[
{
"name": "vm_ids",
"values": [
"i-12345678",
"i-87654321",
],
},
{
"name": "vm_states",
"values": ["running"],
},
])
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.GetVmStates(ctx, &outscale.GetVmStatesArgs{
Filters: []outscale.GetVmStatesFilter{
{
Name: "vm_ids",
Values: []string{
"i-12345678",
"i-87654321",
},
},
{
Name: "vm_states",
Values: []string{
"running",
},
},
},
}, 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 vmStates01 = Outscale.GetVmStates.Invoke(new()
{
Filters = new[]
{
new Outscale.Inputs.GetVmStatesFilterInputArgs
{
Name = "vm_ids",
Values = new[]
{
"i-12345678",
"i-87654321",
},
},
new Outscale.Inputs.GetVmStatesFilterInputArgs
{
Name = "vm_states",
Values = new[]
{
"running",
},
},
},
});
});
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.GetVmStatesArgs;
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 vmStates01 = OutscaleFunctions.getVmStates(GetVmStatesArgs.builder()
.filters(
GetVmStatesFilterArgs.builder()
.name("vm_ids")
.values(
"i-12345678",
"i-87654321")
.build(),
GetVmStatesFilterArgs.builder()
.name("vm_states")
.values("running")
.build())
.build());
}
}
variables:
vmStates01:
fn::invoke:
function: outscale:getVmStates
arguments:
filters:
- name: vm_ids
values:
- i-12345678
- i-87654321
- name: vm_states
values:
- running
Using getVmStates
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 getVmStates(args: GetVmStatesArgs, opts?: InvokeOptions): Promise<GetVmStatesResult>
function getVmStatesOutput(args: GetVmStatesOutputArgs, opts?: InvokeOptions): Output<GetVmStatesResult>
def get_vm_states(all_vms: Optional[bool] = None,
filters: Optional[Sequence[GetVmStatesFilter]] = None,
id: Optional[str] = None,
vm_ids: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetVmStatesResult
def get_vm_states_output(all_vms: Optional[pulumi.Input[bool]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetVmStatesFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
vm_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVmStatesResult]
func GetVmStates(ctx *Context, args *GetVmStatesArgs, opts ...InvokeOption) (*GetVmStatesResult, error)
func GetVmStatesOutput(ctx *Context, args *GetVmStatesOutputArgs, opts ...InvokeOption) GetVmStatesResultOutput
> Note: This function is named GetVmStates
in the Go SDK.
public static class GetVmStates
{
public static Task<GetVmStatesResult> InvokeAsync(GetVmStatesArgs args, InvokeOptions? opts = null)
public static Output<GetVmStatesResult> Invoke(GetVmStatesInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVmStatesResult> getVmStates(GetVmStatesArgs args, InvokeOptions options)
public static Output<GetVmStatesResult> getVmStates(GetVmStatesArgs args, InvokeOptions options)
fn::invoke:
function: outscale:index/getVmStates:getVmStates
arguments:
# arguments dictionary
The following arguments are supported:
- All
Vms bool - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- Filters
List<Get
Vm States 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
- Vm
Ids List<string>
- All
Vms bool - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- Filters
[]Get
Vm States 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
- Vm
Ids []string
- all
Vms Boolean - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- filters
List<Get
Vm States 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
- vm
Ids List<String>
- all
Vms boolean - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- filters
Get
Vm States 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
- vm
Ids string[]
- all_
vms bool - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- filters
Sequence[Get
Vm States 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
- vm_
ids Sequence[str]
- all
Vms Boolean - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- 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
- vm
Ids List<String>
getVmStates Result
The following output properties are available:
- Id string
- Request
Id string - Vm
States List<GetVm States Vm State> - Information about one or more VM states.
- All
Vms bool - Filters
List<Get
Vm States Filter> - Vm
Ids List<string>
- Id string
- Request
Id string - Vm
States []GetVm States Vm State - Information about one or more VM states.
- All
Vms bool - Filters
[]Get
Vm States Filter - Vm
Ids []string
- id String
- request
Id String - vm
States List<GetVm States Vm State> - Information about one or more VM states.
- all
Vms Boolean - filters
List<Get
Vm States Filter> - vm
Ids List<String>
- id string
- request
Id string - vm
States GetVm States Vm State[] - Information about one or more VM states.
- all
Vms boolean - filters
Get
Vm States Filter[] - vm
Ids string[]
- id str
- request_
id str - vm_
states Sequence[GetVm States Vm State] - Information about one or more VM states.
- all_
vms bool - filters
Sequence[Get
Vm States Filter] - vm_
ids Sequence[str]
- id String
- request
Id String - vm
States List<Property Map> - Information about one or more VM states.
- all
Vms Boolean - filters List<Property Map>
- vm
Ids List<String>
Supporting Types
GetVmStatesFilter
GetVmStatesVmState
- All
Vms bool - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- Maintenance
Events List<GetVm States Vm State Maintenance Event> - One or more scheduled events associated with the VM.
- Subregion
Name string - The name of the Subregion of the VM.
- Vm
Id string - The ID of the VM.
- Vm
State string - The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
- All
Vms bool - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- Maintenance
Events []GetVm States Vm State Maintenance Event - One or more scheduled events associated with the VM.
- Subregion
Name string - The name of the Subregion of the VM.
- Vm
Id string - The ID of the VM.
- Vm
State string - The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
- all
Vms Boolean - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- maintenance
Events List<GetVm States Vm State Maintenance Event> - One or more scheduled events associated with the VM.
- subregion
Name String - The name of the Subregion of the VM.
- vm
Id String - The ID of the VM.
- vm
State String - The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
- all
Vms boolean - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- maintenance
Events GetVm States Vm State Maintenance Event[] - One or more scheduled events associated with the VM.
- subregion
Name string - The name of the Subregion of the VM.
- vm
Id string - The ID of the VM.
- vm
State string - The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
- all_
vms bool - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- maintenance_
events Sequence[GetVm States Vm State Maintenance Event] - One or more scheduled events associated with the VM.
- subregion_
name str - The name of the Subregion of the VM.
- vm_
id str - The ID of the VM.
- vm_
state str - The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
- all
Vms Boolean - If true, includes the status of all VMs. By default or if set to false, only includes the status of running VMs.
- maintenance
Events List<Property Map> - One or more scheduled events associated with the VM.
- subregion
Name String - The name of the Subregion of the VM.
- vm
Id String - The ID of the VM.
- vm
State String - The state of the VM (
pending
|running
|stopping
|stopped
|shutting-down
|terminated
|quarantine
).
GetVmStatesVmStateMaintenanceEvent
- Code string
- The code of the event (
system-reboot
|system-maintenance
). - Description string
- The description of the event.
- Not
After string - The latest scheduled end date and time (UTC) for the event.
- Not
Before string - The earliest scheduled start date and time (UTC) for the event.
- Code string
- The code of the event (
system-reboot
|system-maintenance
). - Description string
- The description of the event.
- Not
After string - The latest scheduled end date and time (UTC) for the event.
- Not
Before string - The earliest scheduled start date and time (UTC) for the event.
- code String
- The code of the event (
system-reboot
|system-maintenance
). - description String
- The description of the event.
- not
After String - The latest scheduled end date and time (UTC) for the event.
- not
Before String - The earliest scheduled start date and time (UTC) for the event.
- code string
- The code of the event (
system-reboot
|system-maintenance
). - description string
- The description of the event.
- not
After string - The latest scheduled end date and time (UTC) for the event.
- not
Before string - The earliest scheduled start date and time (UTC) for the event.
- code str
- The code of the event (
system-reboot
|system-maintenance
). - description str
- The description of the event.
- not_
after str - The latest scheduled end date and time (UTC) for the event.
- not_
before str - The earliest scheduled start date and time (UTC) for the event.
- code String
- The code of the event (
system-reboot
|system-maintenance
). - description String
- The description of the event.
- not
After String - The latest scheduled end date and time (UTC) for the event.
- not
Before String - The earliest scheduled start date and time (UTC) for the event.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.