UNPKG

@pulumi/sdwan

Version:

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

156 lines (155 loc) 3.82 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the eigrp feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getEigrpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getEigrpFeatureTemplate(args?: GetEigrpFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetEigrpFeatureTemplateResult>; /** * A collection of arguments for invoking getEigrpFeatureTemplate. */ export interface GetEigrpFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getEigrpFeatureTemplate. */ export interface GetEigrpFeatureTemplateResult { /** * Set EIGRP address family */ readonly addressFamilies: outputs.GetEigrpFeatureTemplateAddressFamily[]; /** * Set autonomous system ID \n\n */ readonly asNumber: number; /** * Variable name */ readonly asNumberVariable: string; /** * Set EIGRP router authentication type */ readonly authenticationType: string; /** * Variable name */ readonly authenticationTypeVariable: string; /** * The description of the feature template */ readonly description: string; /** * List of supported device types */ readonly deviceTypes: string[]; /** * Selective route download */ readonly filter: boolean; /** * Variable name */ readonly filterVariable: string; /** * Set EIGRP hello interval */ readonly helloInterval: number; /** * Variable name */ readonly helloIntervalVariable: string; /** * Set hmac-sha-256 authentication key */ readonly hmacAuthenticationKey: string; /** * Variable name */ readonly hmacAuthenticationKeyVariable: string; /** * Set EIGRP hold time */ readonly holdTime: number; /** * Variable name */ readonly holdTimeVariable: string; /** * The id of the feature template */ readonly id: string; /** * Configure IPv4 Static Routes */ readonly interfaces: outputs.GetEigrpFeatureTemplateInterface[]; /** * Set keychain name */ readonly keys: outputs.GetEigrpFeatureTemplateKey[]; /** * The name of the feature template */ readonly name: string; /** * Configure policy to apply to prefixes received from EIGRP neighbor */ readonly routePolicyName: string; /** * Variable name */ readonly routePolicyNameVariable: string; /** * The template type */ readonly templateType: string; /** * The version of the feature template */ readonly version: number; } /** * This data source can read the eigrp feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getEigrpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getEigrpFeatureTemplateOutput(args?: GetEigrpFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEigrpFeatureTemplateResult>; /** * A collection of arguments for invoking getEigrpFeatureTemplate. */ export interface GetEigrpFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }