UNPKG

@pulumi/scm

Version:

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

65 lines (64 loc) 1.65 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * RoutePathAccessList data source */ export declare function getRoutePathAccessList(args: GetRoutePathAccessListArgs, opts?: pulumi.InvokeOptions): Promise<GetRoutePathAccessListResult>; /** * A collection of arguments for invoking getRoutePathAccessList. */ export interface GetRoutePathAccessListArgs { /** * UUID of the resource */ id: string; /** * AS path access list name */ name?: string; } /** * A collection of values returned by getRoutePathAccessList. */ export interface GetRoutePathAccessListResult { /** * AS paths */ readonly aspathEntries: outputs.GetRoutePathAccessListAspathEntry[]; /** * 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; /** * AS path access list name */ readonly name: string; readonly snippet: string; readonly tfid: string; } /** * RoutePathAccessList data source */ export declare function getRoutePathAccessListOutput(args: GetRoutePathAccessListOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRoutePathAccessListResult>; /** * A collection of arguments for invoking getRoutePathAccessList. */ export interface GetRoutePathAccessListOutputArgs { /** * UUID of the resource */ id: pulumi.Input<string>; /** * AS path access list name */ name?: pulumi.Input<string>; }