@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20250331 → 0.0.20250422

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +698 -324
  2. package/package.json +1 -1
  3. package/readme.md +15 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20250331",
3
+ "version": "0.0.20250422",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
5
5
  "repository": {
6
6
  "type": "git",
package/readme.md CHANGED
@@ -72,6 +72,21 @@ gapi.auth.authorize(
72
72
  After that you can use Vertex AI API resources: <!-- TODO: make this work for multiple namespaces -->
73
73
 
74
74
  ```typescript
75
+ /*
76
+ Creates a BatchPredictionJob. A BatchPredictionJob once created will right away be attempted to start.
77
+ */
78
+ await gapi.client.aiplatform.batchPredictionJobs.create({});
79
+
80
+ /*
81
+ Gets a BatchPredictionJob
82
+ */
83
+ await gapi.client.aiplatform.batchPredictionJobs.get({name: 'name'});
84
+
85
+ /*
86
+ Lists BatchPredictionJobs in a Location.
87
+ */
88
+ await gapi.client.aiplatform.batchPredictionJobs.list({});
89
+
75
90
  /*
76
91
  Creates a Dataset.
77
92
  */