This page shows how to get started with the Cloud Client Libraries for the Google Cloud Scheduler API. Read more about the client libraries for Cloud APIs in Client libraries explained.
Installing the client library
For more information, see Setting Up a C++ Development Environment.
For more information, see Setting Up a C# Development Environment.
Install-Package Google.Cloud.Scheduler.V1
For more information, see Setting Up Your Development Environment.
go get cloud.google.com/go/scheduler/apiv1
For more information, see Setting Up a Java Development Environment.
If you are using Maven,
add the following to your pom.xml
file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-scheduler</artifactId>
<version>0.93.0-alpha</version>
</dependency>
If you are using Gradle, add the following to your dependencies:
compile 'com.google.cloud:google-cloud-scheduler:0.93.0-alpha'
If you are using SBT, add the following to your dependencies:
libraryDependencies += "com.google.cloud" % "google-cloud-scheduler" % "0.93.0-alpha"
If you are using VS Code, IntelliJ or Eclipse, you can add client libraries to your project using the following IDE plugins:
The plugins provide additional capabilities, such as key management for service accounts. Refer to each plugin's documentation for details.
For more information, see Setting Up a Node.js Development Environment.
npm install --save @google-cloud/scheduler
composer require google/cloud-scheduler
For more information, see Setting Up a Python Development Environment.
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.
pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-scheduler
pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-scheduler
For more information, see Setting Up a Ruby Development Environment.
gem install google-cloud-scheduler
Setting up authentication
-
Install the Google Cloud CLI, then initialize it by running the following command:
gcloud init
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
A sign-in screen appears. After you sign in, your credentials are stored in the local credential file used by ADC.