@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
156 lines (155 loc) • 3.9 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Cisco Wireless LAN feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCiscoWirelessLanFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCiscoWirelessLanFeatureTemplate(args?: GetCiscoWirelessLanFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoWirelessLanFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCiscoWirelessLanFeatureTemplate.
*/
export interface GetCiscoWirelessLanFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getCiscoWirelessLanFeatureTemplate.
*/
export interface GetCiscoWirelessLanFeatureTemplateResult {
/**
* Set mobile express default gateway
*/
readonly controllerDefaultGateway: string;
/**
* Variable name
*/
readonly controllerDefaultGatewayVariable: string;
/**
* Set mobile express controller address
*/
readonly controllerIpAddress: string;
/**
* Variable name
*/
readonly controllerIpAddressVariable: string;
/**
* Set mobile express controller subnet mask
*/
readonly controllerSubnetMask: string;
/**
* Variable name
*/
readonly controllerSubnetMaskVariable: string;
/**
* Select country
*/
readonly country: string;
/**
* Variable name
*/
readonly countryVariable: 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;
/**
* Set management password
*/
readonly password: string;
/**
* Variable name
*/
readonly passwordVariable: string;
/**
* 2.4GHz Shutdown
*/
readonly shutdown24ghz: boolean;
/**
* Variable name
*/
readonly shutdown24ghzVariable: string;
/**
* 5GHz Shutdown
*/
readonly shutdown5ghz: boolean;
/**
* Variable name
*/
readonly shutdown5ghzVariable: string;
/**
* Configure Wi-Fi SSID
*/
readonly ssids: outputs.GetCiscoWirelessLanFeatureTemplateSsid[];
/**
* The template type
*/
readonly templateType: string;
/**
* Set management username
*/
readonly username: string;
/**
* Variable name
*/
readonly usernameVariable: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the Cisco Wireless LAN feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCiscoWirelessLanFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCiscoWirelessLanFeatureTemplateOutput(args?: GetCiscoWirelessLanFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoWirelessLanFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCiscoWirelessLanFeatureTemplate.
*/
export interface GetCiscoWirelessLanFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}