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

BareMetalApiServerArgument

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

Represents an arg name->value pair. Only a subset of customized flags are supported. For the exact format, refer to the API server documentation.

interface BareMetalApiServerArgument {
argument?: string;
value?: string;
}

§Properties

§
argument?: string
[src]

Required. The argument name as it appears on the API Server command line, make sure to remove the leading dashes.

§
value?: string
[src]

Required. The value of the arg as it will be passed to the API Server command line.