このページでは、BigQuery Data Transfer API の Cloud クライアント ライブラリの使用方法を示します。以前の Google API クライアント ライブラリを含む、Cloud APIs のクライアント ライブラリの詳細については、クライアント ライブラリの説明をご覧ください。
クライアント ライブラリのインストール
C#
詳細については、C# 開発環境の設定をご覧ください。
Install-Package Google.Cloud.BigQuery.DataTransfer.V1 -Pre
Go
詳細については、Go 開発環境の設定をご覧ください。
go get cloud.google.com/go/bigquery/datatransfer/apiv1
Java
詳細については、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
詳細については、Node.js 開発環境の設定をご覧ください。
npm install --save @google-cloud/bigquery-data-transfer
PHP
詳細については、Google Cloud での PHP の使用をご覧ください。
composer require google/cloud-bigquerydatatransfer
Python
詳細については、Python 開発環境の設定をご覧ください。
pip install --upgrade google-cloud-bigquery-datatransfer
Ruby
詳細については、Ruby 開発環境の設定をご覧ください。
gem install google-cloud-bigquery-data_transfer
認証の設定
クライアント ライブラリを実行するには、サービス アカウントを作成して環境変数を設定し、認証を設定する必要があります。以下の手順で認証を設定します。その他の認証方法については、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 または 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.
クライアント ライブラリの使用
次の例は、クライアント ライブラリの使用方法を示しています。
C#
Go
Java
Node.js
PHP
Python
Ruby