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

GoogleCloudSecuritycenterV2IpRules

import type { GoogleCloudSecuritycenterV2IpRules } from "https://googleapis.deno.dev/v1/securitycenter:v1.ts";

IP rules associated with the finding.

interface GoogleCloudSecuritycenterV2IpRules {
destinationIpRanges?: string[];
direction?: "DIRECTION_UNSPECIFIED" | "INGRESS" | "EGRESS";
exposedServices?: string[];
sourceIpRanges?: string[];
}

§Properties

§

Tuple with allowed rules.

§

Tuple with denied rules.

§
destinationIpRanges?: string[]
[src]

If destination IP ranges are specified, the firewall rule applies only to traffic that has a destination IP address in these ranges. These ranges must be expressed in CIDR format. Only supports IPv4.

§
direction?: "DIRECTION_UNSPECIFIED" | "INGRESS" | "EGRESS"
[src]

The direction that the rule is applicable to, one of ingress or egress.

§
exposedServices?: string[]
[src]

Name of the network protocol service, such as FTP, that is exposed by the open port. Follows the naming convention available at: https://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml.

§
sourceIpRanges?: string[]
[src]

If source IP ranges are specified, the firewall rule applies only to traffic that has a source IP address in these ranges. These ranges must be expressed in CIDR format. Only supports IPv4.