UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

62 lines (61 loc) 1.41 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Region data source */ export declare function getRegion(args: GetRegionArgs, opts?: pulumi.InvokeOptions): Promise<GetRegionResult>; /** * A collection of arguments for invoking getRegion. */ export interface GetRegionArgs { /** * The UUID of the region */ id: string; /** * The name of the region */ name?: string; } /** * A collection of values returned by getRegion. */ export interface GetRegionResult { /** * Address */ readonly addresses: string[]; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; readonly geoLocation: outputs.GetRegionGeoLocation; /** * The UUID of the region */ readonly id: string; /** * The name of the region */ readonly name: string; readonly snippet: string; readonly tfid: string; } /** * Region data source */ export declare function getRegionOutput(args: GetRegionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRegionResult>; /** * A collection of arguments for invoking getRegion. */ export interface GetRegionOutputArgs { /** * The UUID of the region */ id: pulumi.Input<string>; /** * The name of the region */ name?: pulumi.Input<string>; }