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

NetworkAttachmentConnectedEndpoint

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

[Output Only] A connection connected to this network attachment.

interface NetworkAttachmentConnectedEndpoint {
ipAddress?: string;
ipv6Address?: string;
projectIdOrNum?: string;
secondaryIpCidrRanges?: string[];
status?:
| "ACCEPTED"
| "CLOSED"
| "NEEDS_ATTENTION"
| "PENDING"
| "REJECTED"
| "STATUS_UNSPECIFIED";
subnetwork?: string;
subnetworkCidrRange?: string;
}

§Properties

§
ipAddress?: string
[src]

The IPv4 address assigned to the producer instance network interface. This value will be a range in case of Serverless.

§
ipv6Address?: string
[src]

The IPv6 address assigned to the producer instance network interface. This is only assigned when the stack types of both the instance network interface and the consumer subnet are IPv4_IPv6.

§
projectIdOrNum?: string
[src]

The project id or number of the interface to which the IP was assigned.

§
secondaryIpCidrRanges?: string[]
[src]

Alias IP ranges from the same subnetwork.

§
status?: "ACCEPTED" | "CLOSED" | "NEEDS_ATTENTION" | "PENDING" | "REJECTED" | "STATUS_UNSPECIFIED"
[src]

The status of a connected endpoint to this network attachment.

§
subnetwork?: string
[src]

The subnetwork used to assign the IP to the producer instance network interface.

§
subnetworkCidrRange?: string
[src]

[Output Only] The CIDR range of the subnet from which the IPv4 internal IP was allocated from.