sdwan.TransportIpv6AclFeature
Explore with Pulumi AI
This resource can manage a Transport IPv6 ACL 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.TransportIpv6AclFeature;
import com.pulumi.sdwan.TransportIpv6AclFeatureArgs;
import com.pulumi.sdwan.inputs.TransportIpv6AclFeatureSequenceArgs;
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 TransportIpv6AclFeature("example", TransportIpv6AclFeatureArgs.builder()
            .name("Example")
            .description("My Example")
            .featureProfileId("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .defaultAction("drop")
            .sequences(TransportIpv6AclFeatureSequenceArgs.builder()
                .sequence_id(1)
                .sequence_name("AccessControlList1")
                .match_entries(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .actions(TransportIpv6AclFeatureSequenceActionArgs.builder()
                    .acceptCounterName("COUNTER_1")
                    .acceptLog(false)
                    .acceptSetNextHop("2001:0db8:85a3:0000:0000:8a2e:0370:7334")
                    .acceptTrafficClass(10)
                    .build())
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:TransportIpv6AclFeature
    properties:
      name: Example
      description: My Example
      featureProfileId: f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      defaultAction: drop
      sequences:
        - sequence_id: 1
          sequence_name: AccessControlList1
          match_entries:
            - nextHeader: 10
              packetLength: 1500
              sourcePorts:
                - port: 8000
              tcpState: syn
              trafficClass:
                - 10
          actions:
            - acceptCounterName: COUNTER_1
              acceptLog: false
              acceptSetNextHop: 2001:0db8:85a3:0000:0000:8a2e:0370:7334
              acceptTrafficClass: 10
Create TransportIpv6AclFeature Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TransportIpv6AclFeature(name: string, args?: TransportIpv6AclFeatureArgs, opts?: CustomResourceOptions);@overload
def TransportIpv6AclFeature(resource_name: str,
                            args: Optional[TransportIpv6AclFeatureArgs] = None,
                            opts: Optional[ResourceOptions] = None)
@overload
def TransportIpv6AclFeature(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            default_action: Optional[str] = None,
                            description: Optional[str] = None,
                            feature_profile_id: Optional[str] = None,
                            name: Optional[str] = None,
                            sequences: Optional[Sequence[TransportIpv6AclFeatureSequenceArgs]] = None)func NewTransportIpv6AclFeature(ctx *Context, name string, args *TransportIpv6AclFeatureArgs, opts ...ResourceOption) (*TransportIpv6AclFeature, error)public TransportIpv6AclFeature(string name, TransportIpv6AclFeatureArgs? args = null, CustomResourceOptions? opts = null)
public TransportIpv6AclFeature(String name, TransportIpv6AclFeatureArgs args)
public TransportIpv6AclFeature(String name, TransportIpv6AclFeatureArgs args, CustomResourceOptions options)
type: sdwan:TransportIpv6AclFeature
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TransportIpv6AclFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TransportIpv6AclFeatureArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TransportIpv6AclFeatureArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TransportIpv6AclFeatureArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TransportIpv6AclFeatureArgs
- 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 transportIpv6AclFeatureResource = new Sdwan.TransportIpv6AclFeature("transportIpv6AclFeatureResource", new()
{
    DefaultAction = "string",
    Description = "string",
    FeatureProfileId = "string",
    Name = "string",
    Sequences = new[]
    {
        new Sdwan.Inputs.TransportIpv6AclFeatureSequenceArgs
        {
            Actions = new[]
            {
                new Sdwan.Inputs.TransportIpv6AclFeatureSequenceActionArgs
                {
                    AcceptCounterName = "string",
                    AcceptLog = false,
                    AcceptMirrorListId = "string",
                    AcceptPolicerId = "string",
                    AcceptSetNextHop = "string",
                    AcceptTrafficClass = 0,
                    DropCounterName = "string",
                    DropLog = false,
                },
            },
            BaseAction = "string",
            MatchEntries = new[]
            {
                new Sdwan.Inputs.TransportIpv6AclFeatureSequenceMatchEntryArgs
                {
                    DestinationDataPrefix = "string",
                    DestinationDataPrefixListId = "string",
                    DestinationPorts = new[]
                    {
                        new Sdwan.Inputs.TransportIpv6AclFeatureSequenceMatchEntryDestinationPortArgs
                        {
                            Port = "string",
                        },
                    },
                    IcmpMessages = new[]
                    {
                        "string",
                    },
                    NextHeader = 0,
                    PacketLength = "string",
                    SourceDataPrefix = "string",
                    SourceDataPrefixListId = "string",
                    SourcePorts = new[]
                    {
                        new Sdwan.Inputs.TransportIpv6AclFeatureSequenceMatchEntrySourcePortArgs
                        {
                            Port = "string",
                        },
                    },
                    TcpState = "string",
                    TrafficClasses = new[]
                    {
                        0,
                    },
                },
            },
            SequenceId = 0,
            SequenceName = "string",
        },
    },
});
example, err := sdwan.NewTransportIpv6AclFeature(ctx, "transportIpv6AclFeatureResource", &sdwan.TransportIpv6AclFeatureArgs{
	DefaultAction:    pulumi.String("string"),
	Description:      pulumi.String("string"),
	FeatureProfileId: pulumi.String("string"),
	Name:             pulumi.String("string"),
	Sequences: sdwan.TransportIpv6AclFeatureSequenceArray{
		&sdwan.TransportIpv6AclFeatureSequenceArgs{
			Actions: sdwan.TransportIpv6AclFeatureSequenceActionArray{
				&sdwan.TransportIpv6AclFeatureSequenceActionArgs{
					AcceptCounterName:  pulumi.String("string"),
					AcceptLog:          pulumi.Bool(false),
					AcceptMirrorListId: pulumi.String("string"),
					AcceptPolicerId:    pulumi.String("string"),
					AcceptSetNextHop:   pulumi.String("string"),
					AcceptTrafficClass: pulumi.Int(0),
					DropCounterName:    pulumi.String("string"),
					DropLog:            pulumi.Bool(false),
				},
			},
			BaseAction: pulumi.String("string"),
			MatchEntries: sdwan.TransportIpv6AclFeatureSequenceMatchEntryArray{
				&sdwan.TransportIpv6AclFeatureSequenceMatchEntryArgs{
					DestinationDataPrefix:       pulumi.String("string"),
					DestinationDataPrefixListId: pulumi.String("string"),
					DestinationPorts: sdwan.TransportIpv6AclFeatureSequenceMatchEntryDestinationPortArray{
						&sdwan.TransportIpv6AclFeatureSequenceMatchEntryDestinationPortArgs{
							Port: pulumi.String("string"),
						},
					},
					IcmpMessages: pulumi.StringArray{
						pulumi.String("string"),
					},
					NextHeader:             pulumi.Int(0),
					PacketLength:           pulumi.String("string"),
					SourceDataPrefix:       pulumi.String("string"),
					SourceDataPrefixListId: pulumi.String("string"),
					SourcePorts: sdwan.TransportIpv6AclFeatureSequenceMatchEntrySourcePortArray{
						&sdwan.TransportIpv6AclFeatureSequenceMatchEntrySourcePortArgs{
							Port: pulumi.String("string"),
						},
					},
					TcpState: pulumi.String("string"),
					TrafficClasses: pulumi.IntArray{
						pulumi.Int(0),
					},
				},
			},
			SequenceId:   pulumi.Int(0),
			SequenceName: pulumi.String("string"),
		},
	},
})
var transportIpv6AclFeatureResource = new TransportIpv6AclFeature("transportIpv6AclFeatureResource", TransportIpv6AclFeatureArgs.builder()
    .defaultAction("string")
    .description("string")
    .featureProfileId("string")
    .name("string")
    .sequences(TransportIpv6AclFeatureSequenceArgs.builder()
        .actions(TransportIpv6AclFeatureSequenceActionArgs.builder()
            .acceptCounterName("string")
            .acceptLog(false)
            .acceptMirrorListId("string")
            .acceptPolicerId("string")
            .acceptSetNextHop("string")
            .acceptTrafficClass(0)
            .dropCounterName("string")
            .dropLog(false)
            .build())
        .baseAction("string")
        .matchEntries(TransportIpv6AclFeatureSequenceMatchEntryArgs.builder()
            .destinationDataPrefix("string")
            .destinationDataPrefixListId("string")
            .destinationPorts(TransportIpv6AclFeatureSequenceMatchEntryDestinationPortArgs.builder()
                .port("string")
                .build())
            .icmpMessages("string")
            .nextHeader(0)
            .packetLength("string")
            .sourceDataPrefix("string")
            .sourceDataPrefixListId("string")
            .sourcePorts(TransportIpv6AclFeatureSequenceMatchEntrySourcePortArgs.builder()
                .port("string")
                .build())
            .tcpState("string")
            .trafficClasses(0)
            .build())
        .sequenceId(0)
        .sequenceName("string")
        .build())
    .build());
transport_ipv6_acl_feature_resource = sdwan.TransportIpv6AclFeature("transportIpv6AclFeatureResource",
    default_action="string",
    description="string",
    feature_profile_id="string",
    name="string",
    sequences=[{
        "actions": [{
            "accept_counter_name": "string",
            "accept_log": False,
            "accept_mirror_list_id": "string",
            "accept_policer_id": "string",
            "accept_set_next_hop": "string",
            "accept_traffic_class": 0,
            "drop_counter_name": "string",
            "drop_log": False,
        }],
        "base_action": "string",
        "match_entries": [{
            "destination_data_prefix": "string",
            "destination_data_prefix_list_id": "string",
            "destination_ports": [{
                "port": "string",
            }],
            "icmp_messages": ["string"],
            "next_header": 0,
            "packet_length": "string",
            "source_data_prefix": "string",
            "source_data_prefix_list_id": "string",
            "source_ports": [{
                "port": "string",
            }],
            "tcp_state": "string",
            "traffic_classes": [0],
        }],
        "sequence_id": 0,
        "sequence_name": "string",
    }])
const transportIpv6AclFeatureResource = new sdwan.TransportIpv6AclFeature("transportIpv6AclFeatureResource", {
    defaultAction: "string",
    description: "string",
    featureProfileId: "string",
    name: "string",
    sequences: [{
        actions: [{
            acceptCounterName: "string",
            acceptLog: false,
            acceptMirrorListId: "string",
            acceptPolicerId: "string",
            acceptSetNextHop: "string",
            acceptTrafficClass: 0,
            dropCounterName: "string",
            dropLog: false,
        }],
        baseAction: "string",
        matchEntries: [{
            destinationDataPrefix: "string",
            destinationDataPrefixListId: "string",
            destinationPorts: [{
                port: "string",
            }],
            icmpMessages: ["string"],
            nextHeader: 0,
            packetLength: "string",
            sourceDataPrefix: "string",
            sourceDataPrefixListId: "string",
            sourcePorts: [{
                port: "string",
            }],
            tcpState: "string",
            trafficClasses: [0],
        }],
        sequenceId: 0,
        sequenceName: "string",
    }],
});
type: sdwan:TransportIpv6AclFeature
properties:
    defaultAction: string
    description: string
    featureProfileId: string
    name: string
    sequences:
        - actions:
            - acceptCounterName: string
              acceptLog: false
              acceptMirrorListId: string
              acceptPolicerId: string
              acceptSetNextHop: string
              acceptTrafficClass: 0
              dropCounterName: string
              dropLog: false
          baseAction: string
          matchEntries:
            - destinationDataPrefix: string
              destinationDataPrefixListId: string
              destinationPorts:
                - port: string
              icmpMessages:
                - string
              nextHeader: 0
              packetLength: string
              sourceDataPrefix: string
              sourceDataPrefixListId: string
              sourcePorts:
                - port: string
              tcpState: string
              trafficClasses:
                - 0
          sequenceId: 0
          sequenceName: string
TransportIpv6AclFeature 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 TransportIpv6AclFeature resource accepts the following input properties:
- DefaultAction string
- Default Action - Choices: drop,accept- Default value:drop
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Name string
- The name of the Feature
- Sequences
List<TransportIpv6Acl Feature Sequence> 
- Access Control List
- DefaultAction string
- Default Action - Choices: drop,accept- Default value:drop
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Name string
- The name of the Feature
- Sequences
[]TransportIpv6Acl Feature Sequence Args 
- Access Control List
- defaultAction String
- Default Action - Choices: drop,accept- Default value:drop
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- name String
- The name of the Feature
- sequences
List<TransportIpv6Acl Feature Sequence> 
- Access Control List
- defaultAction string
- Default Action - Choices: drop,accept- Default value:drop
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- name string
- The name of the Feature
- sequences
TransportIpv6Acl Feature Sequence[] 
- Access Control List
- default_action str
- Default Action - Choices: drop,accept- Default value:drop
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- name str
- The name of the Feature
- sequences
Sequence[TransportIpv6Acl Feature Sequence Args] 
- Access Control List
- defaultAction String
- Default Action - Choices: drop,accept- Default value:drop
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- name String
- The name of the Feature
- sequences List<Property Map>
- Access Control List
Outputs
All input properties are implicitly available as output properties. Additionally, the TransportIpv6AclFeature resource produces the following output properties:
Look up Existing TransportIpv6AclFeature Resource
Get an existing TransportIpv6AclFeature 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?: TransportIpv6AclFeatureState, opts?: CustomResourceOptions): TransportIpv6AclFeature@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        default_action: Optional[str] = None,
        description: Optional[str] = None,
        feature_profile_id: Optional[str] = None,
        name: Optional[str] = None,
        sequences: Optional[Sequence[TransportIpv6AclFeatureSequenceArgs]] = None,
        version: Optional[int] = None) -> TransportIpv6AclFeaturefunc GetTransportIpv6AclFeature(ctx *Context, name string, id IDInput, state *TransportIpv6AclFeatureState, opts ...ResourceOption) (*TransportIpv6AclFeature, error)public static TransportIpv6AclFeature Get(string name, Input<string> id, TransportIpv6AclFeatureState? state, CustomResourceOptions? opts = null)public static TransportIpv6AclFeature get(String name, Output<String> id, TransportIpv6AclFeatureState state, CustomResourceOptions options)resources:  _:    type: sdwan:TransportIpv6AclFeature    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- DefaultAction string
- Default Action - Choices: drop,accept- Default value:drop
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Name string
- The name of the Feature
- Sequences
List<TransportIpv6Acl Feature Sequence> 
- Access Control List
- Version int
- The version of the Feature
- DefaultAction string
- Default Action - Choices: drop,accept- Default value:drop
- Description string
- The description of the Feature
- FeatureProfile stringId 
- Feature Profile ID
- Name string
- The name of the Feature
- Sequences
[]TransportIpv6Acl Feature Sequence Args 
- Access Control List
- Version int
- The version of the Feature
- defaultAction String
- Default Action - Choices: drop,accept- Default value:drop
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- name String
- The name of the Feature
- sequences
List<TransportIpv6Acl Feature Sequence> 
- Access Control List
- version Integer
- The version of the Feature
- defaultAction string
- Default Action - Choices: drop,accept- Default value:drop
- description string
- The description of the Feature
- featureProfile stringId 
- Feature Profile ID
- name string
- The name of the Feature
- sequences
TransportIpv6Acl Feature Sequence[] 
- Access Control List
- version number
- The version of the Feature
- default_action str
- Default Action - Choices: drop,accept- Default value:drop
- description str
- The description of the Feature
- feature_profile_ strid 
- Feature Profile ID
- name str
- The name of the Feature
- sequences
Sequence[TransportIpv6Acl Feature Sequence Args] 
- Access Control List
- version int
- The version of the Feature
- defaultAction String
- Default Action - Choices: drop,accept- Default value:drop
- description String
- The description of the Feature
- featureProfile StringId 
- Feature Profile ID
- name String
- The name of the Feature
- sequences List<Property Map>
- Access Control List
- version Number
- The version of the Feature
Supporting Types
TransportIpv6AclFeatureSequence, TransportIpv6AclFeatureSequenceArgs        
- Actions
List<TransportIpv6Acl Feature Sequence Action> 
- Define list of actions
- BaseAction string
- Base Action- Choices: drop,accept
- Default value: accept
 
- Choices: 
- MatchEntries List<TransportIpv6Acl Feature Sequence Match Entry> 
- Define match conditions
- SequenceId int
- Sequence Id- Range: 1-65536
 
- Range: 
- SequenceName string
- Sequence Name
- Actions
[]TransportIpv6Acl Feature Sequence Action 
- Define list of actions
- BaseAction string
- Base Action- Choices: drop,accept
- Default value: accept
 
- Choices: 
- MatchEntries []TransportIpv6Acl Feature Sequence Match Entry 
- Define match conditions
- SequenceId int
- Sequence Id- Range: 1-65536
 
- Range: 
- SequenceName string
- Sequence Name
- actions
List<TransportIpv6Acl Feature Sequence Action> 
- Define list of actions
- baseAction String
- Base Action- Choices: drop,accept
- Default value: accept
 
- Choices: 
- matchEntries List<TransportIpv6Acl Feature Sequence Match Entry> 
- Define match conditions
- sequenceId Integer
- Sequence Id- Range: 1-65536
 
- Range: 
- sequenceName String
- Sequence Name
- actions
TransportIpv6Acl Feature Sequence Action[] 
- Define list of actions
- baseAction string
- Base Action- Choices: drop,accept
- Default value: accept
 
- Choices: 
- matchEntries TransportIpv6Acl Feature Sequence Match Entry[] 
- Define match conditions
- sequenceId number
- Sequence Id- Range: 1-65536
 
- Range: 
- sequenceName string
- Sequence Name
- actions
Sequence[TransportIpv6Acl Feature Sequence Action] 
- Define list of actions
- base_action str
- Base Action- Choices: drop,accept
- Default value: accept
 
- Choices: 
- match_entries Sequence[TransportIpv6Acl Feature Sequence Match Entry] 
- Define match conditions
- sequence_id int
- Sequence Id- Range: 1-65536
 
- Range: 
- sequence_name str
- Sequence Name
- actions List<Property Map>
- Define list of actions
- baseAction String
- Base Action- Choices: drop,accept
- Default value: accept
 
- Choices: 
- matchEntries List<Property Map>
- Define match conditions
- sequenceId Number
- Sequence Id- Range: 1-65536
 
- Range: 
- sequenceName String
- Sequence Name
TransportIpv6AclFeatureSequenceAction, TransportIpv6AclFeatureSequenceActionArgs          
- AcceptCounter stringName 
- Counter Name
- AcceptLog bool
- Enable Log- Default value: false
 
- Default value: 
- AcceptMirror stringList Id 
- AcceptPolicer stringId 
- AcceptSet stringNext Hop 
- Set Next Hop (IPV6 address)
- AcceptTraffic intClass 
- set traffic class number- Range: 0-63
 
- Range: 
- DropCounter stringName 
- Counter Name
- DropLog bool
- Enable Log- Default value: false
 
- Default value: 
- AcceptCounter stringName 
- Counter Name
- AcceptLog bool
- Enable Log- Default value: false
 
- Default value: 
- AcceptMirror stringList Id 
- AcceptPolicer stringId 
- AcceptSet stringNext Hop 
- Set Next Hop (IPV6 address)
- AcceptTraffic intClass 
- set traffic class number- Range: 0-63
 
- Range: 
- DropCounter stringName 
- Counter Name
- DropLog bool
- Enable Log- Default value: false
 
- Default value: 
- acceptCounter StringName 
- Counter Name
- acceptLog Boolean
- Enable Log- Default value: false
 
- Default value: 
- acceptMirror StringList Id 
- acceptPolicer StringId 
- acceptSet StringNext Hop 
- Set Next Hop (IPV6 address)
- acceptTraffic IntegerClass 
- set traffic class number- Range: 0-63
 
- Range: 
- dropCounter StringName 
- Counter Name
- dropLog Boolean
- Enable Log- Default value: false
 
- Default value: 
- acceptCounter stringName 
- Counter Name
- acceptLog boolean
- Enable Log- Default value: false
 
- Default value: 
- acceptMirror stringList Id 
- acceptPolicer stringId 
- acceptSet stringNext Hop 
- Set Next Hop (IPV6 address)
- acceptTraffic numberClass 
- set traffic class number- Range: 0-63
 
- Range: 
- dropCounter stringName 
- Counter Name
- dropLog boolean
- Enable Log- Default value: false
 
- Default value: 
- accept_counter_ strname 
- Counter Name
- accept_log bool
- Enable Log- Default value: false
 
- Default value: 
- accept_mirror_ strlist_ id 
- accept_policer_ strid 
- accept_set_ strnext_ hop 
- Set Next Hop (IPV6 address)
- accept_traffic_ intclass 
- set traffic class number- Range: 0-63
 
- Range: 
- drop_counter_ strname 
- Counter Name
- drop_log bool
- Enable Log- Default value: false
 
- Default value: 
- acceptCounter StringName 
- Counter Name
- acceptLog Boolean
- Enable Log- Default value: false
 
- Default value: 
- acceptMirror StringList Id 
- acceptPolicer StringId 
- acceptSet StringNext Hop 
- Set Next Hop (IPV6 address)
- acceptTraffic NumberClass 
- set traffic class number- Range: 0-63
 
- Range: 
- dropCounter StringName 
- Counter Name
- dropLog Boolean
- Enable Log- Default value: false
 
- Default value: 
TransportIpv6AclFeatureSequenceMatchEntry, TransportIpv6AclFeatureSequenceMatchEntryArgs            
- DestinationData stringPrefix 
- Destination Data IP Prefix
- DestinationData stringPrefix List Id 
- DestinationPorts List<TransportIpv6Acl Feature Sequence Match Entry Destination Port> 
- Destination Port List
- IcmpMessages List<string>
- ICMP6 Message
- NextHeader int
- next header number- Range: 0-255
 
- Range: 
- PacketLength string
- Packet Length
- SourceData stringPrefix 
- Source Data IP Prefix
- SourceData stringPrefix List Id 
- SourcePorts List<TransportIpv6Acl Feature Sequence Match Entry Source Port> 
- Source Port List
- TcpState string
- TCP States- Choices: syn
 
- Choices: 
- TrafficClasses List<int>
- Select Traffic Class
- DestinationData stringPrefix 
- Destination Data IP Prefix
- DestinationData stringPrefix List Id 
- DestinationPorts []TransportIpv6Acl Feature Sequence Match Entry Destination Port 
- Destination Port List
- IcmpMessages []string
- ICMP6 Message
- NextHeader int
- next header number- Range: 0-255
 
- Range: 
- PacketLength string
- Packet Length
- SourceData stringPrefix 
- Source Data IP Prefix
- SourceData stringPrefix List Id 
- SourcePorts []TransportIpv6Acl Feature Sequence Match Entry Source Port 
- Source Port List
- TcpState string
- TCP States- Choices: syn
 
- Choices: 
- TrafficClasses []int
- Select Traffic Class
- destinationData StringPrefix 
- Destination Data IP Prefix
- destinationData StringPrefix List Id 
- destinationPorts List<TransportIpv6Acl Feature Sequence Match Entry Destination Port> 
- Destination Port List
- icmpMessages List<String>
- ICMP6 Message
- nextHeader Integer
- next header number- Range: 0-255
 
- Range: 
- packetLength String
- Packet Length
- sourceData StringPrefix 
- Source Data IP Prefix
- sourceData StringPrefix List Id 
- sourcePorts List<TransportIpv6Acl Feature Sequence Match Entry Source Port> 
- Source Port List
- tcpState String
- TCP States- Choices: syn
 
- Choices: 
- trafficClasses List<Integer>
- Select Traffic Class
- destinationData stringPrefix 
- Destination Data IP Prefix
- destinationData stringPrefix List Id 
- destinationPorts TransportIpv6Acl Feature Sequence Match Entry Destination Port[] 
- Destination Port List
- icmpMessages string[]
- ICMP6 Message
- nextHeader number
- next header number- Range: 0-255
 
- Range: 
- packetLength string
- Packet Length
- sourceData stringPrefix 
- Source Data IP Prefix
- sourceData stringPrefix List Id 
- sourcePorts TransportIpv6Acl Feature Sequence Match Entry Source Port[] 
- Source Port List
- tcpState string
- TCP States- Choices: syn
 
- Choices: 
- trafficClasses number[]
- Select Traffic Class
- destination_data_ strprefix 
- Destination Data IP Prefix
- destination_data_ strprefix_ list_ id 
- destination_ports Sequence[TransportIpv6Acl Feature Sequence Match Entry Destination Port] 
- Destination Port List
- icmp_messages Sequence[str]
- ICMP6 Message
- next_header int
- next header number- Range: 0-255
 
- Range: 
- packet_length str
- Packet Length
- source_data_ strprefix 
- Source Data IP Prefix
- source_data_ strprefix_ list_ id 
- source_ports Sequence[TransportIpv6Acl Feature Sequence Match Entry Source Port] 
- Source Port List
- tcp_state str
- TCP States- Choices: syn
 
- Choices: 
- traffic_classes Sequence[int]
- Select Traffic Class
- destinationData StringPrefix 
- Destination Data IP Prefix
- destinationData StringPrefix List Id 
- destinationPorts List<Property Map>
- Destination Port List
- icmpMessages List<String>
- ICMP6 Message
- nextHeader Number
- next header number- Range: 0-255
 
- Range: 
- packetLength String
- Packet Length
- sourceData StringPrefix 
- Source Data IP Prefix
- sourceData StringPrefix List Id 
- sourcePorts List<Property Map>
- Source Port List
- tcpState String
- TCP States- Choices: syn
 
- Choices: 
- trafficClasses List<Number>
- Select Traffic Class
TransportIpv6AclFeatureSequenceMatchEntryDestinationPort, TransportIpv6AclFeatureSequenceMatchEntryDestinationPortArgs                
- Port string
- destination port range or individual port number
- Port string
- destination port range or individual port number
- port String
- destination port range or individual port number
- port string
- destination port range or individual port number
- port str
- destination port range or individual port number
- port String
- destination port range or individual port number
TransportIpv6AclFeatureSequenceMatchEntrySourcePort, TransportIpv6AclFeatureSequenceMatchEntrySourcePortArgs                
- Port string
- source port range or individual port number
- Port string
- source port range or individual port number
- port String
- source port range or individual port number
- port string
- source port range or individual port number
- port str
- source port range or individual port number
- port String
- source port range or individual port number
Import
Expected import identifier with the format: “transport_ipv6_acl_feature_id,feature_profile_id”
$ pulumi import sdwan:index/transportIpv6AclFeature:TransportIpv6AclFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
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 sdwanTerraform Provider.
