@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
175 lines (174 loc) • 4.22 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This data source can read the Cellular Profile feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCellularProfileFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCellularProfileFeatureTemplate(args?: GetCellularProfileFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCellularProfileFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCellularProfileFeatureTemplate.
*/
export interface GetCellularProfileFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getCellularProfileFeatureTemplate.
*/
export interface GetCellularProfileFeatureTemplateResult {
/**
* 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;
/**
* Set interface name
*/
readonly ifName: string;
/**
* Variable name
*/
readonly ifNameVariable: string;
/**
* Set IP address
*/
readonly ipAddress: string;
/**
* Variable name
*/
readonly ipAddressVariable: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* Set packet data network type
*/
readonly packetDataNetworkType: string;
/**
* Variable name
*/
readonly packetDataNetworkTypeVariable: string;
/**
* Set the address of the primary DNS server
*/
readonly primaryDnsAddress: string;
/**
* Variable name
*/
readonly primaryDnsAddressVariable: string;
/**
* Set Profile ID
*/
readonly profileId: number;
/**
* Variable name
*/
readonly profileIdVariable: string;
/**
* Set profile name
*/
readonly profileName: string;
/**
* Variable name
*/
readonly profileNameVariable: 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;
/**
* Set the address of the secondary DNS server
*/
readonly secondaryDnsAddress: string;
/**
* Variable name
*/
readonly secondaryDnsAddressVariable: string;
/**
* The template type
*/
readonly templateType: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the Cellular Profile feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getCellularProfileFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getCellularProfileFeatureTemplateOutput(args?: GetCellularProfileFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCellularProfileFeatureTemplateResult>;
/**
* A collection of arguments for invoking getCellularProfileFeatureTemplate.
*/
export interface GetCellularProfileFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}