sdwan.Ipv4DeviceAclPolicyDefinition
Explore with Pulumi AI
This resource can manage a IPv4 Device ACL Policy Definition .
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.Ipv4DeviceAclPolicyDefinition;
import com.pulumi.sdwan.Ipv4DeviceAclPolicyDefinitionArgs;
import com.pulumi.sdwan.inputs.Ipv4DeviceAclPolicyDefinitionSequenceArgs;
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 Ipv4DeviceAclPolicyDefinition("example", Ipv4DeviceAclPolicyDefinitionArgs.builder()
            .name("Example")
            .description("My description")
            .defaultAction("drop")
            .sequences(Ipv4DeviceAclPolicyDefinitionSequenceArgs.builder()
                .id(10)
                .name("Sequence 10")
                .base_action("accept")
                .match_entries(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .action_entries(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:Ipv4DeviceAclPolicyDefinition
    properties:
      name: Example
      description: My description
      defaultAction: drop
      sequences:
        - id: 10
          name: Sequence 10
          base_action: accept
          match_entries:
            - type: destinationPort
              destinationPort: 22
          action_entries:
            - type: count
              counterName: count1
Create Ipv4DeviceAclPolicyDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ipv4DeviceAclPolicyDefinition(name: string, args: Ipv4DeviceAclPolicyDefinitionArgs, opts?: CustomResourceOptions);@overload
def Ipv4DeviceAclPolicyDefinition(resource_name: str,
                                  args: Ipv4DeviceAclPolicyDefinitionArgs,
                                  opts: Optional[ResourceOptions] = None)
@overload
def Ipv4DeviceAclPolicyDefinition(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  description: Optional[str] = None,
                                  sequences: Optional[Sequence[Ipv4DeviceAclPolicyDefinitionSequenceArgs]] = None,
                                  default_action: Optional[str] = None,
                                  name: Optional[str] = None)func NewIpv4DeviceAclPolicyDefinition(ctx *Context, name string, args Ipv4DeviceAclPolicyDefinitionArgs, opts ...ResourceOption) (*Ipv4DeviceAclPolicyDefinition, error)public Ipv4DeviceAclPolicyDefinition(string name, Ipv4DeviceAclPolicyDefinitionArgs args, CustomResourceOptions? opts = null)
public Ipv4DeviceAclPolicyDefinition(String name, Ipv4DeviceAclPolicyDefinitionArgs args)
public Ipv4DeviceAclPolicyDefinition(String name, Ipv4DeviceAclPolicyDefinitionArgs args, CustomResourceOptions options)
type: sdwan:Ipv4DeviceAclPolicyDefinition
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 Ipv4DeviceAclPolicyDefinitionArgs
- 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 Ipv4DeviceAclPolicyDefinitionArgs
- 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 Ipv4DeviceAclPolicyDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Ipv4DeviceAclPolicyDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Ipv4DeviceAclPolicyDefinitionArgs
- 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 ipv4DeviceAclPolicyDefinitionResource = new Sdwan.Ipv4DeviceAclPolicyDefinition("ipv4DeviceAclPolicyDefinitionResource", new()
{
    Description = "string",
    Sequences = new[]
    {
        new Sdwan.Inputs.Ipv4DeviceAclPolicyDefinitionSequenceArgs
        {
            Id = 0,
            Name = "string",
            ActionEntries = new[]
            {
                new Sdwan.Inputs.Ipv4DeviceAclPolicyDefinitionSequenceActionEntryArgs
                {
                    Type = "string",
                    CounterName = "string",
                },
            },
            BaseAction = "string",
            MatchEntries = new[]
            {
                new Sdwan.Inputs.Ipv4DeviceAclPolicyDefinitionSequenceMatchEntryArgs
                {
                    Type = "string",
                    DestinationDataIpv4PrefixListId = "string",
                    DestinationDataIpv4PrefixListVersion = 0,
                    DestinationIp = "string",
                    DestinationPort = 0,
                    SourceDataIpv4PrefixListId = "string",
                    SourceDataIpv4PrefixListVersion = 0,
                    SourceIp = "string",
                    SourcePorts = "string",
                },
            },
        },
    },
    DefaultAction = "string",
    Name = "string",
});
example, err := sdwan.NewIpv4DeviceAclPolicyDefinition(ctx, "ipv4DeviceAclPolicyDefinitionResource", &sdwan.Ipv4DeviceAclPolicyDefinitionArgs{
	Description: pulumi.String("string"),
	Sequences: sdwan.Ipv4DeviceAclPolicyDefinitionSequenceArray{
		&sdwan.Ipv4DeviceAclPolicyDefinitionSequenceArgs{
			Id:   pulumi.Int(0),
			Name: pulumi.String("string"),
			ActionEntries: sdwan.Ipv4DeviceAclPolicyDefinitionSequenceActionEntryArray{
				&sdwan.Ipv4DeviceAclPolicyDefinitionSequenceActionEntryArgs{
					Type:        pulumi.String("string"),
					CounterName: pulumi.String("string"),
				},
			},
			BaseAction: pulumi.String("string"),
			MatchEntries: sdwan.Ipv4DeviceAclPolicyDefinitionSequenceMatchEntryArray{
				&sdwan.Ipv4DeviceAclPolicyDefinitionSequenceMatchEntryArgs{
					Type:                                 pulumi.String("string"),
					DestinationDataIpv4PrefixListId:      pulumi.String("string"),
					DestinationDataIpv4PrefixListVersion: pulumi.Int(0),
					DestinationIp:                        pulumi.String("string"),
					DestinationPort:                      pulumi.Int(0),
					SourceDataIpv4PrefixListId:           pulumi.String("string"),
					SourceDataIpv4PrefixListVersion:      pulumi.Int(0),
					SourceIp:                             pulumi.String("string"),
					SourcePorts:                          pulumi.String("string"),
				},
			},
		},
	},
	DefaultAction: pulumi.String("string"),
	Name:          pulumi.String("string"),
})
var ipv4DeviceAclPolicyDefinitionResource = new Ipv4DeviceAclPolicyDefinition("ipv4DeviceAclPolicyDefinitionResource", Ipv4DeviceAclPolicyDefinitionArgs.builder()
    .description("string")
    .sequences(Ipv4DeviceAclPolicyDefinitionSequenceArgs.builder()
        .id(0)
        .name("string")
        .actionEntries(Ipv4DeviceAclPolicyDefinitionSequenceActionEntryArgs.builder()
            .type("string")
            .counterName("string")
            .build())
        .baseAction("string")
        .matchEntries(Ipv4DeviceAclPolicyDefinitionSequenceMatchEntryArgs.builder()
            .type("string")
            .destinationDataIpv4PrefixListId("string")
            .destinationDataIpv4PrefixListVersion(0)
            .destinationIp("string")
            .destinationPort(0)
            .sourceDataIpv4PrefixListId("string")
            .sourceDataIpv4PrefixListVersion(0)
            .sourceIp("string")
            .sourcePorts("string")
            .build())
        .build())
    .defaultAction("string")
    .name("string")
    .build());
ipv4_device_acl_policy_definition_resource = sdwan.Ipv4DeviceAclPolicyDefinition("ipv4DeviceAclPolicyDefinitionResource",
    description="string",
    sequences=[{
        "id": 0,
        "name": "string",
        "action_entries": [{
            "type": "string",
            "counter_name": "string",
        }],
        "base_action": "string",
        "match_entries": [{
            "type": "string",
            "destination_data_ipv4_prefix_list_id": "string",
            "destination_data_ipv4_prefix_list_version": 0,
            "destination_ip": "string",
            "destination_port": 0,
            "source_data_ipv4_prefix_list_id": "string",
            "source_data_ipv4_prefix_list_version": 0,
            "source_ip": "string",
            "source_ports": "string",
        }],
    }],
    default_action="string",
    name="string")
const ipv4DeviceAclPolicyDefinitionResource = new sdwan.Ipv4DeviceAclPolicyDefinition("ipv4DeviceAclPolicyDefinitionResource", {
    description: "string",
    sequences: [{
        id: 0,
        name: "string",
        actionEntries: [{
            type: "string",
            counterName: "string",
        }],
        baseAction: "string",
        matchEntries: [{
            type: "string",
            destinationDataIpv4PrefixListId: "string",
            destinationDataIpv4PrefixListVersion: 0,
            destinationIp: "string",
            destinationPort: 0,
            sourceDataIpv4PrefixListId: "string",
            sourceDataIpv4PrefixListVersion: 0,
            sourceIp: "string",
            sourcePorts: "string",
        }],
    }],
    defaultAction: "string",
    name: "string",
});
type: sdwan:Ipv4DeviceAclPolicyDefinition
properties:
    defaultAction: string
    description: string
    name: string
    sequences:
        - actionEntries:
            - counterName: string
              type: string
          baseAction: string
          id: 0
          matchEntries:
            - destinationDataIpv4PrefixListId: string
              destinationDataIpv4PrefixListVersion: 0
              destinationIp: string
              destinationPort: 0
              sourceDataIpv4PrefixListId: string
              sourceDataIpv4PrefixListVersion: 0
              sourceIp: string
              sourcePorts: string
              type: string
          name: string
Ipv4DeviceAclPolicyDefinition 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 Ipv4DeviceAclPolicyDefinition resource accepts the following input properties:
- Description string
- The description of the policy definition
- Sequences
List<Ipv4DeviceAcl Policy Definition Sequence> 
- List of ACL sequences
- DefaultAction string
- Default action, either acceptordrop- Choices:accept,drop
- Name string
- The name of the policy definition
- Description string
- The description of the policy definition
- Sequences
[]Ipv4DeviceAcl Policy Definition Sequence Args 
- List of ACL sequences
- DefaultAction string
- Default action, either acceptordrop- Choices:accept,drop
- Name string
- The name of the policy definition
- description String
- The description of the policy definition
- sequences
List<Ipv4DeviceAcl Policy Definition Sequence> 
- List of ACL sequences
- defaultAction String
- Default action, either acceptordrop- Choices:accept,drop
- name String
- The name of the policy definition
- description string
- The description of the policy definition
- sequences
Ipv4DeviceAcl Policy Definition Sequence[] 
- List of ACL sequences
- defaultAction string
- Default action, either acceptordrop- Choices:accept,drop
- name string
- The name of the policy definition
- description str
- The description of the policy definition
- sequences
Sequence[Ipv4DeviceAcl Policy Definition Sequence Args] 
- List of ACL sequences
- default_action str
- Default action, either acceptordrop- Choices:accept,drop
- name str
- The name of the policy definition
- description String
- The description of the policy definition
- sequences List<Property Map>
- List of ACL sequences
- defaultAction String
- Default action, either acceptordrop- Choices:accept,drop
- name String
- The name of the policy definition
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipv4DeviceAclPolicyDefinition resource produces the following output properties:
Look up Existing Ipv4DeviceAclPolicyDefinition Resource
Get an existing Ipv4DeviceAclPolicyDefinition 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?: Ipv4DeviceAclPolicyDefinitionState, opts?: CustomResourceOptions): Ipv4DeviceAclPolicyDefinition@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        default_action: Optional[str] = None,
        description: Optional[str] = None,
        name: Optional[str] = None,
        sequences: Optional[Sequence[Ipv4DeviceAclPolicyDefinitionSequenceArgs]] = None,
        type: Optional[str] = None,
        version: Optional[int] = None) -> Ipv4DeviceAclPolicyDefinitionfunc GetIpv4DeviceAclPolicyDefinition(ctx *Context, name string, id IDInput, state *Ipv4DeviceAclPolicyDefinitionState, opts ...ResourceOption) (*Ipv4DeviceAclPolicyDefinition, error)public static Ipv4DeviceAclPolicyDefinition Get(string name, Input<string> id, Ipv4DeviceAclPolicyDefinitionState? state, CustomResourceOptions? opts = null)public static Ipv4DeviceAclPolicyDefinition get(String name, Output<String> id, Ipv4DeviceAclPolicyDefinitionState state, CustomResourceOptions options)resources:  _:    type: sdwan:Ipv4DeviceAclPolicyDefinition    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, either acceptordrop- Choices:accept,drop
- Description string
- The description of the policy definition
- Name string
- The name of the policy definition
- Sequences
List<Ipv4DeviceAcl Policy Definition Sequence> 
- List of ACL sequences
- Type string
- Type
- Version int
- The version of the object
- DefaultAction string
- Default action, either acceptordrop- Choices:accept,drop
- Description string
- The description of the policy definition
- Name string
- The name of the policy definition
- Sequences
[]Ipv4DeviceAcl Policy Definition Sequence Args 
- List of ACL sequences
- Type string
- Type
- Version int
- The version of the object
- defaultAction String
- Default action, either acceptordrop- Choices:accept,drop
- description String
- The description of the policy definition
- name String
- The name of the policy definition
- sequences
List<Ipv4DeviceAcl Policy Definition Sequence> 
- List of ACL sequences
- type String
- Type
- version Integer
- The version of the object
- defaultAction string
- Default action, either acceptordrop- Choices:accept,drop
- description string
- The description of the policy definition
- name string
- The name of the policy definition
- sequences
Ipv4DeviceAcl Policy Definition Sequence[] 
- List of ACL sequences
- type string
- Type
- version number
- The version of the object
- default_action str
- Default action, either acceptordrop- Choices:accept,drop
- description str
- The description of the policy definition
- name str
- The name of the policy definition
- sequences
Sequence[Ipv4DeviceAcl Policy Definition Sequence Args] 
- List of ACL sequences
- type str
- Type
- version int
- The version of the object
- defaultAction String
- Default action, either acceptordrop- Choices:accept,drop
- description String
- The description of the policy definition
- name String
- The name of the policy definition
- sequences List<Property Map>
- List of ACL sequences
- type String
- Type
- version Number
- The version of the object
Supporting Types
Ipv4DeviceAclPolicyDefinitionSequence, Ipv4DeviceAclPolicyDefinitionSequenceArgs          
- Id int
- Sequence ID- Range: 1-65534
 
- Range: 
- Name string
- Sequence name
- ActionEntries List<Ipv4DeviceAcl Policy Definition Sequence Action Entry> 
- List of action entries
- BaseAction string
- Base action, either acceptordrop- Choices: accept,drop
 
- Choices: 
- MatchEntries List<Ipv4DeviceAcl Policy Definition Sequence Match Entry> 
- List of match entries
- Id int
- Sequence ID- Range: 1-65534
 
- Range: 
- Name string
- Sequence name
- ActionEntries []Ipv4DeviceAcl Policy Definition Sequence Action Entry 
- List of action entries
- BaseAction string
- Base action, either acceptordrop- Choices: accept,drop
 
- Choices: 
- MatchEntries []Ipv4DeviceAcl Policy Definition Sequence Match Entry 
- List of match entries
- id Integer
- Sequence ID- Range: 1-65534
 
- Range: 
- name String
- Sequence name
- actionEntries List<Ipv4DeviceAcl Policy Definition Sequence Action Entry> 
- List of action entries
- baseAction String
- Base action, either acceptordrop- Choices: accept,drop
 
- Choices: 
- matchEntries List<Ipv4DeviceAcl Policy Definition Sequence Match Entry> 
- List of match entries
- id number
- Sequence ID- Range: 1-65534
 
- Range: 
- name string
- Sequence name
- actionEntries Ipv4DeviceAcl Policy Definition Sequence Action Entry[] 
- List of action entries
- baseAction string
- Base action, either acceptordrop- Choices: accept,drop
 
- Choices: 
- matchEntries Ipv4DeviceAcl Policy Definition Sequence Match Entry[] 
- List of match entries
- id int
- Sequence ID- Range: 1-65534
 
- Range: 
- name str
- Sequence name
- action_entries Sequence[Ipv4DeviceAcl Policy Definition Sequence Action Entry] 
- List of action entries
- base_action str
- Base action, either acceptordrop- Choices: accept,drop
 
- Choices: 
- match_entries Sequence[Ipv4DeviceAcl Policy Definition Sequence Match Entry] 
- List of match entries
- id Number
- Sequence ID- Range: 1-65534
 
- Range: 
- name String
- Sequence name
- actionEntries List<Property Map>
- List of action entries
- baseAction String
- Base action, either acceptordrop- Choices: accept,drop
 
- Choices: 
- matchEntries List<Property Map>
- List of match entries
Ipv4DeviceAclPolicyDefinitionSequenceActionEntry, Ipv4DeviceAclPolicyDefinitionSequenceActionEntryArgs              
- Type string
- Type of action entry- Choices: count
 
- Choices: 
- CounterName string
- Counter name, Attribute conditional on typebeing equal tocount
- Type string
- Type of action entry- Choices: count
 
- Choices: 
- CounterName string
- Counter name, Attribute conditional on typebeing equal tocount
- type String
- Type of action entry- Choices: count
 
- Choices: 
- counterName String
- Counter name, Attribute conditional on typebeing equal tocount
- type string
- Type of action entry- Choices: count
 
- Choices: 
- counterName string
- Counter name, Attribute conditional on typebeing equal tocount
- type str
- Type of action entry- Choices: count
 
- Choices: 
- counter_name str
- Counter name, Attribute conditional on typebeing equal tocount
- type String
- Type of action entry- Choices: count
 
- Choices: 
- counterName String
- Counter name, Attribute conditional on typebeing equal tocount
Ipv4DeviceAclPolicyDefinitionSequenceMatchEntry, Ipv4DeviceAclPolicyDefinitionSequenceMatchEntryArgs              
- Type string
- Type of match entry- Choices: sourceIp,destinationIp,sourcePort,destinationPort,sourceDataPrefixList,destinationDataPrefixList
 
- Choices: 
- DestinationData stringIpv4Prefix List Id 
- Destination data IPv4 prefix list ID, Attribute conditional on typebeing equal todestinationDataPrefixList
- DestinationData intIpv4Prefix List Version 
- Destination data IPv4 prefix list version
- DestinationIp string
- Destination IP prefix, Attribute conditional on typebeing equal todestinationIp
- DestinationPort int
- Destination port, only 22and161supported, Attribute conditional ontypebeing equal todestinationPort- Range: 0-65535
 
- Range: 
- SourceData stringIpv4Prefix List Id 
- Source data IPv4 prefix list ID, Attribute conditional on typebeing equal tosourceDataPrefixList
- SourceData intIpv4Prefix List Version 
- Source data IPv4 prefix list version
- SourceIp string
- Source IP prefix, Attribute conditional on typebeing equal tosourceIp
- SourcePorts string
- Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on typebeing equal tosourcePort
- Type string
- Type of match entry- Choices: sourceIp,destinationIp,sourcePort,destinationPort,sourceDataPrefixList,destinationDataPrefixList
 
- Choices: 
- DestinationData stringIpv4Prefix List Id 
- Destination data IPv4 prefix list ID, Attribute conditional on typebeing equal todestinationDataPrefixList
- DestinationData intIpv4Prefix List Version 
- Destination data IPv4 prefix list version
- DestinationIp string
- Destination IP prefix, Attribute conditional on typebeing equal todestinationIp
- DestinationPort int
- Destination port, only 22and161supported, Attribute conditional ontypebeing equal todestinationPort- Range: 0-65535
 
- Range: 
- SourceData stringIpv4Prefix List Id 
- Source data IPv4 prefix list ID, Attribute conditional on typebeing equal tosourceDataPrefixList
- SourceData intIpv4Prefix List Version 
- Source data IPv4 prefix list version
- SourceIp string
- Source IP prefix, Attribute conditional on typebeing equal tosourceIp
- SourcePorts string
- Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on typebeing equal tosourcePort
- type String
- Type of match entry- Choices: sourceIp,destinationIp,sourcePort,destinationPort,sourceDataPrefixList,destinationDataPrefixList
 
- Choices: 
- destinationData StringIpv4Prefix List Id 
- Destination data IPv4 prefix list ID, Attribute conditional on typebeing equal todestinationDataPrefixList
- destinationData IntegerIpv4Prefix List Version 
- Destination data IPv4 prefix list version
- destinationIp String
- Destination IP prefix, Attribute conditional on typebeing equal todestinationIp
- destinationPort Integer
- Destination port, only 22and161supported, Attribute conditional ontypebeing equal todestinationPort- Range: 0-65535
 
- Range: 
- sourceData StringIpv4Prefix List Id 
- Source data IPv4 prefix list ID, Attribute conditional on typebeing equal tosourceDataPrefixList
- sourceData IntegerIpv4Prefix List Version 
- Source data IPv4 prefix list version
- sourceIp String
- Source IP prefix, Attribute conditional on typebeing equal tosourceIp
- sourcePorts String
- Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on typebeing equal tosourcePort
- type string
- Type of match entry- Choices: sourceIp,destinationIp,sourcePort,destinationPort,sourceDataPrefixList,destinationDataPrefixList
 
- Choices: 
- destinationData stringIpv4Prefix List Id 
- Destination data IPv4 prefix list ID, Attribute conditional on typebeing equal todestinationDataPrefixList
- destinationData numberIpv4Prefix List Version 
- Destination data IPv4 prefix list version
- destinationIp string
- Destination IP prefix, Attribute conditional on typebeing equal todestinationIp
- destinationPort number
- Destination port, only 22and161supported, Attribute conditional ontypebeing equal todestinationPort- Range: 0-65535
 
- Range: 
- sourceData stringIpv4Prefix List Id 
- Source data IPv4 prefix list ID, Attribute conditional on typebeing equal tosourceDataPrefixList
- sourceData numberIpv4Prefix List Version 
- Source data IPv4 prefix list version
- sourceIp string
- Source IP prefix, Attribute conditional on typebeing equal tosourceIp
- sourcePorts string
- Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on typebeing equal tosourcePort
- type str
- Type of match entry- Choices: sourceIp,destinationIp,sourcePort,destinationPort,sourceDataPrefixList,destinationDataPrefixList
 
- Choices: 
- destination_data_ stripv4_ prefix_ list_ id 
- Destination data IPv4 prefix list ID, Attribute conditional on typebeing equal todestinationDataPrefixList
- destination_data_ intipv4_ prefix_ list_ version 
- Destination data IPv4 prefix list version
- destination_ip str
- Destination IP prefix, Attribute conditional on typebeing equal todestinationIp
- destination_port int
- Destination port, only 22and161supported, Attribute conditional ontypebeing equal todestinationPort- Range: 0-65535
 
- Range: 
- source_data_ stripv4_ prefix_ list_ id 
- Source data IPv4 prefix list ID, Attribute conditional on typebeing equal tosourceDataPrefixList
- source_data_ intipv4_ prefix_ list_ version 
- Source data IPv4 prefix list version
- source_ip str
- Source IP prefix, Attribute conditional on typebeing equal tosourceIp
- source_ports str
- Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on typebeing equal tosourcePort
- type String
- Type of match entry- Choices: sourceIp,destinationIp,sourcePort,destinationPort,sourceDataPrefixList,destinationDataPrefixList
 
- Choices: 
- destinationData StringIpv4Prefix List Id 
- Destination data IPv4 prefix list ID, Attribute conditional on typebeing equal todestinationDataPrefixList
- destinationData NumberIpv4Prefix List Version 
- Destination data IPv4 prefix list version
- destinationIp String
- Destination IP prefix, Attribute conditional on typebeing equal todestinationIp
- destinationPort Number
- Destination port, only 22and161supported, Attribute conditional ontypebeing equal todestinationPort- Range: 0-65535
 
- Range: 
- sourceData StringIpv4Prefix List Id 
- Source data IPv4 prefix list ID, Attribute conditional on typebeing equal tosourceDataPrefixList
- sourceData NumberIpv4Prefix List Version 
- Source data IPv4 prefix list version
- sourceIp String
- Source IP prefix, Attribute conditional on typebeing equal tosourceIp
- sourcePorts String
- Source ports. Single value (0-65535) or ranges separated by spaces., Attribute conditional on typebeing equal tosourcePort
Import
$ pulumi import sdwan:index/ipv4DeviceAclPolicyDefinition:Ipv4DeviceAclPolicyDefinition example "f6b2c44c-693c-4763-b010-895aa3d236bd"
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.
