From 463d80e73198ae806701e47179ebde12180a67d8 Mon Sep 17 00:00:00 2001 From: Gaston Yelmini Date: Wed, 22 Nov 2023 16:29:39 -0300 Subject: [PATCH] INT-10036: implement retry logic for attempt timeouts (NON api timeouts) --- src/google-cloud/client.test.ts | 100 +- src/google-cloud/client.ts | 89 +- .../recording.har | 26191 +--------------- 3 files changed, 289 insertions(+), 26091 deletions(-) diff --git a/src/google-cloud/client.test.ts b/src/google-cloud/client.test.ts index 46c31461..a8ed36c9 100644 --- a/src/google-cloud/client.test.ts +++ b/src/google-cloud/client.test.ts @@ -97,12 +97,17 @@ describe('withErrorHandling', () => { let client; let onRetry; + let onTimeoutRetry; const logger = getMockLogger(); beforeEach(() => { onRetry = jest.fn(); - client = new Client({ config, onRetry: onRetry }, logger); + onTimeoutRetry = jest.fn(); + client = new Client( + { config, onRetry: onRetry, onTimeoutRetry: onTimeoutRetry }, + logger, + ); }); [IntegrationProviderAuthorizationError, IntegrationProviderAPIError].forEach( @@ -184,6 +189,99 @@ describe('withErrorHandling', () => { expect(onRetry).toHaveBeenCalledTimes(1); expect(onRetry).toHaveBeenCalledWith(err); }); + + test('should throw an IntegrationProviderAPIError if max timeout retry attempts was reached', async () => { + const fakeApiCall = async () => + await new Promise((resolve) => setTimeout(resolve, 20)); + + await expect( + client.withErrorHandling(fakeApiCall, { + timeout: 10, + retryTimeOutSleepInMS: 10, + }), + ).rejects.toThrow('Provider API failed at UNKNOWN: 408 Operation Timeout'); + + expect(onRetry).toHaveBeenCalledTimes(0); + expect(onTimeoutRetry).toHaveBeenCalledTimes(6); + }); + + test('should handle recursively - First promise is timeout but second is unknown', async () => { + let simulateSecondFailedApiCall = false; + + const fakeApiCall = async () => { + if (!simulateSecondFailedApiCall) { + simulateSecondFailedApiCall = true; + return await new Promise((resolve) => setTimeout(resolve, 20)); + } else { + return await new Promise((_, reject) => reject('UNKNOWN')); + } + }; + + await expect( + client.withErrorHandling(fakeApiCall, { + timeout: 10, + retryTimeOutSleepInMS: 10, + }), + ).rejects.toThrow('Provider API failed at UNKNOWN: UNKNOWN UNKNOWN'); + + expect(onRetry).toHaveBeenCalledTimes(0); + expect(onTimeoutRetry).toHaveBeenCalledTimes(1); + }); + + test('should handle recursively - First promise is timeout but second is retyable', async () => { + const err = new Error('Error: Too Many Requests'); + (err as unknown as { response: { status: number } }).response = { + status: 429, + }; + + let simulateSecondFailedApiCall = false; + + const fakeApiCall = async () => { + if (!simulateSecondFailedApiCall) { + simulateSecondFailedApiCall = true; + return await new Promise((resolve) => setTimeout(resolve, 200)); + } else { + return await new Promise((_, reject) => reject(err)); + } + }; + + await expect( + client.withErrorHandling(fakeApiCall, { + timeout: 100, + retryTimeOutSleepInMS: 100, + maxAttempts: 2, + factor: null, + }), + ).rejects.toThrow('Error: Too Many Requests'); + + expect(onTimeoutRetry).toHaveBeenCalledTimes(1); + expect(onRetry).toHaveBeenCalledTimes(2); + }, 100_000); + + test('should handle recursively - First promise is timeout but second is fullfilled', async () => { + let simulateSecondFailedApiCall = false; + + const fakeApiCall = async () => { + if (!simulateSecondFailedApiCall) { + simulateSecondFailedApiCall = true; + return await new Promise((resolve) => setTimeout(resolve, 200)); + } else { + return await new Promise((resolve) => resolve([])); + } + }; + + await expect( + client.withErrorHandling(fakeApiCall, { + timeout: 100, + retryTimeOutSleepInMS: 100, + maxAttempts: 2, + factor: null, + }), + ).resolves.toEqual([]); + + expect(onTimeoutRetry).toHaveBeenCalledTimes(1); + expect(onRetry).toHaveBeenCalledTimes(0); + }, 100_000); }); describe('Client', () => { diff --git a/src/google-cloud/client.ts b/src/google-cloud/client.ts index d90c6bbb..409555e0 100644 --- a/src/google-cloud/client.ts +++ b/src/google-cloud/client.ts @@ -26,6 +26,7 @@ export interface ClientOptions { projectId?: string; organizationId?: string; onRetry?: (err: any) => void; + onTimeoutRetry?: () => void; } export interface PageableResponse { @@ -43,6 +44,9 @@ export type IterateApiOptions = { publishMissingPermissionWarnEvent?: boolean; }; +const RETRY_TIMEOUT_OPERATION_TIMEOUT_ERROR_CODE = + 'RETRY_TIMEOUT_OPERATION_TIMEOUT'; + export class Client { readonly projectId: string; readonly organizationId?: string; @@ -52,9 +56,16 @@ export class Client { private credentials: CredentialBody; private auth: BaseExternalAccountClient; private readonly onRetry?: (err: any) => void; + private readonly onTimeoutRetry?: () => void; constructor( - { config, projectId, organizationId, onRetry }: ClientOptions, + { + config, + projectId, + organizationId, + onRetry, + onTimeoutRetry, + }: ClientOptions, logger: IntegrationLogger, ) { this.projectId = @@ -68,6 +79,7 @@ export class Client { }; this.folderId = config.folderId; this.onRetry = onRetry; + this.onTimeoutRetry = onTimeoutRetry; this.logger = logger; } @@ -156,17 +168,84 @@ export class Client { await pMap(resources || [], cb, { concurrency: options.concurrency }); } - withErrorHandling(fn: () => Promise) { + resolveWithTimeout(promise: Promise, timeoutMs: number): Promise { + return new Promise((resolve, reject) => { + const timeoutPromise = new Promise((_, timeoutReject) => { + setTimeout(() => { + timeoutReject(new Error(RETRY_TIMEOUT_OPERATION_TIMEOUT_ERROR_CODE)); + }, timeoutMs); + }); + + Promise.race([promise, timeoutPromise]).then(resolve).catch(reject); + }); + } + + withErrorHandling( + fn: () => Promise, + options?: { + timeout: number; + retryTimeOutSleepInMS: number; + maxAttempts: number; + factor: number; + }, + ) { + let timeoutsRetryRemaining = 6; + + const newTimeOutLimitInMS = options?.retryTimeOutSleepInMS || 120_000; const onRetry = this.onRetry; + const onTimeoutRetry = this.onTimeoutRetry; + return retry( async () => { return await fn(); }, { delay: 2_000, - timeout: 91_000, // Need to set a timeout, otherwise we might wait for a response indefinitely. - maxAttempts: 6, - factor: 2.25, //t=0s, 2s, 4.5s, 10.125s, 22.78125s, 51.2578125 (90.6640652s) + timeout: options?.timeout || 91_000, // Need to set a timeout, otherwise we might wait for a response indefinitely. + maxAttempts: options?.maxAttempts || 6, + factor: options?.factor || 2.25, //t=0s, 2s, 4.5s, 10.125s, 22.78125s, 51.2578125 (90.6640652s) + handleTimeout: async () => { + /** + * Handles retry() attept timeout, NOT API call timeout + */ + this.logger.warn(`Retrying due to operation attempt timeout.`); + + let breakRetryLoop = false; + + do { + if (onTimeoutRetry) { + onTimeoutRetry(); + } + + try { + const response = await this.resolveWithTimeout( + fn(), + newTimeOutLimitInMS, + ); + breakRetryLoop = true; + + return response; + } catch (err) { + if ( + err instanceof Error && + err.message === RETRY_TIMEOUT_OPERATION_TIMEOUT_ERROR_CODE + ) { + timeoutsRetryRemaining--; + + if (timeoutsRetryRemaining === 0) { + throw new IntegrationProviderAPIError({ + code: RETRY_TIMEOUT_OPERATION_TIMEOUT_ERROR_CODE, + status: 408, + statusText: 'Operation Timeout', + endpoint: 'UNKNOWN', + }); + } + } else { + return await this.withErrorHandling(fn, options); + } + } + } while (timeoutsRetryRemaining > 0 && !breakRetryLoop); + }, handleError(err, ctx) { const newError = handleApiClientError(err); diff --git a/src/steps/compute/__recordings__/fetchComputeProject_3789825441/recording.har b/src/steps/compute/__recordings__/fetchComputeProject_3789825441/recording.har index 8edd04ce..e8994b2f 100644 --- a/src/steps/compute/__recordings__/fetchComputeProject_3789825441/recording.har +++ b/src/steps/compute/__recordings__/fetchComputeProject_3789825441/recording.har @@ -4401,8 +4401,8 @@ } }, { - "_id": "ab2e5b8749c84dbb92fad734ce8c8fb2", - "_order": 0, + "_id": "ea71645357c5b388b459e228c9eff2dc", + "_order": 1, "cache": {}, "request": { "bodySize": 0, @@ -4411,7 +4411,7 @@ { "_fromType": "array", "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" + "value": "gdcl/6.0.4 gl-node/18.16.0 auth/8.8.0" }, { "_fromType": "array", @@ -4421,7 +4421,7 @@ { "_fromType": "array", "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" + "value": "google-api-nodejs-client/6.0.4 (gzip)" }, { "_fromType": "array", @@ -4443,159 +4443,37 @@ "value": "compute.googleapis.com" } ], - "headersSize": 1374, + "headersSize": 360, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-c/disks" + "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/disks" }, "response": { - "bodySize": 228, + "bodySize": 597, "content": { "encoding": "utf-8", "mimeType": "application/json; charset=UTF-8", - "size": 228, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-c/disks\"}" + "size": 597, + "text": "{\"error\":{\"code\":401,\"message\":\"Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.\",\"errors\":[{\"message\":\"Invalid Credentials\",\"domain\":\"global\",\"reason\":\"authError\",\"location\":\"Authorization\",\"locationType\":\"header\"}],\"status\":\"UNAUTHENTICATED\",\"details\":[{\"@type\":\"type.googleapis.com/google.rpc.ErrorInfo\",\"reason\":\"ACCESS_TOKEN_TYPE_UNSUPPORTED\",\"metadatas\":{\"method\":\"compute.v1.DisksService.List\",\"service\":\"compute.googleapis.com\"}}]}}" }, "cookies": [], "headers": [ { - "name": "etag", - "value": "ijSTeF-tbBHkwkRsh1yoR5tGWPM=/0DWNemWMoHFZKZu5OH3uVSaU-G0=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" + "name": "www-authenticate", + "value": "Bearer realm=\"https://accounts.google.com/\", error=\"invalid_token\"" }, { "name": "vary", "value": "Origin, X-Origin, Referer" }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:20 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:18.877Z", - "time": 1780, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1780 - } - }, - { - "_id": "3d7eadfeba91ac6577650e73e76b9e6e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-a/disks" - }, - "response": { - "bodySize": 214, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 214, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "X-qsnLOcUGU5PSR6tD81PcAAf64=/BYPlKqRMTJKOHAHOmiZyj9f3pCI=" - }, { "name": "content-type", "value": "application/json; charset=UTF-8" }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, { "name": "date", - "value": "Tue, 06 Jun 2023 23:46:21 GMT" + "value": "Wed, 22 Nov 2023 17:30:39 GMT" }, { "name": "server", @@ -4626,14 +4504,14 @@ "value": "close" } ], - "headersSize": 432, + "headersSize": 453, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 401, + "statusText": "Unauthorized" }, - "startedDateTime": "2023-06-06T23:46:20.665Z", - "time": 1369, + "startedDateTime": "2023-11-22T17:30:37.756Z", + "time": 1351, "timings": { "blocked": -1, "connect": -1, @@ -4641,12 +4519,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1369 + "wait": 1351 } }, { - "_id": "1182756b4982fdbe585396fbbb3c0e53", - "_order": 0, + "_id": "ea71645357c5b388b459e228c9eff2dc", + "_order": 2, "cache": {}, "request": { "bodySize": 0, @@ -4655,7 +4533,7 @@ { "_fromType": "array", "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" + "value": "gdcl/6.0.4 gl-node/18.16.0 auth/8.8.0" }, { "_fromType": "array", @@ -4665,7 +4543,7 @@ { "_fromType": "array", "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" + "value": "google-api-nodejs-client/6.0.4 (gzip)" }, { "_fromType": "array", @@ -4687,37 +4565,37 @@ "value": "compute.googleapis.com" } ], - "headersSize": 1374, + "headersSize": 360, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-b/disks" + "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/disks" }, "response": { - "bodySize": 231, + "bodySize": 614, "content": { "encoding": "utf-8", "mimeType": "application/json; charset=UTF-8", - "size": 231, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-b/disks\"}" + "size": 614, + "text": "{\"error\":{\"code\":401,\"message\":\"Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.\",\"errors\":[{\"message\":\"Invalid Credentials\",\"domain\":\"global\",\"reason\":\"authError\",\"location\":\"Authorization\",\"locationType\":\"header\"}],\"status\":\"UNAUTHENTICATED\",\"details\":[{\"@type\":\"type.googleapis.com/google.rpc.ErrorInfo\",\"reason\":\"ACCESS_TOKEN_TYPE_UNSUPPORTED\",\"metadatas\":{\"method\":\"compute.v1.DisksService.List\",\"service\":\"compute.googleapis.com\"}}]}}" }, "cookies": [], "headers": [ { - "name": "etag", - "value": "WycuRvNinElQJhFzuK7cRXoct4o=/5SMhE9UGqzmZGqZuPPPFuf4wrDg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" + "name": "www-authenticate", + "value": "Bearer realm=\"https://accounts.google.com/\", error=\"invalid_token\"" }, { "name": "vary", "value": "Origin, X-Origin, Referer" }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, { "name": "date", - "value": "Tue, 06 Jun 2023 23:46:23 GMT" + "value": "Wed, 22 Nov 2023 17:30:39 GMT" }, { "name": "server", @@ -4748,14 +4626,14 @@ "value": "close" } ], - "headersSize": 432, + "headersSize": 453, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 401, + "statusText": "Unauthorized" }, - "startedDateTime": "2023-06-06T23:46:22.040Z", - "time": 1529, + "startedDateTime": "2023-11-22T17:30:39.117Z", + "time": 310, "timings": { "blocked": -1, "connect": -1, @@ -4763,12 +4641,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1529 + "wait": 310 } }, { - "_id": "18c73818c397289d776a58dad98c02fe", - "_order": 0, + "_id": "ea71645357c5b388b459e228c9eff2dc", + "_order": 3, "cache": {}, "request": { "bodySize": 0, @@ -4777,7 +4655,7 @@ { "_fromType": "array", "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" + "value": "gdcl/6.0.4 gl-node/18.16.0 auth/8.8.0" }, { "_fromType": "array", @@ -4787,7 +4665,7 @@ { "_fromType": "array", "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" + "value": "google-api-nodejs-client/6.0.4 (gzip)" }, { "_fromType": "array", @@ -4809,37 +4687,37 @@ "value": "compute.googleapis.com" } ], - "headersSize": 1374, + "headersSize": 360, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-c/disks" + "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/disks" }, "response": { - "bodySize": 265, + "bodySize": 607, "content": { "encoding": "utf-8", "mimeType": "application/json; charset=UTF-8", - "size": 265, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-c/disks\"}" + "size": 607, + "text": "{\"error\":{\"code\":401,\"message\":\"Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.\",\"errors\":[{\"message\":\"Invalid Credentials\",\"domain\":\"global\",\"reason\":\"authError\",\"location\":\"Authorization\",\"locationType\":\"header\"}],\"status\":\"UNAUTHENTICATED\",\"details\":[{\"@type\":\"type.googleapis.com/google.rpc.ErrorInfo\",\"reason\":\"ACCESS_TOKEN_TYPE_UNSUPPORTED\",\"metadatas\":{\"method\":\"compute.v1.DisksService.List\",\"service\":\"compute.googleapis.com\"}}]}}" }, "cookies": [], "headers": [ { - "name": "etag", - "value": "D3zjR3floGH38bfmVe6hh6DbNug=/L1tgXQedtY2n0f22SocP-bvLOu8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" + "name": "www-authenticate", + "value": "Bearer realm=\"https://accounts.google.com/\", error=\"invalid_token\"" }, { "name": "vary", "value": "Origin, X-Origin, Referer" }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, { "name": "date", - "value": "Tue, 06 Jun 2023 23:46:25 GMT" + "value": "Wed, 22 Nov 2023 17:30:40 GMT" }, { "name": "server", @@ -4870,14 +4748,14 @@ "value": "close" } ], - "headersSize": 432, + "headersSize": 453, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 401, + "statusText": "Unauthorized" }, - "startedDateTime": "2023-06-06T23:46:23.573Z", - "time": 1821, + "startedDateTime": "2023-11-22T17:30:39.129Z", + "time": 1453, "timings": { "blocked": -1, "connect": -1, @@ -4885,12 +4763,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1821 + "wait": 1453 } }, { - "_id": "830542ecbdef40fb0b90658a38617a83", - "_order": 0, + "_id": "ea71645357c5b388b459e228c9eff2dc", + "_order": 4, "cache": {}, "request": { "bodySize": 0, @@ -4899,7 +4777,7 @@ { "_fromType": "array", "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" + "value": "gdcl/6.0.4 gl-node/18.16.0 auth/8.8.0" }, { "_fromType": "array", @@ -4909,7 +4787,7 @@ { "_fromType": "array", "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" + "value": "google-api-nodejs-client/6.0.4 (gzip)" }, { "_fromType": "array", @@ -4931,37 +4809,37 @@ "value": "compute.googleapis.com" } ], - "headersSize": 1374, + "headersSize": 360, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-a/disks" + "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/disks" }, "response": { - "bodySize": 252, + "bodySize": 590, "content": { "encoding": "utf-8", "mimeType": "application/json; charset=UTF-8", - "size": 252, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-a/disks\"}" + "size": 590, + "text": "{\"error\":{\"code\":401,\"message\":\"Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.\",\"errors\":[{\"message\":\"Invalid Credentials\",\"domain\":\"global\",\"reason\":\"authError\",\"location\":\"Authorization\",\"locationType\":\"header\"}],\"status\":\"UNAUTHENTICATED\",\"details\":[{\"@type\":\"type.googleapis.com/google.rpc.ErrorInfo\",\"reason\":\"ACCESS_TOKEN_TYPE_UNSUPPORTED\",\"metadatas\":{\"service\":\"compute.googleapis.com\",\"method\":\"compute.v1.DisksService.List\"}}]}}" }, "cookies": [], "headers": [ { - "name": "etag", - "value": "lthoBNalxZ2JdFcmhYux0TcTfgk=/PLmqKwKLtjmx16wbn2_g0Go4Pg4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" + "name": "www-authenticate", + "value": "Bearer realm=\"https://accounts.google.com/\", error=\"invalid_token\"" }, { "name": "vary", "value": "Origin, X-Origin, Referer" }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, { "name": "date", - "value": "Tue, 06 Jun 2023 23:46:26 GMT" + "value": "Wed, 22 Nov 2023 17:30:41 GMT" }, { "name": "server", @@ -4992,14 +4870,14 @@ "value": "close" } ], - "headersSize": 432, + "headersSize": 453, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 401, + "statusText": "Unauthorized" }, - "startedDateTime": "2023-06-06T23:46:25.403Z", - "time": 1449, + "startedDateTime": "2023-11-22T17:30:40.588Z", + "time": 1251, "timings": { "blocked": -1, "connect": -1, @@ -5007,12 +4885,12 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 1449 + "wait": 1251 } }, { - "_id": "f7ca78965ffc46a774972f743a78486f", - "_order": 0, + "_id": "ea71645357c5b388b459e228c9eff2dc", + "_order": 5, "cache": {}, "request": { "bodySize": 0, @@ -5021,7 +4899,7 @@ { "_fromType": "array", "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" + "value": "gdcl/6.0.4 gl-node/18.16.0 auth/8.8.0" }, { "_fromType": "array", @@ -5031,7 +4909,7 @@ { "_fromType": "array", "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" + "value": "google-api-nodejs-client/6.0.4 (gzip)" }, { "_fromType": "array", @@ -5053,37 +4931,37 @@ "value": "compute.googleapis.com" } ], - "headersSize": 1374, + "headersSize": 360, "httpVersion": "HTTP/1.1", "method": "GET", "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-b/disks" + "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/disks" }, "response": { - "bodySize": 262, + "bodySize": 590, "content": { "encoding": "utf-8", "mimeType": "application/json; charset=UTF-8", - "size": 262, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-b/disks\"}" + "size": 590, + "text": "{\"error\":{\"code\":401,\"message\":\"Request had invalid authentication credentials. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.\",\"errors\":[{\"message\":\"Invalid Credentials\",\"domain\":\"global\",\"reason\":\"authError\",\"location\":\"Authorization\",\"locationType\":\"header\"}],\"status\":\"UNAUTHENTICATED\",\"details\":[{\"@type\":\"type.googleapis.com/google.rpc.ErrorInfo\",\"reason\":\"ACCESS_TOKEN_TYPE_UNSUPPORTED\",\"metadatas\":{\"service\":\"compute.googleapis.com\",\"method\":\"compute.v1.DisksService.List\"}}]}}" }, "cookies": [], "headers": [ { - "name": "etag", - "value": "pUbgg7_cmOllwMhMY1iLOmPYwkA=/sTNcfYO993XZ555PXigHSo7XnGU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" + "name": "www-authenticate", + "value": "Bearer realm=\"https://accounts.google.com/\", error=\"invalid_token\"" }, { "name": "vary", "value": "Origin, X-Origin, Referer" }, + { + "name": "content-type", + "value": "application/json; charset=UTF-8" + }, { "name": "date", - "value": "Tue, 06 Jun 2023 23:46:28 GMT" + "value": "Wed, 22 Nov 2023 17:30:42 GMT" }, { "name": "server", @@ -5114,25871 +4992,14 @@ "value": "close" } ], - "headersSize": 432, + "headersSize": 453, "httpVersion": "HTTP/1.1", "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:26.857Z", - "time": 1434, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1434 - } - }, - { - "_id": "4ff773379278e80035f9de3259d06bed", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-c/disks" - }, - "response": { - "bodySize": 221, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 221, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "yzMVbbojdd3oES-CvrqjS8KTbn0=/yt6xu2ydaaDFhix4BgRAd7ZJXUw=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:29 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:28.295Z", - "time": 1424, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1424 - } - }, - { - "_id": "17e4337772f9ed1de9e2e0bbef110cff", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-a/disks" - }, - "response": { - "bodySize": 320, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 320, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "J-vsDSumTo1Fwwri5TNgW-Y-m2c=/gQi27kwS0rMJXTy4umicFoeCNiU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:31 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:29.724Z", - "time": 1424, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1424 - } - }, - { - "_id": "754faa624563d1727ba0c2bdb323b99e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-b/disks" - }, - "response": { - "bodySize": 296, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 296, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "yDfXaezFVvhL-kLN1TKP8iBN1fg=/HKL5fE4nPL1FHFRyLYsSmBaKXJ0=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:32 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:31.152Z", - "time": 1862, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1862 - } - }, - { - "_id": "ba378f1d1d7ae52b6b2a3d7682d072fc", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-c/disks" - }, - "response": { - "bodySize": 313, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 313, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "getGFG4zA4EJuK0pZCUu3tsSMsg=/AL75RyPLdinjlvd7wu5V1gN5ZT8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:34 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:33.019Z", - "time": 1545, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1545 - } - }, - { - "_id": "5e9652dbf7b0026a5581378202769651", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1385, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/disks" - }, - "response": { - "bodySize": 328, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 328, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "RpqSz6i9GRfLpbgwo6sN8pAl9E0=/v222ri-biK0nw0ua0C98EpbIqDo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:35 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:34.573Z", - "time": 945, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 945 - } - }, - { - "_id": "b1c39f0ffa8959d1bbc31c23c4f0d908", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1385, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/disks" - }, - "response": { - "bodySize": 311, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 311, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "QtsW1DS191LPVlp_qsbXmfZCSls=/cBUqUe8a66mzIzaMa0lfgQcnIEE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:36 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:35.524Z", - "time": 905, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 905 - } - }, - { - "_id": "eeccffb49868604e18e91a29925c58e2", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1385, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/disks" - }, - "response": { - "bodySize": 301, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 301, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "nfbL1exsMGd1Dsi99mZMGx1z_Vs=/pmQNTymCXpfogtZysIUMNCEVwQ0=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:37 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:36.436Z", - "time": 997, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 997 - } - }, - { - "_id": "1e17f70b55fbc051b2bd6e32cb4acc79", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/disks" - }, - "response": { - "bodySize": 280, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 280, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "QomUNLCC4o5Clg5mhkZ9babX54w=/h32U5zJNIT0TcRLv9nDWE3QOGu4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:37 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:37.439Z", - "time": 545, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 545 - } - }, - { - "_id": "4da48ddcaa02715e03dfc353c9f521fd", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/disks" - }, - "response": { - "bodySize": 844, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 844, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/disks\",\"items\":[{\"kind\":\"compute#disk\",\"id\":\"6407817284391054436\",\"creationTimestamp\":\"2022-09-01T13:14:03.907-07:00\",\"name\":\"ignacio-bitbucket-server-ubuntu\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/disks/ignacio-bitbucket-server-ubuntu\",\"sourceImage\":\"https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/images/ubuntu-2204-jammy-v20220810\",\"sourceImageId\":\"1502314103704522106\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/diskTypes/pd-balanced\",\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-2204-lts\"],\"guestOsFeatures\":[{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"},{\"type\":\"SEV_CAPABLE\"},{\"type\":\"UEFI_COMPATIBLE\"},{\"type\":\"GVNIC\"}],\"lastAttachTimestamp\":\"2022-09-01T13:14:03.908-07:00\",\"users\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instances/ignacio-bitbucket-server-ubuntu\"],\"labelFingerprint\":\"42WmSpB8rSM=\",\"licenseCodes\":[\"5511465778777431107\"],\"physicalBlockSizeBytes\":\"4096\",\"architecture\":\"X86_64\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "H6DWA33XuzlEM0upbEzxfsxtFp0=/v6FHMYvo7bYcPQzL9lhzStuTdfs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:38 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:37.991Z", - "time": 363, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 363 - } - }, - { - "_id": "8da6cec85eae0f0afaf72ffa14d15772", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/disks" - }, - "response": { - "bodySize": 314, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 314, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "mHryzVRKOHAsNh_zYYZ676rJe40=/PNfdhl05Jze48Z4FoBRrt-6XK94=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:38 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:38.371Z", - "time": 320, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 320 - } - }, - { - "_id": "69c6a9ddaadacef9da5a6c5d2d2655c8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1373, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks" - }, - "response": { - "bodySize": 1540, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1540, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks\",\"items\":[{\"kind\":\"compute#disk\",\"id\":\"3259810228720939259\",\"creationTimestamp\":\"2021-05-31T09:25:57.526-07:00\",\"name\":\"example-encrypted-disk\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks/example-encrypted-disk\",\"sourceImage\":\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20200805\",\"sourceImageId\":\"6709658075886210235\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/diskTypes/pd-ssd\",\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch\"],\"guestOsFeatures\":[{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"}],\"diskEncryptionKey\":{\"kmsKeyName\":\"projects/j1-gc-integration-dev-v3/locations/us/keyRings/j1-gc-integration-dev-v3-disk-bucket-ring/cryptoKeys/j1-gc-integration-dev-v3-disk-bucket-key/cryptoKeyVersions/1\"},\"labels\":{\"environment\":\"dev\"},\"labelFingerprint\":\"a6HI36FuYIQ=\",\"licenseCodes\":[\"1000205\"],\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"8308816869584569175\",\"creationTimestamp\":\"2022-01-26T04:25:28.534-08:00\",\"name\":\"example-kms-disk\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks/example-kms-disk\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/diskTypes/pd-balanced\",\"diskEncryptionKey\":{\"kmsKeyName\":\"projects/j1-gc-integration-dev-v3/locations/us/keyRings/j1-gc-integration-dev-v3-disk-bucket-ring/cryptoKeys/j1-gc-integration-dev-v3-disk-bucket-key/cryptoKeyVersions/240\"},\"labelFingerprint\":\"42WmSpB8rSM=\",\"physicalBlockSizeBytes\":\"4096\",\"resourcePolicies\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/resourcePolicies/default-schedule-1\"]},{\"kind\":\"compute#disk\",\"id\":\"7436489975599537\",\"creationTimestamp\":\"2022-01-27T06:42:39.903-08:00\",\"name\":\"example-mapped-kms\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks/example-mapped-kms\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/diskTypes/pd-balanced\",\"diskEncryptionKey\":{\"kmsKeyName\":\"projects/jupiter-dev-326616/locations/global/keyRings/example-kms/cryptoKeys/jupiter-dev-key/cryptoKeyVersions/1\"},\"labelFingerprint\":\"42WmSpB8rSM=\",\"physicalBlockSizeBytes\":\"4096\",\"resourcePolicies\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/resourcePolicies/default-schedule-1\"]},{\"kind\":\"compute#disk\",\"id\":\"7533001396310820607\",\"creationTimestamp\":\"2021-08-06T10:57:36.308-07:00\",\"name\":\"my-disk\",\"sizeGb\":\"50\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks/my-disk\",\"sourceImage\":\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20210721\",\"sourceImageId\":\"3196446524667459422\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/diskTypes/pd-ssd\",\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch\"],\"guestOsFeatures\":[{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"}],\"labelFingerprint\":\"42WmSpB8rSM=\",\"licenseCodes\":[\"1000205\"],\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"1741667468574146546\",\"creationTimestamp\":\"2022-12-14T18:06:21.570-08:00\",\"name\":\"sonarqube\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks/sonarqube\",\"sourceImage\":\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-11-bullseye-v20221206\",\"sourceImageId\":\"3029264037887216418\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/diskTypes/pd-balanced\",\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-11-bullseye\"],\"guestOsFeatures\":[{\"type\":\"UEFI_COMPATIBLE\"},{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"},{\"type\":\"GVNIC\"}],\"lastAttachTimestamp\":\"2022-12-14T18:06:21.571-08:00\",\"users\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instances/sonarqube\"],\"labelFingerprint\":\"42WmSpB8rSM=\",\"licenseCodes\":[\"3853522013536123851\"],\"physicalBlockSizeBytes\":\"4096\",\"architecture\":\"X86_64\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "cl9zrSfVyStcuNKsIOG7BdL9TDg=/KQXVXgHHY0ZqACnDWIcB1sx05gg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:38 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:38.698Z", - "time": 366, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 366 - } - }, - { - "_id": "3ec3eaffe4c2f6b7048396b68e1f23ab", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1373, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/disks" - }, - "response": { - "bodySize": 799, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 799, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-b/disks\",\"items\":[{\"kind\":\"compute#disk\",\"id\":\"7312386076075495221\",\"creationTimestamp\":\"2022-04-10T21:43:06.418-07:00\",\"name\":\"pvc-e332727a-75d8-4fa9-8b32-ff47b419ef3d\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-e332727a-75d8-4fa9-8b32-ff47b419ef3d\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"jenkins-home-cjoc-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-core\\\",\\\"storage.gke.io/created-by\\\":\\\"pd.csi.storage.gke.io\\\"}\",\"sizeGb\":\"20\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/disks/pvc-e332727a-75d8-4fa9-8b32-ff47b419ef3d\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/diskTypes/pd-balanced\",\"lastAttachTimestamp\":\"2022-04-10T21:43:12.992-07:00\",\"lastDetachTimestamp\":\"2022-04-10T21:43:36.591-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "AP-kYrpiMYpsdGiNuEPKBP6mMp4=/iV4EpYOAR91m7UDEmAGwRuuVIYA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:39 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:39.071Z", - "time": 998, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 998 - } - }, - { - "_id": "93a678aca899e15ce730bfcc1016bca5", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1373, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks" - }, - "response": { - "bodySize": 2414, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 2414, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks\",\"items\":[{\"kind\":\"compute#disk\",\"id\":\"6665918671107263349\",\"creationTimestamp\":\"2022-04-10T21:59:06.465-07:00\",\"name\":\"gke-cloudbees-3bb99987-pvc-279ee8c9-44e2-48db-b521-789b113fc3f3\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-279ee8c9-44e2-48db-b521-789b113fc3f3\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"jenkins-home-cjoc-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-core\\\"}\",\"sizeGb\":\"20\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-cloudbees-3bb99987-pvc-279ee8c9-44e2-48db-b521-789b113fc3f3\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-10T21:59:10.873-07:00\",\"lastDetachTimestamp\":\"2022-04-11T06:26:59.688-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"153196272528430687\",\"creationTimestamp\":\"2022-04-12T00:22:25.009-07:00\",\"name\":\"gke-cloudbees-cd-79470-pvc-061251be-47f0-49b3-bb36-cbb70eb7c149\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-061251be-47f0-49b3-bb36-cbb70eb7c149\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"data-mariadb-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"8\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-cloudbees-cd-79470-pvc-061251be-47f0-49b3-bb36-cbb70eb7c149\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:22:29.997-07:00\",\"lastDetachTimestamp\":\"2022-04-12T00:33:19.761-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"6024202569414907458\",\"creationTimestamp\":\"2022-04-12T00:22:21.375-07:00\",\"name\":\"gke-cloudbees-cd-79470-pvc-68c9e144-8a75-4266-b2f7-688ad8d398e9\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-68c9e144-8a75-4266-b2f7-688ad8d398e9\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"flow-server-shared\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"5\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-cloudbees-cd-79470-pvc-68c9e144-8a75-4266-b2f7-688ad8d398e9\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"8685115657474840159\",\"creationTimestamp\":\"2022-04-12T00:22:24.876-07:00\",\"name\":\"gke-cloudbees-cd-79470-pvc-a974a022-4800-43a2-a940-7fdebaf5bdfa\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-a974a022-4800-43a2-a940-7fdebaf5bdfa\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"elasticsearch-data-flow-devopsinsight-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-cloudbees-cd-79470-pvc-a974a022-4800-43a2-a940-7fdebaf5bdfa\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:22:34.432-07:00\",\"lastDetachTimestamp\":\"2022-04-12T00:33:19.761-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"2741435773750908482\",\"creationTimestamp\":\"2022-04-12T00:22:21.550-07:00\",\"name\":\"gke-cloudbees-cd-79470-pvc-f9430be1-40e4-4081-9a49-20731de20c39\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-f9430be1-40e4-4081-9a49-20731de20c39\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"flow-repo-artifacts\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-cloudbees-cd-79470-pvc-f9430be1-40e4-4081-9a49-20731de20c39\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:22:26.792-07:00\",\"lastDetachTimestamp\":\"2022-04-12T00:33:17.413-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"9149333035840054032\",\"creationTimestamp\":\"2022-04-10T20:18:23.244-07:00\",\"name\":\"gke-cloudbees-integrat-pvc-d0c9c7d3-e3ab-4e6f-aeda-f0e36fc0eacf\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-d0c9c7d3-e3ab-4e6f-aeda-f0e36fc0eacf\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"jenkins-home-cjoc-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-core\\\"}\",\"sizeGb\":\"20\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-cloudbees-integrat-pvc-d0c9c7d3-e3ab-4e6f-aeda-f0e36fc0eacf\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"4233546479403896993\",\"creationTimestamp\":\"2022-04-11T06:34:06.564-07:00\",\"name\":\"gke-j1-cloudbees-c63a6-pvc-c862c112-3fc5-47e4-8ac2-84c5eaeb66a5\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-c862c112-3fc5-47e4-8ac2-84c5eaeb66a5\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"jenkins-home-cjoc-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-core\\\"}\",\"sizeGb\":\"20\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-c63a6-pvc-c862c112-3fc5-47e4-8ac2-84c5eaeb66a5\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-24T12:29:05.581-07:00\",\"lastDetachTimestamp\":\"2022-05-18T09:59:18.246-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"8384311395196900303\",\"creationTimestamp\":\"2022-04-12T00:41:20.955-07:00\",\"name\":\"gke-j1-cloudbees-cd-4e-pvc-814e07ba-f6c8-4ebc-b2b8-797220d11f12\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-814e07ba-f6c8-4ebc-b2b8-797220d11f12\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"flow-server-shared\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"5\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cd-4e-pvc-814e07ba-f6c8-4ebc-b2b8-797220d11f12\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:41:35.827-07:00\",\"lastDetachTimestamp\":\"2022-04-12T01:13:11.895-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"6841736889695245260\",\"creationTimestamp\":\"2022-04-12T00:41:23.508-07:00\",\"name\":\"gke-j1-cloudbees-cd-4e-pvc-a37ac75e-7ffe-4fb9-a2e9-e7ad1e3d8c67\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-a37ac75e-7ffe-4fb9-a2e9-e7ad1e3d8c67\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"elasticsearch-data-flow-devopsinsight-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cd-4e-pvc-a37ac75e-7ffe-4fb9-a2e9-e7ad1e3d8c67\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:41:31.859-07:00\",\"lastDetachTimestamp\":\"2022-04-12T01:13:11.895-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"4846932302501549007\",\"creationTimestamp\":\"2022-04-12T00:41:20.966-07:00\",\"name\":\"gke-j1-cloudbees-cd-4e-pvc-b9971175-59e5-4d78-bbbd-8df689921527\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-b9971175-59e5-4d78-bbbd-8df689921527\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"flow-repo-artifacts\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cd-4e-pvc-b9971175-59e5-4d78-bbbd-8df689921527\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:41:25.221-07:00\",\"lastDetachTimestamp\":\"2022-04-12T01:13:11.895-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"8777801137621865420\",\"creationTimestamp\":\"2022-04-12T00:41:23.541-07:00\",\"name\":\"gke-j1-cloudbees-cd-4e-pvc-c2f60249-53d7-4e57-a7aa-24b5c43fef70\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-c2f60249-53d7-4e57-a7aa-24b5c43fef70\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"data-mariadb-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cd\\\"}\",\"sizeGb\":\"8\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cd-4e-pvc-c2f60249-53d7-4e57-a7aa-24b5c43fef70\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-12T00:41:28.572-07:00\",\"lastDetachTimestamp\":\"2022-04-12T01:13:11.895-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"3606043712984484129\",\"creationTimestamp\":\"2022-04-12T01:26:55.323-07:00\",\"name\":\"gke-j1-cloudbees-cdro--pvc-567934b0-a1af-4e9d-b131-4daef002dfe6\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-567934b0-a1af-4e9d-b131-4daef002dfe6\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"flow-repo-artifacts\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cdro\\\"}\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cdro--pvc-567934b0-a1af-4e9d-b131-4daef002dfe6\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-23T17:33:15.946-07:00\",\"lastDetachTimestamp\":\"2022-05-18T09:59:21.446-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"4251694515820726590\",\"creationTimestamp\":\"2022-04-12T01:26:57.777-07:00\",\"name\":\"gke-j1-cloudbees-cdro--pvc-8a990fb5-45c2-4d53-9a3d-6cffec7b3934\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-8a990fb5-45c2-4d53-9a3d-6cffec7b3934\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"data-mariadb-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cdro\\\"}\",\"sizeGb\":\"8\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cdro--pvc-8a990fb5-45c2-4d53-9a3d-6cffec7b3934\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-23T17:33:14.095-07:00\",\"lastDetachTimestamp\":\"2022-05-18T09:59:21.446-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"3281208786562877728\",\"creationTimestamp\":\"2022-04-12T01:26:55.315-07:00\",\"name\":\"gke-j1-cloudbees-cdro--pvc-a38deac2-8b7b-40fb-bdbb-e07309d24ad0\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-a38deac2-8b7b-40fb-bdbb-e07309d24ad0\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"flow-server-shared\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cdro\\\"}\",\"sizeGb\":\"5\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cdro--pvc-a38deac2-8b7b-40fb-bdbb-e07309d24ad0\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-23T17:33:33.908-07:00\",\"lastDetachTimestamp\":\"2022-05-18T09:59:21.446-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"},{\"kind\":\"compute#disk\",\"id\":\"2443750198895741246\",\"creationTimestamp\":\"2022-04-12T01:26:57.775-07:00\",\"name\":\"gke-j1-cloudbees-cdro--pvc-dfa62e94-f601-4f82-9a59-2132e40b5979\",\"description\":\"{\\\"kubernetes.io/created-for/pv/name\\\":\\\"pvc-dfa62e94-f601-4f82-9a59-2132e40b5979\\\",\\\"kubernetes.io/created-for/pvc/name\\\":\\\"elasticsearch-data-flow-devopsinsight-0\\\",\\\"kubernetes.io/created-for/pvc/namespace\\\":\\\"cloudbees-cdro\\\"}\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks/gke-j1-cloudbees-cdro--pvc-dfa62e94-f601-4f82-9a59-2132e40b5979\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/diskTypes/pd-standard\",\"lastAttachTimestamp\":\"2022-04-23T17:33:03.832-07:00\",\"lastDetachTimestamp\":\"2022-05-18T09:59:21.446-07:00\",\"labels\":{\"goog-gke-volume\":\"\"},\"labelFingerprint\":\"nT7_dAxskBs=\",\"physicalBlockSizeBytes\":\"4096\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "V5YCq3p5Jm_x4KZ27eK2lSV0GnU=/pqXBu0sVc8VYJcRsA_tDYB6r_lc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:40 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:40.076Z", - "time": 1088, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1088 - } - }, - { - "_id": "75c962c65e83e60173eaf5f18a5f0fe3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1373, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/disks" - }, - "response": { - "bodySize": 848, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 848, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-f/disks\",\"items\":[{\"kind\":\"compute#disk\",\"id\":\"4854289285171431097\",\"creationTimestamp\":\"2021-08-06T10:58:47.318-07:00\",\"name\":\"internal-glb-qpbt\",\"sizeGb\":\"10\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f\",\"status\":\"READY\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/disks/internal-glb-qpbt\",\"sourceImage\":\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/images/debian-9-stretch-v20210721\",\"sourceImageId\":\"3196446524667459422\",\"type\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/diskTypes/pd-standard\",\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch\"],\"guestOsFeatures\":[{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"}],\"lastAttachTimestamp\":\"2021-08-06T10:58:47.319-07:00\",\"users\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/instances/internal-glb-qpbt\"],\"labelFingerprint\":\"42WmSpB8rSM=\",\"licenseCodes\":[\"1000205\"],\"physicalBlockSizeBytes\":\"4096\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Bzd0fws4dyK1w6UkV8dvAO7xcoI=/jtr2MaTcLjZrGFZJZjPPR07-KOg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:42 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:41.169Z", - "time": 1019, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1019 - } - }, - { - "_id": "294442588e0f2e1ae101090a4aab7a1e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-b/disks" - }, - "response": { - "bodySize": 224, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 224, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "64NJlTd9F_rAqmZ09Lnw1BFMFRY=/CTbbv7Dfg1RanlKR5YMDJW83a14=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:43 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:42.196Z", - "time": 1005, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1005 - } - }, - { - "_id": "6198347670d7a84be249073cfdadb6fb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-c/disks" - }, - "response": { - "bodySize": 292, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 292, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "MhgqHKFMgLjmhU3DtUmR72RLs2A=/noesOdWBHJ-dEAG-s8-VEoSjbHk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:44 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:43.208Z", - "time": 1173, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1173 - } - }, - { - "_id": "37c87e1605ae2feae3b5345473ad3d86", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-d/disks" - }, - "response": { - "bodySize": 302, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 302, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-d/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-d/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "npXVySNq9lMVkyDUNQQBvVFkdTY=/mAn5U2gmntgKy6i6gAqWKVHlo8I=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:45 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:44.387Z", - "time": 968, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 968 - } - }, - { - "_id": "cf656c0847eb8312785cfe47d6083975", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-a/disks" - }, - "response": { - "bodySize": 285, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 285, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "pjZVuPTalo37G6yOIJG_kM2FpZA=/o99ZeUJo4ji22QmChGwUiBp3Scg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:46 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:45.359Z", - "time": 923, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 923 - } - }, - { - "_id": "06616c1771cb66dabbbb21ba9995eeb1", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-b/disks" - }, - "response": { - "bodySize": 316, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 316, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "z-pP6l_XRosbhW72Y-9JtFmznj8=/Iq-VLIngPUfUVt_Q7Asa0rXyZlI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:47 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:46.288Z", - "time": 1161, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1161 - } - }, - { - "_id": "e61ce617ef3d161cb16a9ec6ccd8588b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-c/disks" - }, - "response": { - "bodySize": 207, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 207, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "rRcUErSeHKxekTc4XR745C4S-_Y=/jykNTz7zwJ9PE29aHghFBZneIAQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:48 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:47.459Z", - "time": 1487, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1487 - } - }, - { - "_id": "e88577630750be098b6582b11e768c43", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-a/disks" - }, - "response": { - "bodySize": 292, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 292, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "1we7iOihk2qgOgICo4G8uK8jOoE=/nFCXx5ulFsj_bI70h7HU5tXYi1w=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:49 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:48.956Z", - "time": 998, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 998 - } - }, - { - "_id": "9fbde95b15b3129e352bfb85b8da21f0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-b/disks" - }, - "response": { - "bodySize": 265, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 265, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "k3ctzhCOQgArIEGU6Eqva2-YkA0=/7NELyIe_gBPxxmfPmk_ACOb4X-g=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:50 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:49.959Z", - "time": 1046, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1046 - } - }, - { - "_id": "3daa1bda26938f6f56528d6c2bd0699e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-c/disks" - }, - "response": { - "bodySize": 258, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 258, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "2ItK-_rZDYcekIqFSMmgiTNDNM8=/zeadpVoWDvUfmm09P2w9n7Mt2co=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:51 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:51.012Z", - "time": 1040, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1040 - } - }, - { - "_id": "048d7f52fdc8fc58ae97cc4437338c79", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-a/disks" - }, - "response": { - "bodySize": 224, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 224, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "p9WDA42P8Df8u6Tm_EHRQE6fdNs=/9lFFFWKNcqLgjqI4bNmtl1Z5rlA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:52 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:52.056Z", - "time": 345, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 345 - } - }, - { - "_id": "e3226d522fdc2341bf92cbe6b2574433", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-b/disks" - }, - "response": { - "bodySize": 319, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 319, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_gkHhbwkV0ccD8r1huY4lmyvHxU=/WPXazdqCSNSHMLdr5JCNVdJJ4q4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:53 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:52.406Z", - "time": 1220, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1220 - } - }, - { - "_id": "03b78aff33250673c3ba65f061bd8578", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-c/disks" - }, - "response": { - "bodySize": 234, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 234, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "7zAuPb-vNa5axD8WBJ7pr6Xs_OU=/9WjOiffBk_pSCNmV9QaDC1WOafM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:54 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:53.634Z", - "time": 868, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 868 - } - }, - { - "_id": "cb6a19eb0fe3ec0b75ffa663ce6a2193", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-a/disks" - }, - "response": { - "bodySize": 268, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 268, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "KNPemxCyFC9xw4juIUVeZzQp1dw=/Vqc_WUEYCSN98X6woq-32smY-L0=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:55 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:54.507Z", - "time": 1504, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1504 - } - }, - { - "_id": "7d551c13a72334579fdeee1ad50bcfc1", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-b/disks" - }, - "response": { - "bodySize": 214, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 214, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "sr2AtBoNL4UcNGt1xY30F_VQv8U=/M6sKnV6MDYLexs7oaO6WMM46Qf0=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:57 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:56.017Z", - "time": 1052, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1052 - } - }, - { - "_id": "51f4e08bbfb83d4a8df31f687475c1c6", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-c/disks" - }, - "response": { - "bodySize": 231, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 231, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "zMHV4b5zgKWbBW2ikdETb6w5S60=/kn2oJVxeNL-WfKDlh0xn5toFGRU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:58 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:57.076Z", - "time": 1039, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1039 - } - }, - { - "_id": "70bc05bce6125190e13b63102273f801", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-a/disks" - }, - "response": { - "bodySize": 285, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 285, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-a/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-a/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "XSuDc-Jhz4gxghNtTKL-YgrOpbY=/FCDSj4uB67Q7noVuoHupduVvn0I=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:46:59 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:58.120Z", - "time": 1045, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1045 - } - }, - { - "_id": "aec625322652aa700387abf5c252bc60", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-b/disks" - }, - "response": { - "bodySize": 241, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 241, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-b/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-b/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "umq8R3yBxFIdCVNOLRDgayRVxIc=/I1yd-W3iMxat2cSn8lYf0X3UNog=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:46:59.173Z", - "time": 1024, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1024 - } - }, - { - "_id": "bf8386b4c1457b79c321388911bc9594", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1370, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-c/disks" - }, - "response": { - "bodySize": 241, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 241, - "text": "{\"kind\":\"compute#diskList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-c/disks\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-c/disks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "K4NhtZ60pU827yHSnKhuntS0ZnI=/uRa1JzHLJ8H-8D0DU5bjCqbDqcM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:01 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:00.203Z", - "time": 1047, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1047 - } - }, - { - "_id": "acea721c8193b51ced888cae721cc423", - "_order": 1, - "cache": {}, - "request": { - "bodySize": 709, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "content-type", - "value": "application/x-www-form-urlencoded" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "content-length", - "value": "709" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip,deflate" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "www.googleapis.com" - } - ], - "headersSize": 300, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded", - "params": [], - "text": "[REDACTED]" - }, - "queryString": [], - "url": "https://www.googleapis.com/oauth2/v4/token" - }, - "response": { - "bodySize": 1259, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1259, - "text": "{\"access_token\":\"[REDACTED]\",\"expires_in\":9999,\"token_type\":\"Bearer\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:01 GMT" - }, - { - "name": "server", - "value": "scaffolding on HTTPServer2" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 390, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:01.260Z", - "time": 340, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 340 - } - }, - { - "_id": "986e33f2a86c5db3dd90f0e43a7ba1e1", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1363, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks" - }, - "response": { - "bodySize": 1500, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1500, - "text": "{\"kind\":\"compute#networkList\",\"id\":\"projects/j1-gc-integration-dev-v3/global/networks\",\"items\":[{\"kind\":\"compute#network\",\"id\":\"3355945658528347131\",\"creationTimestamp\":\"2021-05-31T09:21:40.121-07:00\",\"name\":\"default\",\"description\":\"Default network for the project\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"selfLinkWithId\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/3355945658528347131\",\"autoCreateSubnetworks\":true,\"subnetworks\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-southwest1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-north1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west4/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west8/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east4/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-west1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west9/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east5/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west4/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-central2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west6/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-south2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-east1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-south1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/me-central1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east7/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west3/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/australia-southeast2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/australia-southeast1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west3/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/northamerica-northeast1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-south1/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/northamerica-northeast2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast3/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east2/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west12/subnetworks/default\",\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/me-west1/subnetworks/default\"],\"peerings\":[{\"name\":\"servicenetworking-googleapis-com\",\"network\":\"https://www.googleapis.com/compute/v1/projects/vc085cf1742bb325ap-tp/global/networks/servicenetworking\",\"state\":\"ACTIVE\",\"stateDetails\":\"[2023-01-18T22:04:14.416-08:00]: Connected.\",\"autoCreateRoutes\":true,\"exportCustomRoutes\":false,\"importCustomRoutes\":false,\"exchangeSubnetRoutes\":true,\"exportSubnetRoutesWithPublicIp\":false,\"importSubnetRoutesWithPublicIp\":false,\"stackType\":\"IPV4_ONLY\"}],\"routingConfig\":{\"routingMode\":\"REGIONAL\"},\"networkFirewallPolicyEnforcementOrder\":\"AFTER_CLASSIC_FIREWALL\"},{\"kind\":\"compute#network\",\"id\":\"7739872907028377832\",\"creationTimestamp\":\"2021-05-31T09:25:43.742-07:00\",\"name\":\"public-compute-app-vpc\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/public-compute-app-vpc\",\"selfLinkWithId\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/7739872907028377832\",\"autoCreateSubnetworks\":false,\"subnetworks\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/public-compute-app-public-subnet-1\"],\"peerings\":[{\"name\":\"same-project-vpc-peering-activator\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/test-vpc-network\",\"state\":\"INACTIVE\",\"stateDetails\":\"[2022-04-22T08:21:17.788-07:00]: Peer network tried to connect and failed.\",\"autoCreateRoutes\":true,\"exportCustomRoutes\":false,\"importCustomRoutes\":false,\"exchangeSubnetRoutes\":true,\"exportSubnetRoutesWithPublicIp\":true,\"importSubnetRoutesWithPublicIp\":false,\"stackType\":\"IPV4_ONLY\"}],\"routingConfig\":{\"routingMode\":\"GLOBAL\"},\"networkFirewallPolicyEnforcementOrder\":\"AFTER_CLASSIC_FIREWALL\"},{\"kind\":\"compute#network\",\"id\":\"850726367629723360\",\"creationTimestamp\":\"2021-08-06T10:57:35.628-07:00\",\"name\":\"rbs-net\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/rbs-net\",\"selfLinkWithId\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/850726367629723360\",\"autoCreateSubnetworks\":false,\"subnetworks\":[\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/rbs-net-default\"],\"routingConfig\":{\"routingMode\":\"REGIONAL\"},\"networkFirewallPolicyEnforcementOrder\":\"AFTER_CLASSIC_FIREWALL\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "DlI-MEZkqLBFz5fbr2IXHE22VUM=/qEz3K-bOt1vlIXW5Pemhjg9MK28=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:01 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:01.608Z", - "time": 607, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 607 - } - }, - { - "_id": "acea721c8193b51ced888cae721cc423", - "_order": 2, - "cache": {}, - "request": { - "bodySize": 709, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "content-type", - "value": "application/x-www-form-urlencoded" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "content-length", - "value": "709" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip,deflate" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "www.googleapis.com" - } - ], - "headersSize": 300, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded", - "params": [], - "text": "[REDACTED]" - }, - "queryString": [], - "url": "https://www.googleapis.com/oauth2/v4/token" - }, - "response": { - "bodySize": 1170, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1170, - "text": "{\"access_token\":\"[REDACTED]\",\"expires_in\":9999,\"token_type\":\"Bearer\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:02 GMT" - }, - { - "name": "server", - "value": "scaffolding on HTTPServer2" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 390, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:02.226Z", - "time": 340, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 340 - } - }, - { - "_id": "915d61e097deb448273eed473b02f0a5", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east1/subnetworks" - }, - "response": { - "bodySize": 656, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 656, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-east1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"7610687785482630132\",\"creationTimestamp\":\"2021-05-31T09:21:47.185-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.140.0.0/20\",\"gatewayAddress\":\"10.140.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"OoKExM89NsQ=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "w5cYxDTEQf6Xh78wbw76uQqy_to=/I-PQZIqYsanSDnetJdk3CVfGPpI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:04 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:02.575Z", - "time": 1628, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1628 - } - }, - { - "_id": "1169c211c19f27af46bde51cff484245", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east2/subnetworks" - }, - "response": { - "bodySize": 608, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 608, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-east2/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"754127291782050805\",\"creationTimestamp\":\"2021-05-31T09:21:46.946-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.170.0.0/20\",\"gatewayAddress\":\"10.170.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east2\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east2/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"Yt60RWXZ2Ok=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-east2/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "noUcKOweh2snTePMzs3apPRgsTQ=/VzqehLaxnQOEtvCiX8tUJsIrE98=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:05 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:04.210Z", - "time": 1740, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1740 - } - }, - { - "_id": "a4ccb51b7cc5ad59a033fd39de0a36a3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast1/subnetworks" - }, - "response": { - "bodySize": 660, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 660, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-northeast1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"7598514478071198708\",\"creationTimestamp\":\"2021-05-31T09:21:47.158-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.146.0.0/20\",\"gatewayAddress\":\"10.146.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"vQadVjZKQ5A=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Wh8TP5XB8LOvPFw60K476TWoCC0=/L9B0fx8qY8QI531Eq6ws6Sx0218=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:06 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:05.956Z", - "time": 422, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 422 - } - }, - { - "_id": "5f418862adf1b30c5e2135270190e157", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast2/subnetworks" - }, - "response": { - "bodySize": 592, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 592, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-northeast2/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"149539060650128372\",\"creationTimestamp\":\"2021-05-31T09:21:47.264-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.174.0.0/20\",\"gatewayAddress\":\"10.174.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast2\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast2/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"OIiCTECjz-I=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast2/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "bFakwOq9ompapLZ1yLZXRjBTrcI=/no13xSVpLXTlLtgllM0-rwr_Ba4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:07 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:06.382Z", - "time": 1469, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1469 - } - }, - { - "_id": "6e9122e32239a71f121d198403fab921", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast3/subnetworks" - }, - "response": { - "bodySize": 650, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 650, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-northeast3/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"4518716459447792628\",\"creationTimestamp\":\"2021-05-31T09:21:47.194-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.178.0.0/20\",\"gatewayAddress\":\"10.178.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast3\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast3/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"Ych9BNyqi4k=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-northeast3/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "fN4gJ6mg3V3JUU-fpdWB8q1vKQ8=/udmA0fMgG2RHSMyN-WDzWAP05_M=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:09 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:07.858Z", - "time": 1604, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1604 - } - }, - { - "_id": "e141410170b139b135a14cb336ddbc51", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-south1/subnetworks" - }, - "response": { - "bodySize": 632, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 632, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-south1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"4476362008825476084\",\"creationTimestamp\":\"2021-05-31T09:21:47.286-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.160.0.0/20\",\"gatewayAddress\":\"10.160.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-south1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-south1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"6UKnqCtrCio=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-south1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "AtpMd3cZBgiWRjXusAPuT4b1LMk=/ylzNnPxy3E5U-UFzz0ZFQvCEQww=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:11 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:09.465Z", - "time": 2216, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2216 - } - }, - { - "_id": "39672cf0665e33fc58a49ce11dbd29ca", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast1/subnetworks" - }, - "response": { - "bodySize": 586, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 586, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-southeast1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"8320334245274366964\",\"creationTimestamp\":\"2021-05-31T09:21:47.150-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.148.0.0/20\",\"gatewayAddress\":\"10.148.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"PGm4g37VY3g=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "qJelP1asyHJmFIstmHMRax8j1qM=/tFwPqiCCjqAbakQU2xQGTQXtykY=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:13 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:11.690Z", - "time": 1935, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1935 - } - }, - { - "_id": "aeb075a20058f989784330f1cbed016f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast2/subnetworks" - }, - "response": { - "bodySize": 651, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 651, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/asia-southeast2/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"4318252898176250868\",\"creationTimestamp\":\"2021-05-31T09:21:47.163-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.184.0.0/20\",\"gatewayAddress\":\"10.184.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast2\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast2/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"BMwNfBbJs6U=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/asia-southeast2/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Nb--tyr_NSGQlDgU6-xYcTA9f9I=/dQXiqhG_xLhhiZHJcVjzFTcNGuk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:13 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:13.630Z", - "time": 458, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 458 - } - }, - { - "_id": "ffaa0ccc56d9eb76a62372050105ac82", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1388, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/australia-southeast1/subnetworks" - }, - "response": { - "bodySize": 627, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 627, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/australia-southeast1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"8129163215114908660\",\"creationTimestamp\":\"2021-05-31T09:21:47.129-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.152.0.0/20\",\"gatewayAddress\":\"10.152.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/australia-southeast1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/australia-southeast1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"Gv1jF8TROlo=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/australia-southeast1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_GfOUXSmr8KbW4D-y5iUCck9zI4=/-93t_QUlF6E1L7tkwXhLlHoCC7k=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:14 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:14.095Z", - "time": 523, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 523 - } - }, - { - "_id": "271313dc7224ca93bd76748d39cf8f92", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-north1/subnetworks" - }, - "response": { - "bodySize": 630, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 630, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/europe-north1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"8520836826323792884\",\"creationTimestamp\":\"2021-05-31T09:21:47.247-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.166.0.0/20\",\"gatewayAddress\":\"10.166.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-north1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-north1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"YcS7pqg1BZ4=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-north1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "3KGf--jpSxBAQ_pMZbevgfR4Vo8=/qQujgJcjf0xwaIDWKQqWRaHC3yk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:15 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:14.625Z", - "time": 1540, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1540 - } - }, - { - "_id": "1248e752ed560549b286102f7c56e953", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west1/subnetworks" - }, - "response": { - "bodySize": 625, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 625, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/europe-west1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"5293032688492000244\",\"creationTimestamp\":\"2021-05-31T09:21:47.184-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.132.0.0/20\",\"gatewayAddress\":\"10.132.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"eBerYQzP188=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ekkSO-kcQuL5bRhSezwLo-cCSaE=/G_9TjJ_swQPJGGGKWE7iC26RA-M=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:17 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:16.172Z", - "time": 1754, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1754 - } - }, - { - "_id": "70c061ad2d6f889d6e1e2e2f24edea9f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west2/subnetworks" - }, - "response": { - "bodySize": 581, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 581, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/europe-west2/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"1801024161432777716\",\"creationTimestamp\":\"2021-05-31T09:21:47.214-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.154.0.0/20\",\"gatewayAddress\":\"10.154.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west2\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west2/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"ldD7id65BpQ=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west2/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "EvSin_slH-7NknTZgxDVEbl59eg=/EWoGNCnLdxOZODB1lAqwRKD0fW8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:19 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:17.931Z", - "time": 1433, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1433 - } - }, - { - "_id": "42183165ca996525f10cd8c30cc9f958", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west3/subnetworks" - }, - "response": { - "bodySize": 564, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 564, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/europe-west3/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"8880785988018287604\",\"creationTimestamp\":\"2021-05-31T09:21:47.250-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.156.0.0/20\",\"gatewayAddress\":\"10.156.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west3\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west3/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"V5lLkanBMTY=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west3/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "apkoZKB2AFDoY5KZ_FMGRFns3NI=/IZmk3jVDFl_OrYOhhOQUElvUQmQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:20 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:19.369Z", - "time": 1528, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1528 - } - }, - { - "_id": "3e0c052fc0a22879e8d9244104c83b59", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west4/subnetworks" - }, - "response": { - "bodySize": 557, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 557, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/europe-west4/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"401851089161860084\",\"creationTimestamp\":\"2021-05-31T09:21:47.167-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.164.0.0/20\",\"gatewayAddress\":\"10.164.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west4\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west4/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"GqDd1S71bSg=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west4/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "xew4Zd_s5B_AMh0U1pm0xjOHRJ0=/DL-1eSpRg8j3-3mUVWIObS8JQNQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:22 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:20.904Z", - "time": 1427, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1427 - } - }, - { - "_id": "d4d0e16f6d12ec98eeac458e4666d704", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1380, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west6/subnetworks" - }, - "response": { - "bodySize": 591, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 591, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/europe-west6/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"5424596556199801844\",\"creationTimestamp\":\"2021-05-31T09:21:47.155-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.172.0.0/20\",\"gatewayAddress\":\"10.172.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west6\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west6/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"agu737B6dvI=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/europe-west6/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ZIJPYYkjlWeKgFi3T6f37DPLv7Q=/yCY0xW8A3kiZKuWg0tfSor8gBk4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:23 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:22.335Z", - "time": 1736, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1736 - } - }, - { - "_id": "77fcb3e83e2b1e8ac3557709a3ffb1b4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1391, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/northamerica-northeast1/subnetworks" - }, - "response": { - "bodySize": 644, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 644, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/northamerica-northeast1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"8849758736250090484\",\"creationTimestamp\":\"2021-05-31T09:21:47.277-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.162.0.0/20\",\"gatewayAddress\":\"10.162.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/northamerica-northeast1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/northamerica-northeast1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"SJc5G4AFTKk=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/northamerica-northeast1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "pLl2rZvm9zg4EO9K63HonqvBtZ0=/fQBf477JGyXifRRlbLG1djLf-gw=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:24 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:24.078Z", - "time": 1017, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1017 - } - }, - { - "_id": "10840f47e7c7860dc1eed0895e345b56", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-east1/subnetworks" - }, - "response": { - "bodySize": 555, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 555, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/southamerica-east1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"8619574065714738164\",\"creationTimestamp\":\"2021-05-31T09:21:47.173-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.158.0.0/20\",\"gatewayAddress\":\"10.158.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-east1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-east1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"Gz-jVMpof48=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-east1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "g4H762O7yJe3NaLcJ3YrVtMop_E=/q2o1eNAs4Xv2J7Wh13zr15zVCrQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:25 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:25.102Z", - "time": 371, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 371 - } - }, - { - "_id": "f5fcb8c1f80d211f53b8f50c0e031099", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks" - }, - "response": { - "bodySize": 1001, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1001, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"763842443381093364\",\"creationTimestamp\":\"2021-05-31T09:21:47.220-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.128.0.0/20\",\"gatewayAddress\":\"10.128.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"gEFax4yEYLk=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"},{\"kind\":\"compute#subnetwork\",\"id\":\"8838613570994876657\",\"creationTimestamp\":\"2021-05-31T09:26:06.704-07:00\",\"name\":\"public-compute-app-public-subnet-1\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/public-compute-app-vpc\",\"ipCidrRange\":\"10.10.1.0/24\",\"gatewayAddress\":\"10.10.1.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/public-compute-app-public-subnet-1\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"jLAjT-b_pCU=\",\"enableFlowLogs\":false,\"privateIpv6GoogleAccess\":\"DISABLE_GOOGLE_ACCESS\",\"purpose\":\"PRIVATE\",\"logConfig\":{\"enable\":false,\"aggregationInterval\":\"INTERVAL_5_SEC\",\"flowSampling\":0.5,\"metadata\":\"INCLUDE_ALL_METADATA\"},\"stackType\":\"IPV4_ONLY\"},{\"kind\":\"compute#subnetwork\",\"id\":\"3750748986661717748\",\"creationTimestamp\":\"2021-08-06T10:57:47.096-07:00\",\"name\":\"rbs-net-default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/rbs-net\",\"ipCidrRange\":\"10.1.2.0/24\",\"gatewayAddress\":\"10.1.2.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/rbs-net-default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"-Gvonc1AXMw=\",\"enableFlowLogs\":false,\"privateIpv6GoogleAccess\":\"DISABLE_GOOGLE_ACCESS\",\"purpose\":\"PRIVATE\",\"logConfig\":{\"enable\":false,\"aggregationInterval\":\"INTERVAL_5_SEC\",\"flowSampling\":0.5,\"metadata\":\"INCLUDE_ALL_METADATA\"},\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "MV9rfnmPWcJTNLmE_Esc1ESPvnw=/uwaZUvQ7v94PixdLzUxeFCzPFkY=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:26 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:25.479Z", - "time": 1171, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1171 - } - }, - { - "_id": "850bb1791244fe56366ae95013c45386", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east1/subnetworks" - }, - "response": { - "bodySize": 645, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 645, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-east1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"9035573469745034228\",\"creationTimestamp\":\"2021-05-31T09:21:47.261-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.142.0.0/20\",\"gatewayAddress\":\"10.142.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"1P7Nbkyn3C0=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "3i6-9jkqJIM8Z95wsPzKtT92gTg=/WxSQWQ7sUkyUL3jSg0L71iY3N64=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:26 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:26.655Z", - "time": 520, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 520 - } - }, - { - "_id": "fe4c28803b9472710b8349b0fa05863c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east4/subnetworks" - }, - "response": { - "bodySize": 642, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 642, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-east4/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"6219243919177724916\",\"creationTimestamp\":\"2021-05-31T09:21:47.166-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.150.0.0/20\",\"gatewayAddress\":\"10.150.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east4\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east4/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"QSLrFJ7x2Ok=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-east4/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_JyPV7LDC725U34mX_qiXThvYho=/hYdlR_nbvggYojy3hRFscyUTZp8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:28 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:27.184Z", - "time": 1185, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1185 - } - }, - { - "_id": "c24190ba521b057754d886ad6c3b965e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west1/subnetworks" - }, - "response": { - "bodySize": 574, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 574, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-west1/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"6357348944767923188\",\"creationTimestamp\":\"2021-05-31T09:21:47.333-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.138.0.0/20\",\"gatewayAddress\":\"10.138.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west1\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west1/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"Eo3oPRXoTlY=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west1/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "PgWmJKspjpFjdBC8fLd_ldMaJsU=/u90GqoQq0c6GU-vA-OYMqitF08g=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:29 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:28.376Z", - "time": 1513, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1513 - } - }, - { - "_id": "f1da8fab85daaf23ea8a631c2338804b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west2/subnetworks" - }, - "response": { - "bodySize": 540, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 540, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-west2/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"5169741632170931189\",\"creationTimestamp\":\"2021-05-31T09:21:47.026-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.168.0.0/20\",\"gatewayAddress\":\"10.168.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west2\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west2/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"lozI-AKi-TE=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west2/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Y4nLBD5Lv_AsgdTd8Bwh359OsTg=/sPzmqlj5_x78Lv5CKSV4TQUl68M=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:30 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:29.895Z", - "time": 1139, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1139 - } - }, - { - "_id": "dd065279aa0490e52efc50151fe02012", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west3/subnetworks" - }, - "response": { - "bodySize": 632, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 632, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-west3/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"6987821801331536884\",\"creationTimestamp\":\"2021-05-31T09:21:47.293-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.180.0.0/20\",\"gatewayAddress\":\"10.180.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west3\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west3/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"OMiOSYbq9L8=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west3/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "LL4GtUy4bL2DJ52AR_E2-t3QmT0=/Koz7sC_Dfcaf73d8Cd2Y9-b_3GA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:31 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:31.040Z", - "time": 1042, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1042 - } - }, - { - "_id": "04340d2103ef3a24fdeed29dcb0fc0af", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west4/subnetworks" - }, - "response": { - "bodySize": 642, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 642, - "text": "{\"kind\":\"compute#subnetworkList\",\"id\":\"projects/j1-gc-integration-dev-v3/regions/us-west4/subnetworks\",\"items\":[{\"kind\":\"compute#subnetwork\",\"id\":\"548300334265054197\",\"creationTimestamp\":\"2021-05-31T09:21:46.915-07:00\",\"name\":\"default\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"ipCidrRange\":\"10.182.0.0/20\",\"gatewayAddress\":\"10.182.0.1\",\"region\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west4\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west4/subnetworks/default\",\"privateIpGoogleAccess\":false,\"fingerprint\":\"-RhI66pxqcM=\",\"purpose\":\"PRIVATE\",\"stackType\":\"IPV4_ONLY\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-west4/subnetworks\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Gka2D0hkxpmPKXO2fAdldnh7OHA=/Qf5DHvTXa9eDo0fa5aTQpMyou80=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:32 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:32.088Z", - "time": 900, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 900 - } - }, - { - "_id": "acea721c8193b51ced888cae721cc423", - "_order": 3, - "cache": {}, - "request": { - "bodySize": 709, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "content-type", - "value": "application/x-www-form-urlencoded" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "content-length", - "value": "709" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip,deflate" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "www.googleapis.com" - } - ], - "headersSize": 300, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded", - "params": [], - "text": "[REDACTED]" - }, - "queryString": [], - "url": "https://www.googleapis.com/oauth2/v4/token" - }, - "response": { - "bodySize": 1201, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1201, - "text": "{\"access_token\":\"[REDACTED]\",\"expires_in\":9999,\"token_type\":\"Bearer\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:33 GMT" - }, - { - "name": "server", - "value": "scaffolding on HTTPServer2" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 390, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:32.994Z", - "time": 220, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 220 - } - }, - { - "_id": "7dd1558137c31773413e4267ae810e2f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-a/instanceGroups" - }, - "response": { - "bodySize": 314, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 314, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "guMmPOHOj7skpZTQhPYAQj-UyJk=/e0x19az5dP1C1pWEqUmk6xk67IM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:33 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:33.219Z", - "time": 672, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 672 - } - }, - { - "_id": "404be8ed95bbe9c3fab23f4cd47f608f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-b/instanceGroups" - }, - "response": { - "bodySize": 321, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 321, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "3BfPETegHStccDRO5Rtygb6ThFI=/lWUExTST9HwTFknWUOJiRtvTtHE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:35 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:33.897Z", - "time": 1665, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1665 - } - }, - { - "_id": "ab0929067b989c1607dc122b6820cc07", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-c/instanceGroups" - }, - "response": { - "bodySize": 287, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 287, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "pWkMNRClrQOsl2rs5Px1aHzxv5E=/12hv9TNloJzPU0cZpnFEpuKh1mo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:37 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:35.568Z", - "time": 1610, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1610 - } - }, - { - "_id": "7ce0b35499897391ec562f7030053f0e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-a/instanceGroups" - }, - "response": { - "bodySize": 297, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 297, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east2-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "hgJPnW4FoqCm-C-Uji8_5Tmv4ns=/iQOywlnMc96CarJYPQIPMddvUmc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:38 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:37.184Z", - "time": 1942, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1942 - } - }, - { - "_id": "8d31c466ab7e984814f81ef8064a0413", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-b/instanceGroups" - }, - "response": { - "bodySize": 246, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 246, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east2-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "97bA0aERMX-hr-LXFzq43cEirmA=/vCrrDILzCUC5Jdr3bM8uqCLYJB8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:40 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:39.133Z", - "time": 2245, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2245 - } - }, - { - "_id": "da308bc6e8a5a9d4c7153921bcf1356b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-c/instanceGroups" - }, - "response": { - "bodySize": 263, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 263, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east2-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "PI0DU-gkW-cjdnC04qTmtXqZ5Vs=/Ikh_ivXXhA6vS92Nosu2Qhva6z0=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:42 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:41.386Z", - "time": 1671, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1671 - } - }, - { - "_id": "b2d32eb7d4d1c1abdb6652e9f1be72c3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-a/instanceGroups" - }, - "response": { - "bodySize": 240, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 240, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "IUmMpr2W4fyez9Q37WkF_8EsQ5I=/X3wnCPCG9XljCEMOVCb3SZMKQgI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:44 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:43.064Z", - "time": 1459, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1459 - } - }, - { - "_id": "721b5f6585c2a3f5f17692ec23c0b43d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-b/instanceGroups" - }, - "response": { - "bodySize": 308, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 308, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "r4yNmvgwffzRV1FCOJJJFtJSPbA=/LEbQMeqYRZSViiythr1HYB1_a8c=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:45 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:44.536Z", - "time": 1513, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1513 - } - }, - { - "_id": "ee0659c590a0e2f6ae191cc84dbc89c8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-c/instanceGroups" - }, - "response": { - "bodySize": 284, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 284, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Pt-1cWAN6CVNhHbaYQ0WOOpz7Mg=/rukGThbtBUUJMDOugvlmE-DqZXI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:46 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:46.058Z", - "time": 420, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 420 - } - }, - { - "_id": "afdc8cc0040b91a68796fa191f5dc579", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-a/instanceGroups" - }, - "response": { - "bodySize": 335, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 335, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast2-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "RCliNSuyz4IC8db8k-Lz8uXNC5Q=/kX1QrmPL1e2NujrE83VKFO55poY=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:47 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:46.483Z", - "time": 1666, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1666 - } - }, - { - "_id": "deaf6be531c6a2eb4c696a76bfc1c8bf", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-b/instanceGroups" - }, - "response": { - "bodySize": 230, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 230, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast2-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "EgH86WW-YCjBvklWWdTogyAlzN4=/NLtunQATHW5qS3M35hLBmaKQWzU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:49 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:48.157Z", - "time": 1452, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1452 - } - }, - { - "_id": "3dea9f65b783ff5768babd194182f3fa", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-c/instanceGroups" - }, - "response": { - "bodySize": 325, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 325, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast2-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "1SoKF4caRKpwegHB0DrIOwzD-04=/Ecml-jNlR34dGb6LfYuk3akOypQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:51 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:49.617Z", - "time": 1679, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1679 - } - }, - { - "_id": "3942570d83a4864ba2cc2c01b8df574c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-a/instanceGroups" - }, - "response": { - "bodySize": 267, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 267, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast3-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "c7q4SnAocRfXXZ_iGW6LiFm3bK0=/y3oBtjGfwuH0oGbHTvS_hyVESVs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:52 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:51.302Z", - "time": 1594, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1594 - } - }, - { - "_id": "e6f82a7788597d7883b9c12594f0aa77", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-b/instanceGroups" - }, - "response": { - "bodySize": 257, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 257, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast3-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "9tdX82OIKJZevEt_QMKZGp_7a9w=/6cQpBFyCSdU5UG6wQQaQ6UvaiO8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:54 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:52.903Z", - "time": 1580, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1580 - } - }, - { - "_id": "2c229bfb91d0319f984a0ff7338eeceb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-c/instanceGroups" - }, - "response": { - "bodySize": 250, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 250, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast3-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "JR_dNl8DyeMib-2_x4w-ZPq8DC8=/cKy3uux8gmoli6uyFpr_12xeDXs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:55 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:54.490Z", - "time": 1735, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1735 - } - }, - { - "_id": "88b72cb06f1e036db2776a27e7b07d44", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-a/instanceGroups" - }, - "response": { - "bodySize": 246, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 246, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-south1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "cxf4tLrOh-Fuy4nlk2nsEcBmRVw=/ADZKaQBG19s6m4pP34XTf8Ipxeo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:47:58 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:56.232Z", - "time": 2171, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2171 - } - }, - { - "_id": "a91657df57796d516951c4a9e6662e52", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-b/instanceGroups" - }, - "response": { - "bodySize": 250, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 250, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-south1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "oc1_UNBSO5CB1wfGcy_nAkqEe0o=/Tm-s1oVe9AHSt_st4d7_fYj9LN8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:47:58.407Z", - "time": 2349, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2349 - } - }, - { - "_id": "eeedc0d23a7e33d3330fd0cdc351171d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-c/instanceGroups" - }, - "response": { - "bodySize": 270, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 270, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-south1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "DPngTcJDzCJAHQEf_MR76SwgbMg=/LknSAhWRPq9qgdhPQ4lES8JkwsM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:02 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:00.762Z", - "time": 2207, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2207 - } - }, - { - "_id": "22bd759557b2955f7ba7138f6439fec8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-a/instanceGroups" - }, - "response": { - "bodySize": 233, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 233, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "DYHQExRULlpo6gSRQFIkbH-y5mM=/0Vwc317M1zGBxblrmNjxxEL4X0g=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:04 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:02.975Z", - "time": 2143, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2143 - } - }, - { - "_id": "e0e9a84c69616377fc2f4a197b5f1fc4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-b/instanceGroups" - }, - "response": { - "bodySize": 230, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 230, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "JcZk-8szG-3WQndK51EjzMRME3E=/YxjyKdU8JZXq4jniVWIRCUI-AjE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:06 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:05.126Z", - "time": 2082, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2082 - } - }, - { - "_id": "670d9dc6d2973d4a2d4f8bfa37c28799", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-c/instanceGroups" - }, - "response": { - "bodySize": 260, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 260, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "wE-8E8ei1tS39g1BuAWCCIE62pU=/Z3QAp703wp9-H2JJjUFl4W-OG44=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:08 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:07.214Z", - "time": 1903, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1903 - } - }, - { - "_id": "693406f639dcbc34f143bdf3ef825386", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-a/instanceGroups" - }, - "response": { - "bodySize": 335, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 335, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast2-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "CUEkp4o_WHBYdu4xiLvMm22uGY0=/HO2DmgTRXAoAR5zSQ6TpzfsYsbs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:10 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:09.124Z", - "time": 2667, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2667 - } - }, - { - "_id": "bef534ec3dda28b847369454a5132394", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-b/instanceGroups" - }, - "response": { - "bodySize": 250, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 250, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast2-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "dh1ztGKTfeX8OMU322aoO5lsNMQ=/1_L4jtkrWM1OCIKCFXW3wzr8I24=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:13 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:11.799Z", - "time": 2239, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2239 - } - }, - { - "_id": "a2ea9349c12c9977c10b918a255a4bbd", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-c/instanceGroups" - }, - "response": { - "bodySize": 291, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 291, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast2-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "TSHvXZZksAlcJT_5WaxmbAaQltg=/7gF7fvRX8QNa3tWB8pNasMbbzn4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:15 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:14.043Z", - "time": 1889, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1889 - } - }, - { - "_id": "6ecac6504640f97d1c996061106030f4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1391, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-a/instanceGroups" - }, - "response": { - "bodySize": 336, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 336, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/australia-southeast1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Nd7yGVvldJKkzmGY2AtPhRnl6Js=/-Q1xei7iUuwqm-10cTXd7LPx_gU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:17 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:15.938Z", - "time": 1719, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1719 - } - }, - { - "_id": "70476540fc327b121975ada73c374c91", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1391, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-b/instanceGroups" - }, - "response": { - "bodySize": 295, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 295, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/australia-southeast1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "g71F8MnrC6x0Eb-ZqV0OYd7i8CE=/8lget6cJpJd2eeCEtUPqBzFpmlo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:19 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:17.663Z", - "time": 2014, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2014 - } - }, - { - "_id": "e346b0e933b9e82c95b5330212b38a42", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1391, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-c/instanceGroups" - }, - "response": { - "bodySize": 251, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 251, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/australia-southeast1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "cm4hYNpTm4pzlz0EsvNG_W4yrhE=/WP0G5t_ElkY2KzuM3v_MQWqdiRA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:21 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:19.682Z", - "time": 1693, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1693 - } - }, - { - "_id": "44e63d91b2196084cedaa7cdd2b7b8ce", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1384, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-a/instanceGroups" - }, - "response": { - "bodySize": 335, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 335, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-north1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "aI9inA8PcTKQ9nWHY5V5Ojv0Ffg=/TuV5oED6A9gRZ9YsfbrXNEELQtQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:22 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:21.381Z", - "time": 1564, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1564 - } - }, - { - "_id": "ead7c219680b8e93bfc59950c8418df9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1384, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-b/instanceGroups" - }, - "response": { - "bodySize": 216, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 216, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-north1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "1VWsk31dXqMnOIj2jh-RjUjrN1U=/J2xBdiENfI2RWMq4vGp6vv-iGHs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:24 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:22.950Z", - "time": 1428, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1428 - } - }, - { - "_id": "0db9064e5e8e7801de21b07eef71c77e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1384, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-c/instanceGroups" - }, - "response": { - "bodySize": 243, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 243, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-north1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "liocQIJekgH8bXFvwIpwN4KCojM=/5t5a8tSVY7NCvEYtGrCIQt6Voz4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:25 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:24.385Z", - "time": 1540, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1540 - } - }, - { - "_id": "c8caab790585b9221a4f46b3dfab7477", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-b/instanceGroups" - }, - "response": { - "bodySize": 301, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 301, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "7txEsg1HkzJiyyC7xNH-WtZhsJc=/OMceDNaaZCA4HR3XNiLMjTJ8-SE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:27 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:25.930Z", - "time": 1426, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1426 - } - }, - { - "_id": "d30dcf38a780fefde011dd8a6b368ff2", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-c/instanceGroups" - }, - "response": { - "bodySize": 226, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 226, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ncWEpA0q4VRdLArgKtQsPsAsVvw=/WCAViMmk3Vu6A0A8PCA2vm3ElrQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:28 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:27.363Z", - "time": 1386, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1386 - } - }, - { - "_id": "047da4008146ac08a358e74286301927", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-d/instanceGroups" - }, - "response": { - "bodySize": 294, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 294, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west1-d/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-d/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ES5T3jhnADiMbGz0a_ZsCxM99Uk=/B4BHhNbnKGTjXDT2SE6uBKQojB8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:29 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:28.755Z", - "time": 1330, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1330 - } - }, - { - "_id": "29c7affdf11b1774f893f46a8fd35439", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-a/instanceGroups" - }, - "response": { - "bodySize": 311, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 311, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "u8Olw-z_iV0vOCKMYpaZVm2o8Jw=/V8i5x7XR1BxLyDuLQGEj3MCk4BU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:31 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:30.091Z", - "time": 1441, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1441 - } - }, - { - "_id": "7d514901ace6cd0d88a63b714a4ba8fc", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/instanceGroups" - }, - "response": { - "bodySize": 236, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 236, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "eANeWpaZCWLpo64f0T7TGZWAGz4=/NGolUhEwf0wOLdGK1g0wxQamo30=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:32 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:31.540Z", - "time": 1990, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1990 - } - }, - { - "_id": "6da578bbac904364fb0930f36eeba22e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-c/instanceGroups" - }, - "response": { - "bodySize": 301, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 301, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "itDb455lCvLMIHaAM9606MvVY7E=/1Et1M1wri1ZSNrScIWgfLMc7QiA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:34 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:33.535Z", - "time": 746, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 746 - } - }, - { - "_id": "64ef482ce87b3ccf405a160152fc2c29", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-a/instanceGroups" - }, - "response": { - "bodySize": 284, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 284, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "sbSTzLNXJkIWM9MVUP2oe0nlCNk=/NmuIkxpMYB8OchIwWQqVAG6Xh7w=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:35 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:34.285Z", - "time": 1341, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1341 - } - }, - { - "_id": "4e6d56dbff8c0b6b5cee7e82bf76790c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-b/instanceGroups" - }, - "response": { - "bodySize": 335, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 335, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "OXobdge89PbgqsT1Tn9SXhiePiw=/pGr8tZvh9fHoHj8S7p1kvYIi0Hk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:37 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:35.636Z", - "time": 1857, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1857 - } - }, - { - "_id": "e33a69a38bfe29254f967fea32e6809e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-c/instanceGroups" - }, - "response": { - "bodySize": 318, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 318, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "OLJfmyPs0yyJu-KclquuMKRg7eg=/va6rt3WWPmHiC3fl1Rd8CCceuGE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:38 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:37.502Z", - "time": 1369, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1369 - } - }, - { - "_id": "0d56d08688b89ebf3d3212a33b0441ef", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-a/instanceGroups" - }, - "response": { - "bodySize": 243, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 243, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "1Tlp3RonkNg05vZURI-QW5lwtrI=/yixKmh3pc-nN2lBpnwbhcBLpXgk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:40 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:38.878Z", - "time": 1792, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1792 - } - }, - { - "_id": "b1300008583934d361d85cbc3799fc1d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-b/instanceGroups" - }, - "response": { - "bodySize": 318, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 318, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "N_vuxDbsbg6exYAFiRI0kqgHVhk=/pSfXjAAwLw79mtQqP2Z6lVA-iEs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:41 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:40.679Z", - "time": 1335, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1335 - } - }, - { - "_id": "15773eb18c599ab569ec542e838c8b7f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-c/instanceGroups" - }, - "response": { - "bodySize": 277, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 277, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "WdjI0z5h3flswlZ1rSGArtjMDYU=/I0XExNAXnWs5q-Q9lCPIQRMh2QA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:43 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:42.020Z", - "time": 1405, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1405 - } - }, - { - "_id": "3be8d4051e7a550e65e2780a95c0e36c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-a/instanceGroups" - }, - "response": { - "bodySize": 308, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 308, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "8FmmDd0YmunNNq3_v9jpYutWnM0=/jQtjG9jRaNdE-_OQRu05vWgR39U=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:44 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:43.429Z", - "time": 1436, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1436 - } - }, - { - "_id": "494c64430a7ecde90ee1a2aa1d2068a5", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-b/instanceGroups" - }, - "response": { - "bodySize": 277, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 277, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "hUqz1zAUg3CmxoPFmEy0fMtnsHw=/tIJw2f5qg7J5yS_dAyTWWRRggBY=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:46 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:44.873Z", - "time": 1465, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1465 - } - }, - { - "_id": "76992222fd2d50f32221133d99579707", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1383, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-c/instanceGroups" - }, - "response": { - "bodySize": 284, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 284, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "-B6FQNfuYa5I2d8IpIubAOiHYsg=/Bnn2KTy1MDy93N9RV6P-RlYw2kA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:46 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:46.347Z", - "time": 520, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 520 - } - }, - { - "_id": "0caa9aa131dfd262688f4e8990990444", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1394, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/instanceGroups" - }, - "response": { - "bodySize": 248, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 248, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "vOdL8jFjKSG9S4_G-Hp5WsmVouo=/irn4fPprWz676BuXsowESHY2Qo8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:47 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:46.875Z", - "time": 1036, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1036 - } - }, - { - "_id": "07d444348f0f74f7b189e8507045f094", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1394, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/instanceGroups" - }, - "response": { - "bodySize": 340, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 340, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "4S4o4AS-1Zx9awG9UZhR6q7aqAY=/NvK5amPDKNNDLaj44NDFSqe6xAE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:48 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:47.917Z", - "time": 1046, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1046 - } - }, - { - "_id": "80d1d86c30d4a5a89ba2ec6f39fc1697", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1394, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/instanceGroups" - }, - "response": { - "bodySize": 316, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 316, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "YPehNL6Zz1AXlyYOUq5EieBeXOk=/fnBvVp5Ne0ddFgBzT7AswxXN0PI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:49 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:48.968Z", - "time": 1242, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1242 - } - }, - { - "_id": "a02f5eeb2bf45718fc8157213b5cad20", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1389, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/instanceGroups" - }, - "response": { - "bodySize": 237, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 237, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "wKS2Qi9TjqagSikqEYgdwXHByvk=/STh54CB0jw5CaqrzABPeAYFsF2c=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:50 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:50.219Z", - "time": 513, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 513 - } - }, - { - "_id": "15640fc44ae86b762d2a5026600f049c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1389, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instanceGroups" - }, - "response": { - "bodySize": 271, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 271, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "M5wtGkxuNcke65Lj1lVsIMW3ru0=/SER4TUa1jYrAX-jLGjLNbEMusGE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:51 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:50.738Z", - "time": 319, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 319 - } - }, - { - "_id": "856a45fbbd3585236d6bd9d3a3700922", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1389, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/instanceGroups" - }, - "response": { - "bodySize": 261, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 261, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "RvH2YzDgqAHMPt8il-KvmQd28Xw=/GfeksgiBmG6sP2X7AUSP_h4kUsE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:51 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:51.065Z", - "time": 269, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 269 - } - }, - { - "_id": "f11fa8014412642fa1a392f5d9df849b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instanceGroups" - }, - "response": { - "bodySize": 560, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 560, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-a/instanceGroups\",\"items\":[{\"kind\":\"compute#instanceGroup\",\"id\":\"4413815924807217351\",\"creationTimestamp\":\"2021-05-31T09:26:16.315-07:00\",\"name\":\"tf-www-resources\",\"description\":\"\",\"namedPorts\":[{\"name\":\"http\",\"port\":80}],\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"fingerprint\":\"l9ccw0jwP90=\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instanceGroups/tf-www-resources\",\"size\":1,\"subnetwork\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/default\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "pZj1Wh-8Ot8XvkJes_SOOW9l8uM=/H-LiMuBzgh9luUGCERr3XE90uDI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:52 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:51.341Z", - "time": 1308, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1308 - } - }, - { - "_id": "491736d3886ce093a6597cd0dbb6c476", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/instanceGroups" - }, - "response": { - "bodySize": 216, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 216, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "VvgbHIssoJs6CNqye3H64gKFHF0=/L4MIWBpp_mOp1JQZSbj8XrveeB4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:53 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:52.659Z", - "time": 1093, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1093 - } - }, - { - "_id": "13b9a319eb7ba4607045bef6c62acaee", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/instanceGroups" - }, - "response": { - "bodySize": 277, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 277, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "jgG90H_oMloZ7mr_EG_CLpKGnto=/HQFsN9BYI2VwYfi019os56ya5zA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:54 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:53.759Z", - "time": 971, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 971 - } - }, - { - "_id": "d63913e63cd365e4d3c7ff529a5574f4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1382, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/instanceGroups" - }, - "response": { - "bodySize": 287, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 287, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-f/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ozO4vachGwjGq-CARKOZ7bgNaGM=/SUPRzxJxEsYA2ukb1ITzIM1IFew=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:55 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:54.734Z", - "time": 939, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 939 - } - }, - { - "_id": "f510aa9b142294ffa9eaf9eecd3a9ddb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-b/instanceGroups" - }, - "response": { - "bodySize": 280, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 280, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "94i75fGYi4qMZTnLFJIlHA1xVv4=/cnO2DYDo2ka3zwiGzmz2t8uMqns=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:56 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:55.683Z", - "time": 887, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 887 - } - }, - { - "_id": "33c803f71bc9b226965ababd8ad192ed", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-c/instanceGroups" - }, - "response": { - "bodySize": 266, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 266, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "eb6aFjd7BINlk1nIVmstRjY2bps=/qgfICZCRdtWYJJ6PWnW3CWxX7LI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:57 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:56.575Z", - "time": 1309, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1309 - } - }, - { - "_id": "8ae74b41772e52bef5ec389b8539db31", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-d/instanceGroups" - }, - "response": { - "bodySize": 314, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 314, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-d/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-d/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "I80-q1AhSiTUb5-iTC5dKC-JFJs=/RA1TozcPg9rTvcIA2iSUkoCL_RY=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:48:58 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:57.890Z", - "time": 1230, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1230 - } - }, - { - "_id": "32946dda2d8dbc37cbb3ce3cbeddd0d4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-a/instanceGroups" - }, - "response": { - "bodySize": 256, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 256, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "02x2cHu9r1-sPFRDSToJ2SRx2Co=/S-ewspJx_iQlDuRPUqwwmF_ubrA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:48:59.128Z", - "time": 1065, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1065 - } - }, - { - "_id": "5de82e8d1a043936e6e0f50261a5f895", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-b/instanceGroups" - }, - "response": { - "bodySize": 290, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 290, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "UTS1kSXgw1bSqB5PQ2sgX5Lcm78=/na4PBi_r97VJRc715LDZ2g4wX2Y=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:00.197Z", - "time": 856, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 856 - } - }, - { - "_id": "bdf45d38095f4bc0331ee11ef8c77dec", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-c/instanceGroups" - }, - "response": { - "bodySize": 297, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 297, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_RFOmcayylxSSNY_hjReM22GZBc=/xJONcXrbM6fAxSh9GwN3uZs4k0k=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:01 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:01.056Z", - "time": 880, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 880 - } - }, - { - "_id": "a5fd3f27670747856dffe8d4155aca5d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-a/instanceGroups" - }, - "response": { - "bodySize": 297, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 297, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ZEXAYxEhXfyeTTU5yHrnTbRf4bE=/EpKkmWpUAGdO9NtWsU_dPFJAfoE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:02 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:01.943Z", - "time": 1044, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1044 - } - }, - { - "_id": "d53fa4039e0ef9935ac0deaae842279c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-b/instanceGroups" - }, - "response": { - "bodySize": 317, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 317, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "AncSvtP1ov29NfGgWLMp-sgGb-o=/wbLi58x10xiWrDSFWDehyphD9yw=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:03 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:02.994Z", - "time": 1047, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1047 - } - }, - { - "_id": "35171fa2ffb5cad0a7d9fdca47e3402d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-c/instanceGroups" - }, - "response": { - "bodySize": 246, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 246, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "gclmIkoK5AqS-WJwNPwvgZUwFyc=/dJASzg392djesiCMBEUzq4d39rQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:04 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:04.050Z", - "time": 1220, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1220 - } - }, - { - "_id": "691f7c6183abcda2fe56c45aafda7a3f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-a/instanceGroups" - }, - "response": { - "bodySize": 273, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 273, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "T_dWVkwzcWPO_Ue5_WbvR_AoKeA=/GJTLxOTtTRbQ2DB2cbwWqsbNpjk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:06 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:05.276Z", - "time": 856, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 856 - } - }, - { - "_id": "6d9db2ea7a7ddb90f5e49f89f051d3c7", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-b/instanceGroups" - }, - "response": { - "bodySize": 229, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 229, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "mon_wg6PBuf1JTA0DDdQ0v9pcio=/SEOBOxmbjXadxlDs8XcP6U0jrbs=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:07 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:06.139Z", - "time": 1051, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1051 - } - }, - { - "_id": "0f1cb13a9f290de461c8022e1b086a45", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-c/instanceGroups" - }, - "response": { - "bodySize": 300, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 300, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "XbOdQ9KyKj6TSly4NLQYPD9_R8Q=/g0t3w0Ch-9NNl64Sx26r0iAANlk=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:08 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:07.195Z", - "time": 895, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 895 - } - }, - { - "_id": "04d3d8783b39773c154020709e9f5773", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-a/instanceGroups" - }, - "response": { - "bodySize": 290, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 290, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "0WYzITihSEsCsjoSaoE3Z7IQTpQ=/q6IyJFTqLRvpoEByyDl7Sgdb-PM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:09 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:08.097Z", - "time": 1551, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1551 - } - }, - { - "_id": "7e6a71cc4fde07b1fc26cb5e7308cfe9", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-b/instanceGroups" - }, - "response": { - "bodySize": 314, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 314, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "tGY8VNxu7ri1ffVuHUamRPUVqjY=/-NK5KgZuO8afYhXhLOQchW5IynU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:10 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:09.653Z", - "time": 900, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 900 - } - }, - { - "_id": "c1f8cab919dc41919715036c73ca7016", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-c/instanceGroups" - }, - "response": { - "bodySize": 239, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 239, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "RfUjmjgoN1t1A8icA070D6_deds=/0FUsrx2-FSoqPtQ0OF_Heoy1yiQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:11 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:10.560Z", - "time": 1546, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1546 - } - }, - { - "_id": "aa2fc3f23ac55afafffb218573761c2b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-a/instanceGroups" - }, - "response": { - "bodySize": 290, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 290, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-a/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-a/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "WDoQ3wFvtlvrSsJXOcXsFHYf7Ng=/tWjKGrbyKUNqjvfpgp-wuFbWKXo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:12 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:12.113Z", - "time": 968, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 968 - } - }, - { - "_id": "e88c8d57099e795058ea3ed3baa9e1a0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-b/instanceGroups" - }, - "response": { - "bodySize": 263, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 263, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-b/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-b/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "pG45teWUadvKswqyzNLuPuRtB0A=/Fp9viHl_pu-XUbd_w-ICeBBZu9w=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:13 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:13.087Z", - "time": 880, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 880 - } - }, - { - "_id": "25b3e4601fe6583f6326e15289b86d39", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-c/instanceGroups" - }, - "response": { - "bodySize": 321, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 321, - "text": "{\"kind\":\"compute#instanceGroupList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-c/instanceGroups\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-c/instanceGroups\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "b4xZ_QKLO1KO-h9QB1pC08H3DGM=/R7eUhdUoiuLDUrJUWwd06Mx2LyA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:14 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:13.973Z", - "time": 1031, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1031 - } - }, - { - "_id": "acea721c8193b51ced888cae721cc423", - "_order": 4, - "cache": {}, - "request": { - "bodySize": 709, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "content-type", - "value": "application/x-www-form-urlencoded" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "content-length", - "value": "709" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip,deflate" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "www.googleapis.com" - } - ], - "headersSize": 300, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded", - "params": [], - "text": "[REDACTED]" - }, - "queryString": [], - "url": "https://www.googleapis.com/oauth2/v4/token" - }, - "response": { - "bodySize": 1171, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1171, - "text": "{\"access_token\":\"[REDACTED]\",\"expires_in\":9999,\"token_type\":\"Bearer\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:15 GMT" - }, - { - "name": "server", - "value": "scaffolding on HTTPServer2" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 390, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:15.013Z", - "time": 244, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 244 - } - }, - { - "_id": "5de988588dfac4b8e1c25710832d7c37", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-a/instances" - }, - "response": { - "bodySize": 218, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 218, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_Bf2hHsfhWCUEoYtopapg7RYHmk=/Rqtb1ELsjt1CcRxcPIJ32rKqQbM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:16 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:15.262Z", - "time": 1555, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1555 - } - }, - { - "_id": "eafb68360fcdb59914b0c4990443645b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-b/instances" - }, - "response": { - "bodySize": 232, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 232, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Kg3D3hSNJA8VNOWcXhsqxasJ73I=/wvjDzXPxtkDbfOWauNwgdq7HwEQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:18 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:16.824Z", - "time": 1693, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1693 - } - }, - { - "_id": "562f41b443825050fe1ee889f07836bc", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-c/instances" - }, - "response": { - "bodySize": 249, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 249, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "CazAxIMKOC-Z9jrPL342Y9hGtGs=/s3X1Xt5pNfFQqCj0R9vuCaQW9aA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:19 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:18.522Z", - "time": 1588, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1588 - } - }, - { - "_id": "901b2c559b4622fa8d5138c0057c1b34", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-a/instances" - }, - "response": { - "bodySize": 286, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 286, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east2-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "aAYP2WoFs86WOXjhHHPpu_cMljQ=/iciud61PE2sEekxo6VzZN1acJ68=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:21 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:20.116Z", - "time": 1746, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1746 - } - }, - { - "_id": "eb336fd05b0095ba8dadd70353985722", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-b/instances" - }, - "response": { - "bodySize": 225, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 225, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east2-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "YaHfV_2H-xU4Fn5Rsh7gB-nPlGE=/TLsnyZxTqg8JPRomp2gBM7vbPPg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:23 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:21.867Z", - "time": 1765, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1765 - } - }, - { - "_id": "7bcbcba6ed82cda5015609c1961725ee", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1376, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-c/instances" - }, - "response": { - "bodySize": 218, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 218, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-east2-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-east2-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "MHuFOr_PYVBfZqDwXmuWfoQv2qU=/CSa-d0sCzyL6-S9Lkane0Kw_0iA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:25 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:23.640Z", - "time": 2086, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2086 - } - }, - { - "_id": "ca46a7aab726de1eff08e6348c2c2d23", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-a/instances" - }, - "response": { - "bodySize": 256, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 256, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "EE8uIE_8O9s9hxb3ToqLXwJNNNY=/DKfv3YiyLv0Ipn4M-eRxx6uJVEM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:27 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:25.732Z", - "time": 1632, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1632 - } - }, - { - "_id": "96332d0a470ae9563ed4ac2397444b33", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-b/instances" - }, - "response": { - "bodySize": 219, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 219, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "VaMpG2Qib6tEYrSKGprr2ushqpw=/9n-QPgwMVzbf2HaQo-1BZbkbN5k=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:28 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:27.367Z", - "time": 1439, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1439 - } - }, - { - "_id": "e9df1ded4a5850a38262c141bbf32dec", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-c/instances" - }, - "response": { - "bodySize": 256, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 256, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "jK0ESYsez5uzDXYOBtEK1LGdmCM=/uBm65y1CTvBVlCIwrtZ6l27ad7s=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:30 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:28.813Z", - "time": 1453, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1453 - } - }, - { - "_id": "afa7c253f3c2edadba0bd2ab858210e4", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-a/instances" - }, - "response": { - "bodySize": 236, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 236, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast2-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "BurRk0Z8-Wto0FwoDzSXP8UoifM=/v40_JliC1MX7kZ7Rj8f06zYQlIU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:31 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:30.274Z", - "time": 1696, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1696 - } - }, - { - "_id": "1bdbf0d359d6489412026d961a768919", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-b/instances" - }, - "response": { - "bodySize": 307, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 307, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast2-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "LkTiEiTvVhdYIOdxt3C4xwK_5BY=/AT_ON9pgJd0AW3hHWKL-ADnyahg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:33 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:31.976Z", - "time": 1613, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1613 - } - }, - { - "_id": "675e16348f6d675c024f70330be29df0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-c/instances" - }, - "response": { - "bodySize": 273, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 273, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast2-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast2-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "9QfeOwlOMRLGDt4dSo0KopQ14_E=/jF9Gq2rp-dUDWi3mD4VgzXOgBMQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:34 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:33.600Z", - "time": 1137, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1137 - } - }, - { - "_id": "11932181ee86befcf0f2439c52eaf18e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-a/instances" - }, - "response": { - "bodySize": 321, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 321, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast3-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "0iOOXrsJFvBcsiUtm2zLu-XHvEI=/N5mRh9w6xDNOKf4KiXRHKJ-RRWI=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:36 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:34.743Z", - "time": 1609, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1609 - } - }, - { - "_id": "3f4bc2807f38ad78c87705c806202484", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-b/instances" - }, - "response": { - "bodySize": 222, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 222, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast3-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "95Q8vbrcQlETz2Fj7ZLmHYeF9OE=/aJORCro5nRbfNBLGZMgcLnkspiQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:37 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:36.358Z", - "time": 1966, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1966 - } - }, - { - "_id": "26a56fd2c2e0c8258576fc162314b0d6", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-c/instances" - }, - "response": { - "bodySize": 290, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 290, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-northeast3-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-northeast3-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "DbtygLjrGZDhlmvgXDyD4GzTlF8=/y1WsxzIg8IDdFylUCYsyPwLVpEM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:39 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:38.330Z", - "time": 1594, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1594 - } - }, - { - "_id": "3130e3fda5973162ad9bf2ed4ba41544", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-a/instances" - }, - "response": { - "bodySize": 252, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 252, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-south1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "8IKR6HjvKwVwk50mw7IXWdLIrUU=/qZDAEczTiY5Am6SbWqj3EdgCtYQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:41 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:39.929Z", - "time": 2592, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2592 - } - }, - { - "_id": "dcb99c70d8ecac2844c89eeed2cb1fde", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-b/instances" - }, - "response": { - "bodySize": 300, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 300, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-south1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "S567A_yrw08OZbgklNYdIcRtUP0=/2qQUvS8RL2Yg-2QOKigI9OkU37c=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:44 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:42.525Z", - "time": 2206, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2206 - } - }, - { - "_id": "3544ced78d9c5805496712d7e8cc4cc0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-c/instances" - }, - "response": { - "bodySize": 317, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 317, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-south1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-south1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "GgwEWQQ-UQPvXrsayDKhehTCE3A=/YjNv8fKpL4oyaV1K4ryVesqhPZo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:46 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:44.736Z", - "time": 2171, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2171 - } - }, - { - "_id": "643e9177081b6a5d44a425696b04b3eb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-a/instances" - }, - "response": { - "bodySize": 246, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 246, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "4wQ-QqNDQIcY-rQJIwkDJKb2-ms=/xaa7pCiQY3AM2gNLmnrebkkS25s=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:48 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:46.913Z", - "time": 1972, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1972 - } - }, - { - "_id": "97dcf6d5dc90d31c0700423c8e438e5e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-b/instances" - }, - "response": { - "bodySize": 236, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 236, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_bSB8a7Lr68dZelCqy8uUJnmuWE=/-YniUSVStLS35YeKWayJu6Fg2MA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:50 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:48.891Z", - "time": 1936, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1936 - } - }, - { - "_id": "e6cbba2ba274d73c8fed46b03365faa8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-c/instances" - }, - "response": { - "bodySize": 321, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 321, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "3Bfp_OCAVp9YO5BzpoVqOs7FkmI=/O3uDchih1wlnKfzBi7yrAn_uFCA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:52 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:50.832Z", - "time": 2814, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2814 - } - }, - { - "_id": "d7dd209d5e1a0432da3e73f20a2b7342", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-a/instances" - }, - "response": { - "bodySize": 219, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 219, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast2-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "emovwsyiQYo6ap0cTEUwLjjYjFA=/CQ8wWKfXttzu2LttFj3m5DcwnGc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:55 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:53.654Z", - "time": 1974, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1974 - } - }, - { - "_id": "c1871f962dce1b2a6ce72de46b033536", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-b/instances" - }, - "response": { - "bodySize": 331, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 331, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast2-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "w8H6B8-C7OPCwIEbR_d0SVOpYL8=/bjRxWSu7xoM_wtYF9v5HNDNig4k=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:57 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:55.634Z", - "time": 2042, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 2042 - } - }, - { - "_id": "3a67e436efdf4029f0bb154edc592941", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1381, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-c/instances" - }, - "response": { - "bodySize": 239, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 239, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/asia-southeast2-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/asia-southeast2-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ZV9skSxOq5NmPSvrU9_x15hT2Uk=/ee1zPVtNxkstCP-_M7n69uOnOYg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:49:58 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:57.683Z", - "time": 759, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 759 - } - }, - { - "_id": "27e20575791da3f7dab05e51f01ab51a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-a/instances" - }, - "response": { - "bodySize": 250, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 250, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/australia-southeast1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "kHYol6PKF2Q8SskJBcUEtEip3oU=/Sdpv0NsXNIWP5r9_uVLnOr0Ge4Y=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:49:58.451Z", - "time": 1888, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1888 - } - }, - { - "_id": "16459f0f8e8027faa5608332134b2787", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-b/instances" - }, - "response": { - "bodySize": 267, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 267, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/australia-southeast1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "bw6LryiwnT06DVVatDaUittfXIQ=/9atWMFKbtDTREemvaXBGzall9bY=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:01 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:00.344Z", - "time": 1694, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1694 - } - }, - { - "_id": "e4c47bd200d08a131bcce16c40c1e96a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1386, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-c/instances" - }, - "response": { - "bodySize": 294, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 294, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/australia-southeast1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/australia-southeast1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "AKB5YeYpZEMq9r5Dz-Owfmis8hs=/jx82cf-Su3G_bMB82r-irS9LZzg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:03 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:02.044Z", - "time": 1762, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1762 - } - }, - { - "_id": "2c3bc77926fd75ffb72e8deb29439fc3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-a/instances" - }, - "response": { - "bodySize": 229, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 229, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-north1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "umJzalqDdRke6-jRV0ITmZAR4kA=/AQVSNu8cUqkvP-FoSMu-wF4x6ro=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:05 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:03.812Z", - "time": 1852, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1852 - } - }, - { - "_id": "3a42e6a28a038bf51df12b7e11534abd", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-b/instances" - }, - "response": { - "bodySize": 300, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 300, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-north1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "eE93qO0W3zrUpdZKNM_mEDxvMz4=/1qNK4vz_RhFdoKHGxQJj48hu92c=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:06 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:05.670Z", - "time": 1430, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1430 - } - }, - { - "_id": "4a128306daff6742af83548c7e84ea81", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1379, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-c/instances" - }, - "response": { - "bodySize": 290, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 290, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-north1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-north1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "l7ip-_AlqKKfqCCMA9JN-0Wz6Jk=/klF-H7C2zpVZ6n7raauRkIX1N5A=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:08 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:07.105Z", - "time": 1813, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1813 - } - }, - { - "_id": "694c8c203c1a740e4173936ee2cc5b1b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-b/instances" - }, - "response": { - "bodySize": 273, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 273, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "fk90ugznFGnLhNfqWeuxWLofKow=/efWRAZ1rICA6umOqxn5IUdLgSBE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:10 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:08.925Z", - "time": 1576, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1576 - } - }, - { - "_id": "e9712a059763f117466cb8543638641d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-c/instances" - }, - "response": { - "bodySize": 317, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 317, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "jWxmgvGc_gdwS3gdcLB5Oo1rXc8=/HkU2EsVZ_vnv1ZifQaKF8lFdIhU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:11 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:10.507Z", - "time": 1507, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1507 - } - }, - { - "_id": "d3c70f29f859b9e367e6969edd51845f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-d/instances" - }, - "response": { - "bodySize": 283, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 283, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west1-d/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west1-d/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "TpgVLDWRc5AsNCb-1IUM54yv1uU=/AwK2rmv6xIecrNcZc5yN0hFKhkE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:13 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:12.021Z", - "time": 1418, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1418 - } - }, - { - "_id": "38c4490d746267190e902846b843ab3a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-a/instances" - }, - "response": { - "bodySize": 300, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 300, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "aW8ME1QvjDdHCPD8FdSpvtbnV10=/hpsaoPv53lO7so4u3FWbNU5Rfd4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:14 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:13.446Z", - "time": 1297, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1297 - } - }, - { - "_id": "9aec55819f14a2f73a583b49336d69ed", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/instances" - }, - "response": { - "bodySize": 290, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 290, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "_rLfu655IDNIGrMYEnB9iBo59ZM=/fatcnjxIY-DwlsThaDvCtNhMLfQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:16 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:14.752Z", - "time": 1479, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1479 - } - }, - { - "_id": "14c4fd24b1acd60f4c4e7e1866f70727", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-c/instances" - }, - "response": { - "bodySize": 324, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 324, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west2-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west2-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "xKRlgk0eU1HhrA3M_zTl_CfGu2E=/9CxxTOBIlwG1ZFesxpCuf6iX5jc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:17 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:16.237Z", - "time": 1381, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1381 - } - }, - { - "_id": "60e5ce312058eec0a26c21df4cb3badb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-a/instances" - }, - "response": { - "bodySize": 242, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 242, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "V9Yj-iafixVz_y6SaY7kZWBOLLg=/TikRp-vaKY8zJHmvPs9eHzOD8Rc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:18 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:17.625Z", - "time": 1513, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1513 - } - }, - { - "_id": "dc6c2838a5c61ef11ea1aeca553119fb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-b/instances" - }, - "response": { - "bodySize": 310, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 310, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "kMnbQCYJR2tP5u8PsYi4Xyrl1oQ=/xceNZD4NHoXeGvTxsaYwxjfdH6U=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:20 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:19.147Z", - "time": 1759, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1759 - } - }, - { - "_id": "5c5e3b8972e47f95c65245f10b313d78", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-c/instances" - }, - "response": { - "bodySize": 232, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 232, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west3-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west3-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "lgToaamCejojRp8Mp0cQpW6bhCY=/ZLo1D35JCkwfHNH-UDVy4KQ6JTw=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:22 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:20.920Z", - "time": 1361, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1361 - } - }, - { - "_id": "a9792a9604a19b6ebec4d29f51eb5f34", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-a/instances" - }, - "response": { - "bodySize": 307, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 307, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Zhknrhi82XAdbcPSDeudgFFEMQU=/ehY9Ot8jhPAqNHjhi__cwDMBcrU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:23 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:22.286Z", - "time": 1810, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1810 - } - }, - { - "_id": "1fa01ba74867144fbad1ed21ee3b0ab0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-b/instances" - }, - "response": { - "bodySize": 239, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 239, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "UW7De8Qzmary4iU7amBQ8f1GiHc=/td4WKmSojHwAzg_UbZTufRJYRzU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:24 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:24.103Z", - "time": 376, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 376 - } - }, - { - "_id": "8b2a91fd022c1d6fe7c8581f53934362", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-c/instances" - }, - "response": { - "bodySize": 239, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 239, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west4-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west4-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "cFcVscyEjONtHfHK9WO2E3exwIA=/wnptiTcj0mK97l79J1Swp023ocg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:25 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:24.487Z", - "time": 1785, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1785 - } - }, - { - "_id": "bb3549e4cd2421c116e3378280172203", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-a/instances" - }, - "response": { - "bodySize": 236, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 236, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Ks4Yi311dvp4CpiR-RqbydEw0qA=/NcCCYWPzPMw-NjHP6RWXroHA2TQ=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:27 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:26.281Z", - "time": 1769, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1769 - } - }, - { - "_id": "3279444b652e7021a9b5e1a03a67afc5", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-b/instances" - }, - "response": { - "bodySize": 219, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 219, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "QMGptwGZ5OyZ498thsBmS7DUJ6s=/IBufErNR-3Fak_1I1UlSpF5vimU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:29 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:28.055Z", - "time": 1407, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1407 - } - }, - { - "_id": "add1374aeacea104d084d74aee5e3115", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1378, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-c/instances" - }, - "response": { - "bodySize": 300, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 300, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/europe-west6-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/europe-west6-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "fwA9ccyaUv1JiGV6mHdSDC44eA0=/XQmr9DSnIMHTdiz4iPwMnU9qcQM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:31 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:29.469Z", - "time": 1793, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1793 - } - }, - { - "_id": "1fb7963ba5128a68e25d809e76857a05", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1389, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/instances" - }, - "response": { - "bodySize": 298, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 298, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "1dsXbIHyWMOq3d17qniff-XT_w8=/QQbL9LafoIuDiK3kinku9rWY_Fc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:32 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:31.271Z", - "time": 1019, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1019 - } - }, - { - "_id": "f24e95782432e0f7747ff6e7fd68f61b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1389, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/instances" - }, - "response": { - "bodySize": 325, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 325, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "XoNP9norJF-NGeOl7HBJ5qR52S0=/2J1P855XjQOb44K2hX5MgISp2AA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:33 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:32.294Z", - "time": 1000, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1000 - } - }, - { - "_id": "3bcf536221ea29909bbdefe1a54359f8", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1389, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/instances" - }, - "response": { - "bodySize": 264, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 264, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/northamerica-northeast1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "fznXWuvmPh2cyzGkwjcrWTuIxHg=/BbcvcPyuVdoRdKvXbUdRK_hGaAM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:34 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:33.299Z", - "time": 916, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 916 - } - }, - { - "_id": "a79fa56e3ac14e6bc8fd46d0c926e917", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1384, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/instances" - }, - "response": { - "bodySize": 253, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 253, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Rm_5DdQHOxVKKrqhZlqDfp_Twz0=/q4mnS-JhlJhURFYpNOwwrahaKlU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:34 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:34.221Z", - "time": 377, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 377 - } - }, - { - "_id": "e574476999ab3d93c37de7bf8e2ec8f7", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1384, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instances" - }, - "response": { - "bodySize": 9959, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 9959, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instances\",\"items\":[{\"kind\":\"compute#instance\",\"id\":\"3379603004108614756\",\"creationTimestamp\":\"2022-09-01T13:14:03.868-07:00\",\"name\":\"ignacio-bitbucket-server-ubuntu\",\"description\":\"\",\"tags\":{\"items\":[\"ignacio-rules\"],\"fingerprint\":\"ms9aNyhzgBg=\"},\"machineType\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/machineTypes/e2-medium\",\"status\":\"TERMINATED\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b\",\"canIpForward\":false,\"networkInterfaces\":[{\"kind\":\"compute#networkInterface\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"subnetwork\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/southamerica-east1/subnetworks/default\",\"networkIP\":\"10.158.0.5\",\"name\":\"nic0\",\"accessConfigs\":[{\"kind\":\"compute#accessConfig\",\"type\":\"ONE_TO_ONE_NAT\",\"name\":\"External NAT\",\"networkTier\":\"PREMIUM\"}],\"fingerprint\":\"7rxmLHHyIZw=\",\"stackType\":\"IPV4_ONLY\"}],\"disks\":[{\"kind\":\"compute#attachedDisk\",\"type\":\"PERSISTENT\",\"mode\":\"READ_WRITE\",\"source\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/disks/ignacio-bitbucket-server-ubuntu\",\"deviceName\":\"ignacio-bitbucket-server-ubuntu\",\"index\":0,\"boot\":true,\"autoDelete\":true,\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/ubuntu-os-cloud/global/licenses/ubuntu-2204-lts\"],\"interface\":\"SCSI\",\"guestOsFeatures\":[{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"},{\"type\":\"SEV_CAPABLE\"},{\"type\":\"UEFI_COMPATIBLE\"},{\"type\":\"GVNIC\"}],\"diskSizeGb\":\"10\",\"shieldedInstanceInitialState\":{\"dbxs\":[{\"content\":\"2gcDBhMRFQAAAAAAAAAAABENAAAAAvEOndKvSt9o7kmKqTR9N1ZlpzCCDPUCAQExDzANBglghkgBZQMEAgEFADALBgkqhkiG9w0BBwGgggsIMIIFGDCCBACgAwIBAgITMwAAABNryScg3e1ZiAAAAAAAEzANBgkqhkiG9w0BAQsFADCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEqMCgGA1UEAxMhTWljcm9zb2Z0IENvcnBvcmF0aW9uIEtFSyBDQSAyMDExMB4XDTE2MDEwNjE4MzQxNVoXDTE3MDQwNjE4MzQxNVowgZUxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xDTALBgNVBAsTBE1PUFIxMDAuBgNVBAMTJ01pY3Jvc29mdCBXaW5kb3dzIFVFRkkgS2V5IEV4Y2hhbmdlIEtleTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKXiCkZgbboTnVZnS1h_JbnlcVst9wtFK8NQjTpeB9wirml3h-fzi8vzki0hSNBD2Dg49lGEvs4egyowmTsLu1TnBUH1f_Hi8Noa7fKXV6F93qYrTPajx5v9L7NedplWnMEPsRvJrQdrysTZwtoXMLYDhc8bQHI5nlJDfgqrB8JiC4A3vL9i19lkQOTq4PZb5AcVcE0wlG7lR_btoQN0g5B4_7pI2S_9mU1PXr1NBSEl48Kl4cJwO2GyvOVvxQ6wUSFTExmCBKrT3LnPU5lZY68n3MpZ5VY4skhrEt2dyf5bZNzkYTTouxC0n37OrMbGGq3tpv7JDD6E_Rfqua3dXYECAwEAAaOCAXIwggFuMBQGA1UdJQQNMAsGCSsGAQQBgjdPATAdBgNVHQ4EFgQUVsJIppTfox2XYoAJRIlnxAUOy2owUQYDVR0RBEowSKRGMEQxDTALBgNVBAsTBE1PUFIxMzAxBgNVBAUTKjMxNjMxKzJjNDU2Y2JjLTA1NDItNDdkOS05OWU1LWQzOWI4MTVjNTczZTAfBgNVHSMEGDAWgBRi_EPNoD6ky2cS0lvZVax7zLaKXzBTBgNVHR8ETDBKMEigRqBEhkJodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NybC9NaWNDb3JLRUtDQTIwMTFfMjAxMS0wNi0yNC5jcmwwYAYIKwYBBQUHAQEEVDBSMFAGCCsGAQUFBzAChkRodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvcktFS0NBMjAxMV8yMDExLTA2LTI0LmNydDAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCGjTFLjxsKmyLESJueg0S2Cp8N7MOq2IALsitZHwfYw2jMhY9b9kmKvIdSqVna1moZ6_zJSOS_JY6HkWZr6dDJe9Lj7xiW_e4qPP-KDrCVb02vBnK4EktVjTdJpyMhxBMdXUcq1eGl6518oCkQ27tu0-WZjaWEVsEY_gpQj0ye2UA4HYUYgJlpT24oJRi7TeQ03Nebb-ZrUkbf9uxl0OVV_mg2R5FDwOc3REoRAgv5jnw6X7ha5hlRCl2cLF27TFrFIRQQT4eSM33eDiitXXpYmD13jqKeHhLVXr07QSwqvKe1o1UYokJngP0pTwoDnt2qRuLnZ71jw732dSPN9B57MIIF6DCCA9CgAwIBAgIKYQrRiAAAAAAAAzANBgkqhkiG9w0BAQsFADCBkTELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjE7MDkGA1UEAxMyTWljcm9zb2Z0IENvcnBvcmF0aW9uIFRoaXJkIFBhcnR5IE1hcmtldHBsYWNlIFJvb3QwHhcNMTEwNjI0MjA0MTI5WhcNMjYwNjI0MjA1MTI5WjCBgDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEqMCgGA1UEAxMhTWljcm9zb2Z0IENvcnBvcmF0aW9uIEtFSyBDQSAyMDExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAxOi1ir-tVyawJsPq5_tXekQCXQcN2krldCrmsA_sbevsf7njWmMyfBEXTw7jC6c4FZOOxvXghLGamyzn9beR1gnh4sAEqKwwHN9I8wZQmmSnUX_IhU-PIIbO_i_hn_-CwO3pzc70U2piOgtDueIl_f4F-dTEFKsR4iOJjXC3pB1N7K7lnPoWwtfBy9ToxC_lme4kiwPsjfKL6sNK-0MREgt-tUeSbNzmBInr9TME6xABKnHl-YMTPP8lCS9odkb_uk--3K1xKliq-w7SeT3km2U7zCkqn_xyWaLrrpLv9jUTgMYC7ORfzJ12ze9jksGveUCEeYd_41Ko6J17B2mPFQIDAQABo4IBTzCCAUswEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFGL8Q82gPqTLZxLSW9lVrHvMtopfMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIBhjAPBgNVHRMBAf8EBTADAQH_MB8GA1UdIwQYMBaAFEVmUkPhflgRv9ZOniNVCDs6ImqoMFwGA1UdHwRVMFMwUaBPoE2GS2h0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY0NvclRoaVBhck1hclJvb18yMDEwLTEwLTA1LmNybDBgBggrBgEFBQcBAQRUMFIwUAYIKwYBBQUHMAKGRGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljQ29yVGhpUGFyTWFyUm9vXzIwMTAtMTAtMDUuY3J0MA0GCSqGSIb3DQEBCwUAA4ICAQDUhIj1FJQYAsoqPPsqkhwM16DR8ehSZqjuorV1epAAqi2kdlrqebe5N2pRexBk9uFk8gJnvveoG3i9us6IWGQM1lfIGaNfBdbbxtBpzkhLMrfrXdIw9cD1uLp4B6Mr_pvbNFaE7ILKrkElcJxr6f6QD9eWH-XnlB-yKgyNS_8oKRB799d8pdF2uQXIee0PkJKcwv7fb35sD3vUwUXdNFGWOQ_lXlbYGAWW9AemQrOgd_0IGfJxVsyfhiOkh8um_Vh-1GlnFZF-gfJ_E-UNi4o8h4Tr4869Q-WtLYSTjmorWnxE-lKqgcgtHLvgUt8AEfiaPcFgsOEztaOI0WUZChrnrHykwYKHTjixLw3FFIdv_Y0uvDm25-bD4OTNJ4TvlELvKYuQRkE7gRtn2PlDWWXLDbz9AJJP9HU7p6kk_FBBQHngLU8Kaid2blLtlml7rw_3hwXQRcKtUxSBH_swBKo3NmHaSmkbNNho7dYCz2yUDNPPbCJ5rbHwvAOiRmCpxAfCIYLx_fLoeTJgv9ispSIUS8rB2EvrfT9XNbLmT3W0sGADIlOukXkd1ptBHxWGVHCy3g01D3ywNHK6l2A78HnrorIcXaIWuIfF6Rv2tZclbzif45H6inmYw2kOt6McIAWX-MoUrgDXxPPAFBB1azSgG7WZYPNcsMVXTjbSMoS_njGCAcQwggHAAgEBMIGYMIGAMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSowKAYDVQQDEyFNaWNyb3NvZnQgQ29ycG9yYXRpb24gS0VLIENBIDIwMTECEzMAAAATa8knIN3tWYgAAAAAABMwDQYJYIZIAWUDBAIBBQAwDQYJKoZIhvcNAQEBBQAEggEAhabaxRIJ7nUZ-m__mIG0lII6yD-lxoeI8S83ZKTP8Qx5h5asySWl7420eGhna7zyaVRvVVIhkjOMIfcKr29LgzQpYDqPUc8aYAdGCsZKZGmHCMjEulnq5TDK79GKinzZfb2sAWXEJ68N8oNnY7faBKjHjmmJbAEz8ufE4DijgJ_NBov2xmhTZyNHQ7pB1iCdrEUGObzdJc0Qtmh3CNOEcmH0ukd8sTHE9acBBTFHS8dvreR_sP7dXClZJbJiWAFKvQn3EjCTiYizkZ4I_5xiqjHELht_ORQKN-Hnoqnl4kcRINhZRV7JlgAQDlBJLv3OTjShRO_ZWCdcu7PtwhweiSYWxMFMUJJArKlB-TaTQyiMDgAAAAAAADAAAAC9mvp3WQMyTb1gKPTnj3hLgLTZaTG_DQL9kaYeGdFPHaRS5m2yQIyoYE1BH5Jlnwq9mvp3WQMyTb1gKPTnj3hL9S-Do_qc-9aSD3IoJNvkA0U00luFByRrO5V9rG4bznq9mvp3WQMyTb1gKPTnj3hLxdnYoYbiyC0Jr6oqb38uc4cNPmT3LE4I72d5aoQPD729mvp3WQMyTb1gKPTnj3hLNjOE0U0fLgt4FWJkhMRZrVejGO9DliZgSNBYxaGbv3a9mvp3WQMyTb1gKPTnj3hLGuyEuEtsZaUSIKm-cYGWUjAhDWLW0zxImZxrKVorCga9mvp3WQMyTb1gKPTnj3hL5spo6UFGYprwP2nC-G5r72L5MLN8b7zIeLeN-YwDNOW9mvp3WQMyTb1gKPTnj3hLw6maRg2kZKBXw1htg8719K4ItxA5ee2JMnQt8O1TDGa9mvp3WQMyTb1gKPTnj3hLWPuUGu-VollDs_tfJRCg3z_kTFjJXgq4BIcpdWirl3G9mvp3WQMyTb1gKPTnj3hLU5HDovsRIQKmqh7cJa534Z9dbwnNCe6yUJkiv81Zkuq9mvp3WQMyTb1gKPTnj3hL1iYVfh1qcYvBJKuNony7ZQcsoDp7ayV9vcu9YPZe89G9mvp3WQMyTb1gKPTnj3hL0GPsKPZ-ulPxZC2_ff8zxqMq3YafYBP-Fi4sMvHL5W29mvp3WQMyTb1gKPTnj3hLKcbrUrQ8OqGLLNjtbqhgfO88-uG6_hFldVzy5hSESkS9mvp3WQMyTb1gKPTnj3hLkPvnDmnWM0CNPhcMaDLbstIJ4CclJ9-2PUnSlXKm9Ey9mvp3WQMyTb1gKPTnj3hLB17qBgWJVIugYLL-7RDaPCDH_psXzQJrlOimg7gRUji9mvp3WQMyTb1gKPTnj3hLB-bGqFhkb7HvxnkD_iixFgEfI2f-kua-KzaZnv850J69mvp3WQMyTb1gKPTnj3hLCd9fTlESCOx4uW0S0IEl_bYDho3jn29yknhSWZtlnCa9mvp3WQMyTb1gKPTnj3hLC7tDktqseribMKSsZXUxuXv6qwT5Cw2v5fm265CgY3S9mvp3WQMyTb1gKPTnj3hLDBiTOXYt8zarPdAGpGPfcVo5z7D0kkZcYA5sa9e9iYy9mvp3WQMyTb1gKPTnj3hLDQ2-ym8p7KBvMxp9cuSISxIJf7NImDoqFKDXP08QFA-9mvp3WQMyTb1gKPTnj3hLDcnz-5mWIUjDyoM2MnWNPtT8jQsAB7lbMeZSjyrNW_y9mvp3WQMyTb1gKPTnj3hLEG-s6s_s_U4wO3T0gKCAmOLQgCuTb47HdM4h8xaGaJy9mvp3WQMyTb1gKPTnj3hLF046C1tDxqYHu9NATwU0Hj3POWJnzpT4tQ4uI6nakgy9mvp3WQMyTb1gKPTnj3hLGDM0Kf8FYu2flwM-EUjc7uUtvi5JbVQQtc_WyGTS0Q-9mvp3WQMyTb1gKPTnj3hLK5nPJkIukv42X79Lww0nCGye4Ut6b_9E-y9rkAFpmTm9mvp3WQMyTb1gKPTnj3hLK78sp7jx2R8n7lK2-ypd0Em4WiubUpxdZmIGgQSwVfi9mvp3WQMyTb1gKPTnj3hLLHPZMyW6bcvlidSkxjxbk1VZ75L78FDtUMTiCFIG8X29mvp3WQMyTb1gKPTnj3hLLnCRZ4am93NRH6cYH6sPHXC1V8YyLqkjsqjTuStRr329mvp3WQMyTb1gKPTnj3hLMGYo-lR3MFcoukpGfefQOHpU9WnTdp_OXnXsidKNFZO9mvp3WQMyTb1gKPTnj3hLNgjtuvWtD0GkFKF3er8vr15nAzRnXsOZXmk1gp4MqtK9mvp3WQMyTb1gKPTnj3hLOEHSITaNFYPXXAoC5iFgOU1sTgpnYLb2B7kDYryFWwK9mvp3WQMyTb1gKPTnj3hLP86bn98-8J1UUrD5XuSBwrfwbXQ6c3lxVY5wE2rOPnO9mvp3WQMyTb1gKPTnj3hLQ5fayoOef2MHfLUMkt9DvC0vsqj1nyb8eg5L1Nl1FpK9mvp3WQMyTb1gKPTnj3hLR8wIYSfiBpqG4Dpr7yzUEPjFWm1r2zYhaMMbLOMqWt-9mvp3WQMyTb1gKPTnj3hLUYgx_nOCtRTQPhXGISKLirZUeb0Mv6PFwdD0jZwwYTW9mvp3WQMyTb1gKPTnj3hLWulJ6ohV65PkOdvGW9ouQoUsL99nifoUZzbjw0EPK1y9mvp3WQMyTb1gKPTnj3hLax0TgHjkQYqmjet7s14GYJLPR57rjOTNEufQcsy0L2a9mvp3WQMyTb1gKPTnj3hLbIhUR43VWeKTUbgmwGy4v-8rlK01ODWHctGT-C7RyhG9mvp3WQMyTb1gKPTnj3hLbxQo_3HJ2w7Vrx8ue7_Lq2R8wmXd9bKTzbYm9Qo6eF69mvp3WQMyTb1gKPTnj3hLcfKQb9IiSX5Uo0ZiqySX_MgQIHcP9RNo6ePZv8v9Y3W9mvp3WQMyTb1gKPTnj3hLcms-tlQEajDz-D2bls4D9nDpqAbRcIoDceYtxJ0sI8G9mvp3WQMyTb1gKPTnj3hLcuC9GGfPXZ1WqxWK3zvdvIK_MqjYqh2MXi9t8pQo1ti9mvp3WQMyTb1gKPTnj3hLeCevmTYs-vBxfa3ksb_gQ4rRccFa3cJIt1v4yqRLssW9mvp3WQMyTb1gKPTnj3hLgai5ZbuE04drlCmpVIHMlVMYz6oUEtgIyKM7_TP_8OS9mvp3WQMyTb1gKPTnj3hLgts7zrT2CEPOnZfD0YfNm1lBzT3oEA5YbyvaVjdXX2e9mvp3WQMyTb1gKPTnj3hLiVqXhfYXyh1-1E_BoUcLcfPxIjhi2f-dzDri35IWPa-9mvp3WQMyTb1gKPTnj3hLitZIWfGVtfWNr6qUC2phZ6zWeohuj0aTZBdyIcVZRbm9mvp3WQMyTb1gKPTnj3hLi_Q0tJ4AzPcVAqLNkAhlywHsOz2gPDW-UF_fe9Vj9SG9mvp3WQMyTb1gKPTnj3hLjY6iic_nChwHq3NlyyjuUe3TPPJQbeiI-63WDr-ASBy9mvp3WQMyTb1gKPTnj3hLmZjTY8SRvha9dLoQuU2SkQAWEXNv3KZDo2ZkvA8xWkK9mvp3WQMyTb1gKPTnj3hLnkppFzFhaC5V_ej-9WDriOwf_tyvBAAfZsDK9weytzS9mvp3WQMyTb1gKPTnj3hLprUVHzZV06KvDUcnWXlr5KQgDlSVp9hpdUxISIV0CKe9mvp3WQMyTb1gKPTnj3hLp_MvUI1OsP6tmgh--U7RugrsXeb372_wpiuTvt9dRY29mvp3WQMyTb1gKPTnj3hLrWgm4ZRtJtPq82hciNl9hd47Tcs9DuKugccFYNE8VyC9mvp3WQMyTb1gKPTnj3hLruuuMVEnEnPtlaouZxE57TGphWcwOjMimPg3CanVWqG9mvp3WQMyTb1gKPTnj3hLr-IDCvt9LNoT-fozOgLjT2dRr-wRsBDbzUQf30xAArO9mvp3WQMyTb1gKPTnj3hLtU8e5jZjH61oBY07CTcDGsG5DMsXBio5HMpor9vkDVW9mvp3WQMyTb1gKPTnj3hLuPB42YOiSsQzIWOTiDUUzZMsM68Y591wiEyCNfQnVza9mvp3WQMyTb1gKPTnj3hLuXoIiQWcA1_x1UtttTsRuXZmaNn5VSR8AosoN9egTNm9mvp3WQMyTb1gKPTnj3hLvIemaOgZZkictQjugFGDwZ5qzSTPF3mcoGLS44TaDqe9mvp3WQMyTb1gKPTnj3hLxAm9rEd1rdjbkqoitbcY-4yUoUYsH-mkFrldijOIwvy9mvp3WQMyTb1gKPTnj3hLxhfBqLHuKoEcKLWoG0yD18mLWwwnKB1hAgfr5pLCln-9mvp3WQMyTb1gKPTnj3hLyQ8zZhe45_mDl1QTyZfxC3PrJn_YoQy5472_xmer24u9mvp3WQMyTb1gKPTnj3hLy2uFi0DToJh2WBW1ksFRSklgT6_WCBnaiNenbpd4_ve9mvp3WQMyTb1gKPTnj3hLzjv6vlnWfOisjf1KFvfEPvnCJFE_vGVZV9c1-in1QM69mvp3WQMyTb1gKPTnj3hL2MvrlzX1Zys2fk-WzcdJaWFdFwdK6WxyTULOAhb48_q9mvp3WQMyTb1gKPTnj3hL6Swi6ztWQtZcHsLK8kfSWUc47rt_s4QaRJVvWeKw0fq9mvp3WQMyTb1gKPTnj3hL_d1uPSnqhMd0Pa1KG9vHALX-wbOR-TJAkIasxx3W29i9mvp3WQMyTb1gKPTnj3hL_mOoT3gsydP88sz5_BH70Ddgh4dY0mKF7RJmm9xubQG9mvp3WQMyTb1gKPTnj3hL_s-yMtEumUttSF0scWdyiqVSWYStXKYedRYiHweaFDa9mvp3WQMyTb1gKPTnj3hLyhcdYUqNfhIck5SM0P5V05mB-dEaqW4DRQpBUifCxlu9mvp3WQMyTb1gKPTnj3hLVbmbDeU9vP5IWqnHN88_thbvPZH6tZmqfKsZ7adjtbq9mvp3WQMyTb1gKPTnj3hLd90ZD6MNiP9eOwEaCuYeYgl4DBMLU17Lh-bwiIoLay-9mvp3WQMyTb1gKPTnj3hLyDyxOSKtmfVgdEZ13TfMlNytWh_Lpkcv7jQRcdk56IS9mvp3WQMyTb1gKPTnj3hLOwKHUz4Mw9DsGqgjy_CpQarYchV50cSZgC3Rw6Y2uKm9mvp3WQMyTb1gKPTnj3hLk5ru9PX6UeIzQMPy5JBIzohyUmr991LDp_Oj8ryfYEm9mvp3WQMyTb1gKPTnj3hLZFdb2RJ4mi4UrVb2NB9Sr2v4DPlEAHhZdenwTi1k10W9mvp3WQMyTb1gKPTnj3hLRcfIrnUKz7tI_DdSfWQS3WRNrtiRPM2KJMlNhWln344=\",\"fileType\":\"BIN\"}]},\"architecture\":\"X86_64\"}],\"metadata\":{\"kind\":\"compute#metadata\",\"fingerprint\":\"kLIES4oNOJI=\",\"items\":[{\"key\":\"ssh-keys\",\"value\":\"ignacio_rodriguez:ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIvVVoF6A/jnwN3O0tdenNaoex/Z9FsNpo0vYZcggTOxNJ1zXEtw0f6WKqFAANPjjS4FRwXrAEuUvqGASkCO6fA= google-ssh {\\\"userName\\\":\\\"ignacio.rodriguez@contractor.jupiterone.com\\\",\\\"expireOn\\\":\\\"2022-09-01T20:17:38+0000\\\"}\"}]},\"serviceAccounts\":[{\"email\":\"167984947943-compute@developer.gserviceaccount.com\",\"scopes\":[\"https://www.googleapis.com/auth/devstorage.read_only\",\"https://www.googleapis.com/auth/logging.write\",\"https://www.googleapis.com/auth/monitoring.write\",\"https://www.googleapis.com/auth/servicecontrol\",\"https://www.googleapis.com/auth/service.management.readonly\",\"https://www.googleapis.com/auth/trace.append\"]}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instances/ignacio-bitbucket-server-ubuntu\",\"scheduling\":{\"onHostMaintenance\":\"MIGRATE\",\"automaticRestart\":true,\"preemptible\":false,\"provisioningModel\":\"STANDARD\"},\"cpuPlatform\":\"Unknown CPU Platform\",\"labelFingerprint\":\"42WmSpB8rSM=\",\"startRestricted\":false,\"deletionProtection\":false,\"reservationAffinity\":{\"consumeReservationType\":\"ANY_RESERVATION\"},\"displayDevice\":{\"enableDisplay\":false},\"shieldedInstanceConfig\":{\"enableSecureBoot\":false,\"enableVtpm\":true,\"enableIntegrityMonitoring\":true},\"shieldedInstanceIntegrityPolicy\":{\"updateAutoLearnPolicy\":true},\"confidentialInstanceConfig\":{\"enableConfidentialCompute\":false},\"fingerprint\":\"W8ucK6yHB3k=\",\"lastStartTimestamp\":\"2022-09-13T16:49:55.020-07:00\",\"lastStopTimestamp\":\"2022-09-22T14:03:38.962-07:00\",\"keyRevocationActionType\":\"NONE\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "6yBljAsl--uf2GifoRP5wxTcJH0=/t5xUzAJw9s46-GPvgp88ygKffPo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:34 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:34.603Z", - "time": 397, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 397 - } - }, - { - "_id": "5ac25db5a5adf2fd43c3e7b921521c32", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "osconfig.googleapis.com" - } - ], - "headersSize": 1412, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://osconfig.googleapis.com/v1/projects/j1-gc-integration-dev-v3/locations/southamerica-east1-b/instances/3379603004108614756/inventory" - }, - "response": { - "bodySize": 302, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 302, - "text": "{\"error\":{\"code\":404,\"message\":\"Requested entity was not found.\",\"errors\":[{\"message\":\"Requested entity was not found.\",\"domain\":\"global\",\"reason\":\"notFound\"}],\"status\":\"NOT_FOUND\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:35 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 367, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 404, - "statusText": "Not Found" - }, - "startedDateTime": "2023-06-06T23:50:35.008Z", - "time": 979, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 979 - } - }, - { - "_id": "89e651c0b3b95bf606cf4353bca1b1ad", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1384, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/instances" - }, - "response": { - "bodySize": 287, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 287, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/southamerica-east1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "Pi_KsmyO5qGtNG5-_gy-EHPaYq4=/-b42qFbbCId3cqIlcEi3HCh9iSc=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:36 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:36.003Z", - "time": 303, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 303 - } - }, - { - "_id": "6d8970e95512f87b74e79be7be1fa34f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instances" - }, - "response": { - "bodySize": 2610, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 2610, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-a/instances\",\"items\":[{\"kind\":\"compute#instance\",\"id\":\"4356273881400950770\",\"creationTimestamp\":\"2022-12-14T18:06:21.559-08:00\",\"name\":\"sonarqube\",\"description\":\"\",\"tags\":{\"items\":[\"http-server\",\"https-server\",\"sonarqube\"],\"fingerprint\":\"ADAXNXu3rSA=\"},\"machineType\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/machineTypes/e2-medium\",\"status\":\"RUNNING\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a\",\"canIpForward\":false,\"networkInterfaces\":[{\"kind\":\"compute#networkInterface\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/default\",\"subnetwork\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/default\",\"networkIP\":\"10.128.15.219\",\"name\":\"nic0\",\"accessConfigs\":[{\"kind\":\"compute#accessConfig\",\"type\":\"ONE_TO_ONE_NAT\",\"name\":\"External NAT\",\"natIP\":\"34.171.196.173\",\"networkTier\":\"PREMIUM\"}],\"fingerprint\":\"Ed494mYNCAE=\",\"stackType\":\"IPV4_ONLY\"}],\"disks\":[{\"kind\":\"compute#attachedDisk\",\"type\":\"PERSISTENT\",\"mode\":\"READ_WRITE\",\"source\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/disks/sonarqube\",\"deviceName\":\"sonarqube\",\"index\":0,\"boot\":true,\"autoDelete\":true,\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-11-bullseye\"],\"interface\":\"SCSI\",\"guestOsFeatures\":[{\"type\":\"UEFI_COMPATIBLE\"},{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"},{\"type\":\"GVNIC\"}],\"diskSizeGb\":\"10\",\"architecture\":\"X86_64\"}],\"metadata\":{\"kind\":\"compute#metadata\",\"fingerprint\":\"tOngKeJ3fdo=\",\"items\":[{\"key\":\"created-by\",\"value\":\"projects/167984947943/regions/us-central1-a/instanceGroupManagers/tf-www-resources\"},{\"key\":\"ssh-keys\",\"value\":\"pgilaga:ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHxVegWCvkKPOFXMAVBlCmtI8m4ANccptQEITQXFdKFvNI7xMmqKtUnpz00QAmTincp+ttS+4QrJNcWuFbzX/hA= google-ssh {\\\"userName\\\":\\\"pgilaga@gmail.com\\\",\\\"expireOn\\\":\\\"2022-12-15T02:11:46+0000\\\"}\\npgilaga:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCLBnZdttqMzMdgq854Com+CozUYBjxCQshLYWWgf6kBiab5xNVaxiMQXtHCagIgYQAbG0ZsOnsgcPfuRBpEzW4VjMzsjjjRJn2x4ULqkh/231REOJHNTW380oniZ8oh7YgWujUlYubSsIyziZNd18G7srLstJ6+fSZgFlIV8+DPM9gTLuXXYKS32433Mf1w/hJ/BiupYuz0xxwIkFEet8j/ctyLHFAxfCHPBI8wq68hwehQgP7p9vC92WqbowIQj1zSAUttovZYNglkEIJvkHIRUAEn1xpkvYqxSu1ICF1Q9SqyeHTSNKBTEUPk4IUbzW3luGJisl7ZDzBVek3b15z google-ssh {\\\"userName\\\":\\\"pgilaga@gmail.com\\\",\\\"expireOn\\\":\\\"2022-12-15T02:11:51+0000\\\"}\"}]},\"serviceAccounts\":[{\"email\":\"167984947943-compute@developer.gserviceaccount.com\",\"scopes\":[\"https://www.googleapis.com/auth/devstorage.read_only\",\"https://www.googleapis.com/auth/logging.write\",\"https://www.googleapis.com/auth/monitoring.write\",\"https://www.googleapis.com/auth/servicecontrol\",\"https://www.googleapis.com/auth/service.management.readonly\",\"https://www.googleapis.com/auth/trace.append\"]}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instances/sonarqube\",\"scheduling\":{\"onHostMaintenance\":\"MIGRATE\",\"automaticRestart\":true,\"preemptible\":false,\"provisioningModel\":\"STANDARD\"},\"cpuPlatform\":\"Intel Broadwell\",\"labelFingerprint\":\"42WmSpB8rSM=\",\"startRestricted\":false,\"deletionProtection\":false,\"reservationAffinity\":{\"consumeReservationType\":\"ANY_RESERVATION\"},\"displayDevice\":{\"enableDisplay\":false},\"shieldedInstanceConfig\":{\"enableSecureBoot\":false,\"enableVtpm\":true,\"enableIntegrityMonitoring\":true},\"shieldedInstanceIntegrityPolicy\":{\"updateAutoLearnPolicy\":true},\"confidentialInstanceConfig\":{\"enableConfidentialCompute\":false},\"fingerprint\":\"IbBrqK33rOM=\",\"lastStartTimestamp\":\"2022-12-14T18:06:27.086-08:00\",\"keyRevocationActionType\":\"NONE\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "9iIgs6lMyqRB_-48qDSMw0Lehds=/gRRgVPi7yWJ1-zHsT7eUAVwwiN8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:37 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:36.313Z", - "time": 1044, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1044 - } - }, - { - "_id": "6a58ff9318f7746d2dea17ee348e2d33", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "osconfig.googleapis.com" - } - ], - "headersSize": 1405, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://osconfig.googleapis.com/v1/projects/j1-gc-integration-dev-v3/locations/us-central1-a/instances/4356273881400950770/inventory" - }, - "response": { - "bodySize": 447, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 447, - "text": "{\"osInfo\":{\"longName\":\"Debian GNU/Linux 11 (bullseye)\",\"shortName\":\"debian\",\"version\":\"11\",\"architecture\":\"x86_64\",\"kernelVersion\":\"#1 SMP Debian 5.10.149-2 (2022-10-21)\",\"kernelRelease\":\"5.10.0-19-cloud-amd64\",\"osconfigAgentVersion\":\"20221013.01-g1\",\"hostname\":\"sonarqube\"},\"name\":\"projects/167984947943/locations/us-central1-a/instances/4356273881400950770/inventory\",\"updateTime\":\"2023-06-06T23:46:42.478621Z\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:38 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 367, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:37.364Z", - "time": 1367, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1367 - } - }, - { - "_id": "946c1812f033868797a1467c8d49ef16", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/instances" - }, - "response": { - "bodySize": 283, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 283, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "ap_kH-afZz-jEpPQuTwKzr_r6JI=/L3Tjeyv1GquK7L_dZEU14ZBXFSA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:39 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:38.738Z", - "time": 897, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 897 - } - }, - { - "_id": "bcc642edbab93c5c7eb5fb7b2f6d13a1", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/instances" - }, - "response": { - "bodySize": 283, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 283, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "2cxVx4Eh2ItpxK3X1wNR_ScepsA=/509FdiH_nCXUaXGNS-Tw4juEkQ8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:40 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:39.641Z", - "time": 991, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 991 - } - }, - { - "_id": "35821349f7d770c24bbe3c3f51a6d48c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1377, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/instances" - }, - "response": { - "bodySize": 1373, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1373, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-central1-f/instances\",\"items\":[{\"kind\":\"compute#instance\",\"id\":\"218014557499606713\",\"creationTimestamp\":\"2021-08-06T10:58:47.277-07:00\",\"name\":\"internal-glb-qpbt\",\"tags\":{\"items\":[\"allow-ssh\",\"load-balanced-backend\"],\"fingerprint\":\"zFLeBDj31O0=\"},\"machineType\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/machineTypes/e2-medium\",\"status\":\"RUNNING\",\"zone\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f\",\"networkInterfaces\":[{\"kind\":\"compute#networkInterface\",\"network\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/global/networks/rbs-net\",\"subnetwork\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/regions/us-central1/subnetworks/rbs-net-default\",\"networkIP\":\"10.1.2.2\",\"name\":\"nic0\",\"fingerprint\":\"DfdCtvOj4Ag=\",\"stackType\":\"IPV4_ONLY\"}],\"disks\":[{\"kind\":\"compute#attachedDisk\",\"type\":\"PERSISTENT\",\"mode\":\"READ_WRITE\",\"source\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/disks/internal-glb-qpbt\",\"deviceName\":\"persistent-disk-0\",\"index\":0,\"boot\":true,\"autoDelete\":true,\"licenses\":[\"https://www.googleapis.com/compute/v1/projects/debian-cloud/global/licenses/debian-9-stretch\"],\"interface\":\"SCSI\",\"guestOsFeatures\":[{\"type\":\"VIRTIO_SCSI_MULTIQUEUE\"}],\"diskSizeGb\":\"10\"}],\"metadata\":{\"kind\":\"compute#metadata\",\"fingerprint\":\"GJbKAz_srSQ=\",\"items\":[{\"key\":\"instance-template\",\"value\":\"projects/167984947943/global/instanceTemplates/template-region-service\"},{\"key\":\"created-by\",\"value\":\"projects/167984947943/regions/us-central1/instanceGroupManagers/rbs-rigm\"}]},\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/instances/internal-glb-qpbt\",\"scheduling\":{\"onHostMaintenance\":\"MIGRATE\",\"automaticRestart\":true,\"preemptible\":false,\"provisioningModel\":\"STANDARD\"},\"cpuPlatform\":\"Intel Haswell\",\"labelFingerprint\":\"42WmSpB8rSM=\",\"startRestricted\":false,\"deletionProtection\":false,\"fingerprint\":\"PTnfPPZTbqs=\",\"lastStartTimestamp\":\"2021-08-06T10:58:56.341-07:00\"}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-central1-f/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "VglbnQCoQFimSe78ZcIQq3MHJDk=/l3PGbWuE20Rn7DrV5rQdKDr2sek=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:41 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:40.638Z", - "time": 1116, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1116 - } - }, - { - "_id": "f3711e726e4dd237b52dfb40e4acf27a", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "osconfig.googleapis.com" - } - ], - "headersSize": 1404, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://osconfig.googleapis.com/v1/projects/j1-gc-integration-dev-v3/locations/us-central1-f/instances/218014557499606713/inventory" - }, - "response": { - "bodySize": 329, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 329, - "text": "{\"error\":{\"code\":404,\"message\":\"Requested entity was not found.\",\"errors\":[{\"message\":\"Requested entity was not found.\",\"domain\":\"global\",\"reason\":\"notFound\"}],\"status\":\"NOT_FOUND\"}}" - }, - "cookies": [], - "headers": [ - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:42 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 367, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 404, - "statusText": "Not Found" - }, - "startedDateTime": "2023-06-06T23:50:41.762Z", - "time": 1003, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1003 - } - }, - { - "_id": "10d5b270647b2533d5450c1ff332ec94", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-b/instances" - }, - "response": { - "bodySize": 313, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 313, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "axx0hfrzoqjosSnrKyibl8djQTw=/U-rgHzvkUueowXIwwPr3dJxRGxA=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:43 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:42.772Z", - "time": 1007, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1007 - } - }, - { - "_id": "fef231f3563691b677df8a48186f250f", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-c/instances" - }, - "response": { - "bodySize": 313, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 313, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "5e_UwM7sSFK_oPKA6gKebONtl3c=/GLrm0NjI-PcipZKfBSU4pJMe3j4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:44 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:43.788Z", - "time": 764, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 764 - } - }, - { - "_id": "01820ad7d1087e814b8618f88427ed15", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-d/instances" - }, - "response": { - "bodySize": 269, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 269, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east1-d/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east1-d/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "47-p3KEqX96w10iBe8NKL2RFDLU=/XSrE6jk0211smctQX3AJQceAqvE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:45 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:44.556Z", - "time": 856, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 856 - } - }, - { - "_id": "50a6b8e4aca02c54bbd076543701feec", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-a/instances" - }, - "response": { - "bodySize": 313, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 313, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "C0t9exdaIFAnLbphwZKJ9XfGeA0=/oO28O9kddd9l7k6_OJf5UyWPr7A=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:46 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:45.419Z", - "time": 1616, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1616 - } - }, - { - "_id": "d7ee5f86d567ee1860c2d56e1e5382b0", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-b/instances" - }, - "response": { - "bodySize": 317, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 317, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "uCF9JGh3RMu99rgryHChlAdl3cU=/Nmcb1BF7K98LFrzyblzEhUoN62o=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:48 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:47.043Z", - "time": 1077, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1077 - } - }, - { - "_id": "b6e66de7d22345ec2cdbe7113b4fb41d", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-c/instances" - }, - "response": { - "bodySize": 218, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 218, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-east4-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-east4-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "FgKN-NY2plbglVuZgNqR-uYLoUo=/g52VjV5Rrm2TLO0FYuOaLIIl5zg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:49 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:48.127Z", - "time": 1082, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1082 - } - }, - { - "_id": "d5b7b37f4e193bd040f2db53079b5f04", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-a/instances" - }, - "response": { - "bodySize": 252, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 252, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "upW-nB9L9-os5chEXTL-9Hf_3AE=/gC9mI9-DEtijx1ybhMaH1Kmj_ak=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:49 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:49.217Z", - "time": 376, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 376 - } - }, - { - "_id": "645d48b7643cacef89d2b6cfb4df4370", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-b/instances" - }, - "response": { - "bodySize": 296, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 296, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "-yIMbAzIMBtqzoA6GzmJRQEDFAI=/PP-OyYscL8FB4q0VuKZW3SUAdTg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:49 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:49.602Z", - "time": 467, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 467 - } - }, - { - "_id": "97c7d649c1d9246fec472c02be1b33fb", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-c/instances" - }, - "response": { - "bodySize": 276, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 276, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west1-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west1-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "HmPeRA9kGEtNH4Ms_n7Ubha-vJo=/SWrR14zInskklkr5CEVG0ePf7-U=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:50 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:50.074Z", - "time": 1048, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1048 - } - }, - { - "_id": "d856af3e2e502a54844ebb403234a188", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-a/instances" - }, - "response": { - "bodySize": 296, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 296, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "w4NKZHqyWwaARpJ8vPYCscdGrFM=/Ed0amZHMTtNb0kRm2dmBQroUhzU=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:51 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:51.130Z", - "time": 921, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 921 - } - }, - { - "_id": "4d0b836394cf46bbe4d1e3e859c2ce93", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-b/instances" - }, - "response": { - "bodySize": 313, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 313, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "UvA0Sg4MgvNWMNLy9m09O211Ivs=/RXpZEtm1iZmLtnzNmhHnyH5p-ik=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:52 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:52.057Z", - "time": 1735, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1735 - } - }, - { - "_id": "3d703b79cd1c15a518a4e435722f69ee", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-c/instances" - }, - "response": { - "bodySize": 259, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 259, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west2-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west2-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "-F56FTn5pfDfcCRXAyL8O9eNgzU=/Dog7aJWUCSjqBMXZXqFdaHA3MfE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:54 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:53.797Z", - "time": 831, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 831 - } - }, - { - "_id": "289a546470ffebc6f2ecbd3394d8fbe3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-a/instances" - }, - "response": { - "bodySize": 276, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 276, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "KMlx-lmD0R-nEMrNDRjFT8ut9uE=/OooKWKflYYeo7QvMa_FpmPACDH4=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:55 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:54.637Z", - "time": 1040, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1040 - } - }, - { - "_id": "864e971dd2a5d7c639854716333e57c3", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-b/instances" - }, - "response": { - "bodySize": 262, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 262, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "g_Rj0cUT5y0GAil1VDa-fRqrbp4=/RsW-G85QlymKf85UcD16f95hjFo=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:56 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:55.682Z", - "time": 876, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 876 - } - }, - { - "_id": "886ea7fe205c6ecf5fbf8eec9908289c", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-c/instances" - }, - "response": { - "bodySize": 276, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 276, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west3-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west3-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "x5A6JfmOYRE-GQ5Hx0ICpTEaRUA=/LQZ8mnYlGI_fPatjegjpIZeB1Hg=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:57 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:56.562Z", - "time": 915, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 915 - } - }, - { - "_id": "f13eeda8090b8575b175217cb63a844b", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-a/instances" - }, - "response": { - "bodySize": 276, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 276, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-a/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-a/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "kNbJNeo5SgVAUF5a0FF16NSrNX0=/7fGT4hq6z1EQMPlXvJXZmBsDom8=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:58 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:57.482Z", - "time": 876, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 876 - } - }, - { - "_id": "61d29285270f3978fe2b260333d3976e", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-b/instances" - }, - "response": { - "bodySize": 235, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 235, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-b/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-b/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "kdr3F9ayBvErfJXcLHgZS-uXpn8=/xneOyldIGU94n1Xv2lWHkdJMdOM=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:50:59 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:58.367Z", - "time": 1009, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 1009 - } - }, - { - "_id": "3d0d4c5b4403514665bc48ff3233b499", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1374, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-c/instances" - }, - "response": { - "bodySize": 279, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 279, - "text": "{\"kind\":\"compute#instanceList\",\"id\":\"projects/j1-gc-integration-dev-v3/zones/us-west4-c/instances\",\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3/zones/us-west4-c/instances\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "HN_YKpKBz55j9jnNmz9r0fetk2Q=/HxRmgJf3gwXaXhsFR9R-xyGaHEE=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:51:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:50:59.383Z", - "time": 915, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 915 - } - }, - { - "_id": "acea721c8193b51ced888cae721cc423", - "_order": 5, - "cache": {}, - "request": { - "bodySize": 709, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "content-type", - "value": "application/x-www-form-urlencoded" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "content-length", - "value": "709" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "node-fetch/1.0 (+https://github.com/bitinn/node-fetch)" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip,deflate" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "www.googleapis.com" - } - ], - "headersSize": 300, - "httpVersion": "HTTP/1.1", - "method": "POST", - "postData": { - "mimeType": "application/x-www-form-urlencoded", - "params": [], - "text": "[REDACTED]" - }, - "queryString": [], - "url": "https://www.googleapis.com/oauth2/v4/token" - }, - "response": { - "bodySize": 1214, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 1214, - "text": "{\"access_token\":\"[REDACTED]\",\"expires_in\":9999,\"token_type\":\"Bearer\"}" - }, - "cookies": [], - "headers": [ - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:51:00 GMT" - }, - { - "name": "server", - "value": "scaffolding on HTTPServer2" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 390, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" - }, - "startedDateTime": "2023-06-06T23:51:00.309Z", - "time": 309, - "timings": { - "blocked": -1, - "connect": -1, - "dns": -1, - "receive": 0, - "send": 0, - "ssl": -1, - "wait": 309 - } - }, - { - "_id": "543bbd21d6a61279549c0dad7656fdc5", - "_order": 0, - "cache": {}, - "request": { - "bodySize": 0, - "cookies": [], - "headers": [ - { - "_fromType": "array", - "name": "x-goog-api-client", - "value": "gdcl/5.0.2 gl-node/16.15.1 auth/7.1.1" - }, - { - "_fromType": "array", - "name": "accept-encoding", - "value": "gzip" - }, - { - "_fromType": "array", - "name": "user-agent", - "value": "google-api-nodejs-client/5.0.2 (gzip)" - }, - { - "_fromType": "array", - "name": "authorization", - "value": "[REDACTED]" - }, - { - "_fromType": "array", - "name": "accept", - "value": "application/json" - }, - { - "_fromType": "array", - "name": "connection", - "value": "close" - }, - { - "name": "host", - "value": "compute.googleapis.com" - } - ], - "headersSize": 1347, - "httpVersion": "HTTP/1.1", - "method": "GET", - "queryString": [], - "url": "https://compute.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3" - }, - "response": { - "bodySize": 2659, - "content": { - "encoding": "utf-8", - "mimeType": "application/json; charset=UTF-8", - "size": 2659, - "text": "{\"kind\":\"compute#project\",\"id\":\"2723542235640017893\",\"creationTimestamp\":\"2021-05-31T09:21:30.379-07:00\",\"name\":\"j1-gc-integration-dev-v3\",\"commonInstanceMetadata\":{\"kind\":\"compute#metadata\",\"fingerprint\":\"C_x3HYVZJUo=\",\"items\":[{\"key\":\"enable-osconfig\",\"value\":\"TRUE\"},{\"key\":\"ssh-keys\",\"value\":\"pgilaga:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDU0g4vACE8PrXfTGM4wUbIfQ207LxClP8p2wCI7RwGdZn+cAoMPKaHxIKck2fA1VtVWzUXehhUJbS1lrI40NQR1vH9C37shGDftEFyDORwMS2yxSWZtzUISINMzpG8Ih+iVfSAVFbjNsJpMBYDrtaLLzBOud8FDsx6scxWfI64u5hxXtjvO3rW1i4qAbYouCtMnse7xE2LUaiURpqq5ojCRlFC2bOQ+pYb0/9Jy3v6KpMnATg7Z68pWJrocnpJhkRywNwldbZLSDgff4Y5Gjbeq+Zl6qEEmyxFpqdVzB/RSM0g7eikkXZDzZHDvrXvxWiGqhBXXJ/KRfCuJG1LKzI+hl+yWvM/1qbX4qBpbnaNv+EvhS37Yu/OEqXMoUfOWqEIR//3QSf4cluhlLQ1F9GElmnicj41MFZwFq/7IQXikcrz3lfzQ5fXLmBeQ3E97z4ZSETVqHDWc04h7MdueW1OdNbKGIx7ldNAWo3TxNsV6etFTtv1QK/ZTNmqQB5fxF0= pgilaga@Pauls-MacBook-Air.local\\nignacio:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDSg4sA5KWtxOoYlWtyJ+uI1f7xPQ3UMMz9tMfP3SLTQFS+ThHw4+IxhZdIy1RYug+l2YFdF5W3vOaHozE2hLarvj9hSClipoy7COn9+NkkDKLFdVajJCNxKrj1YespMBTG00frk/+t+ilz9DX0kKHklrjvQQ+TJe0R2MJa0tyAyZ4pOTXcI96YvNA0N8e/AglixvybtX1KTYj30TnrGke+vAkVa1xG0UulZ7O5At4Xd/Ue3e9SsnEO3JOUb4MLz5xKBCTY42TQp1exrccSXl4cXZV5AIuvmypkx6nrsR9K5WEgPEENCiQO+ghR6YaSnBY9Yk8w7TPI2ep0S1g2NYGjGfPCv0fhw/422utFd6amFJc1NOP8ZaT7FEpCKxVEiR30q0lARs4q1YuuQu2mx/nZ/DMQMweiXrrCfnWDRnFjvCmcT3BEtTQUa1z8MiybeVJN9MKDued6Y2dJCwBaXH0A62k4txV1b5oNAGFCPMLLRDnGzld+l+M07ub6b0CZkVM= ignacio@dbp.local\"},{\"key\":\"sshKeys\",\"value\":\"\"}]},\"quotas\":[{\"metric\":\"SNAPSHOTS\",\"limit\":5000,\"usage\":32},{\"metric\":\"NETWORKS\",\"limit\":15,\"usage\":3},{\"metric\":\"FIREWALLS\",\"limit\":200,\"usage\":15},{\"metric\":\"IMAGES\",\"limit\":2000,\"usage\":5},{\"metric\":\"STATIC_ADDRESSES\",\"limit\":21,\"usage\":0},{\"metric\":\"ROUTES\",\"limit\":250,\"usage\":3},{\"metric\":\"FORWARDING_RULES\",\"limit\":45,\"usage\":0},{\"metric\":\"TARGET_POOLS\",\"limit\":150,\"usage\":1},{\"metric\":\"HEALTH_CHECKS\",\"limit\":150,\"usage\":4},{\"metric\":\"IN_USE_ADDRESSES\",\"limit\":69,\"usage\":1},{\"metric\":\"TARGET_INSTANCES\",\"limit\":150,\"usage\":0},{\"metric\":\"TARGET_HTTP_PROXIES\",\"limit\":30,\"usage\":2},{\"metric\":\"URL_MAPS\",\"limit\":30,\"usage\":2},{\"metric\":\"BACKEND_SERVICES\",\"limit\":75,\"usage\":0},{\"metric\":\"INSTANCE_TEMPLATES\",\"limit\":300,\"usage\":1},{\"metric\":\"TARGET_VPN_GATEWAYS\",\"limit\":15,\"usage\":0},{\"metric\":\"VPN_TUNNELS\",\"limit\":30,\"usage\":0},{\"metric\":\"BACKEND_BUCKETS\",\"limit\":9,\"usage\":0},{\"metric\":\"ROUTERS\",\"limit\":10,\"usage\":0},{\"metric\":\"TARGET_SSL_PROXIES\",\"limit\":30,\"usage\":0},{\"metric\":\"TARGET_HTTPS_PROXIES\",\"limit\":30,\"usage\":1},{\"metric\":\"SSL_CERTIFICATES\",\"limit\":30,\"usage\":1},{\"metric\":\"SUBNETWORKS\",\"limit\":175,\"usage\":0},{\"metric\":\"TARGET_TCP_PROXIES\",\"limit\":30,\"usage\":0},{\"metric\":\"SECURITY_POLICIES\",\"limit\":10,\"usage\":0},{\"metric\":\"SECURITY_POLICY_RULES\",\"limit\":100,\"usage\":0},{\"metric\":\"XPN_SERVICE_PROJECTS\",\"limit\":1000,\"usage\":0},{\"metric\":\"PACKET_MIRRORINGS\",\"limit\":45,\"usage\":0},{\"metric\":\"NETWORK_ENDPOINT_GROUPS\",\"limit\":300,\"usage\":0},{\"metric\":\"INTERCONNECTS\",\"limit\":6,\"usage\":0},{\"metric\":\"GLOBAL_INTERNAL_ADDRESSES\",\"limit\":5000,\"usage\":1},{\"metric\":\"VPN_GATEWAYS\",\"limit\":15,\"usage\":0},{\"metric\":\"MACHINE_IMAGES\",\"limit\":2000,\"usage\":0},{\"metric\":\"SECURITY_POLICY_CEVAL_RULES\",\"limit\":20,\"usage\":0},{\"metric\":\"EXTERNAL_VPN_GATEWAYS\",\"limit\":15,\"usage\":0},{\"metric\":\"PUBLIC_ADVERTISED_PREFIXES\",\"limit\":1,\"usage\":0},{\"metric\":\"PUBLIC_DELEGATED_PREFIXES\",\"limit\":10,\"usage\":0},{\"metric\":\"STATIC_BYOIP_ADDRESSES\",\"limit\":1024,\"usage\":0},{\"metric\":\"NETWORK_FIREWALL_POLICIES\",\"limit\":30,\"usage\":1},{\"metric\":\"INTERNAL_TRAFFIC_DIRECTOR_FORWARDING_RULES\",\"limit\":45,\"usage\":0},{\"metric\":\"GLOBAL_EXTERNAL_MANAGED_FORWARDING_RULES\",\"limit\":45,\"usage\":0},{\"metric\":\"GLOBAL_EXTERNAL_MANAGED_BACKEND_SERVICES\",\"limit\":75,\"usage\":0},{\"metric\":\"GLOBAL_EXTERNAL_PROXY_LB_BACKEND_SERVICES\",\"limit\":75,\"usage\":1},{\"metric\":\"GLOBAL_INTERNAL_TRAFFIC_DIRECTOR_BACKEND_SERVICES\",\"limit\":500,\"usage\":0}],\"selfLink\":\"https://www.googleapis.com/compute/v1/projects/j1-gc-integration-dev-v3\",\"defaultServiceAccount\":\"167984947943-compute@developer.gserviceaccount.com\",\"xpnProjectStatus\":\"UNSPECIFIED_XPN_PROJECT_STATUS\",\"defaultNetworkTier\":\"PREMIUM\",\"vmDnsSetting\":\"ZONAL_ONLY\"}" - }, - "cookies": [], - "headers": [ - { - "name": "etag", - "value": "YXPy55qkYUS89E-MdVaOlq__b7s=/8JFnVRl75fsq-mcOEL2aBuI3n38=" - }, - { - "name": "content-type", - "value": "application/json; charset=UTF-8" - }, - { - "name": "vary", - "value": "Origin, X-Origin, Referer" - }, - { - "name": "date", - "value": "Tue, 06 Jun 2023 23:51:00 GMT" - }, - { - "name": "server", - "value": "ESF" - }, - { - "name": "cache-control", - "value": "private" - }, - { - "name": "x-xss-protection", - "value": "0" - }, - { - "name": "x-frame-options", - "value": "SAMEORIGIN" - }, - { - "name": "x-content-type-options", - "value": "nosniff" - }, - { - "name": "alt-svc", - "value": "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - }, - { - "name": "connection", - "value": "close" - } - ], - "headersSize": 432, - "httpVersion": "HTTP/1.1", - "redirectURL": "", - "status": 200, - "statusText": "OK" + "status": 401, + "statusText": "Unauthorized" }, - "startedDateTime": "2023-06-06T23:51:00.625Z", - "time": 453, + "startedDateTime": "2023-11-22T17:30:40.599Z", + "time": 1442, "timings": { "blocked": -1, "connect": -1, @@ -30986,7 +5007,7 @@ "receive": 0, "send": 0, "ssl": -1, - "wait": 453 + "wait": 1442 } } ],