google-cloud-resource-manager
A fully generated, opinionated API client library for Google Cloud Resource Manager.
API Details
Creates, reads, and updates metadata for Google Cloud Platform resource containers.
Contact
| name | url |
|---|---|
| https://google.com |
License
| name | url |
|---|---|
| Creative Commons Attribution 3.0 | http://creativecommons.org/licenses/by/3.0/ |
Client Details
This client is generated from the Google Cloud Resource Manager OpenAPI
specs based on API spec version v2. This way it will remain
up to date as features are added. The documentation for the crate is generated
along with the code to make this library easy to use.
To install the library, add the following to your Cargo.toml file.
[]
= "0.10.0"
Basic example
Typical use will require intializing a Client. This requires
a user agent string and set of credentials.
use Client;
let google cloud resource manager = new;
Alternatively, the library can search for most of the variables required for the client in the environment:
GOOGLE CLOUD RESOURCE MANAGER_CLIENT_IDGOOGLE CLOUD RESOURCE MANAGER_CLIENT_SECRETGOOGLE CLOUD RESOURCE MANAGER_REDIRECT_URI
And then you can create a client from the environment.
use Client;
let google cloud resource manager = new_from_env;
It is okay to pass empty values for token and refresh_token. In
the initial state of the client, you will not know these values.
To start off a fresh client and get a token and refresh_token, use the following.
use Client;
async