1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. OtherUcseFeature
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.OtherUcseFeature

Explore with Pulumi AI

This resource can manage a Other UCSE Feature.

  • Minimum SD-WAN Manager version: 20.12.0

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.OtherUcseFeature;
import com.pulumi.sdwan.OtherUcseFeatureArgs;
import com.pulumi.sdwan.inputs.OtherUcseFeatureInterfaceArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var example = new OtherUcseFeature("example", OtherUcseFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .bay(2)
            .slot(0)
            .accessPortDedicated(false)
            .accessPortSharedType("ge1")
            .accessPortSharedFailoverType("ge2")
            .ipv4Address("2.2.2.2/24")
            .defaultGateway("2.2.2.2")
            .vlanId(3)
            .assignPriority(3)
            .interfaces(OtherUcseFeatureInterfaceArgs.builder()
                .interface_name("ucse2/0")
                .ucse_interface_vpn(2)
                .ipv4_address("10.1.15.15/24")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:OtherUcseFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      bay: 2
      slot: 0
      accessPortDedicated: false
      accessPortSharedType: ge1
      accessPortSharedFailoverType: ge2
      ipv4Address: 2.2.2.2/24
      defaultGateway: 2.2.2.2
      vlanId: 3
      assignPriority: 3
      interfaces:
        - interface_name: ucse2/0
          ucse_interface_vpn: 2
          ipv4_address: 10.1.15.15/24
Copy

Create OtherUcseFeature Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new OtherUcseFeature(name: string, args: OtherUcseFeatureArgs, opts?: CustomResourceOptions);
@overload
def OtherUcseFeature(resource_name: str,
                     args: OtherUcseFeatureArgs,
                     opts: Optional[ResourceOptions] = None)

@overload
def OtherUcseFeature(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     bay: Optional[int] = None,
                     slot: Optional[int] = None,
                     feature_profile_id: Optional[str] = None,
                     description: Optional[str] = None,
                     interfaces: Optional[Sequence[OtherUcseFeatureInterfaceArgs]] = None,
                     assign_priority: Optional[int] = None,
                     default_gateway: Optional[str] = None,
                     default_gateway_variable: Optional[str] = None,
                     access_port_dedicated: Optional[bool] = None,
                     access_port_shared_type: Optional[str] = None,
                     assign_priority_variable: Optional[str] = None,
                     ipv4_address: Optional[str] = None,
                     ipv4_address_variable: Optional[str] = None,
                     name: Optional[str] = None,
                     access_port_shared_failover_type: Optional[str] = None,
                     vlan_id: Optional[int] = None,
                     vlan_id_variable: Optional[str] = None)
func NewOtherUcseFeature(ctx *Context, name string, args OtherUcseFeatureArgs, opts ...ResourceOption) (*OtherUcseFeature, error)
public OtherUcseFeature(string name, OtherUcseFeatureArgs args, CustomResourceOptions? opts = null)
public OtherUcseFeature(String name, OtherUcseFeatureArgs args)
public OtherUcseFeature(String name, OtherUcseFeatureArgs args, CustomResourceOptions options)
type: sdwan:OtherUcseFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. OtherUcseFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. OtherUcseFeatureArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. OtherUcseFeatureArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. OtherUcseFeatureArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. OtherUcseFeatureArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var otherUcseFeatureResource = new Sdwan.OtherUcseFeature("otherUcseFeatureResource", new()
{
    Bay = 0,
    Slot = 0,
    FeatureProfileId = "string",
    Description = "string",
    Interfaces = new[]
    {
        new Sdwan.Inputs.OtherUcseFeatureInterfaceArgs
        {
            InterfaceName = "string",
            InterfaceNameVariable = "string",
            Ipv4Address = "string",
            Ipv4AddressVariable = "string",
            UcseInterfaceVpn = 0,
            UcseInterfaceVpnVariable = "string",
        },
    },
    AssignPriority = 0,
    DefaultGateway = "string",
    DefaultGatewayVariable = "string",
    AccessPortDedicated = false,
    AccessPortSharedType = "string",
    AssignPriorityVariable = "string",
    Ipv4Address = "string",
    Ipv4AddressVariable = "string",
    Name = "string",
    AccessPortSharedFailoverType = "string",
    VlanId = 0,
    VlanIdVariable = "string",
});
Copy
example, err := sdwan.NewOtherUcseFeature(ctx, "otherUcseFeatureResource", &sdwan.OtherUcseFeatureArgs{
	Bay:              pulumi.Int(0),
	Slot:             pulumi.Int(0),
	FeatureProfileId: pulumi.String("string"),
	Description:      pulumi.String("string"),
	Interfaces: sdwan.OtherUcseFeatureInterfaceArray{
		&sdwan.OtherUcseFeatureInterfaceArgs{
			InterfaceName:            pulumi.String("string"),
			InterfaceNameVariable:    pulumi.String("string"),
			Ipv4Address:              pulumi.String("string"),
			Ipv4AddressVariable:      pulumi.String("string"),
			UcseInterfaceVpn:         pulumi.Int(0),
			UcseInterfaceVpnVariable: pulumi.String("string"),
		},
	},
	AssignPriority:               pulumi.Int(0),
	DefaultGateway:               pulumi.String("string"),
	DefaultGatewayVariable:       pulumi.String("string"),
	AccessPortDedicated:          pulumi.Bool(false),
	AccessPortSharedType:         pulumi.String("string"),
	AssignPriorityVariable:       pulumi.String("string"),
	Ipv4Address:                  pulumi.String("string"),
	Ipv4AddressVariable:          pulumi.String("string"),
	Name:                         pulumi.String("string"),
	AccessPortSharedFailoverType: pulumi.String("string"),
	VlanId:                       pulumi.Int(0),
	VlanIdVariable:               pulumi.String("string"),
})
Copy
var otherUcseFeatureResource = new OtherUcseFeature("otherUcseFeatureResource", OtherUcseFeatureArgs.builder()
    .bay(0)
    .slot(0)
    .featureProfileId("string")
    .description("string")
    .interfaces(OtherUcseFeatureInterfaceArgs.builder()
        .interfaceName("string")
        .interfaceNameVariable("string")
        .ipv4Address("string")
        .ipv4AddressVariable("string")
        .ucseInterfaceVpn(0)
        .ucseInterfaceVpnVariable("string")
        .build())
    .assignPriority(0)
    .defaultGateway("string")
    .defaultGatewayVariable("string")
    .accessPortDedicated(false)
    .accessPortSharedType("string")
    .assignPriorityVariable("string")
    .ipv4Address("string")
    .ipv4AddressVariable("string")
    .name("string")
    .accessPortSharedFailoverType("string")
    .vlanId(0)
    .vlanIdVariable("string")
    .build());
Copy
other_ucse_feature_resource = sdwan.OtherUcseFeature("otherUcseFeatureResource",
    bay=0,
    slot=0,
    feature_profile_id="string",
    description="string",
    interfaces=[{
        "interface_name": "string",
        "interface_name_variable": "string",
        "ipv4_address": "string",
        "ipv4_address_variable": "string",
        "ucse_interface_vpn": 0,
        "ucse_interface_vpn_variable": "string",
    }],
    assign_priority=0,
    default_gateway="string",
    default_gateway_variable="string",
    access_port_dedicated=False,
    access_port_shared_type="string",
    assign_priority_variable="string",
    ipv4_address="string",
    ipv4_address_variable="string",
    name="string",
    access_port_shared_failover_type="string",
    vlan_id=0,
    vlan_id_variable="string")
Copy
const otherUcseFeatureResource = new sdwan.OtherUcseFeature("otherUcseFeatureResource", {
    bay: 0,
    slot: 0,
    featureProfileId: "string",
    description: "string",
    interfaces: [{
        interfaceName: "string",
        interfaceNameVariable: "string",
        ipv4Address: "string",
        ipv4AddressVariable: "string",
        ucseInterfaceVpn: 0,
        ucseInterfaceVpnVariable: "string",
    }],
    assignPriority: 0,
    defaultGateway: "string",
    defaultGatewayVariable: "string",
    accessPortDedicated: false,
    accessPortSharedType: "string",
    assignPriorityVariable: "string",
    ipv4Address: "string",
    ipv4AddressVariable: "string",
    name: "string",
    accessPortSharedFailoverType: "string",
    vlanId: 0,
    vlanIdVariable: "string",
});
Copy
type: sdwan:OtherUcseFeature
properties:
    accessPortDedicated: false
    accessPortSharedFailoverType: string
    accessPortSharedType: string
    assignPriority: 0
    assignPriorityVariable: string
    bay: 0
    defaultGateway: string
    defaultGatewayVariable: string
    description: string
    featureProfileId: string
    interfaces:
        - interfaceName: string
          interfaceNameVariable: string
          ipv4Address: string
          ipv4AddressVariable: string
          ucseInterfaceVpn: 0
          ucseInterfaceVpnVariable: string
    ipv4Address: string
    ipv4AddressVariable: string
    name: string
    slot: 0
    vlanId: 0
    vlanIdVariable: string
Copy

OtherUcseFeature Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The OtherUcseFeature resource accepts the following input properties:

Bay This property is required. int
Bay - Range: 0-2
FeatureProfileId This property is required. string
Feature Profile ID
Slot This property is required. int
Slot - Range: 0-3
AccessPortDedicated bool
Dedicated - Default value: true
AccessPortSharedFailoverType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
AccessPortSharedType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
AssignPriority int
Assign priority - Range: 0-7
AssignPriorityVariable string
Variable name
DefaultGateway string
Assign default gateway
DefaultGatewayVariable string
Variable name
Description string
The description of the Feature
Interfaces List<OtherUcseFeatureInterface>
Interface name: GigabitEthernet0/<>/<> when present
Ipv4Address string
Assign IPv4 address
Ipv4AddressVariable string
Variable name
Name string
The name of the Feature
VlanId int
Assign Vlan Id - Range: 2-4095
VlanIdVariable string
Variable name
Bay This property is required. int
Bay - Range: 0-2
FeatureProfileId This property is required. string
Feature Profile ID
Slot This property is required. int
Slot - Range: 0-3
AccessPortDedicated bool
Dedicated - Default value: true
AccessPortSharedFailoverType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
AccessPortSharedType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
AssignPriority int
Assign priority - Range: 0-7
AssignPriorityVariable string
Variable name
DefaultGateway string
Assign default gateway
DefaultGatewayVariable string
Variable name
Description string
The description of the Feature
Interfaces []OtherUcseFeatureInterfaceArgs
Interface name: GigabitEthernet0/<>/<> when present
Ipv4Address string
Assign IPv4 address
Ipv4AddressVariable string
Variable name
Name string
The name of the Feature
VlanId int
Assign Vlan Id - Range: 2-4095
VlanIdVariable string
Variable name
bay This property is required. Integer
Bay - Range: 0-2
featureProfileId This property is required. String
Feature Profile ID
slot This property is required. Integer
Slot - Range: 0-3
accessPortDedicated Boolean
Dedicated - Default value: true
accessPortSharedFailoverType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
accessPortSharedType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assignPriority Integer
Assign priority - Range: 0-7
assignPriorityVariable String
Variable name
defaultGateway String
Assign default gateway
defaultGatewayVariable String
Variable name
description String
The description of the Feature
interfaces List<OtherUcseFeatureInterface>
Interface name: GigabitEthernet0/<>/<> when present
ipv4Address String
Assign IPv4 address
ipv4AddressVariable String
Variable name
name String
The name of the Feature
vlanId Integer
Assign Vlan Id - Range: 2-4095
vlanIdVariable String
Variable name
bay This property is required. number
Bay - Range: 0-2
featureProfileId This property is required. string
Feature Profile ID
slot This property is required. number
Slot - Range: 0-3
accessPortDedicated boolean
Dedicated - Default value: true
accessPortSharedFailoverType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
accessPortSharedType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assignPriority number
Assign priority - Range: 0-7
assignPriorityVariable string
Variable name
defaultGateway string
Assign default gateway
defaultGatewayVariable string
Variable name
description string
The description of the Feature
interfaces OtherUcseFeatureInterface[]
Interface name: GigabitEthernet0/<>/<> when present
ipv4Address string
Assign IPv4 address
ipv4AddressVariable string
Variable name
name string
The name of the Feature
vlanId number
Assign Vlan Id - Range: 2-4095
vlanIdVariable string
Variable name
bay This property is required. int
Bay - Range: 0-2
feature_profile_id This property is required. str
Feature Profile ID
slot This property is required. int
Slot - Range: 0-3
access_port_dedicated bool
Dedicated - Default value: true
access_port_shared_failover_type str
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
access_port_shared_type str
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assign_priority int
Assign priority - Range: 0-7
assign_priority_variable str
Variable name
default_gateway str
Assign default gateway
default_gateway_variable str
Variable name
description str
The description of the Feature
interfaces Sequence[OtherUcseFeatureInterfaceArgs]
Interface name: GigabitEthernet0/<>/<> when present
ipv4_address str
Assign IPv4 address
ipv4_address_variable str
Variable name
name str
The name of the Feature
vlan_id int
Assign Vlan Id - Range: 2-4095
vlan_id_variable str
Variable name
bay This property is required. Number
Bay - Range: 0-2
featureProfileId This property is required. String
Feature Profile ID
slot This property is required. Number
Slot - Range: 0-3
accessPortDedicated Boolean
Dedicated - Default value: true
accessPortSharedFailoverType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
accessPortSharedType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assignPriority Number
Assign priority - Range: 0-7
assignPriorityVariable String
Variable name
defaultGateway String
Assign default gateway
defaultGatewayVariable String
Variable name
description String
The description of the Feature
interfaces List<Property Map>
Interface name: GigabitEthernet0/<>/<> when present
ipv4Address String
Assign IPv4 address
ipv4AddressVariable String
Variable name
name String
The name of the Feature
vlanId Number
Assign Vlan Id - Range: 2-4095
vlanIdVariable String
Variable name

Outputs

All input properties are implicitly available as output properties. Additionally, the OtherUcseFeature resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Version int
The version of the Feature
Id string
The provider-assigned unique ID for this managed resource.
Version int
The version of the Feature
id String
The provider-assigned unique ID for this managed resource.
version Integer
The version of the Feature
id string
The provider-assigned unique ID for this managed resource.
version number
The version of the Feature
id str
The provider-assigned unique ID for this managed resource.
version int
The version of the Feature
id String
The provider-assigned unique ID for this managed resource.
version Number
The version of the Feature

Look up Existing OtherUcseFeature Resource

Get an existing OtherUcseFeature resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: OtherUcseFeatureState, opts?: CustomResourceOptions): OtherUcseFeature
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access_port_dedicated: Optional[bool] = None,
        access_port_shared_failover_type: Optional[str] = None,
        access_port_shared_type: Optional[str] = None,
        assign_priority: Optional[int] = None,
        assign_priority_variable: Optional[str] = None,
        bay: Optional[int] = None,
        default_gateway: Optional[str] = None,
        default_gateway_variable: Optional[str] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        interfaces: Optional[Sequence[OtherUcseFeatureInterfaceArgs]] = None,
        ipv4_address: Optional[str] = None,
        ipv4_address_variable: Optional[str] = None,
        name: Optional[str] = None,
        slot: Optional[int] = None,
        version: Optional[int] = None,
        vlan_id: Optional[int] = None,
        vlan_id_variable: Optional[str] = None) -> OtherUcseFeature
func GetOtherUcseFeature(ctx *Context, name string, id IDInput, state *OtherUcseFeatureState, opts ...ResourceOption) (*OtherUcseFeature, error)
public static OtherUcseFeature Get(string name, Input<string> id, OtherUcseFeatureState? state, CustomResourceOptions? opts = null)
public static OtherUcseFeature get(String name, Output<String> id, OtherUcseFeatureState state, CustomResourceOptions options)
resources:  _:    type: sdwan:OtherUcseFeature    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AccessPortDedicated bool
Dedicated - Default value: true
AccessPortSharedFailoverType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
AccessPortSharedType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
AssignPriority int
Assign priority - Range: 0-7
AssignPriorityVariable string
Variable name
Bay int
Bay - Range: 0-2
DefaultGateway string
Assign default gateway
DefaultGatewayVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
Interfaces List<OtherUcseFeatureInterface>
Interface name: GigabitEthernet0/<>/<> when present
Ipv4Address string
Assign IPv4 address
Ipv4AddressVariable string
Variable name
Name string
The name of the Feature
Slot int
Slot - Range: 0-3
Version int
The version of the Feature
VlanId int
Assign Vlan Id - Range: 2-4095
VlanIdVariable string
Variable name
AccessPortDedicated bool
Dedicated - Default value: true
AccessPortSharedFailoverType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
AccessPortSharedType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
AssignPriority int
Assign priority - Range: 0-7
AssignPriorityVariable string
Variable name
Bay int
Bay - Range: 0-2
DefaultGateway string
Assign default gateway
DefaultGatewayVariable string
Variable name
Description string
The description of the Feature
FeatureProfileId string
Feature Profile ID
Interfaces []OtherUcseFeatureInterfaceArgs
Interface name: GigabitEthernet0/<>/<> when present
Ipv4Address string
Assign IPv4 address
Ipv4AddressVariable string
Variable name
Name string
The name of the Feature
Slot int
Slot - Range: 0-3
Version int
The version of the Feature
VlanId int
Assign Vlan Id - Range: 2-4095
VlanIdVariable string
Variable name
accessPortDedicated Boolean
Dedicated - Default value: true
accessPortSharedFailoverType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
accessPortSharedType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assignPriority Integer
Assign priority - Range: 0-7
assignPriorityVariable String
Variable name
bay Integer
Bay - Range: 0-2
defaultGateway String
Assign default gateway
defaultGatewayVariable String
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
interfaces List<OtherUcseFeatureInterface>
Interface name: GigabitEthernet0/<>/<> when present
ipv4Address String
Assign IPv4 address
ipv4AddressVariable String
Variable name
name String
The name of the Feature
slot Integer
Slot - Range: 0-3
version Integer
The version of the Feature
vlanId Integer
Assign Vlan Id - Range: 2-4095
vlanIdVariable String
Variable name
accessPortDedicated boolean
Dedicated - Default value: true
accessPortSharedFailoverType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
accessPortSharedType string
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assignPriority number
Assign priority - Range: 0-7
assignPriorityVariable string
Variable name
bay number
Bay - Range: 0-2
defaultGateway string
Assign default gateway
defaultGatewayVariable string
Variable name
description string
The description of the Feature
featureProfileId string
Feature Profile ID
interfaces OtherUcseFeatureInterface[]
Interface name: GigabitEthernet0/<>/<> when present
ipv4Address string
Assign IPv4 address
ipv4AddressVariable string
Variable name
name string
The name of the Feature
slot number
Slot - Range: 0-3
version number
The version of the Feature
vlanId number
Assign Vlan Id - Range: 2-4095
vlanIdVariable string
Variable name
access_port_dedicated bool
Dedicated - Default value: true
access_port_shared_failover_type str
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
access_port_shared_type str
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assign_priority int
Assign priority - Range: 0-7
assign_priority_variable str
Variable name
bay int
Bay - Range: 0-2
default_gateway str
Assign default gateway
default_gateway_variable str
Variable name
description str
The description of the Feature
feature_profile_id str
Feature Profile ID
interfaces Sequence[OtherUcseFeatureInterfaceArgs]
Interface name: GigabitEthernet0/<>/<> when present
ipv4_address str
Assign IPv4 address
ipv4_address_variable str
Variable name
name str
The name of the Feature
slot int
Slot - Range: 0-3
version int
The version of the Feature
vlan_id int
Assign Vlan Id - Range: 2-4095
vlan_id_variable str
Variable name
accessPortDedicated Boolean
Dedicated - Default value: true
accessPortSharedFailoverType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge2, te2
accessPortSharedType String
, Attribute conditional on access_port_dedicated being equal to false - Choices: ge1, ge2, ge3, te2, te3, console, failover
assignPriority Number
Assign priority - Range: 0-7
assignPriorityVariable String
Variable name
bay Number
Bay - Range: 0-2
defaultGateway String
Assign default gateway
defaultGatewayVariable String
Variable name
description String
The description of the Feature
featureProfileId String
Feature Profile ID
interfaces List<Property Map>
Interface name: GigabitEthernet0/<>/<> when present
ipv4Address String
Assign IPv4 address
ipv4AddressVariable String
Variable name
name String
The name of the Feature
slot Number
Slot - Range: 0-3
version Number
The version of the Feature
vlanId Number
Assign Vlan Id - Range: 2-4095
vlanIdVariable String
Variable name

Supporting Types

OtherUcseFeatureInterface
, OtherUcseFeatureInterfaceArgs

InterfaceName string
Set Inteface name
InterfaceNameVariable string
Variable name
Ipv4Address string
Assign IPv4 address
Ipv4AddressVariable string
Variable name
UcseInterfaceVpn int
UCSE Interface VPN

  • Range: 1-65527
UcseInterfaceVpnVariable string
Variable name
InterfaceName string
Set Inteface name
InterfaceNameVariable string
Variable name
Ipv4Address string
Assign IPv4 address
Ipv4AddressVariable string
Variable name
UcseInterfaceVpn int
UCSE Interface VPN

  • Range: 1-65527
UcseInterfaceVpnVariable string
Variable name
interfaceName String
Set Inteface name
interfaceNameVariable String
Variable name
ipv4Address String
Assign IPv4 address
ipv4AddressVariable String
Variable name
ucseInterfaceVpn Integer
UCSE Interface VPN

  • Range: 1-65527
ucseInterfaceVpnVariable String
Variable name
interfaceName string
Set Inteface name
interfaceNameVariable string
Variable name
ipv4Address string
Assign IPv4 address
ipv4AddressVariable string
Variable name
ucseInterfaceVpn number
UCSE Interface VPN

  • Range: 1-65527
ucseInterfaceVpnVariable string
Variable name
interface_name str
Set Inteface name
interface_name_variable str
Variable name
ipv4_address str
Assign IPv4 address
ipv4_address_variable str
Variable name
ucse_interface_vpn int
UCSE Interface VPN

  • Range: 1-65527
ucse_interface_vpn_variable str
Variable name
interfaceName String
Set Inteface name
interfaceNameVariable String
Variable name
ipv4Address String
Assign IPv4 address
ipv4AddressVariable String
Variable name
ucseInterfaceVpn Number
UCSE Interface VPN

  • Range: 1-65527
ucseInterfaceVpnVariable String
Variable name

Import

Expected import identifier with the format: “other_ucse_feature_id,feature_profile_id”

$ pulumi import sdwan:index/otherUcseFeature:OtherUcseFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
sdwan pulumi/pulumi-sdwan
License
Apache-2.0
Notes
This Pulumi package is based on the sdwan Terraform Provider.