Cette page vous aide à débuter avec les bibliothèques clientes cloud conçues pour l'API BigQuery Data Transfer. Pour en savoir plus sur les bibliothèques clientes des API Cloud, y compris les anciennes bibliothèques clientes des API Google, consultez la section Présentation des bibliothèques clientes.
Installer la bibliothèque cliente
C#
Pour en savoir plus, consultez la section Configurer un environnement de développement C#.
Install-Package Google.Cloud.BigQuery.DataTransfer.V1 -Pre
Go
Pour plus d'informations, consultez la page Configurer un environnement de développement Go.
go get cloud.google.com/go/bigquery/datatransfer/apiv1
Java
Pour en savoir plus, consultez la section Configurer un environnement de développement Java.
If you are using Maven, add
the following to your pom.xml
file. For more information about
BOMs, see The Google Cloud Platform Libraries BOM.
If you are using Gradle, add the following to your dependencies:
If you are using sbt, add the following to your dependencies:
If you're using Visual Studio Code, IntelliJ, or Eclipse, you can add client libraries to your project using the following IDE plugins:
The plugins provide additional functionality, such as key management for service accounts. Refer to each plugin's documentation for details.
Node.js
Pour en savoir plus, consultez la section Configurer un environnement de développement Node.js.
npm install --save @google-cloud/bigquery-data-transfer
PHP
Pour en savoir plus, consultez la page Utiliser PHP sur Google Cloud.
composer require google/cloud-bigquerydatatransfer
Python
Pour en savoir plus, consultez la section Configurer un environnement de développement Python.
pip install --upgrade google-cloud-bigquery-datatransfer
Ruby
Pour en savoir plus, consultez la section Configurer un environnement de développement Ruby.
gem install google-cloud-bigquery-data_transfer
Configurer l'authentification
Pour exécuter la bibliothèque cliente, vous devez d'abord configurer l'authentification en créant un compte de service et en définissant une variable d'environnement. Suivez les étapes ci-dessous pour configurer l'authentification. Pour plus d'informations sur les méthodes d'authentification, consultez la documentation sur l'authentification dans GCP.
Provide authentication credentials to your application code by setting the
environment variable GOOGLE_APPLICATION_CREDENTIALS
. This
variable applies only to your current shell session. If you want the variable
to apply to future shell sessions, set the variable in your shell startup file,
for example in the ~/.bashrc
or ~/.profile
file.
Linux ou macOS
export GOOGLE_APPLICATION_CREDENTIALS="KEY_PATH
"
Replace KEY_PATH
with the path of the JSON file that contains your credentials.
For example:
export GOOGLE_APPLICATION_CREDENTIALS="/home/user/Downloads/service-account-file.json"
Windows
For PowerShell:
$env:GOOGLE_APPLICATION_CREDENTIALS="KEY_PATH
"
Replace KEY_PATH
with the path of the JSON file that contains your credentials.
For example:
$env:GOOGLE_APPLICATION_CREDENTIALS="C:\Users\username\Downloads\service-account-file.json"
For command prompt:
set GOOGLE_APPLICATION_CREDENTIALS=KEY_PATH
Replace KEY_PATH
with the path of the JSON file that contains your credentials.
Utiliser la bibliothèque cliente
L'exemple suivant vous montre comment utiliser la bibliothèque cliente.
C#
Go
Java
Node.js
PHP
Python
Ruby