Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

FirewallPolicyRuleMatcherLayer4Config

import type { FirewallPolicyRuleMatcherLayer4Config } from "https://googleapis.deno.dev/v1/compute:v1.ts";
interface FirewallPolicyRuleMatcherLayer4Config {
ipProtocol?: string;
ports?: string[];
}

§Properties

§
ipProtocol?: string
[src]

The IP protocol to which this rule applies. The protocol type is required when creating a firewall rule. This value can either be one of the following well known protocol strings (tcp, udp, icmp, esp, ah, ipip, sctp), or the IP protocol number.

§
ports?: string[]
[src]

An optional list of ports to which this rule applies. This field is only applicable for UDP or TCP protocol. Each entry must be either an integer or a range. If not specified, this rule applies to connections through any port. Example inputs include: ["22"], ["80","443"], and ["12345-12349"].