UNPKG

@pulumi/scm

Version:

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

108 lines (107 loc) 3.13 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * LldpProfile data source */ export declare function getLldpProfile(args: GetLldpProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetLldpProfileResult>; /** * A collection of arguments for invoking getLldpProfile. */ export interface GetLldpProfileArgs { /** * 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; /** * LLDP profile 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 getLldpProfile. */ export interface GetLldpProfileResult { /** * 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; /** * LLDP mode */ readonly mode: string; /** * LLDP profile name */ readonly name: string; /** * Option tlvs */ readonly optionTlvs: outputs.GetLldpProfileOptionTlvs; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; /** * SNMP syslog notification */ readonly snmpSyslogNotification: boolean; readonly tfid: string; } /** * LldpProfile data source */ export declare function getLldpProfileOutput(args: GetLldpProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLldpProfileResult>; /** * A collection of arguments for invoking getLldpProfile. */ export interface GetLldpProfileOutputArgs { /** * 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>; /** * LLDP profile 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>; }