UNPKG

@pulumi/sdwan

Version:

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

184 lines (183 loc) 4.46 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the cEdge PIM feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCedgePimFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCedgePimFeatureTemplate(args?: GetCedgePimFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCedgePimFeatureTemplateResult>; /** * A collection of arguments for invoking getCedgePimFeatureTemplate. */ export interface GetCedgePimFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCedgePimFeatureTemplate. */ export interface GetCedgePimFeatureTemplateResult { /** * Enable or disable auto-RP */ readonly autoRp: boolean; /** * Variable name */ readonly autoRpVariable: string; /** * Set Autonomic-Networking virtual interface */ readonly bsrCandidate: string; /** * Variable name */ readonly bsrCandidateVariable: string; /** * Turn SSM On / Off */ readonly default: boolean; /** * Variable name */ readonly defaultVariable: string; /** * The description of the feature template */ readonly description: string; /** * List of supported device types */ readonly deviceTypes: string[]; /** * Hash Mask length for RP selection */ readonly hashMaskLength: string; /** * Variable name */ readonly hashMaskLengthVariable: string; /** * The id of the feature template */ readonly id: string; /** * Set RP Discovery Interface Name */ readonly interfaceName: string; /** * Variable name */ readonly interfaceNameVariable: string; /** * Set PIM interface parameters */ readonly interfaces: outputs.GetCedgePimFeatureTemplateInterface[]; /** * The name of the feature template */ readonly name: string; /** * Set RP candidate priority */ readonly priority: number; /** * Variable name */ readonly priorityVariable: string; /** * Set Access List for PIM SSM */ readonly range: string; /** * Variable name */ readonly rangeVariable: string; /** * Set Static RP Address(es) */ readonly rpAddresses: outputs.GetCedgePimFeatureTemplateRpAddress[]; /** * Enable or disable RP Announce */ readonly rpAnnounceFields: outputs.GetCedgePimFeatureTemplateRpAnnounceField[]; /** * Set BSR RP candidate filter */ readonly rpCandidateAccessList: string; /** * Variable name */ readonly rpCandidateAccessListVariable: string; /** * Set RP Discovery Scope */ readonly rpCandidates: outputs.GetCedgePimFeatureTemplateRpCandidate[]; /** * Set RP Discovery Scope */ readonly scope: number; /** * Variable name */ readonly scopeVariable: string; /** * Set when PIM router joins the SPT (kbps) */ readonly sptThreshold: string; /** * Variable name */ readonly sptThresholdVariable: string; /** * The template type */ readonly templateType: string; /** * The version of the feature template */ readonly version: number; } /** * This data source can read the cEdge PIM feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCedgePimFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCedgePimFeatureTemplateOutput(args?: GetCedgePimFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCedgePimFeatureTemplateResult>; /** * A collection of arguments for invoking getCedgePimFeatureTemplate. */ export interface GetCedgePimFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }