@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
111 lines (110 loc) • 2.89 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the cEdge Multicast feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCedgeMulticastFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCedgeMulticastFeatureTemplate(args?: GetCedgeMulticastFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCedgeMulticastFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCedgeMulticastFeatureTemplate.
*/
export interface GetCedgeMulticastFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getCedgeMulticastFeatureTemplate.
*/
export interface GetCedgeMulticastFeatureTemplateResult {
/**
* The description of the feature template
*/
readonly description: string;
/**
* List of supported device types
*/
readonly deviceTypes: string[];
/**
* The id of the feature template
*/
readonly id: string;
/**
* Replicator is local to this device
*/
readonly localReplicator: boolean;
/**
* Variable name
*/
readonly localReplicatorVariable: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* Shortest Path Tree (SPT) Only Mode
*/
readonly sptOnly: boolean;
/**
* Variable name
*/
readonly sptOnlyVariable: string;
/**
* The template type
*/
readonly templateType: string;
/**
* Set number of joins per group the router supports
*/
readonly threshold: number;
/**
* Variable name
*/
readonly thresholdVariable: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the cEdge Multicast feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCedgeMulticastFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCedgeMulticastFeatureTemplateOutput(args?: GetCedgeMulticastFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCedgeMulticastFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCedgeMulticastFeatureTemplate.
*/
export interface GetCedgeMulticastFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}