UNPKG

@pulumi/sdwan

Version:

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

112 lines (111 loc) 3.25 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Cisco Secure Internet Gateway feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoSecureInternetGatewayFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoSecureInternetGatewayFeatureTemplate(args?: GetCiscoSecureInternetGatewayFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoSecureInternetGatewayFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoSecureInternetGatewayFeatureTemplate. */ export interface GetCiscoSecureInternetGatewayFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCiscoSecureInternetGatewayFeatureTemplate. */ export interface GetCiscoSecureInternetGatewayFeatureTemplateResult { /** * 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; /** * Interface name: IPsec when present */ readonly interfaces: outputs.GetCiscoSecureInternetGatewayFeatureTemplateInterface[]; /** * The name of the feature template */ readonly name: string; /** * Configure services */ readonly services: outputs.GetCiscoSecureInternetGatewayFeatureTemplateService[]; /** * The template type */ readonly templateType: string; /** * Source IP address for Tracker */ readonly trackerSourceIp: string; /** * Variable name */ readonly trackerSourceIpVariable: string; /** * Tracker configuration */ readonly trackers: outputs.GetCiscoSecureInternetGatewayFeatureTemplateTracker[]; /** * The version of the feature template */ readonly version: number; /** * List of VPN instances */ readonly vpnId: number; } /** * This data source can read the Cisco Secure Internet Gateway feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoSecureInternetGatewayFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoSecureInternetGatewayFeatureTemplateOutput(args?: GetCiscoSecureInternetGatewayFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoSecureInternetGatewayFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoSecureInternetGatewayFeatureTemplate. */ export interface GetCiscoSecureInternetGatewayFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }