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

LoggingServer

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

Logging server to receive vCenter or ESXi logs.

interface LoggingServer {
readonly createTime?: Date;
hostname?: string;
readonly name?: string;
port?: number;
protocol?:
| "PROTOCOL_UNSPECIFIED"
| "UDP"
| "TCP"
| "TLS"
| "SSL"
| "RELP";
sourceType?: "SOURCE_TYPE_UNSPECIFIED" | "ESXI" | "VCSA";
readonly uid?: string;
readonly updateTime?: Date;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. Creation time of this resource.

§
hostname?: string
[src]

Required. Fully-qualified domain name (FQDN) or IP Address of the logging server.

§
readonly name?: string
[src]

Output only. The resource name of this logging server. Resource names are schemeless URIs that follow the conventions in https://cloud.google.com/apis/design/resource_names. For example: projects/my-project/locations/us-central1-a/privateClouds/my-cloud/loggingServers/my-logging-server

§
port?: number
[src]

Required. Port number at which the logging server receives logs.

§
protocol?: "PROTOCOL_UNSPECIFIED" | "UDP" | "TCP" | "TLS" | "SSL" | "RELP"
[src]

Required. Protocol used by vCenter to send logs to a logging server.

§
sourceType?: "SOURCE_TYPE_UNSPECIFIED" | "ESXI" | "VCSA"
[src]

Required. The type of component that produces logs that will be forwarded to this logging server.

§
readonly uid?: string
[src]

Output only. System-generated unique identifier for the resource.

§
readonly updateTime?: Date
[src]

Output only. Last update time of this resource.