Global

Members

GCE_LINUX_BIOS_PATHS

Known paths unique to Google Compute Engine Linux instances

METADATA_SERVER_DETECTION

Metadata server detection override options.

Available via process.env.METADATA_SERVER_DETECTION.

__createBinding

Copyright 2018 Google LLC

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

gcpResidencyCache

A cache for the detected GCP Residency.

Methods

(async) bulk(properties)

Retrieve metadata items in parallel.

Parameters:
Name Type Description
properties

The metadata properties to retrieve

Returns:
Type Description

The metadata in metadatakey:value format

See:
Example
```
const data = await bulk([
  {
    metadataKey: 'instance',
  },
  {
    metadataKey: 'project/project-id',
  },
] as const);

// data.instance;
// data['project/project-id'];
```

detectGCPResidency() → {boolean}

Determines if the process is running on Google Cloud Platform.

Returns:
Type Description
boolean

true if the process is running on GCP, false otherwise.

getBaseUrl()

Returns the base URL while taking into account the GCE_METADATA_HOST environment variable if it exists.

Returns:
Type Description

The base URL, e.g., http://169.254.169.254/computeMetadata/v1.

getGCPResidency()

Detects GCP Residency. Caches results to reduce costs for subsequent calls.

See:
  • setGCPResidency for setting

instance()

Obtain metadata for the current GCE instance.

See:
Example
```
const serviceAccount: {} = await instance('service-accounts/');
const serviceAccountEmail: string = await instance('service-accounts/default/email');
```

(async) isAvailable()

Determine if the metadata server is currently available.

isGoogleCloudServerless() → {boolean}

Determines if the process is running on a Google Cloud Serverless environment (Cloud Run or Cloud Functions instance).

Uses the:

Returns:
Type Description
boolean

true if the process is running on GCP serverless, false otherwise.

isGoogleComputeEngine() → {boolean}

Determines if the process is running on a Google Compute Engine instance.

Returns:
Type Description
boolean

true if the process is running on GCE, false otherwise.

isGoogleComputeEngineLinux() → {boolean}

Determines if the process is running on a Linux Google Compute Engine instance.

Returns:
Type Description
boolean

true if the process is running on Linux GCE, false otherwise.

isGoogleComputeEngineMACAddress() → {boolean}

Determines if the process is running on a Google Compute Engine instance with a known MAC address.

Returns:
Type Description
boolean

true if the process is running on GCE (as determined by MAC address), false otherwise.

project()

Obtain metadata for the current GCP project.

See:
Example
```
const projectId: string = await project('project-id');
const numericProjectId: number = await project('numeric-project-id');
```

requestTimeout() → {number}

Obtain the timeout for requests to the metadata server.

In certain environments and conditions requests can take longer than the default timeout to complete. This function will determine the appropriate timeout based on the environment.

Returns:
Type Description
number

a request timeout duration in milliseconds.

resetIsAvailableCache()

reset the memoized isAvailable() lookup.

setGCPResidency()

Sets the detected GCP Residency. Useful for forcing metadata server detection behavior.

Set null to autodetect the environment (default behavior).

See:
  • getGCPResidency for getting

universe()

Obtain metadata for the current universe.

See:
Example
```
const universeDomain: string = await universe('universe-domain');
```