UNPKG

@pulumi/sdwan

Version:

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

102 lines (101 loc) 2.81 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Service Switchport Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getServiceSwitchportFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getServiceSwitchportFeature(args: GetServiceSwitchportFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceSwitchportFeatureResult>; /** * A collection of arguments for invoking getServiceSwitchportFeature. */ export interface GetServiceSwitchportFeatureArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Feature */ id: string; } /** * A collection of values returned by getServiceSwitchportFeature. */ export interface GetServiceSwitchportFeatureResult { /** * 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 */ readonly description: string; /** * Feature Profile ID */ readonly featureProfileId: string; /** * The id of the Feature */ readonly id: string; /** * Interface name: GigabitEthernet0/<>/<> when present */ readonly interfaces: outputs.GetServiceSwitchportFeatureInterface[]; /** * The name of the Feature */ readonly name: string; /** * Add static MAC address entries for interface */ readonly staticMacAddresses: outputs.GetServiceSwitchportFeatureStaticMacAddress[]; /** * The version of the Feature */ readonly version: number; } /** * This data source can read the Service Switchport Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getServiceSwitchportFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getServiceSwitchportFeatureOutput(args: GetServiceSwitchportFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceSwitchportFeatureResult>; /** * A collection of arguments for invoking getServiceSwitchportFeature. */ export interface GetServiceSwitchportFeatureOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * The id of the Feature */ id: pulumi.Input<string>; }