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

ResourceLocation

import type { ResourceLocation } from "https://googleapis.deno.dev/v1/servicecontrol:v2.ts";

Location information about a resource.

interface ResourceLocation {
currentLocations?: string[];
originalLocations?: string[];
}

§Properties

§
currentLocations?: string[]
[src]

The locations of a resource after the execution of the operation. Requests to create or delete a location based resource must populate the 'current_locations' field and not the 'original_locations' field. For example: "europe-west1-a" "us-east1" "nam3"

§
originalLocations?: string[]
[src]

The locations of a resource prior to the execution of the operation. Requests that mutate the resource's location must populate both the 'original_locations' as well as the 'current_locations' fields. For example: "europe-west1-a" "us-east1" "nam3"