Skip to main content

Google Cloud Resource Manager API client library

Project description

alpha pypi versions

Google Cloud Resource Manager API provides methods that you can use to programmatically manage your projects in the Google Cloud Platform. With this API, you can do the following:

Quick Start

In order to use this library, you first need to go through the following steps:

  1. Select or create a Cloud Platform project.

  2. Enable billing for your project.

  3. Enable the Google Cloud Resource Manager API.

Installation

Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.

With virtualenv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Supported Python Versions

Python >= 3.5

Deprecated Python Versions

Python == 2.7. Python 2.7 support will be removed on January 1, 2020.

Mac/Linux

pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-resource-manager

Windows

pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-resource-manager

Authentication

Unlike the other APIs, the Resource Manager API is focused on managing your various projects inside Google Cloud Platform. What this means (currently, as of August 2015) is that you can’t use a Service Account to work with some parts of this API (for example, creating projects).

The reason is actually pretty simple: if your API call is trying to do something like create a project, what project’s Service Account can you use? Currently none.

This means that for this API you should always use the credentials provided by the Google Cloud SDK, which you can get by running gcloud auth login.

Once you run that command, google-cloud-python will automatically pick up the credentials, and you can use the “automatic discovery” feature of the library.

Start by authenticating:

$ gcloud auth login

And then simply create a client:

from google.cloud import resource_manager
client = resource_manager.Client()

Using the API

Here’s a quick example of the full life-cycle:

from google.cloud import resource_manager

client = resource_manager.Client()

# List all projects you have access to
for project in client.list_projects():
    print(project)

# Create a new project
new_project = client.new_project(
 'your-project-id-here', name='My new project')
new_project.create()

# Update an existing project
project = client.fetch_project('my-existing-project')
project.name = 'Modified name'
project.update()

# Delete a project
project = client.new_project('my-existing-project')
project.delete()

# Undelete a project
project = client.new_project('my-existing-project')
project.undelete()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google-cloud-resource-manager-0.30.1.tar.gz (19.0 kB view details)

Uploaded Source

Built Distribution

google_cloud_resource_manager-0.30.1-py2.py3-none-any.whl (15.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file google-cloud-resource-manager-0.30.1.tar.gz.

File metadata

  • Download URL: google-cloud-resource-manager-0.30.1.tar.gz
  • Upload date:
  • Size: 19.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for google-cloud-resource-manager-0.30.1.tar.gz
Algorithm Hash digest
SHA256 ef32d77a0f8811c4a3a007fd9e007ca758c4e42af50401e9aaca474c1c54c90e
MD5 a8c82c3c4d22f35c4c491bab5599b562
BLAKE2b-256 a9864f060a19642831b6159e3142dfd2c1bcb38b62665297992044a108865b8b

See more details on using hashes here.

Provenance

File details

Details for the file google_cloud_resource_manager-0.30.1-py2.py3-none-any.whl.

File metadata

  • Download URL: google_cloud_resource_manager-0.30.1-py2.py3-none-any.whl
  • Upload date:
  • Size: 15.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.0

File hashes

Hashes for google_cloud_resource_manager-0.30.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 edf5eebea048f38ec56e20834b524d77c0a1d76296c3c305f518959c79d852fd
MD5 8ec2d7af43d2956d8a18b7b4b3ed9e2e
BLAKE2b-256 a3d04233d7bcd2c76fd2db5379bc21a5b322635d6b6ae7c0ea725385749592e0

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page