UNPKG

@pulumi/sdwan

Version:

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

92 lines (91 loc) 2.45 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the cEdge IGMP feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCedgeIgmpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCedgeIgmpFeatureTemplate(args?: GetCedgeIgmpFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCedgeIgmpFeatureTemplateResult>; /** * A collection of arguments for invoking getCedgeIgmpFeatureTemplate. */ export interface GetCedgeIgmpFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCedgeIgmpFeatureTemplate. */ export interface GetCedgeIgmpFeatureTemplateResult { /** * 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; /** * Set IGMP interface parameters */ readonly interfaces: outputs.GetCedgeIgmpFeatureTemplateInterface[]; /** * The name of the feature template */ readonly name: string; /** * The template type */ readonly templateType: string; /** * The version of the feature template */ readonly version: number; } /** * This data source can read the cEdge IGMP feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCedgeIgmpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCedgeIgmpFeatureTemplateOutput(args?: GetCedgeIgmpFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCedgeIgmpFeatureTemplateResult>; /** * A collection of arguments for invoking getCedgeIgmpFeatureTemplate. */ export interface GetCedgeIgmpFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }