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

AgentStatusServiceStatus

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

The status of a service (process metrics, host metrics, etc.).

interface AgentStatusServiceStatus {
readonly configValues?: AgentStatusConfigValue[];
readonly errorMessage?: string;
readonly fullyFunctional?:
| "UNSPECIFIED_STATE"
| "SUCCESS_STATE"
| "FAILURE_STATE"
| "ERROR_STATE";
readonly iamPermissions?: AgentStatusIAMPermission[];
readonly name?: string;
readonly state?:
| "UNSPECIFIED_STATE"
| "SUCCESS_STATE"
| "FAILURE_STATE"
| "ERROR_STATE";
readonly unspecifiedStateMessage?: string;
}

§Properties

§
readonly configValues?: AgentStatusConfigValue[]
[src]

Output only. The configuration values for the service.

§
readonly errorMessage?: string
[src]

Output only. The error message for the service if it is not fully functional.

§
readonly fullyFunctional?: "UNSPECIFIED_STATE" | "SUCCESS_STATE" | "FAILURE_STATE" | "ERROR_STATE"
[src]

Output only. Whether the service is fully functional (all checks passed).

§
readonly iamPermissions?: AgentStatusIAMPermission[]
[src]

Output only. The permissions required for the service.

§
readonly name?: string
[src]

Output only. The name of the service.

§
readonly state?: "UNSPECIFIED_STATE" | "SUCCESS_STATE" | "FAILURE_STATE" | "ERROR_STATE"
[src]

Output only. The state of the service (enabled or disabled in the configuration).

§
readonly unspecifiedStateMessage?: string
[src]

Output only. The message to display when the service state is unspecified.