UpCloud v0.1.0 published on Friday, Mar 14, 2025 by UpCloudLtd
upcloud.getHosts
Explore with Pulumi AI
Returns a list of available UpCloud hosts. A host identifies the host server that virtual machines are run on. Only hosts on private cloud to which the calling account has access to are available through this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as upcloud from "@pulumi/upcloud";
const allHosts = upcloud.getHosts({});
import pulumi
import pulumi_upcloud as upcloud
all_hosts = upcloud.get_hosts()
package main
import (
"github.com/UpCloudLtd/pulumi-upcloud/sdk/go/upcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := upcloud.GetHosts(ctx, &upcloud.GetHostsArgs{}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using UpCloud = Pulumi.UpCloud;
return await Deployment.RunAsync(() =>
{
var allHosts = UpCloud.GetHosts.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.upcloud.UpcloudFunctions;
import com.pulumi.upcloud.inputs.GetHostsArgs;
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 allHosts = UpcloudFunctions.getHosts();
}
}
variables:
allHosts:
fn::invoke:
function: upcloud:getHosts
arguments: {}
Using getHosts
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 getHosts(args: GetHostsArgs, opts?: InvokeOptions): Promise<GetHostsResult>
function getHostsOutput(args: GetHostsOutputArgs, opts?: InvokeOptions): Output<GetHostsResult>
def get_hosts(hosts: Optional[Sequence[GetHostsHost]] = None,
opts: Optional[InvokeOptions] = None) -> GetHostsResult
def get_hosts_output(hosts: Optional[pulumi.Input[Sequence[pulumi.Input[GetHostsHostArgs]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetHostsResult]
func GetHosts(ctx *Context, args *GetHostsArgs, opts ...InvokeOption) (*GetHostsResult, error)
func GetHostsOutput(ctx *Context, args *GetHostsOutputArgs, opts ...InvokeOption) GetHostsResultOutput
> Note: This function is named GetHosts
in the Go SDK.
public static class GetHosts
{
public static Task<GetHostsResult> InvokeAsync(GetHostsArgs args, InvokeOptions? opts = null)
public static Output<GetHostsResult> Invoke(GetHostsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetHostsResult> getHosts(GetHostsArgs args, InvokeOptions options)
public static Output<GetHostsResult> getHosts(GetHostsArgs args, InvokeOptions options)
fn::invoke:
function: upcloud:index/getHosts:getHosts
arguments:
# arguments dictionary
The following arguments are supported:
getHosts Result
The following output properties are available:
- Id string
- The ID of this resource.
- Hosts
List<Up
Cloud. Pulumi. Up Cloud. Outputs. Get Hosts Host>
- Id string
- The ID of this resource.
- Hosts
[]Get
Hosts Host
- id String
- The ID of this resource.
- hosts
List<Get
Hosts Host>
- id string
- The ID of this resource.
- hosts
Get
Hosts Host[]
- id str
- The ID of this resource.
- hosts
Sequence[Get
Hosts Host]
- id String
- The ID of this resource.
- hosts List<Property Map>
Supporting Types
GetHostsHost
- Description string
- Free form text describing the host
- Host
Id int - The unique id of the host
- Windows
Enabled bool - If true, this node can be used as a host for Windows servers.
- Zone string
- The zone the host is in, e.g.
de-fra1
. You can list available zones withupctl zone list
. - Statistics
List<Up
Cloud. Pulumi. Up Cloud. Inputs. Get Hosts Host Statistic>
- Description string
- Free form text describing the host
- Host
Id int - The unique id of the host
- Windows
Enabled bool - If true, this node can be used as a host for Windows servers.
- Zone string
- The zone the host is in, e.g.
de-fra1
. You can list available zones withupctl zone list
. - Statistics
[]Get
Hosts Host Statistic
- description String
- Free form text describing the host
- host
Id Integer - The unique id of the host
- windows
Enabled Boolean - If true, this node can be used as a host for Windows servers.
- zone String
- The zone the host is in, e.g.
de-fra1
. You can list available zones withupctl zone list
. - statistics
List<Get
Hosts Host Statistic>
- description string
- Free form text describing the host
- host
Id number - The unique id of the host
- windows
Enabled boolean - If true, this node can be used as a host for Windows servers.
- zone string
- The zone the host is in, e.g.
de-fra1
. You can list available zones withupctl zone list
. - statistics
Get
Hosts Host Statistic[]
- description str
- Free form text describing the host
- host_
id int - The unique id of the host
- windows_
enabled bool - If true, this node can be used as a host for Windows servers.
- zone str
- The zone the host is in, e.g.
de-fra1
. You can list available zones withupctl zone list
. - statistics
Sequence[Get
Hosts Host Statistic]
- description String
- Free form text describing the host
- host
Id Number - The unique id of the host
- windows
Enabled Boolean - If true, this node can be used as a host for Windows servers.
- zone String
- The zone the host is in, e.g.
de-fra1
. You can list available zones withupctl zone list
. - statistics List<Property Map>
GetHostsHostStatistic
Package Details
- Repository
- upcloud UpCloudLtd/pulumi-upcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
upcloud
Terraform Provider.