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

NetworkService

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

Represents a network service that is managed by a NetworkPolicy resource. A network service provides a way to control an aspect of external access to VMware workloads. For example, whether the VMware workloads in the private clouds governed by a network policy can access or be accessed from the internet.

interface NetworkService {
enabled?: boolean;
readonly state?:
| "STATE_UNSPECIFIED"
| "UNPROVISIONED"
| "RECONCILING"
| "ACTIVE";
}

§Properties

§
enabled?: boolean
[src]

True if the service is enabled; false otherwise.

§
readonly state?: "STATE_UNSPECIFIED" | "UNPROVISIONED" | "RECONCILING" | "ACTIVE"
[src]

Output only. State of the service. New values may be added to this enum when appropriate.