1. Packages
  2. Linode Provider
  3. API Docs
  4. getRegion
Viewing docs for Linode v3.12.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
linode logo
Viewing docs for Linode v3.12.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    linode.getRegion provides details about a specific Linode region. See all regions here.

    Example Usage

    The following example shows how the resource might be used to obtain additional information about a Linode region.

    using System.Collections.Generic;
    using Pulumi;
    using Linode = Pulumi.Linode;
    
    return await Deployment.RunAsync(() => 
    {
        var region = Linode.GetRegion.Invoke(new()
        {
            Id = "us-east",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-linode/sdk/v3/go/linode"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := linode.GetRegion(ctx, &linode.GetRegionArgs{
    			Id: "us-east",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.linode.LinodeFunctions;
    import com.pulumi.linode.inputs.GetRegionArgs;
    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 region = LinodeFunctions.getRegion(GetRegionArgs.builder()
                .id("us-east")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as linode from "@pulumi/linode";
    
    const region = linode.getRegion({
        id: "us-east",
    });
    
    import pulumi
    import pulumi_linode as linode
    
    region = linode.get_region(id="us-east")
    
    variables:
      region:
        fn::invoke:
          Function: linode:getRegion
          Arguments:
            id: us-east
    

    Using getRegion

    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 getRegion(args: GetRegionArgs, opts?: InvokeOptions): Promise<GetRegionResult>
    function getRegionOutput(args: GetRegionOutputArgs, opts?: InvokeOptions): Output<GetRegionResult>
    def get_region(country: Optional[str] = None,
                   id: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetRegionResult
    def get_region_output(country: Optional[pulumi.Input[str]] = None,
                   id: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetRegionResult]
    func GetRegion(ctx *Context, args *GetRegionArgs, opts ...InvokeOption) (*GetRegionResult, error)
    func GetRegionOutput(ctx *Context, args *GetRegionOutputArgs, opts ...InvokeOption) GetRegionResultOutput

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

    public static class GetRegion 
    {
        public static Task<GetRegionResult> InvokeAsync(GetRegionArgs args, InvokeOptions? opts = null)
        public static Output<GetRegionResult> Invoke(GetRegionInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRegionResult> getRegion(GetRegionArgs args, InvokeOptions options)
    public static Output<GetRegionResult> getRegion(GetRegionArgs args, InvokeOptions options)
    
    fn::invoke:
      function: linode:index/getRegion:getRegion
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The code name of the region to select.
    Country string
    The country the region resides in.
    Id string
    The code name of the region to select.
    Country string
    The country the region resides in.
    id String
    The code name of the region to select.
    country String
    The country the region resides in.
    id string
    The code name of the region to select.
    country string
    The country the region resides in.
    id str
    The code name of the region to select.
    country str
    The country the region resides in.
    id String
    The code name of the region to select.
    country String
    The country the region resides in.

    getRegion Result

    The following output properties are available:

    Country string
    The country the region resides in.
    Id string
    Country string
    The country the region resides in.
    Id string
    country String
    The country the region resides in.
    id String
    country string
    The country the region resides in.
    id string
    country str
    The country the region resides in.
    id str
    country String
    The country the region resides in.
    id String

    Package Details

    Repository
    Linode pulumi/pulumi-linode
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the linode Terraform Provider.
    linode logo
    Viewing docs for Linode v3.12.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.