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 {
kind?: string;
queryPath?: string;
queryValue?: GuestAttributesValue;
selfLink?: string;
variableKey?: string;
variableValue?: string;
}

§Properties

§
kind?: string
[src]

[Output Only] Type of the resource. Always compute#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 ('/').

§

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

§
variableKey?: string
[src]

The key to search for.

§
variableValue?: string
[src]

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