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

TorsoValidation

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

The schema of torso workload validation data.

interface TorsoValidation {
agentVersion?: string;
instanceName?: string;
projectId?: string;
validationDetails?: {
[key: string]: string;
}
;
workloadType?:
| "WORKLOAD_TYPE_UNSPECIFIED"
| "MYSQL"
| "ORACLE"
| "REDIS";
}

§Properties

§
agentVersion?: string
[src]

Required. agent_version lists the version of the agent that collected this data.

§
instanceName?: string
[src]

Required. instance_name lists the human readable name of the instance that the data comes from.

§
projectId?: string
[src]

Required. project_id lists the human readable cloud project that the data comes from.

§
validationDetails?: {
[key: string]: string;
}
[src]

Required. validation_details contains the pairs of validation data: field name & field value.

§
workloadType?: "WORKLOAD_TYPE_UNSPECIFIED" | "MYSQL" | "ORACLE" | "REDIS"
[src]

Required. workload_type specifies the type of torso workload.