UNPKG

@pulumi/sdwan

Version:

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

132 lines (131 loc) 3.47 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Cellular Controller feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCellularControllerFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCellularControllerFeatureTemplate(args?: GetCellularControllerFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCellularControllerFeatureTemplateResult>; /** * A collection of arguments for invoking getCellularControllerFeatureTemplate. */ export interface GetCellularControllerFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCellularControllerFeatureTemplate. */ export interface GetCellularControllerFeatureTemplateResult { /** * Cellular interface name */ readonly cellularInterfaceId: string; /** * Variable name */ readonly cellularInterfaceIdVariable: string; /** * Data Profile List */ readonly dataProfiles: outputs.GetCellularControllerFeatureTemplateDataProfile[]; /** * The description of the feature template */ readonly description: string; /** * List of supported device types */ readonly deviceTypes: string[]; /** * Enable/Disable Firmware Auto Sim */ readonly firmwareAutoSim: boolean; /** * Variable name */ readonly firmwareAutoSimVariable: string; /** * The id of the feature template */ readonly id: string; /** * The name of the feature template */ readonly name: string; /** * Set primary SIM slot */ readonly primarySimSlot: number; /** * Variable name */ readonly primarySimSlotVariable: string; /** * Set SIM failover retries */ readonly simFailoverRetries: number; /** * Variable name */ readonly simFailoverRetriesVariable: string; /** * Set SIM failover timeout in minutes */ readonly simFailoverTimeout: number; /** * Variable name */ readonly simFailoverTimeoutVariable: string; /** * The template type */ readonly templateType: string; /** * The version of the feature template */ readonly version: number; } /** * This data source can read the Cellular Controller feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCellularControllerFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCellularControllerFeatureTemplateOutput(args?: GetCellularControllerFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCellularControllerFeatureTemplateResult>; /** * A collection of arguments for invoking getCellularControllerFeatureTemplate. */ export interface GetCellularControllerFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }