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

GoogleServiceInfo

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

For display only. Details of a Google Service sending packets to a VPC network. Although the source IP might be a publicly routable address, some Google Services use special routes within Google production infrastructure to reach Compute Engine Instances. https://cloud.google.com/vpc/docs/routes#special_return_paths

interface GoogleServiceInfo {
googleServiceType?:
| "GOOGLE_SERVICE_TYPE_UNSPECIFIED"
| "IAP"
| "GFE_PROXY_OR_HEALTH_CHECK_PROBER"
| "CLOUD_DNS"
| "GOOGLE_API"
| "GOOGLE_API_PSC"
| "GOOGLE_API_VPC_SC";
sourceIp?: string;
}

§Properties

§
googleServiceType?: "GOOGLE_SERVICE_TYPE_UNSPECIFIED" | "IAP" | "GFE_PROXY_OR_HEALTH_CHECK_PROBER" | "CLOUD_DNS" | "GOOGLE_API" | "GOOGLE_API_PSC" | "GOOGLE_API_VPC_SC"
[src]

Recognized type of a Google Service.

§
sourceIp?: string
[src]

Source IP address.