UNPKG

@pulumi/sdwan

Version:

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

268 lines (267 loc) 7.99 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Other UCSE Feature. * - Minimum SD-WAN Manager version: `20.12.0` * * ## Import * * The `pulumi import` command can be used, for example: * * Expected import identifier with the format: "other_ucse_feature_id,feature_profile_id" * * ```sh * $ pulumi import sdwan:index/otherUcseFeature:OtherUcseFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac" * ``` */ export declare class OtherUcseFeature extends pulumi.CustomResource { /** * Get an existing OtherUcseFeature 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?: OtherUcseFeatureState, opts?: pulumi.CustomResourceOptions): OtherUcseFeature; /** * Returns true if the given object is an instance of OtherUcseFeature. 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 OtherUcseFeature; /** * Dedicated - Default value: `true` */ readonly accessPortDedicated: pulumi.Output<boolean | undefined>; /** * , Attribute conditional on `accessPortDedicated` being equal to `false` - Choices: `ge2`, `te2` */ readonly accessPortSharedFailoverType: pulumi.Output<string | undefined>; /** * , Attribute conditional on `accessPortDedicated` being equal to `false` - Choices: `ge1`, `ge2`, `ge3`, `te2`, `te3`, * `console`, `failover` */ readonly accessPortSharedType: pulumi.Output<string | undefined>; /** * Assign priority - Range: `0`-`7` */ readonly assignPriority: pulumi.Output<number | undefined>; /** * Variable name */ readonly assignPriorityVariable: pulumi.Output<string | undefined>; /** * Bay - Range: `0`-`2` */ readonly bay: pulumi.Output<number>; /** * Assign default gateway */ readonly defaultGateway: pulumi.Output<string | undefined>; /** * Variable name */ readonly defaultGatewayVariable: pulumi.Output<string | undefined>; /** * The description of the Feature */ readonly description: pulumi.Output<string | undefined>; /** * Feature Profile ID */ readonly featureProfileId: pulumi.Output<string>; /** * Interface name: GigabitEthernet0/<>/<> when present */ readonly interfaces: pulumi.Output<outputs.OtherUcseFeatureInterface[] | undefined>; /** * Assign IPv4 address */ readonly ipv4Address: pulumi.Output<string | undefined>; /** * Variable name */ readonly ipv4AddressVariable: pulumi.Output<string | undefined>; /** * The name of the Feature */ readonly name: pulumi.Output<string>; /** * Slot - Range: `0`-`3` */ readonly slot: pulumi.Output<number>; /** * The version of the Feature */ readonly version: pulumi.Output<number>; /** * Assign Vlan Id - Range: `2`-`4095` */ readonly vlanId: pulumi.Output<number | undefined>; /** * Variable name */ readonly vlanIdVariable: pulumi.Output<string | undefined>; /** * Create a OtherUcseFeature 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: OtherUcseFeatureArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering OtherUcseFeature resources. */ export interface OtherUcseFeatureState { /** * Dedicated - Default value: `true` */ accessPortDedicated?: pulumi.Input<boolean>; /** * , Attribute conditional on `accessPortDedicated` being equal to `false` - Choices: `ge2`, `te2` */ accessPortSharedFailoverType?: pulumi.Input<string>; /** * , Attribute conditional on `accessPortDedicated` being equal to `false` - Choices: `ge1`, `ge2`, `ge3`, `te2`, `te3`, * `console`, `failover` */ accessPortSharedType?: pulumi.Input<string>; /** * Assign priority - Range: `0`-`7` */ assignPriority?: pulumi.Input<number>; /** * Variable name */ assignPriorityVariable?: pulumi.Input<string>; /** * Bay - Range: `0`-`2` */ bay?: pulumi.Input<number>; /** * Assign default gateway */ defaultGateway?: pulumi.Input<string>; /** * Variable name */ defaultGatewayVariable?: pulumi.Input<string>; /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Feature Profile ID */ featureProfileId?: pulumi.Input<string>; /** * Interface name: GigabitEthernet0/<>/<> when present */ interfaces?: pulumi.Input<pulumi.Input<inputs.OtherUcseFeatureInterface>[]>; /** * Assign IPv4 address */ ipv4Address?: pulumi.Input<string>; /** * Variable name */ ipv4AddressVariable?: pulumi.Input<string>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Slot - Range: `0`-`3` */ slot?: pulumi.Input<number>; /** * The version of the Feature */ version?: pulumi.Input<number>; /** * Assign Vlan Id - Range: `2`-`4095` */ vlanId?: pulumi.Input<number>; /** * Variable name */ vlanIdVariable?: pulumi.Input<string>; } /** * The set of arguments for constructing a OtherUcseFeature resource. */ export interface OtherUcseFeatureArgs { /** * Dedicated - Default value: `true` */ accessPortDedicated?: pulumi.Input<boolean>; /** * , Attribute conditional on `accessPortDedicated` being equal to `false` - Choices: `ge2`, `te2` */ accessPortSharedFailoverType?: pulumi.Input<string>; /** * , Attribute conditional on `accessPortDedicated` being equal to `false` - Choices: `ge1`, `ge2`, `ge3`, `te2`, `te3`, * `console`, `failover` */ accessPortSharedType?: pulumi.Input<string>; /** * Assign priority - Range: `0`-`7` */ assignPriority?: pulumi.Input<number>; /** * Variable name */ assignPriorityVariable?: pulumi.Input<string>; /** * Bay - Range: `0`-`2` */ bay: pulumi.Input<number>; /** * Assign default gateway */ defaultGateway?: pulumi.Input<string>; /** * Variable name */ defaultGatewayVariable?: pulumi.Input<string>; /** * The description of the Feature */ description?: pulumi.Input<string>; /** * Feature Profile ID */ featureProfileId: pulumi.Input<string>; /** * Interface name: GigabitEthernet0/<>/<> when present */ interfaces?: pulumi.Input<pulumi.Input<inputs.OtherUcseFeatureInterface>[]>; /** * Assign IPv4 address */ ipv4Address?: pulumi.Input<string>; /** * Variable name */ ipv4AddressVariable?: pulumi.Input<string>; /** * The name of the Feature */ name?: pulumi.Input<string>; /** * Slot - Range: `0`-`3` */ slot: pulumi.Input<number>; /** * Assign Vlan Id - Range: `2`-`4095` */ vlanId?: pulumi.Input<number>; /** * Variable name */ vlanIdVariable?: pulumi.Input<string>; }