UNPKG

@pulumi/scm

Version:

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

104 lines (103 loc) 3.19 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 { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * UUID of the resource */ id: string; /** * AS path access list name */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: 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 * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * UUID of the resource */ readonly id: string; /** * AS path access list name */ readonly name: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ 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 { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * UUID of the resource */ id: pulumi.Input<string>; /** * AS path access list name */ name?: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }