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

GuestAttributes

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

A guest attributes entry.

interface GuestAttributes {
readonly kind?: string;
queryPath?: string;
readonly queryValue?: GuestAttributesValue;
readonly selfLink?: string;
variableKey?: string;
readonly variableValue?: string;
}

§Properties

§
readonly kind?: string
[src]

Output only. [Output Only] Type of the resource. Alwayscompute#guestAttributes for guest attributes entry.

§
queryPath?: string
[src]

The path to be queried. This can be the default namespace ('') or a nested namespace ('/') or a specified key ('/').

§
readonly queryValue?: GuestAttributesValue
[src]

Output only. [Output Only] The value of the requested queried path.

§
variableKey?: string
[src]

The key to search for.

§
readonly variableValue?: string
[src]

Output only. [Output Only] The value found for the requested key.