zia logo
Zscaler Internet Access v0.0.3, Jan 30 23

zia.Firewall.FirewallFilteringNetworkServices

The zia_firewall_filtering_network_service resource allows the creation and management of ZIA Cloud Firewall IP network services in the Zscaler Internet Access. This resource can then be associated with a ZIA cloud firewall filtering rule and network service group resources.

Example Usage

using System.Collections.Generic;
using Pulumi;
using Zia = zscaler.PulumiPackage.Zia;

return await Deployment.RunAsync(() => 
{
    var example = new Zia.Firewall.FirewallFilteringNetworkServices("example", new()
    {
        Description = "example",
        DestTcpPorts = new[]
        {
            new Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestTcpPortArgs
            {
                Start = 5000,
            },
            new Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestTcpPortArgs
            {
                Start = 5001,
            },
            new Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestTcpPortArgs
            {
                End = 5005,
                Start = 5003,
            },
        },
        SrcTcpPorts = new[]
        {
            new Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcTcpPortArgs
            {
                Start = 5000,
            },
            new Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcTcpPortArgs
            {
                Start = 5001,
            },
            new Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcTcpPortArgs
            {
                End = 5005,
                Start = 5002,
            },
        },
        Type = "CUSTOM",
    });

});
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/zscaler/pulumi-zia/sdk/go/zia/Firewall"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Firewall.NewFirewallFilteringNetworkServices(ctx, "example", &Firewall.FirewallFilteringNetworkServicesArgs{
			Description: pulumi.String("example"),
			DestTcpPorts: firewall.FirewallFilteringNetworkServicesDestTcpPortArray{
				&firewall.FirewallFilteringNetworkServicesDestTcpPortArgs{
					Start: pulumi.Int(5000),
				},
				&firewall.FirewallFilteringNetworkServicesDestTcpPortArgs{
					Start: pulumi.Int(5001),
				},
				&firewall.FirewallFilteringNetworkServicesDestTcpPortArgs{
					End:   pulumi.Int(5005),
					Start: pulumi.Int(5003),
				},
			},
			SrcTcpPorts: firewall.FirewallFilteringNetworkServicesSrcTcpPortArray{
				&firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs{
					Start: pulumi.Int(5000),
				},
				&firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs{
					Start: pulumi.Int(5001),
				},
				&firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs{
					End:   pulumi.Int(5005),
					Start: pulumi.Int(5002),
				},
			},
			Type: pulumi.String("CUSTOM"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.zia.Firewall.FirewallFilteringNetworkServices;
import com.pulumi.zia.Firewall.FirewallFilteringNetworkServicesArgs;
import com.pulumi.zia.Firewall.inputs.FirewallFilteringNetworkServicesDestTcpPortArgs;
import com.pulumi.zia.Firewall.inputs.FirewallFilteringNetworkServicesSrcTcpPortArgs;
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 FirewallFilteringNetworkServices("example", FirewallFilteringNetworkServicesArgs.builder()        
            .description("example")
            .destTcpPorts(            
                FirewallFilteringNetworkServicesDestTcpPortArgs.builder()
                    .start(5000)
                    .build(),
                FirewallFilteringNetworkServicesDestTcpPortArgs.builder()
                    .start(5001)
                    .build(),
                FirewallFilteringNetworkServicesDestTcpPortArgs.builder()
                    .end(5005)
                    .start(5003)
                    .build())
            .srcTcpPorts(            
                FirewallFilteringNetworkServicesSrcTcpPortArgs.builder()
                    .start(5000)
                    .build(),
                FirewallFilteringNetworkServicesSrcTcpPortArgs.builder()
                    .start(5001)
                    .build(),
                FirewallFilteringNetworkServicesSrcTcpPortArgs.builder()
                    .end(5005)
                    .start(5002)
                    .build())
            .type("CUSTOM")
            .build());

    }
}
import pulumi
import zscaler_pulumi_zia as zia

example = zia.firewall.FirewallFilteringNetworkServices("example",
    description="example",
    dest_tcp_ports=[
        zia.firewall.FirewallFilteringNetworkServicesDestTcpPortArgs(
            start=5000,
        ),
        zia.firewall.FirewallFilteringNetworkServicesDestTcpPortArgs(
            start=5001,
        ),
        zia.firewall.FirewallFilteringNetworkServicesDestTcpPortArgs(
            end=5005,
            start=5003,
        ),
    ],
    src_tcp_ports=[
        zia.firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs(
            start=5000,
        ),
        zia.firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs(
            start=5001,
        ),
        zia.firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs(
            end=5005,
            start=5002,
        ),
    ],
    type="CUSTOM")
import * as pulumi from "@pulumi/pulumi";
import * as zia from "@zscaler/pulumi-zia";

const example = new zia.firewall.FirewallFilteringNetworkServices("example", {
    description: "example",
    destTcpPorts: [
        {
            start: 5000,
        },
        {
            start: 5001,
        },
        {
            end: 5005,
            start: 5003,
        },
    ],
    srcTcpPorts: [
        {
            start: 5000,
        },
        {
            start: 5001,
        },
        {
            end: 5005,
            start: 5002,
        },
    ],
    type: "CUSTOM",
});
resources:
  example:
    type: zia:Firewall:FirewallFilteringNetworkServices
    properties:
      description: example
      destTcpPorts:
        - start: 5000
        - start: 5001
        - end: 5005
          start: 5003
      srcTcpPorts:
        - start: 5000
        - start: 5001
        - end: 5005
          start: 5002
      type: CUSTOM

Create FirewallFilteringNetworkServices Resource

new FirewallFilteringNetworkServices(name: string, args?: FirewallFilteringNetworkServicesArgs, opts?: CustomResourceOptions);
@overload
def FirewallFilteringNetworkServices(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     description: Optional[str] = None,
                                     dest_tcp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesDestTcpPortArgs]] = None,
                                     dest_udp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesDestUdpPortArgs]] = None,
                                     is_name_l10n_tag: Optional[bool] = None,
                                     name: Optional[str] = None,
                                     src_tcp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs]] = None,
                                     src_udp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesSrcUdpPortArgs]] = None,
                                     tag: Optional[str] = None,
                                     type: Optional[str] = None)
@overload
def FirewallFilteringNetworkServices(resource_name: str,
                                     args: Optional[FirewallFilteringNetworkServicesArgs] = None,
                                     opts: Optional[ResourceOptions] = None)
func NewFirewallFilteringNetworkServices(ctx *Context, name string, args *FirewallFilteringNetworkServicesArgs, opts ...ResourceOption) (*FirewallFilteringNetworkServices, error)
public FirewallFilteringNetworkServices(string name, FirewallFilteringNetworkServicesArgs? args = null, CustomResourceOptions? opts = null)
public FirewallFilteringNetworkServices(String name, FirewallFilteringNetworkServicesArgs args)
public FirewallFilteringNetworkServices(String name, FirewallFilteringNetworkServicesArgs args, CustomResourceOptions options)
type: zia:Firewall:FirewallFilteringNetworkServices
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args FirewallFilteringNetworkServicesArgs
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 FirewallFilteringNetworkServicesArgs
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 FirewallFilteringNetworkServicesArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args FirewallFilteringNetworkServicesArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args FirewallFilteringNetworkServicesArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

FirewallFilteringNetworkServices Resource Properties

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

Inputs

The FirewallFilteringNetworkServices resource accepts the following input properties:

Description string

Description of the service

DestTcpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestTcpPortArgs>

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

DestUdpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

IsNameL10nTag bool

(Optional

Name string

Name of the service

SrcTcpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcTcpPortArgs>

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

SrcUdpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

Tag string

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

Type string

Supported values: STANDARD, PREDEFINED, CUSTOM

Description string

Description of the service

DestTcpPorts []FirewallFilteringNetworkServicesDestTcpPortArgs

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

DestUdpPorts []FirewallFilteringNetworkServicesDestUdpPortArgs

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

IsNameL10nTag bool

(Optional

Name string

Name of the service

SrcTcpPorts []FirewallFilteringNetworkServicesSrcTcpPortArgs

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

SrcUdpPorts []FirewallFilteringNetworkServicesSrcUdpPortArgs

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

Tag string

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

Type string

Supported values: STANDARD, PREDEFINED, CUSTOM

description String

Description of the service

destTcpPorts List<FilteringNetworkServicesDestTcpPortArgs>

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

destUdpPorts List<FilteringNetworkServicesDestUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

isNameL10nTag Boolean

(Optional

name String

Name of the service

srcTcpPorts List<FilteringNetworkServicesSrcTcpPortArgs>

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

srcUdpPorts List<FilteringNetworkServicesSrcUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag String

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type String

Supported values: STANDARD, PREDEFINED, CUSTOM

description string

Description of the service

destTcpPorts FirewallFilteringNetworkServicesDestTcpPortArgs[]

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

destUdpPorts FirewallFilteringNetworkServicesDestUdpPortArgs[]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

isNameL10nTag boolean

(Optional

name string

Name of the service

srcTcpPorts FirewallFilteringNetworkServicesSrcTcpPortArgs[]

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

srcUdpPorts FirewallFilteringNetworkServicesSrcUdpPortArgs[]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag string

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type string

Supported values: STANDARD, PREDEFINED, CUSTOM

description str

Description of the service

dest_tcp_ports FirewallFilteringNetworkServicesDestTcpPortArgs]

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

dest_udp_ports FirewallFilteringNetworkServicesDestUdpPortArgs]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

is_name_l10n_tag bool

(Optional

name str

Name of the service

src_tcp_ports FirewallFilteringNetworkServicesSrcTcpPortArgs]

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

src_udp_ports FirewallFilteringNetworkServicesSrcUdpPortArgs]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag str

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type str

Supported values: STANDARD, PREDEFINED, CUSTOM

description String

Description of the service

destTcpPorts List<Property Map>

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

destUdpPorts List<Property Map>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

isNameL10nTag Boolean

(Optional

name String

Name of the service

srcTcpPorts List<Property Map>

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

srcUdpPorts List<Property Map>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag String

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type String

Supported values: STANDARD, PREDEFINED, CUSTOM

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

NetworkServiceId int
Id string

The provider-assigned unique ID for this managed resource.

NetworkServiceId int
id String

The provider-assigned unique ID for this managed resource.

networkServiceId Integer
id string

The provider-assigned unique ID for this managed resource.

networkServiceId number
id str

The provider-assigned unique ID for this managed resource.

network_service_id int
id String

The provider-assigned unique ID for this managed resource.

networkServiceId Number

Look up Existing FirewallFilteringNetworkServices Resource

Get an existing FirewallFilteringNetworkServices 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?: FirewallFilteringNetworkServicesState, opts?: CustomResourceOptions): FirewallFilteringNetworkServices
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        dest_tcp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesDestTcpPortArgs]] = None,
        dest_udp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesDestUdpPortArgs]] = None,
        is_name_l10n_tag: Optional[bool] = None,
        name: Optional[str] = None,
        network_service_id: Optional[int] = None,
        src_tcp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesSrcTcpPortArgs]] = None,
        src_udp_ports: Optional[Sequence[_firewall.FirewallFilteringNetworkServicesSrcUdpPortArgs]] = None,
        tag: Optional[str] = None,
        type: Optional[str] = None) -> FirewallFilteringNetworkServices
func GetFirewallFilteringNetworkServices(ctx *Context, name string, id IDInput, state *FirewallFilteringNetworkServicesState, opts ...ResourceOption) (*FirewallFilteringNetworkServices, error)
public static FirewallFilteringNetworkServices Get(string name, Input<string> id, FirewallFilteringNetworkServicesState? state, CustomResourceOptions? opts = null)
public static FirewallFilteringNetworkServices get(String name, Output<String> id, FirewallFilteringNetworkServicesState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
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:
Description string

Description of the service

DestTcpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestTcpPortArgs>

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

DestUdpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesDestUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

IsNameL10nTag bool

(Optional

Name string

Name of the service

NetworkServiceId int
SrcTcpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcTcpPortArgs>

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

SrcUdpPorts List<zscaler.PulumiPackage.Zia.Firewall.Inputs.FirewallFilteringNetworkServicesSrcUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

Tag string

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

Type string

Supported values: STANDARD, PREDEFINED, CUSTOM

Description string

Description of the service

DestTcpPorts []FirewallFilteringNetworkServicesDestTcpPortArgs

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

DestUdpPorts []FirewallFilteringNetworkServicesDestUdpPortArgs

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

IsNameL10nTag bool

(Optional

Name string

Name of the service

NetworkServiceId int
SrcTcpPorts []FirewallFilteringNetworkServicesSrcTcpPortArgs

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

SrcUdpPorts []FirewallFilteringNetworkServicesSrcUdpPortArgs

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

Tag string

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

Type string

Supported values: STANDARD, PREDEFINED, CUSTOM

description String

Description of the service

destTcpPorts List<FilteringNetworkServicesDestTcpPortArgs>

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

destUdpPorts List<FilteringNetworkServicesDestUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

isNameL10nTag Boolean

(Optional

name String

Name of the service

networkServiceId Integer
srcTcpPorts List<FilteringNetworkServicesSrcTcpPortArgs>

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

srcUdpPorts List<FilteringNetworkServicesSrcUdpPortArgs>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag String

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type String

Supported values: STANDARD, PREDEFINED, CUSTOM

description string

Description of the service

destTcpPorts FirewallFilteringNetworkServicesDestTcpPortArgs[]

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

destUdpPorts FirewallFilteringNetworkServicesDestUdpPortArgs[]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

isNameL10nTag boolean

(Optional

name string

Name of the service

networkServiceId number
srcTcpPorts FirewallFilteringNetworkServicesSrcTcpPortArgs[]

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

srcUdpPorts FirewallFilteringNetworkServicesSrcUdpPortArgs[]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag string

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type string

Supported values: STANDARD, PREDEFINED, CUSTOM

description str

Description of the service

dest_tcp_ports FirewallFilteringNetworkServicesDestTcpPortArgs]

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

dest_udp_ports FirewallFilteringNetworkServicesDestUdpPortArgs]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

is_name_l10n_tag bool

(Optional

name str

Name of the service

network_service_id int
src_tcp_ports FirewallFilteringNetworkServicesSrcTcpPortArgs]

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

src_udp_ports FirewallFilteringNetworkServicesSrcUdpPortArgs]

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag str

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type str

Supported values: STANDARD, PREDEFINED, CUSTOM

description String

Description of the service

destTcpPorts List<Property Map>

The TCP destination port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

destUdpPorts List<Property Map>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

isNameL10nTag Boolean

(Optional

name String

Name of the service

networkServiceId Number
srcTcpPorts List<Property Map>

The TCP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service

srcUdpPorts List<Property Map>

The UDP source port number (example: 50) or port number range (example: 1000-1050), if any, that is used by the network service.

tag String

The following values are supported: "ICMP_ANY, "UDP_ANY", "TCP_ANY", "OTHER_NETWORK_SERVICE", "DNS", "NETBIOS", "FTP", "GNUTELLA", "H_323", "HTTP", "HTTPS", "IKE", "IMAP", "ILS", "IKE_NAT", "IRC", "LDAP", "QUIC", "TDS", "NETMEETING", "NFS", "NTP", "SIP", "SNMP", "SMB", "SMTP", "SSH", "SYSLOG", "TELNET", "TRACEROUTE", "POP3", "PPTP", "RADIUS", "REAL_MEDIA", "RTSP", "VNC", "WHOIS", "KERBEROS_SEC", "TACACS", "SNMPTRAP", "NMAP", "RSYNC", "L2TP", "HTTP_PROXY", "PC_ANYWHERE", "MSN", "ECHO", "AIM", "IDENT", "YMSG", "SCCP", "MGCP_UA", "MGCP_CA", "VDO_LIVE", "OPENVPN", "TFTP", "FTPS_IMPLICIT", "ZSCALER_PROXY_NW_SERVICES", "GRE_PROTOCOL", "ESP_PROTOCOL", "DHCP"

type String

Supported values: STANDARD, PREDEFINED, CUSTOM

Supporting Types

FirewallFilteringNetworkServicesDestTcpPort

End int
Start int
End int
Start int
end Integer
start Integer
end number
start number
end int
start int
end Number
start Number

FirewallFilteringNetworkServicesDestUdpPort

End int
Start int
End int
Start int
end Integer
start Integer
end number
start number
end int
start int
end Number
start Number

FirewallFilteringNetworkServicesSrcTcpPort

End int
Start int
End int
Start int
end Integer
start Integer
end number
start number
end int
start int
end Number
start Number

FirewallFilteringNetworkServicesSrcUdpPort

End int
Start int
End int
Start int
end Integer
start Integer
end number
start number
end int
start int
end Number
start Number

Package Details

Repository
zia zscaler/pulumi-zia
License
MIT
Notes

This Pulumi package is based on the zia Terraform Provider.