이 페이지에서는 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
자바
자세한 내용은 자바 개발 환경 설정을 참조하세요.
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
자바
Node.js
PHP
Python
Ruby