Google Cloud Resource Manager API: Node.js Client

release levelnpm version

Cloud Resource Manager Client Library for Node.js

A comprehensive list of changes in each version may be found inthe CHANGELOG.

Read more about the client libraries for Cloud APIs, including the olderGoogle APIs Client Libraries, inClient Libraries Explained.

Table of contents:

Quickstart

Before you begin

  1. Select or create a Cloud Platform project.
  2. Enable billing for your project.
  3. Enable the Google Cloud Resource Manager API API.
  4. Set up authentication so you can access theAPI from your local workstation.

Installing the client library

npm install @google-cloud/resource-manager

Using the client library

// Imports the Google Cloud client libraryconst {ProjectsClient} = require('@google-cloud/resource-manager');// Creates a clientconst client = newProjectsClient();async function quickstart() {  // Lists current projects  const projects = client.searchProjectsAsync();  console.log('Projects:');  for await (const project of projects) {    console.info(project);  }}quickstart();

Samples

Samples are in thesamples/ directory. Each sample'sREADME.md has instructions for running its sample.

SampleSource CodeTry it
Folders.create_foldersource codeOpen in Cloud Shell
Folders.delete_foldersource codeOpen in Cloud Shell
Folders.get_foldersource codeOpen in Cloud Shell
Folders.get_iam_policysource codeOpen in Cloud Shell
Folders.list_folderssource codeOpen in Cloud Shell
Folders.move_foldersource codeOpen in Cloud Shell
Folders.search_folderssource codeOpen in Cloud Shell
Folders.set_iam_policysource codeOpen in Cloud Shell
Folders.test_iam_permissionssource codeOpen in Cloud Shell
Folders.undelete_foldersource codeOpen in Cloud Shell
Folders.update_foldersource codeOpen in Cloud Shell
Organizations.get_iam_policysource codeOpen in Cloud Shell
Organizations.get_organizationsource codeOpen in Cloud Shell
Organizations.search_organizationssource codeOpen in Cloud Shell
Organizations.set_iam_policysource codeOpen in Cloud Shell
Organizations.test_iam_permissionssource codeOpen in Cloud Shell
Projects.create_projectsource codeOpen in Cloud Shell
Projects.delete_projectsource codeOpen in Cloud Shell
Projects.get_iam_policysource codeOpen in Cloud Shell
Projects.get_projectsource codeOpen in Cloud Shell
Projects.list_projectssource codeOpen in Cloud Shell
Projects.move_projectsource codeOpen in Cloud Shell
Projects.search_projectssource codeOpen in Cloud Shell
Projects.set_iam_policysource codeOpen in Cloud Shell
Projects.test_iam_permissionssource codeOpen in Cloud Shell
Projects.undelete_projectsource codeOpen in Cloud Shell
Projects.update_projectsource codeOpen in Cloud Shell
Tag_bindings.create_tag_bindingsource codeOpen in Cloud Shell
Tag_bindings.delete_tag_bindingsource codeOpen in Cloud Shell
Tag_bindings.list_effective_tagssource codeOpen in Cloud Shell
Tag_bindings.list_tag_bindingssource codeOpen in Cloud Shell
Tag_holds.create_tag_holdsource codeOpen in Cloud Shell
Tag_holds.delete_tag_holdsource codeOpen in Cloud Shell
Tag_holds.list_tag_holdssource codeOpen in Cloud Shell
Tag_keys.create_tag_keysource codeOpen in Cloud Shell
Tag_keys.delete_tag_keysource codeOpen in Cloud Shell
Tag_keys.get_iam_policysource codeOpen in Cloud Shell
Tag_keys.get_namespaced_tag_keysource codeOpen in Cloud Shell
Tag_keys.get_tag_keysource codeOpen in Cloud Shell
Tag_keys.list_tag_keyssource codeOpen in Cloud Shell
Tag_keys.set_iam_policysource codeOpen in Cloud Shell
Tag_keys.test_iam_permissionssource codeOpen in Cloud Shell
Tag_keys.update_tag_keysource codeOpen in Cloud Shell
Tag_values.create_tag_valuesource codeOpen in Cloud Shell
Tag_values.delete_tag_valuesource codeOpen in Cloud Shell
Tag_values.get_iam_policysource codeOpen in Cloud Shell
Tag_values.get_namespaced_tag_valuesource codeOpen in Cloud Shell
Tag_values.get_tag_valuesource codeOpen in Cloud Shell
Tag_values.list_tag_valuessource codeOpen in Cloud Shell
Tag_values.set_iam_policysource codeOpen in Cloud Shell
Tag_values.test_iam_permissionssource codeOpen in Cloud Shell
Tag_values.update_tag_valuesource codeOpen in Cloud Shell
Quickstartsource codeOpen in Cloud Shell

TheGoogle Cloud Resource Manager API Node.js Client API Reference documentationalso contains samples.

Supported Node.js Versions

Our client libraries follow theNode.js release schedule.Libraries are compatible with all currentactive andmaintenance versions ofNode.js.If you are using an end-of-life version of Node.js, we recommend that you updateas soon as possible to an actively supported LTS version.

Google's client libraries support legacy versions of Node.js runtimes on abest-efforts basis with the following warnings:

  • Legacy versions are not tested in continuous integration.
  • Some security patches and features cannot be backported.
  • Dependencies cannot be kept up-to-date.

Client libraries targeting some end-of-life versions of Node.js are available, andcan be installed through npmdist-tags.The dist-tags follow the naming conventionlegacy-(version).For example,npm install @google-cloud/resource-manager@legacy-8 installs client librariesfor versions compatible with Node.js 8.

Versioning

This library followsSemantic Versioning.

This library is considered to bestable. The code surface will not change in backwards-incompatible waysunless absolutely necessary (e.g. because of critical security issues) or withan extensive deprecation period. Issues and requests againststable librariesare addressed with the highest priority.

More Information:Google Cloud Platform Launch Stages

Contributing

Contributions welcome! See theContributing Guide.

Please note that thisREADME.md, thesamples/README.md,and a variety of configuration files in this repository (including.nycrc andtsconfig.json)are generated from a central template. To edit one of these files, make an editto its templates indirectory.

License

Apache Version 2.0

SeeLICENSE

Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-10-30 UTC.