UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

132 lines (131 loc) 3.42 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Cisco SNMP feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoSnmpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoSnmpFeatureTemplate(args?: GetCiscoSnmpFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoSnmpFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoSnmpFeatureTemplate. */ export interface GetCiscoSnmpFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCiscoSnmpFeatureTemplate. */ export interface GetCiscoSnmpFeatureTemplateResult { /** * Configure SNMP community */ readonly communities: outputs.GetCiscoSnmpFeatureTemplateCommunity[]; /** * Set the contact for this managed node */ readonly contact: string; /** * Variable name */ readonly contactVariable: string; /** * The description of the feature template */ readonly description: string; /** * List of supported device types */ readonly deviceTypes: string[]; /** * Configure an SNMP group */ readonly groups: outputs.GetCiscoSnmpFeatureTemplateGroup[]; /** * The id of the feature template */ readonly id: string; /** * Set the physical location of this managed node */ readonly location: string; /** * Variable name */ readonly locationVariable: string; /** * The name of the feature template */ readonly name: string; /** * Enable or disable SNMP */ readonly shutdown: boolean; /** * Variable name */ readonly shutdownVariable: string; /** * The template type */ readonly templateType: string; /** * Configure SNMP server to receive SNMP traps */ readonly trapTargets: outputs.GetCiscoSnmpFeatureTemplateTrapTarget[]; /** * Configure an SNMP user */ readonly users: outputs.GetCiscoSnmpFeatureTemplateUser[]; /** * The version of the feature template */ readonly version: number; /** * Configure a view record */ readonly views: outputs.GetCiscoSnmpFeatureTemplateView[]; } /** * This data source can read the Cisco SNMP feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoSnmpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoSnmpFeatureTemplateOutput(args?: GetCiscoSnmpFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoSnmpFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoSnmpFeatureTemplate. */ export interface GetCiscoSnmpFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }