UNPKG

@sisyphus.js/google

Version:

Precompiled google common protos by sisyphus protobuf compiler

39 lines 1.47 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ChangeType = exports.Advice = exports.ConfigChange = void 0; var ConfigChange; (function (ConfigChange) { ConfigChange.name = 'google.api.ConfigChange'; })(ConfigChange || (exports.ConfigChange = ConfigChange = {})); var Advice; (function (Advice) { Advice.name = 'google.api.Advice'; })(Advice || (exports.Advice = Advice = {})); /** * Classifies set of possible modifications to an object in the service * configuration. */ var ChangeType; (function (ChangeType) { /** No value was provided. */ ChangeType[ChangeType["CHANGE_TYPE_UNSPECIFIED"] = 0] = "CHANGE_TYPE_UNSPECIFIED"; /** * The changed object exists in the 'new' service configuration, but not * in the 'old' service configuration. */ ChangeType[ChangeType["ADDED"] = 1] = "ADDED"; /** * The changed object exists in the 'old' service configuration, but not * in the 'new' service configuration. */ ChangeType[ChangeType["REMOVED"] = 2] = "REMOVED"; /** * The changed object exists in both service configurations, but its value * is different. */ ChangeType[ChangeType["MODIFIED"] = 3] = "MODIFIED"; })(ChangeType || (exports.ChangeType = ChangeType = {})); (function (ChangeType) { ChangeType.name = 'google.api.ChangeType'; })(ChangeType || (exports.ChangeType = ChangeType = {})); //# sourceMappingURL=config_change.js.map