UNPKG

@pulumi/sdwan

Version:

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

177 lines (176 loc) 5.37 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Transport T1 E1 Controller Feature. * - Minimum SD-WAN Manager version: `20.12.0` * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = new sdwan.TransportT1E1ControllerFeature("example", { * name: "Example", * description: "My Example", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * type: "t1", * slot: "11", * entries: [{ * t1Description: "T1", * t1Framing: "esf", * t1Linecode: "ami", * cableLength: "long", * lengthLong: "-7.5db", * clockSource: "line", * lineMode: "primary", * description: "desc", * channelGroups: [{ * channelGroup: 12, * timeSlot: "timeslots 15", * }], * }], * }); * ``` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "transport_t1_e1_controller_feature_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/transportT1E1ControllerFeature:TransportT1E1ControllerFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class TransportT1E1ControllerFeature extends pulumi.CustomResource { /** * Get an existing TransportT1E1ControllerFeature resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransportT1E1ControllerFeatureState, opts?: pulumi.CustomResourceOptions): TransportT1E1ControllerFeature; /** * Returns true if the given object is an instance of TransportT1E1ControllerFeature. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is TransportT1E1ControllerFeature; /** * The description of the Feature */ readonly description: pulumi.Output<string | undefined>; /** * Controller tx-ex List */ readonly entries: pulumi.Output<outputs.TransportT1E1ControllerFeatureEntry[]>; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output<string>; /** * The name of the Feature */ readonly name: pulumi.Output<string>; /** * Slot number */ readonly slot: pulumi.Output<string | undefined>; /** * Variable name */ readonly slotVariable: pulumi.Output<string | undefined>; /** * Card Type * - Choices: `e1`, `t1` */ readonly type: pulumi.Output<string>; /** * The version of the Feature */ readonly version: pulumi.Output<number>; /** * Create a TransportT1E1ControllerFeature resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: TransportT1E1ControllerFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering TransportT1E1ControllerFeature resources. */ export interface TransportT1E1ControllerFeatureState { /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Controller tx-ex List */ entries?: pulumi.Input<pulumi.Input<inputs.TransportT1E1ControllerFeatureEntry>[]>; /** * Feature Profile ID */ featureProfileId?: pulumi.Input<string>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Slot number */ slot?: pulumi.Input<string>; /** * Variable name */ slotVariable?: pulumi.Input<string>; /** * Card Type * - Choices: `e1`, `t1` */ type?: pulumi.Input<string>; /** * The version of the Feature */ version?: pulumi.Input<number>; } /** * The set of arguments for constructing a TransportT1E1ControllerFeature resource. */ export interface TransportT1E1ControllerFeatureArgs { /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Controller tx-ex List */ entries: pulumi.Input<pulumi.Input<inputs.TransportT1E1ControllerFeatureEntry>[]>; /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Slot number */ slot?: pulumi.Input<string>; /** * Variable name */ slotVariable?: pulumi.Input<string>; /** * Card Type * - Choices: `e1`, `t1` */ type: pulumi.Input<string>; }