1. Packages
  2. Vcd Provider
  3. API Docs
  4. NsxvDistributedFirewall
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

vcd.NsxvDistributedFirewall

Explore with Pulumi AI

vcd logo
vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware

    Create NsxvDistributedFirewall Resource

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

    Constructor syntax

    new NsxvDistributedFirewall(name: string, args: NsxvDistributedFirewallArgs, opts?: CustomResourceOptions);
    @overload
    def NsxvDistributedFirewall(resource_name: str,
                                args: NsxvDistributedFirewallArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def NsxvDistributedFirewall(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                vdc_id: Optional[str] = None,
                                nsxv_distributed_firewall_id: Optional[str] = None,
                                rules: Optional[Sequence[NsxvDistributedFirewallRuleArgs]] = None)
    func NewNsxvDistributedFirewall(ctx *Context, name string, args NsxvDistributedFirewallArgs, opts ...ResourceOption) (*NsxvDistributedFirewall, error)
    public NsxvDistributedFirewall(string name, NsxvDistributedFirewallArgs args, CustomResourceOptions? opts = null)
    public NsxvDistributedFirewall(String name, NsxvDistributedFirewallArgs args)
    public NsxvDistributedFirewall(String name, NsxvDistributedFirewallArgs args, CustomResourceOptions options)
    
    type: vcd:NsxvDistributedFirewall
    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 NsxvDistributedFirewallArgs
    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 NsxvDistributedFirewallArgs
    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 NsxvDistributedFirewallArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args NsxvDistributedFirewallArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args NsxvDistributedFirewallArgs
    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 nsxvDistributedFirewallResource = new Vcd.NsxvDistributedFirewall("nsxvDistributedFirewallResource", new()
    {
        VdcId = "string",
        NsxvDistributedFirewallId = "string",
        Rules = new[]
        {
            new Vcd.Inputs.NsxvDistributedFirewallRuleArgs
            {
                Direction = "string",
                Action = "string",
                AppliedTos = new[]
                {
                    new Vcd.Inputs.NsxvDistributedFirewallRuleAppliedToArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
                ExcludeDestination = false,
                Destinations = new[]
                {
                    new Vcd.Inputs.NsxvDistributedFirewallRuleDestinationArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
                Enabled = false,
                Applications = new[]
                {
                    new Vcd.Inputs.NsxvDistributedFirewallRuleApplicationArgs
                    {
                        DestinationPort = "string",
                        Name = "string",
                        Protocol = "string",
                        SourcePort = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
                ExcludeSource = false,
                Id = 0,
                Logged = false,
                Name = "string",
                PacketType = "string",
                Sources = new[]
                {
                    new Vcd.Inputs.NsxvDistributedFirewallRuleSourceArgs
                    {
                        Name = "string",
                        Type = "string",
                        Value = "string",
                    },
                },
            },
        },
    });
    
    example, err := vcd.NewNsxvDistributedFirewall(ctx, "nsxvDistributedFirewallResource", &vcd.NsxvDistributedFirewallArgs{
    	VdcId:                     pulumi.String("string"),
    	NsxvDistributedFirewallId: pulumi.String("string"),
    	Rules: vcd.NsxvDistributedFirewallRuleArray{
    		&vcd.NsxvDistributedFirewallRuleArgs{
    			Direction: pulumi.String("string"),
    			Action:    pulumi.String("string"),
    			AppliedTos: vcd.NsxvDistributedFirewallRuleAppliedToArray{
    				&vcd.NsxvDistributedFirewallRuleAppliedToArgs{
    					Name:  pulumi.String("string"),
    					Type:  pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    			ExcludeDestination: pulumi.Bool(false),
    			Destinations: vcd.NsxvDistributedFirewallRuleDestinationArray{
    				&vcd.NsxvDistributedFirewallRuleDestinationArgs{
    					Name:  pulumi.String("string"),
    					Type:  pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    			Enabled: pulumi.Bool(false),
    			Applications: vcd.NsxvDistributedFirewallRuleApplicationArray{
    				&vcd.NsxvDistributedFirewallRuleApplicationArgs{
    					DestinationPort: pulumi.String("string"),
    					Name:            pulumi.String("string"),
    					Protocol:        pulumi.String("string"),
    					SourcePort:      pulumi.String("string"),
    					Type:            pulumi.String("string"),
    					Value:           pulumi.String("string"),
    				},
    			},
    			ExcludeSource: pulumi.Bool(false),
    			Id:            pulumi.Float64(0),
    			Logged:        pulumi.Bool(false),
    			Name:          pulumi.String("string"),
    			PacketType:    pulumi.String("string"),
    			Sources: vcd.NsxvDistributedFirewallRuleSourceArray{
    				&vcd.NsxvDistributedFirewallRuleSourceArgs{
    					Name:  pulumi.String("string"),
    					Type:  pulumi.String("string"),
    					Value: pulumi.String("string"),
    				},
    			},
    		},
    	},
    })
    
    var nsxvDistributedFirewallResource = new NsxvDistributedFirewall("nsxvDistributedFirewallResource", NsxvDistributedFirewallArgs.builder()
        .vdcId("string")
        .nsxvDistributedFirewallId("string")
        .rules(NsxvDistributedFirewallRuleArgs.builder()
            .direction("string")
            .action("string")
            .appliedTos(NsxvDistributedFirewallRuleAppliedToArgs.builder()
                .name("string")
                .type("string")
                .value("string")
                .build())
            .excludeDestination(false)
            .destinations(NsxvDistributedFirewallRuleDestinationArgs.builder()
                .name("string")
                .type("string")
                .value("string")
                .build())
            .enabled(false)
            .applications(NsxvDistributedFirewallRuleApplicationArgs.builder()
                .destinationPort("string")
                .name("string")
                .protocol("string")
                .sourcePort("string")
                .type("string")
                .value("string")
                .build())
            .excludeSource(false)
            .id(0)
            .logged(false)
            .name("string")
            .packetType("string")
            .sources(NsxvDistributedFirewallRuleSourceArgs.builder()
                .name("string")
                .type("string")
                .value("string")
                .build())
            .build())
        .build());
    
    nsxv_distributed_firewall_resource = vcd.NsxvDistributedFirewall("nsxvDistributedFirewallResource",
        vdc_id="string",
        nsxv_distributed_firewall_id="string",
        rules=[{
            "direction": "string",
            "action": "string",
            "applied_tos": [{
                "name": "string",
                "type": "string",
                "value": "string",
            }],
            "exclude_destination": False,
            "destinations": [{
                "name": "string",
                "type": "string",
                "value": "string",
            }],
            "enabled": False,
            "applications": [{
                "destination_port": "string",
                "name": "string",
                "protocol": "string",
                "source_port": "string",
                "type": "string",
                "value": "string",
            }],
            "exclude_source": False,
            "id": 0,
            "logged": False,
            "name": "string",
            "packet_type": "string",
            "sources": [{
                "name": "string",
                "type": "string",
                "value": "string",
            }],
        }])
    
    const nsxvDistributedFirewallResource = new vcd.NsxvDistributedFirewall("nsxvDistributedFirewallResource", {
        vdcId: "string",
        nsxvDistributedFirewallId: "string",
        rules: [{
            direction: "string",
            action: "string",
            appliedTos: [{
                name: "string",
                type: "string",
                value: "string",
            }],
            excludeDestination: false,
            destinations: [{
                name: "string",
                type: "string",
                value: "string",
            }],
            enabled: false,
            applications: [{
                destinationPort: "string",
                name: "string",
                protocol: "string",
                sourcePort: "string",
                type: "string",
                value: "string",
            }],
            excludeSource: false,
            id: 0,
            logged: false,
            name: "string",
            packetType: "string",
            sources: [{
                name: "string",
                type: "string",
                value: "string",
            }],
        }],
    });
    
    type: vcd:NsxvDistributedFirewall
    properties:
        nsxvDistributedFirewallId: string
        rules:
            - action: string
              applications:
                - destinationPort: string
                  name: string
                  protocol: string
                  sourcePort: string
                  type: string
                  value: string
              appliedTos:
                - name: string
                  type: string
                  value: string
              destinations:
                - name: string
                  type: string
                  value: string
              direction: string
              enabled: false
              excludeDestination: false
              excludeSource: false
              id: 0
              logged: false
              name: string
              packetType: string
              sources:
                - name: string
                  type: string
                  value: string
        vdcId: string
    

    NsxvDistributedFirewall 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 NsxvDistributedFirewall resource accepts the following input properties:

    VdcId string
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    NsxvDistributedFirewallId string
    Rules List<NsxvDistributedFirewallRule>
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    VdcId string
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    NsxvDistributedFirewallId string
    Rules []NsxvDistributedFirewallRuleArgs
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdcId String
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    nsxvDistributedFirewallId String
    rules List<NsxvDistributedFirewallRule>
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdcId string
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    nsxvDistributedFirewallId string
    rules NsxvDistributedFirewallRule[]
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdc_id str
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    nsxv_distributed_firewall_id str
    rules Sequence[NsxvDistributedFirewallRuleArgs]
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdcId String
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    nsxvDistributedFirewallId String
    rules List<Property Map>
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall

    Outputs

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

    Enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    Id string
    The provider-assigned unique ID for this managed resource.
    Enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    Id string
    The provider-assigned unique ID for this managed resource.
    enabled Boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    id String
    The provider-assigned unique ID for this managed resource.
    enabled boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    id string
    The provider-assigned unique ID for this managed resource.
    enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    id str
    The provider-assigned unique ID for this managed resource.
    enabled Boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing NsxvDistributedFirewall Resource

    Get an existing NsxvDistributedFirewall 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?: NsxvDistributedFirewallState, opts?: CustomResourceOptions): NsxvDistributedFirewall
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            enabled: Optional[bool] = None,
            nsxv_distributed_firewall_id: Optional[str] = None,
            rules: Optional[Sequence[NsxvDistributedFirewallRuleArgs]] = None,
            vdc_id: Optional[str] = None) -> NsxvDistributedFirewall
    func GetNsxvDistributedFirewall(ctx *Context, name string, id IDInput, state *NsxvDistributedFirewallState, opts ...ResourceOption) (*NsxvDistributedFirewall, error)
    public static NsxvDistributedFirewall Get(string name, Input<string> id, NsxvDistributedFirewallState? state, CustomResourceOptions? opts = null)
    public static NsxvDistributedFirewall get(String name, Output<String> id, NsxvDistributedFirewallState state, CustomResourceOptions options)
    resources:  _:    type: vcd:NsxvDistributedFirewall    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.
    The following state arguments are supported:
    Enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    NsxvDistributedFirewallId string
    Rules List<NsxvDistributedFirewallRule>
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    VdcId string
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    Enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    NsxvDistributedFirewallId string
    Rules []NsxvDistributedFirewallRuleArgs
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    VdcId string
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    enabled Boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    nsxvDistributedFirewallId String
    rules List<NsxvDistributedFirewallRule>
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdcId String
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    enabled boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    nsxvDistributedFirewallId string
    rules NsxvDistributedFirewallRule[]
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdcId string
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    nsxv_distributed_firewall_id str
    rules Sequence[NsxvDistributedFirewallRuleArgs]
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdc_id str
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source
    enabled Boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    nsxvDistributedFirewallId String
    rules List<Property Map>
    One or more blocks with Firewall Rule definitions. Order defines firewall rule precedence. If no rules are defined, all will be removed from the firewall
    vdcId String
    The ID of VDC to manage the Distributed Firewall in. Can be looked up using a vcd.OrgVdc data source

    Supporting Types

    NsxvDistributedFirewallRule, NsxvDistributedFirewallRuleArgs

    Action string
    Action of the rule (allow, deny)
    AppliedTos List<NsxvDistributedFirewallRuleAppliedTo>
    List of elements to which this rule applies
    Direction string
    Direction of the rule (in, out, inout)
    Applications List<NsxvDistributedFirewallRuleApplication>
    Application definitions for this rule. An empty value means 'any'
    Destinations List<NsxvDistributedFirewallRuleDestination>
    List of destination traffic for this rule. An empty value means 'any'
    Enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    ExcludeDestination bool
    If true, the content of the destination elements is reversed
    ExcludeSource bool
    If true, the content of the source elements is reversed
    Id double
    Firewall Rule ID
    Logged bool
    Whether the rule traffic is logged
    Name string
    Firewall Rule name
    PacketType string
    Packet type of the rule (any, ipv4, ipv6)
    Sources List<NsxvDistributedFirewallRuleSource>
    List of source traffic for this rule. An empty value means 'any'
    Action string
    Action of the rule (allow, deny)
    AppliedTos []NsxvDistributedFirewallRuleAppliedTo
    List of elements to which this rule applies
    Direction string
    Direction of the rule (in, out, inout)
    Applications []NsxvDistributedFirewallRuleApplication
    Application definitions for this rule. An empty value means 'any'
    Destinations []NsxvDistributedFirewallRuleDestination
    List of destination traffic for this rule. An empty value means 'any'
    Enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    ExcludeDestination bool
    If true, the content of the destination elements is reversed
    ExcludeSource bool
    If true, the content of the source elements is reversed
    Id float64
    Firewall Rule ID
    Logged bool
    Whether the rule traffic is logged
    Name string
    Firewall Rule name
    PacketType string
    Packet type of the rule (any, ipv4, ipv6)
    Sources []NsxvDistributedFirewallRuleSource
    List of source traffic for this rule. An empty value means 'any'
    action String
    Action of the rule (allow, deny)
    appliedTos List<NsxvDistributedFirewallRuleAppliedTo>
    List of elements to which this rule applies
    direction String
    Direction of the rule (in, out, inout)
    applications List<NsxvDistributedFirewallRuleApplication>
    Application definitions for this rule. An empty value means 'any'
    destinations List<NsxvDistributedFirewallRuleDestination>
    List of destination traffic for this rule. An empty value means 'any'
    enabled Boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    excludeDestination Boolean
    If true, the content of the destination elements is reversed
    excludeSource Boolean
    If true, the content of the source elements is reversed
    id Double
    Firewall Rule ID
    logged Boolean
    Whether the rule traffic is logged
    name String
    Firewall Rule name
    packetType String
    Packet type of the rule (any, ipv4, ipv6)
    sources List<NsxvDistributedFirewallRuleSource>
    List of source traffic for this rule. An empty value means 'any'
    action string
    Action of the rule (allow, deny)
    appliedTos NsxvDistributedFirewallRuleAppliedTo[]
    List of elements to which this rule applies
    direction string
    Direction of the rule (in, out, inout)
    applications NsxvDistributedFirewallRuleApplication[]
    Application definitions for this rule. An empty value means 'any'
    destinations NsxvDistributedFirewallRuleDestination[]
    List of destination traffic for this rule. An empty value means 'any'
    enabled boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    excludeDestination boolean
    If true, the content of the destination elements is reversed
    excludeSource boolean
    If true, the content of the source elements is reversed
    id number
    Firewall Rule ID
    logged boolean
    Whether the rule traffic is logged
    name string
    Firewall Rule name
    packetType string
    Packet type of the rule (any, ipv4, ipv6)
    sources NsxvDistributedFirewallRuleSource[]
    List of source traffic for this rule. An empty value means 'any'
    action str
    Action of the rule (allow, deny)
    applied_tos Sequence[NsxvDistributedFirewallRuleAppliedTo]
    List of elements to which this rule applies
    direction str
    Direction of the rule (in, out, inout)
    applications Sequence[NsxvDistributedFirewallRuleApplication]
    Application definitions for this rule. An empty value means 'any'
    destinations Sequence[NsxvDistributedFirewallRuleDestination]
    List of destination traffic for this rule. An empty value means 'any'
    enabled bool
    Shows whether the NSX-V Distributed Firewall is enabled.
    exclude_destination bool
    If true, the content of the destination elements is reversed
    exclude_source bool
    If true, the content of the source elements is reversed
    id float
    Firewall Rule ID
    logged bool
    Whether the rule traffic is logged
    name str
    Firewall Rule name
    packet_type str
    Packet type of the rule (any, ipv4, ipv6)
    sources Sequence[NsxvDistributedFirewallRuleSource]
    List of source traffic for this rule. An empty value means 'any'
    action String
    Action of the rule (allow, deny)
    appliedTos List<Property Map>
    List of elements to which this rule applies
    direction String
    Direction of the rule (in, out, inout)
    applications List<Property Map>
    Application definitions for this rule. An empty value means 'any'
    destinations List<Property Map>
    List of destination traffic for this rule. An empty value means 'any'
    enabled Boolean
    Shows whether the NSX-V Distributed Firewall is enabled.
    excludeDestination Boolean
    If true, the content of the destination elements is reversed
    excludeSource Boolean
    If true, the content of the source elements is reversed
    id Number
    Firewall Rule ID
    logged Boolean
    Whether the rule traffic is logged
    name String
    Firewall Rule name
    packetType String
    Packet type of the rule (any, ipv4, ipv6)
    sources List<Property Map>
    List of source traffic for this rule. An empty value means 'any'

    NsxvDistributedFirewallRuleApplication, NsxvDistributedFirewallRuleApplicationArgs

    DestinationPort string
    Destination port for this application. Leaving it empty means 'any' port
    Name string
    Name of application (Application, ApplicationGroup)
    Protocol string
    Protocol of the application (one of TCP, UDP, ICMP) (When not using name/value)
    SourcePort string
    Source port for this application. Leaving it empty means 'any' port
    Type string
    Type of application
    Value string
    Value of the application
    DestinationPort string
    Destination port for this application. Leaving it empty means 'any' port
    Name string
    Name of application (Application, ApplicationGroup)
    Protocol string
    Protocol of the application (one of TCP, UDP, ICMP) (When not using name/value)
    SourcePort string
    Source port for this application. Leaving it empty means 'any' port
    Type string
    Type of application
    Value string
    Value of the application
    destinationPort String
    Destination port for this application. Leaving it empty means 'any' port
    name String
    Name of application (Application, ApplicationGroup)
    protocol String
    Protocol of the application (one of TCP, UDP, ICMP) (When not using name/value)
    sourcePort String
    Source port for this application. Leaving it empty means 'any' port
    type String
    Type of application
    value String
    Value of the application
    destinationPort string
    Destination port for this application. Leaving it empty means 'any' port
    name string
    Name of application (Application, ApplicationGroup)
    protocol string
    Protocol of the application (one of TCP, UDP, ICMP) (When not using name/value)
    sourcePort string
    Source port for this application. Leaving it empty means 'any' port
    type string
    Type of application
    value string
    Value of the application
    destination_port str
    Destination port for this application. Leaving it empty means 'any' port
    name str
    Name of application (Application, ApplicationGroup)
    protocol str
    Protocol of the application (one of TCP, UDP, ICMP) (When not using name/value)
    source_port str
    Source port for this application. Leaving it empty means 'any' port
    type str
    Type of application
    value str
    Value of the application
    destinationPort String
    Destination port for this application. Leaving it empty means 'any' port
    name String
    Name of application (Application, ApplicationGroup)
    protocol String
    Protocol of the application (one of TCP, UDP, ICMP) (When not using name/value)
    sourcePort String
    Source port for this application. Leaving it empty means 'any' port
    type String
    Type of application
    value String
    Value of the application

    NsxvDistributedFirewallRuleAppliedTo, NsxvDistributedFirewallRuleAppliedToArgs

    Name string
    Name of the applied-to entity
    Type string
    Type of the applied-to entity (one of Network, Edge, VirtualMachine, IPSet, VDC, Ipv4Address)
    Value string
    Value of the applied-to entity
    Name string
    Name of the applied-to entity
    Type string
    Type of the applied-to entity (one of Network, Edge, VirtualMachine, IPSet, VDC, Ipv4Address)
    Value string
    Value of the applied-to entity
    name String
    Name of the applied-to entity
    type String
    Type of the applied-to entity (one of Network, Edge, VirtualMachine, IPSet, VDC, Ipv4Address)
    value String
    Value of the applied-to entity
    name string
    Name of the applied-to entity
    type string
    Type of the applied-to entity (one of Network, Edge, VirtualMachine, IPSet, VDC, Ipv4Address)
    value string
    Value of the applied-to entity
    name str
    Name of the applied-to entity
    type str
    Type of the applied-to entity (one of Network, Edge, VirtualMachine, IPSet, VDC, Ipv4Address)
    value str
    Value of the applied-to entity
    name String
    Name of the applied-to entity
    type String
    Type of the applied-to entity (one of Network, Edge, VirtualMachine, IPSet, VDC, Ipv4Address)
    value String
    Value of the applied-to entity

    NsxvDistributedFirewallRuleDestination, NsxvDistributedFirewallRuleDestinationArgs

    Name string
    Name of the destination entity
    Type string
    Type of the destination entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    Value string
    Value of the destination entity
    Name string
    Name of the destination entity
    Type string
    Type of the destination entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    Value string
    Value of the destination entity
    name String
    Name of the destination entity
    type String
    Type of the destination entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value String
    Value of the destination entity
    name string
    Name of the destination entity
    type string
    Type of the destination entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value string
    Value of the destination entity
    name str
    Name of the destination entity
    type str
    Type of the destination entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value str
    Value of the destination entity
    name String
    Name of the destination entity
    type String
    Type of the destination entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value String
    Value of the destination entity

    NsxvDistributedFirewallRuleSource, NsxvDistributedFirewallRuleSourceArgs

    Name string
    Name of the source entity
    Type string
    Type of the source entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    Value string
    Value of the source entity
    Name string
    Name of the source entity
    Type string
    Type of the source entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    Value string
    Value of the source entity
    name String
    Name of the source entity
    type String
    Type of the source entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value String
    Value of the source entity
    name string
    Name of the source entity
    type string
    Type of the source entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value string
    Value of the source entity
    name str
    Name of the source entity
    type str
    Type of the source entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value str
    Value of the source entity
    name String
    Name of the source entity
    type String
    Type of the source entity (one of Network, Edge, VirtualMachine, IpSet, VDC, Ipv4Address)
    value String
    Value of the source entity

    Package Details

    Repository
    vcd vmware/terraform-provider-vcd
    License
    Notes
    This Pulumi package is based on the vcd Terraform Provider.
    vcd logo
    vcd 3.14.1 published on Monday, Apr 14, 2025 by vmware