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.58 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * RouteCommunityList data source */ export declare function getRouteCommunityList(args: GetRouteCommunityListArgs, opts?: pulumi.InvokeOptions): Promise<GetRouteCommunityListResult>; /** * A collection of arguments for invoking getRouteCommunityList. */ export interface GetRouteCommunityListArgs { /** * UUID of the resource */ id: string; /** * Route community list name */ name?: string; } /** * A collection of values returned by getRouteCommunityList. */ export interface GetRouteCommunityListResult { /** * Description */ readonly description: string; /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * UUID of the resource */ readonly id: string; /** * Route community list name */ readonly name: string; readonly snippet: string; readonly tfid: string; readonly type: outputs.GetRouteCommunityListType; } /** * RouteCommunityList data source */ export declare function getRouteCommunityListOutput(args: GetRouteCommunityListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRouteCommunityListResult>; /** * A collection of arguments for invoking getRouteCommunityList. */ export interface GetRouteCommunityListOutputArgs { /** * UUID of the resource */ id: pulumi.Input<string>; /** * Route community list name */ name?: pulumi.Input<string>; }