Using js-genai with googleapis.com

TypeScript integration

✓ Official SDK
Install
npm install js-genai
Quick start
import Js_genai from 'js-genai';

const client = new Js_genai({ accessToken: "YOUR_ACCESS_TOKEN" });
List the jobs of a project. To list the jobs of a project in a region, we rec…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://dataflow.googleapis.com/v1b3/projects/{projectId}/jobs
Lists snapshots.
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://dataflow.googleapis.com/v1b3/projects/{projectId}/snapshots
Gets the state of the specified Cloud Dataflow job. To get the state of a job…
curl \
  -H "Authorization: Bearer $ACCESS_TOKEN" \
  https://dataflow.googleapis.com/v1b3/projects/{projectId}/jobs/{jobId}
SDK on GitHub 📄 API Docs
SDK
js-genai
TypeScript
API
googleapis.com
googleapis.com:dataflow
At a glance
Language TypeScript
Endpoints41
Base URLhttps://dataflow.googleapis.com
✓ Official