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

DisableServiceRequest

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

Request message for the DisableService method.

interface DisableServiceRequest {
checkIfServiceHasUsage?: "CHECK_IF_SERVICE_HAS_USAGE_UNSPECIFIED" | "SKIP" | "CHECK";
disableDependentServices?: boolean;
}

§Properties

§
checkIfServiceHasUsage?: "CHECK_IF_SERVICE_HAS_USAGE_UNSPECIFIED" | "SKIP" | "CHECK"
[src]

Defines the behavior for checking service usage when disabling a service.

§
disableDependentServices?: boolean
[src]

Indicates if services that are enabled and which depend on this service should also be disabled. If not set, an error will be generated if any enabled services depend on the service to be disabled. When set, the service, and any enabled services that depend on it, will be disabled together.