UNPKG

@pulumi/sdwan

Version:

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

143 lines (142 loc) 3.62 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Cellular cEdge Profile feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCellularCedgeProfileFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCellularCedgeProfileFeatureTemplate(args?: GetCellularCedgeProfileFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCellularCedgeProfileFeatureTemplateResult>; /** * A collection of arguments for invoking getCellularCedgeProfileFeatureTemplate. */ export interface GetCellularCedgeProfileFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCellularCedgeProfileFeatureTemplate. */ export interface GetCellularCedgeProfileFeatureTemplateResult { /** * Set access point name */ readonly accessPointName: string; /** * Variable name */ readonly accessPointNameVariable: string; /** * Set 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[]; /** * The id of the feature template */ readonly id: string; /** * The name of the feature template */ readonly name: string; /** * No Overwrite */ readonly noOverwrite: boolean; /** * Variable name */ readonly noOverwriteVariable: string; /** * Set packet data network type */ readonly packetDataNetworkType: string; /** * Variable name */ readonly packetDataNetworkTypeVariable: string; /** * Set Profile ID */ readonly profileId: number; /** * Variable name */ readonly profileIdVariable: string; /** * Set the profile password */ readonly profilePassword: string; /** * Variable name */ readonly profilePasswordVariable: string; /** * Set the profile username */ readonly profileUsername: string; /** * Variable name */ readonly profileUsernameVariable: string; /** * The template type */ readonly templateType: string; /** * The version of the feature template */ readonly version: number; } /** * This data source can read the Cellular cEdge Profile feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCellularCedgeProfileFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCellularCedgeProfileFeatureTemplateOutput(args?: GetCellularCedgeProfileFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCellularCedgeProfileFeatureTemplateResult>; /** * A collection of arguments for invoking getCellularCedgeProfileFeatureTemplate. */ export interface GetCellularCedgeProfileFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }