@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
116 lines (115 loc) • 3.06 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the Switchport feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getSwitchportFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getSwitchportFeatureTemplate(args?: GetSwitchportFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetSwitchportFeatureTemplateResult>;
/**
* A collection of arguments for invoking getSwitchportFeatureTemplate.
*/
export interface GetSwitchportFeatureTemplateArgs {
/**
* The id of the feature template
*/
id?: string;
/**
* The name of the feature template
*/
name?: string;
}
/**
* A collection of values returned by getSwitchportFeatureTemplate.
*/
export interface GetSwitchportFeatureTemplateResult {
/**
* Set when a MAC table entry ages out (0 to disable, 10-1000000 otherwise)
*/
readonly ageOutTime: number;
/**
* Variable name
*/
readonly ageOutTimeVariable: 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;
/**
* Interface name: GigabitEthernet0/<>/<> when present
*/
readonly interfaces: outputs.GetSwitchportFeatureTemplateInterface[];
/**
* Module type
*/
readonly moduleType: string;
/**
* The name of the feature template
*/
readonly name: string;
/**
* Number of Slots
*/
readonly slot: number;
/**
* Add static MAC address entries for interface
*/
readonly staticMacAddresses: outputs.GetSwitchportFeatureTemplateStaticMacAddress[];
/**
* Number of Sub-Slots
*/
readonly subSlot: number;
/**
* The template type
*/
readonly templateType: string;
/**
* The version of the feature template
*/
readonly version: number;
}
/**
* This data source can read the Switchport feature template.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getSwitchportFeatureTemplate({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* });
* ```
*/
export declare function getSwitchportFeatureTemplateOutput(args?: GetSwitchportFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSwitchportFeatureTemplateResult>;
/**
* A collection of arguments for invoking getSwitchportFeatureTemplate.
*/
export interface GetSwitchportFeatureTemplateOutputArgs {
/**
* The id of the feature template
*/
id?: pulumi.Input<string>;
/**
* The name of the feature template
*/
name?: pulumi.Input<string>;
}