Cloud Scheduler client libraries

This page shows how to get started with the Cloud Client Libraries for the Cloud Scheduler API. Read more about the client libraries for Cloud APIs in Client libraries explained.

Installing the client library

C++

For more information, see Setting Up a C++ Development Environment.

C#

For more information, see Setting Up a C# Development Environment.

Install-PackageGoogle.Cloud.Scheduler.V1

Go

For more information, see Setting Up Your Development Environment.

gogetcloud.google.com/go/scheduler/apiv1

Java

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.

Node.js

For more information, see Setting Up a Node.js Development Environment.

npminstall@google-cloud/scheduler

PHP

composerrequiregoogle/cloud-scheduler

Python

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.

Mac or Linux

pipinstallvirtualenv
virtualenv<your-env>
source<your-env>/bin/activate
<your-env>/bin/pipinstallgoogle-cloud-scheduler

Windows

pipinstallvirtualenv
virtualenv<your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exeinstallgoogle-cloud-scheduler

Ruby

For more information, see Setting Up a Ruby Development Environment.

geminstallgoogle-cloud-scheduler

Setting up authentication

  1. Install the Google Cloud CLI. After installation, initialize the Google Cloud CLI by running the following command:

    gcloudinit

    If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.

  2. If you're using a local shell, then create local authentication credentials for your user account:

    gcloudauthapplication-defaultlogin

    You don't need to do this if you're using Cloud Shell.

    If an authentication error is returned, and you are using an external identity provider (IdP), confirm that you have signed in to the gcloud CLI with your federated identity.

    A sign-in screen appears. After you sign in, your credentials are stored in the local credential file used by ADC.

Additional resources

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

Last updated 2025年11月11日 UTC.