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

BasicService

import type { BasicService } from "https://googleapis.deno.dev/v1/monitoring:v3.ts";

A well-known service type, defined by its service type and service labels. Documentation and examples here (https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli).

interface BasicService {
serviceLabels?: {
[key: string]: string;
}
;
serviceType?: string;
}

§Properties

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

Labels that specify the resource that emits the monitoring data which is used for SLO reporting of this Service. Documentation and valid values for given service types here (https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli).

§
serviceType?: string
[src]

The type of service that this basic service defines, e.g. APP_ENGINE service type. Documentation and valid values here (https://cloud.google.com/stackdriver/docs/solutions/slo-monitoring/api/api-structures#basic-svc-w-basic-sli).