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

GoogleCloudSecuritycenterV2Connection

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

Contains information about the IP connection associated with the finding.

interface GoogleCloudSecuritycenterV2Connection {
destinationIp?: string;
destinationPort?: number;
protocol?:
| "PROTOCOL_UNSPECIFIED"
| "ICMP"
| "TCP"
| "UDP"
| "GRE"
| "ESP";
sourceIp?: string;
sourcePort?: number;
}

§Properties

§
destinationIp?: string
[src]

Destination IP address. Not present for sockets that are listening and not connected.

§
destinationPort?: number
[src]

Destination port. Not present for sockets that are listening and not connected.

§
protocol?: "PROTOCOL_UNSPECIFIED" | "ICMP" | "TCP" | "UDP" | "GRE" | "ESP"
[src]

IANA Internet Protocol Number such as TCP(6) and UDP(17).

§
sourceIp?: string
[src]

Source IP address.

§
sourcePort?: number
[src]

Source port.