From 8947ea54ac9597f6781148b97605403dd2310ec3 Mon Sep 17 00:00:00 2001 From: Yoshi Automation Bot Date: Tue, 31 Dec 2019 13:37:48 -0800 Subject: [PATCH] feat: adds ContentMatcherOption (#336) --- .../protos/protos.d.ts | 79 +++++- .../google-cloud-monitoring/protos/protos.js | 232 ++++++++++++++++-- .../protos/protos.json | 67 ++++- .../google-cloud-monitoring/synth.metadata | 10 +- 4 files changed, 342 insertions(+), 46 deletions(-) diff --git a/packages/google-cloud-monitoring/protos/protos.d.ts b/packages/google-cloud-monitoring/protos/protos.d.ts index 69b102307a2..23cc020301b 100644 --- a/packages/google-cloud-monitoring/protos/protos.d.ts +++ b/packages/google-cloud-monitoring/protos/protos.d.ts @@ -1,3 +1,18 @@ +// Copyright 2019 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +import * as Long from "long"; import * as $protobuf from "protobufjs"; /** Namespace google. */ export namespace google { @@ -743,6 +758,9 @@ export namespace google { /** AlertPolicy enabled */ enabled?: (google.protobuf.IBoolValue|null); + /** AlertPolicy validity */ + validity?: (google.rpc.IStatus|null); + /** AlertPolicy notificationChannels */ notificationChannels?: (string[]|null); @@ -783,6 +801,9 @@ export namespace google { /** AlertPolicy enabled. */ public enabled?: (google.protobuf.IBoolValue|null); + /** AlertPolicy validity. */ + public validity?: (google.rpc.IStatus|null); + /** AlertPolicy notificationChannels. */ public notificationChannels: string[]; @@ -10738,6 +10759,9 @@ export namespace google { /** InternalChecker peerProjectId */ peerProjectId?: (string|null); + + /** InternalChecker state */ + state?: (google.monitoring.v3.InternalChecker.State|null); } /** Represents an InternalChecker. */ @@ -10764,6 +10788,9 @@ export namespace google { /** InternalChecker peerProjectId. */ public peerProjectId: string; + /** InternalChecker state. */ + public state: google.monitoring.v3.InternalChecker.State; + /** * Creates a new InternalChecker instance using the specified properties. * @param [properties] Properties to set @@ -10835,6 +10862,25 @@ export namespace google { public toJSON(): { [k: string]: any }; } + namespace InternalChecker { + + /** State enum. */ + enum State { + UNSPECIFIED = 0, + CREATING = 1, + RUNNING = 2 + } + } + + /** UptimeCheckRegion enum. */ + enum UptimeCheckRegion { + REGION_UNSPECIFIED = 0, + USA = 1, + EUROPE = 2, + SOUTH_AMERICA = 3, + ASIA_PACIFIC = 4 + } + /** Properties of an UptimeCheckConfig. */ interface IUptimeCheckConfig { @@ -11115,6 +11161,9 @@ export namespace google { /** HttpCheck headers */ headers?: ({ [k: string]: string }|null); + + /** HttpCheck validateSsl */ + validateSsl?: (boolean|null); } /** Represents a HttpCheck. */ @@ -11144,6 +11193,9 @@ export namespace google { /** HttpCheck headers. */ public headers: { [k: string]: string }; + /** HttpCheck validateSsl. */ + public validateSsl: boolean; + /** * Creates a new HttpCheck instance using the specified properties. * @param [properties] Properties to set @@ -11409,6 +11461,9 @@ export namespace google { /** ContentMatcher content */ content?: (string|null); + + /** ContentMatcher matcher */ + matcher?: (google.monitoring.v3.UptimeCheckConfig.ContentMatcher.ContentMatcherOption|null); } /** Represents a ContentMatcher. */ @@ -11423,6 +11478,9 @@ export namespace google { /** ContentMatcher content. */ public content: string; + /** ContentMatcher matcher. */ + public matcher: google.monitoring.v3.UptimeCheckConfig.ContentMatcher.ContentMatcherOption; + /** * Creates a new ContentMatcher instance using the specified properties. * @param [properties] Properties to set @@ -11493,6 +11551,18 @@ export namespace google { */ public toJSON(): { [k: string]: any }; } + + namespace ContentMatcher { + + /** ContentMatcherOption enum. */ + enum ContentMatcherOption { + CONTENT_MATCHER_OPTION_UNSPECIFIED = 0, + CONTAINS_STRING = 1, + NOT_CONTAINS_STRING = 2, + MATCHES_REGEX = 3, + NOT_MATCHES_REGEX = 4 + } + } } /** Properties of an UptimeCheckIp. */ @@ -11597,15 +11667,6 @@ export namespace google { public toJSON(): { [k: string]: any }; } - /** UptimeCheckRegion enum. */ - enum UptimeCheckRegion { - REGION_UNSPECIFIED = 0, - USA = 1, - EUROPE = 2, - SOUTH_AMERICA = 3, - ASIA_PACIFIC = 4 - } - /** GroupResourceType enum. */ enum GroupResourceType { RESOURCE_TYPE_UNSPECIFIED = 0, diff --git a/packages/google-cloud-monitoring/protos/protos.js b/packages/google-cloud-monitoring/protos/protos.js index 4f0b7db3d24..387c542f939 100644 --- a/packages/google-cloud-monitoring/protos/protos.js +++ b/packages/google-cloud-monitoring/protos/protos.js @@ -1,3 +1,17 @@ +// Copyright 2019 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + /*eslint-disable block-scoped-var, id-length, no-control-regex, no-magic-numbers, no-prototype-builtins, no-redeclare, no-shadow, no-var, sort-vars*/ (function(global, factory) { /* global define, require, module */ @@ -1572,6 +1586,7 @@ * @property {Array.|null} [conditions] AlertPolicy conditions * @property {google.monitoring.v3.AlertPolicy.ConditionCombinerType|null} [combiner] AlertPolicy combiner * @property {google.protobuf.IBoolValue|null} [enabled] AlertPolicy enabled + * @property {google.rpc.IStatus|null} [validity] AlertPolicy validity * @property {Array.|null} [notificationChannels] AlertPolicy notificationChannels * @property {google.monitoring.v3.IMutationRecord|null} [creationRecord] AlertPolicy creationRecord * @property {google.monitoring.v3.IMutationRecord|null} [mutationRecord] AlertPolicy mutationRecord @@ -1651,6 +1666,14 @@ */ AlertPolicy.prototype.enabled = null; + /** + * AlertPolicy validity. + * @member {google.rpc.IStatus|null|undefined} validity + * @memberof google.monitoring.v3.AlertPolicy + * @instance + */ + AlertPolicy.prototype.validity = null; + /** * AlertPolicy notificationChannels. * @member {Array.} notificationChannels @@ -1722,6 +1745,8 @@ writer.uint32(/* id 16, wireType 2 =*/130).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.userLabels[keys[i]]).ldelim(); if (message.enabled != null && message.hasOwnProperty("enabled")) $root.google.protobuf.BoolValue.encode(message.enabled, writer.uint32(/* id 17, wireType 2 =*/138).fork()).ldelim(); + if (message.validity != null && message.hasOwnProperty("validity")) + $root.google.rpc.Status.encode(message.validity, writer.uint32(/* id 18, wireType 2 =*/146).fork()).ldelim(); return writer; }; @@ -1784,6 +1809,9 @@ case 17: message.enabled = $root.google.protobuf.BoolValue.decode(reader, reader.uint32()); break; + case 18: + message.validity = $root.google.rpc.Status.decode(reader, reader.uint32()); + break; case 14: if (!(message.notificationChannels && message.notificationChannels.length)) message.notificationChannels = []; @@ -1873,6 +1901,11 @@ if (error) return "enabled." + error; } + if (message.validity != null && message.hasOwnProperty("validity")) { + var error = $root.google.rpc.Status.verify(message.validity); + if (error) + return "validity." + error; + } if (message.notificationChannels != null && message.hasOwnProperty("notificationChannels")) { if (!Array.isArray(message.notificationChannels)) return "notificationChannels: array expected"; @@ -1954,6 +1987,11 @@ throw TypeError(".google.monitoring.v3.AlertPolicy.enabled: object expected"); message.enabled = $root.google.protobuf.BoolValue.fromObject(object.enabled); } + if (object.validity != null) { + if (typeof object.validity !== "object") + throw TypeError(".google.monitoring.v3.AlertPolicy.validity: object expected"); + message.validity = $root.google.rpc.Status.fromObject(object.validity); + } if (object.notificationChannels) { if (!Array.isArray(object.notificationChannels)) throw TypeError(".google.monitoring.v3.AlertPolicy.notificationChannels: array expected"); @@ -2001,6 +2039,7 @@ object.mutationRecord = null; object.documentation = null; object.enabled = null; + object.validity = null; } if (message.name != null && message.hasOwnProperty("name")) object.name = message.name; @@ -2032,6 +2071,8 @@ } if (message.enabled != null && message.hasOwnProperty("enabled")) object.enabled = $root.google.protobuf.BoolValue.toObject(message.enabled, options); + if (message.validity != null && message.hasOwnProperty("validity")) + object.validity = $root.google.rpc.Status.toObject(message.validity, options); return object; }; @@ -25044,6 +25085,7 @@ * @property {string|null} [network] InternalChecker network * @property {string|null} [gcpZone] InternalChecker gcpZone * @property {string|null} [peerProjectId] InternalChecker peerProjectId + * @property {google.monitoring.v3.InternalChecker.State|null} [state] InternalChecker state */ /** @@ -25101,6 +25143,14 @@ */ InternalChecker.prototype.peerProjectId = ""; + /** + * InternalChecker state. + * @member {google.monitoring.v3.InternalChecker.State} state + * @memberof google.monitoring.v3.InternalChecker + * @instance + */ + InternalChecker.prototype.state = 0; + /** * Creates a new InternalChecker instance using the specified properties. * @function create @@ -25135,6 +25185,8 @@ writer.uint32(/* id 4, wireType 2 =*/34).string(message.gcpZone); if (message.peerProjectId != null && message.hasOwnProperty("peerProjectId")) writer.uint32(/* id 6, wireType 2 =*/50).string(message.peerProjectId); + if (message.state != null && message.hasOwnProperty("state")) + writer.uint32(/* id 7, wireType 0 =*/56).int32(message.state); return writer; }; @@ -25184,6 +25236,9 @@ case 6: message.peerProjectId = reader.string(); break; + case 7: + message.state = reader.int32(); + break; default: reader.skipType(tag & 7); break; @@ -25234,6 +25289,15 @@ if (message.peerProjectId != null && message.hasOwnProperty("peerProjectId")) if (!$util.isString(message.peerProjectId)) return "peerProjectId: string expected"; + if (message.state != null && message.hasOwnProperty("state")) + switch (message.state) { + default: + return "state: enum value expected"; + case 0: + case 1: + case 2: + break; + } return null; }; @@ -25259,6 +25323,20 @@ message.gcpZone = String(object.gcpZone); if (object.peerProjectId != null) message.peerProjectId = String(object.peerProjectId); + switch (object.state) { + case "UNSPECIFIED": + case 0: + message.state = 0; + break; + case "CREATING": + case 1: + message.state = 1; + break; + case "RUNNING": + case 2: + message.state = 2; + break; + } return message; }; @@ -25281,6 +25359,7 @@ object.network = ""; object.gcpZone = ""; object.peerProjectId = ""; + object.state = options.enums === String ? "UNSPECIFIED" : 0; } if (message.name != null && message.hasOwnProperty("name")) object.name = message.name; @@ -25292,6 +25371,8 @@ object.gcpZone = message.gcpZone; if (message.peerProjectId != null && message.hasOwnProperty("peerProjectId")) object.peerProjectId = message.peerProjectId; + if (message.state != null && message.hasOwnProperty("state")) + object.state = options.enums === String ? $root.google.monitoring.v3.InternalChecker.State[message.state] : message.state; return object; }; @@ -25306,9 +25387,45 @@ return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * State enum. + * @name google.monitoring.v3.InternalChecker.State + * @enum {string} + * @property {number} UNSPECIFIED=0 UNSPECIFIED value + * @property {number} CREATING=1 CREATING value + * @property {number} RUNNING=2 RUNNING value + */ + InternalChecker.State = (function() { + var valuesById = {}, values = Object.create(valuesById); + values[valuesById[0] = "UNSPECIFIED"] = 0; + values[valuesById[1] = "CREATING"] = 1; + values[valuesById[2] = "RUNNING"] = 2; + return values; + })(); + return InternalChecker; })(); + /** + * UptimeCheckRegion enum. + * @name google.monitoring.v3.UptimeCheckRegion + * @enum {string} + * @property {number} REGION_UNSPECIFIED=0 REGION_UNSPECIFIED value + * @property {number} USA=1 USA value + * @property {number} EUROPE=2 EUROPE value + * @property {number} SOUTH_AMERICA=3 SOUTH_AMERICA value + * @property {number} ASIA_PACIFIC=4 ASIA_PACIFIC value + */ + v3.UptimeCheckRegion = (function() { + var valuesById = {}, values = Object.create(valuesById); + values[valuesById[0] = "REGION_UNSPECIFIED"] = 0; + values[valuesById[1] = "USA"] = 1; + values[valuesById[2] = "EUROPE"] = 2; + values[valuesById[3] = "SOUTH_AMERICA"] = 3; + values[valuesById[4] = "ASIA_PACIFIC"] = 4; + return values; + })(); + v3.UptimeCheckConfig = (function() { /** @@ -26154,6 +26271,7 @@ * @property {google.monitoring.v3.UptimeCheckConfig.HttpCheck.IBasicAuthentication|null} [authInfo] HttpCheck authInfo * @property {boolean|null} [maskHeaders] HttpCheck maskHeaders * @property {Object.|null} [headers] HttpCheck headers + * @property {boolean|null} [validateSsl] HttpCheck validateSsl */ /** @@ -26220,6 +26338,14 @@ */ HttpCheck.prototype.headers = $util.emptyObject; + /** + * HttpCheck validateSsl. + * @member {boolean} validateSsl + * @memberof google.monitoring.v3.UptimeCheckConfig.HttpCheck + * @instance + */ + HttpCheck.prototype.validateSsl = false; + /** * Creates a new HttpCheck instance using the specified properties. * @function create @@ -26257,6 +26383,8 @@ if (message.headers != null && message.hasOwnProperty("headers")) for (var keys = Object.keys(message.headers), i = 0; i < keys.length; ++i) writer.uint32(/* id 6, wireType 2 =*/50).fork().uint32(/* id 1, wireType 2 =*/10).string(keys[i]).uint32(/* id 2, wireType 2 =*/18).string(message.headers[keys[i]]).ldelim(); + if (message.validateSsl != null && message.hasOwnProperty("validateSsl")) + writer.uint32(/* id 7, wireType 0 =*/56).bool(message.validateSsl); return writer; }; @@ -26314,6 +26442,9 @@ reader.pos++; message.headers[key] = reader.string(); break; + case 7: + message.validateSsl = reader.bool(); + break; default: reader.skipType(tag & 7); break; @@ -26374,6 +26505,9 @@ if (!$util.isString(message.headers[key[i]])) return "headers: string{k:string} expected"; } + if (message.validateSsl != null && message.hasOwnProperty("validateSsl")) + if (typeof message.validateSsl !== "boolean") + return "validateSsl: boolean expected"; return null; }; @@ -26409,6 +26543,8 @@ for (var keys = Object.keys(object.headers), i = 0; i < keys.length; ++i) message.headers[keys[i]] = String(object.headers[keys[i]]); } + if (object.validateSsl != null) + message.validateSsl = Boolean(object.validateSsl); return message; }; @@ -26433,6 +26569,7 @@ object.port = 0; object.authInfo = null; object.maskHeaders = false; + object.validateSsl = false; } if (message.useSsl != null && message.hasOwnProperty("useSsl")) object.useSsl = message.useSsl; @@ -26450,6 +26587,8 @@ for (var j = 0; j < keys2.length; ++j) object.headers[keys2[j]] = message.headers[keys2[j]]; } + if (message.validateSsl != null && message.hasOwnProperty("validateSsl")) + object.validateSsl = message.validateSsl; return object; }; @@ -26871,6 +27010,7 @@ * @memberof google.monitoring.v3.UptimeCheckConfig * @interface IContentMatcher * @property {string|null} [content] ContentMatcher content + * @property {google.monitoring.v3.UptimeCheckConfig.ContentMatcher.ContentMatcherOption|null} [matcher] ContentMatcher matcher */ /** @@ -26896,6 +27036,14 @@ */ ContentMatcher.prototype.content = ""; + /** + * ContentMatcher matcher. + * @member {google.monitoring.v3.UptimeCheckConfig.ContentMatcher.ContentMatcherOption} matcher + * @memberof google.monitoring.v3.UptimeCheckConfig.ContentMatcher + * @instance + */ + ContentMatcher.prototype.matcher = 0; + /** * Creates a new ContentMatcher instance using the specified properties. * @function create @@ -26922,6 +27070,8 @@ writer = $Writer.create(); if (message.content != null && message.hasOwnProperty("content")) writer.uint32(/* id 1, wireType 2 =*/10).string(message.content); + if (message.matcher != null && message.hasOwnProperty("matcher")) + writer.uint32(/* id 2, wireType 0 =*/16).int32(message.matcher); return writer; }; @@ -26959,6 +27109,9 @@ case 1: message.content = reader.string(); break; + case 2: + message.matcher = reader.int32(); + break; default: reader.skipType(tag & 7); break; @@ -26997,6 +27150,17 @@ if (message.content != null && message.hasOwnProperty("content")) if (!$util.isString(message.content)) return "content: string expected"; + if (message.matcher != null && message.hasOwnProperty("matcher")) + switch (message.matcher) { + default: + return "matcher: enum value expected"; + case 0: + case 1: + case 2: + case 3: + case 4: + break; + } return null; }; @@ -27014,6 +27178,28 @@ var message = new $root.google.monitoring.v3.UptimeCheckConfig.ContentMatcher(); if (object.content != null) message.content = String(object.content); + switch (object.matcher) { + case "CONTENT_MATCHER_OPTION_UNSPECIFIED": + case 0: + message.matcher = 0; + break; + case "CONTAINS_STRING": + case 1: + message.matcher = 1; + break; + case "NOT_CONTAINS_STRING": + case 2: + message.matcher = 2; + break; + case "MATCHES_REGEX": + case 3: + message.matcher = 3; + break; + case "NOT_MATCHES_REGEX": + case 4: + message.matcher = 4; + break; + } return message; }; @@ -27030,10 +27216,14 @@ if (!options) options = {}; var object = {}; - if (options.defaults) + if (options.defaults) { object.content = ""; + object.matcher = options.enums === String ? "CONTENT_MATCHER_OPTION_UNSPECIFIED" : 0; + } if (message.content != null && message.hasOwnProperty("content")) object.content = message.content; + if (message.matcher != null && message.hasOwnProperty("matcher")) + object.matcher = options.enums === String ? $root.google.monitoring.v3.UptimeCheckConfig.ContentMatcher.ContentMatcherOption[message.matcher] : message.matcher; return object; }; @@ -27048,6 +27238,26 @@ return this.constructor.toObject(this, $protobuf.util.toJSONOptions); }; + /** + * ContentMatcherOption enum. + * @name google.monitoring.v3.UptimeCheckConfig.ContentMatcher.ContentMatcherOption + * @enum {string} + * @property {number} CONTENT_MATCHER_OPTION_UNSPECIFIED=0 CONTENT_MATCHER_OPTION_UNSPECIFIED value + * @property {number} CONTAINS_STRING=1 CONTAINS_STRING value + * @property {number} NOT_CONTAINS_STRING=2 NOT_CONTAINS_STRING value + * @property {number} MATCHES_REGEX=3 MATCHES_REGEX value + * @property {number} NOT_MATCHES_REGEX=4 NOT_MATCHES_REGEX value + */ + ContentMatcher.ContentMatcherOption = (function() { + var valuesById = {}, values = Object.create(valuesById); + values[valuesById[0] = "CONTENT_MATCHER_OPTION_UNSPECIFIED"] = 0; + values[valuesById[1] = "CONTAINS_STRING"] = 1; + values[valuesById[2] = "NOT_CONTAINS_STRING"] = 2; + values[valuesById[3] = "MATCHES_REGEX"] = 3; + values[valuesById[4] = "NOT_MATCHES_REGEX"] = 4; + return values; + })(); + return ContentMatcher; })(); @@ -27314,26 +27524,6 @@ return UptimeCheckIp; })(); - /** - * UptimeCheckRegion enum. - * @name google.monitoring.v3.UptimeCheckRegion - * @enum {string} - * @property {number} REGION_UNSPECIFIED=0 REGION_UNSPECIFIED value - * @property {number} USA=1 USA value - * @property {number} EUROPE=2 EUROPE value - * @property {number} SOUTH_AMERICA=3 SOUTH_AMERICA value - * @property {number} ASIA_PACIFIC=4 ASIA_PACIFIC value - */ - v3.UptimeCheckRegion = (function() { - var valuesById = {}, values = Object.create(valuesById); - values[valuesById[0] = "REGION_UNSPECIFIED"] = 0; - values[valuesById[1] = "USA"] = 1; - values[valuesById[2] = "EUROPE"] = 2; - values[valuesById[3] = "SOUTH_AMERICA"] = 3; - values[valuesById[4] = "ASIA_PACIFIC"] = 4; - return values; - })(); - /** * GroupResourceType enum. * @name google.monitoring.v3.GroupResourceType diff --git a/packages/google-cloud-monitoring/protos/protos.json b/packages/google-cloud-monitoring/protos/protos.json index 46a2ae4ad6f..62f7e4d9994 100644 --- a/packages/google-cloud-monitoring/protos/protos.json +++ b/packages/google-cloud-monitoring/protos/protos.json @@ -168,6 +168,10 @@ "type": "google.protobuf.BoolValue", "id": 17 }, + "validity": { + "type": "google.rpc.Status", + "id": 18 + }, "notificationChannels": { "rule": "repeated", "type": "string", @@ -2067,6 +2071,9 @@ } }, "InternalChecker": { + "options": { + "deprecated": true + }, "fields": { "name": { "type": "string", @@ -2087,9 +2094,31 @@ "peerProjectId": { "type": "string", "id": 6 + }, + "state": { + "type": "State", + "id": 7 + } + }, + "nested": { + "State": { + "values": { + "UNSPECIFIED": 0, + "CREATING": 1, + "RUNNING": 2 + } } } }, + "UptimeCheckRegion": { + "values": { + "REGION_UNSPECIFIED": 0, + "USA": 1, + "EUROPE": 2, + "SOUTH_AMERICA": 3, + "ASIA_PACIFIC": 4 + } + }, "UptimeCheckConfig": { "oneofs": { "resource": { @@ -2150,12 +2179,18 @@ }, "isInternal": { "type": "bool", - "id": 15 + "id": 15, + "options": { + "deprecated": true + } }, "internalCheckers": { "rule": "repeated", "type": "InternalChecker", - "id": 14 + "id": 14, + "options": { + "deprecated": true + } } }, "nested": { @@ -2197,6 +2232,10 @@ "keyType": "string", "type": "string", "id": 6 + }, + "validateSsl": { + "type": "bool", + "id": 7 } }, "nested": { @@ -2227,6 +2266,21 @@ "content": { "type": "string", "id": 1 + }, + "matcher": { + "type": "ContentMatcherOption", + "id": 2 + } + }, + "nested": { + "ContentMatcherOption": { + "values": { + "CONTENT_MATCHER_OPTION_UNSPECIFIED": 0, + "CONTAINS_STRING": 1, + "NOT_CONTAINS_STRING": 2, + "MATCHES_REGEX": 3, + "NOT_MATCHES_REGEX": 4 + } } } } @@ -2248,15 +2302,6 @@ } } }, - "UptimeCheckRegion": { - "values": { - "REGION_UNSPECIFIED": 0, - "USA": 1, - "EUROPE": 2, - "SOUTH_AMERICA": 3, - "ASIA_PACIFIC": 4 - } - }, "GroupResourceType": { "values": { "RESOURCE_TYPE_UNSPECIFIED": 0, diff --git a/packages/google-cloud-monitoring/synth.metadata b/packages/google-cloud-monitoring/synth.metadata index 7598d9f4f7c..e51a9e811fb 100644 --- a/packages/google-cloud-monitoring/synth.metadata +++ b/packages/google-cloud-monitoring/synth.metadata @@ -1,19 +1,19 @@ { - "updateTime": "2019-11-15T12:17:52.310628Z", + "updateTime": "2019-11-19T12:22:16.660786Z", "sources": [ { "generator": { "name": "artman", - "version": "0.41.1", - "dockerImage": "googleapis/artman@sha256:545c758c76c3f779037aa259023ec3d1ef2d57d2c8cd00a222cb187d63ceac5e" + "version": "0.42.1", + "dockerImage": "googleapis/artman@sha256:c773192618c608a7a0415dd95282f841f8e6bcdef7dd760a988c93b77a64bd57" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "f6808ff4e8b966cd571e99279d4a2780ed97dff2", - "internalRef": "280581337" + "sha": "d8dd7fe8d5304f7bd1c52207703d7f27d5328c5a", + "internalRef": "281088257" } }, {