This page shows how to get started with the Cloud Client Libraries for the Google Cloud Deploy API. However, we recommend using the older Google API Client Libraries if running on Google App Engine standard environment. Read more about the client libraries for Cloud APIs in Client Libraries Explained.
Install the client library
C#
For more information, see Setting Up a C# Development Environment.
Install-Package Google.Cloud.Deploy.V1 -Pre
Go
For more information, see Setting Up a Go Development Environment.
go get cloud.google.com/go/storage
Java
For more information, see Setting Up a Java Development Environment.
If you are using Maven, add this to your pom.xml file:<dependency> <groupId>com.google.cloud</groupId> <artifactId>google-cloud-deploy</artifactId> <version></version> </dependency>
If you are using Gradle, add this to your dependencies:
compile group: 'com.google.cloud', name: 'google-cloud-deploy', version: ''
Node.js
For more information, see Setting Up a Node.js Development Environment.
npm install --save @google-cloud/deploy
PHP
For more information, see Using PHP on Google Cloud.
composer require google/cloud-deploy
Python
For more information, see Setting Up a Python Development Environment.
pip install --upgrade google-cloud-deploy
Ruby
For more information, see Setting Up a Ruby Development Environment.
gem install google-cloud-deploy
Set up authentication
When you use client libraries, you use Application Default Credentials (ADC) to authenticate. For information about setting up ADC, see Provide credentials for Application Default Credentials. For information about using ADC with client libraries, see Authenticate using client libraries.
Use the client library
The following example shows how to use the client library.
Node.js
To authenticate to Google Cloud Deploy, set up Application Default Credentials. For more information, see Set up authentication for a local development environment.