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

BareMetalAdminApiServerArgument

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

BareMetalAdminApiServerArgument represents an arg name->value pair. Only a subset of customized flags are supported. Please refer to the API server documentation below to know the exact format: https://kubernetes.io/docs/reference/command-line-tools-reference/kube-apiserver/

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

§Properties

§
argument?: string
[src]

Required. The argument name as it appears on the API Server command line please 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.