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

AgentStatus

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

The schema of agent status data.

interface AgentStatus {
readonly agentName?: string;
readonly availableVersion?: string;
readonly cloudApiAccessFullScopesGranted?:
| "UNSPECIFIED_STATE"
| "SUCCESS_STATE"
| "FAILURE_STATE"
| "ERROR_STATE";
readonly configurationErrorMessage?: string;
readonly configurationFilePath?: string;
readonly configurationValid?:
| "UNSPECIFIED_STATE"
| "SUCCESS_STATE"
| "FAILURE_STATE"
| "ERROR_STATE";
readonly installedVersion?: string;
readonly references?: AgentStatusReference[];
readonly services?: AgentStatusServiceStatus[];
readonly systemdServiceEnabled?:
| "UNSPECIFIED_STATE"
| "SUCCESS_STATE"
| "FAILURE_STATE"
| "ERROR_STATE";
readonly systemdServiceRunning?:
| "UNSPECIFIED_STATE"
| "SUCCESS_STATE"
| "FAILURE_STATE"
| "ERROR_STATE";
}

§Properties

§
readonly agentName?: string
[src]

Output only. The name of the agent.

§
readonly availableVersion?: string
[src]

Output only. The available version of the agent in artifact registry.

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

Output only. Whether the agent has full access to Cloud APIs.

§
readonly configurationErrorMessage?: string
[src]

Output only. The error message for the agent configuration if invalid.

§
readonly configurationFilePath?: string
[src]

Output only. The path to the agent configuration file.

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

Output only. Whether the agent configuration is valid.

§
readonly installedVersion?: string
[src]

Output only. The installed version of the agent on the host.

§

Output only. The kernel version of the system.

§
readonly references?: AgentStatusReference[]
[src]

Output only. Optional references to public documentation.

§
readonly services?: AgentStatusServiceStatus[]
[src]

Output only. The services (process metrics, host metrics, etc.).

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

Output only. Whether the agent service is enabled in systemd.

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

Output only. Whether the agent service is running in systemd.