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

ConfigChange

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

Output generated from semantically comparing two versions of a service configuration. Includes detailed information about a field that have changed with applicable advice about potential consequences for the change, such as backwards-incompatibility.

interface ConfigChange {
advices?: Advice[];
changeType?:
| "CHANGE_TYPE_UNSPECIFIED"
| "ADDED"
| "REMOVED"
| "MODIFIED";
element?: string;
newValue?: string;
oldValue?: string;
}

§Properties

§
advices?: Advice[]
[src]

Collection of advice provided for this change, useful for determining the possible impact of this change.

§
changeType?: "CHANGE_TYPE_UNSPECIFIED" | "ADDED" | "REMOVED" | "MODIFIED"
[src]

The type for this change, either ADDED, REMOVED, or MODIFIED.

§
element?: string
[src]

Object hierarchy path to the change, with levels separated by a '.' character. For repeated fields, an applicable unique identifier field is used for the index (usually selector, name, or id). For maps, the term 'key' is used. If the field has no unique identifier, the numeric index is used. Examples: - visibility.rules[selector=="google.LibraryService.ListBooks"].restriction - quota.metric_rules[selector=="google"].metric_costs[key=="reads"].value - logging.producer_destinations[0]

§
newValue?: string
[src]

Value of the changed object in the new Service configuration, in JSON format. This field will not be populated if ChangeType == REMOVED.

§
oldValue?: string
[src]

Value of the changed object in the old Service configuration, in JSON format. This field will not be populated if ChangeType == ADDED.