@maxim_mazurok/gapi.client.bigquery-v2 0.0.20220913 → 0.0.20220924
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.
- package/index.d.ts +5 -4
- package/package.json +1 -1
- package/tests.ts +2 -1
package/index.d.ts
CHANGED
|
@@ -4,13 +4,12 @@
|
|
|
4
4
|
// Nick Amoscato <https://github.com/namoscato>
|
|
5
5
|
// Declan Vong <https://github.com/declanvong>
|
|
6
6
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
7
|
-
// TypeScript Version: 2.8
|
|
8
7
|
|
|
9
8
|
// IMPORTANT
|
|
10
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
11
|
// Generated from: https://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
13
|
-
// Revision:
|
|
12
|
+
// Revision: 20220924
|
|
14
13
|
|
|
15
14
|
/// <reference types="gapi.client" />
|
|
16
15
|
|
|
@@ -1597,6 +1596,8 @@ declare namespace gapi.client {
|
|
|
1597
1596
|
totalPartitionsProcessed?: string;
|
|
1598
1597
|
/** [Output only] Slot-milliseconds for the job. */
|
|
1599
1598
|
totalSlotMs?: string;
|
|
1599
|
+
/** [Output-only] Total bytes transferred for cross-cloud queries such as Cross Cloud Transfer and CREATE TABLE AS SELECT (CTAS). */
|
|
1600
|
+
transferredBytes?: string;
|
|
1600
1601
|
/** Standard SQL only: list of undeclared query parameters detected during a dry run validation. */
|
|
1601
1602
|
undeclaredQueryParameters?: QueryParameter[];
|
|
1602
1603
|
}
|
|
@@ -2755,9 +2756,9 @@ declare namespace gapi.client {
|
|
|
2755
2756
|
trainingOptions?: TrainingOptions;
|
|
2756
2757
|
/** Output only. The start time of this training run, in milliseconds since epoch. */
|
|
2757
2758
|
trainingStartTime?: string;
|
|
2758
|
-
/** The model id in Vertex AI Model Registry for this training run */
|
|
2759
|
+
/** The model id in the [Vertex AI Model Registry](https://cloud.google.com/vertex-ai/docs/model-registry/introduction) for this training run. */
|
|
2759
2760
|
vertexAiModelId?: string;
|
|
2760
|
-
/** Output only. The model version in Vertex AI Model Registry for this training run */
|
|
2761
|
+
/** Output only. The model version in the [Vertex AI Model Registry](https://cloud.google.com/vertex-ai/docs/model-registry/introduction) for this training run. */
|
|
2761
2762
|
vertexAiModelVersion?: string;
|
|
2762
2763
|
}
|
|
2763
2764
|
interface TransactionInfo {
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20220924
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -872,6 +872,7 @@ gapi.load('client', async () => {
|
|
|
872
872
|
totalBytesProcessedAccuracy: "Test string",
|
|
873
873
|
totalPartitionsProcessed: "Test string",
|
|
874
874
|
totalSlotMs: "Test string",
|
|
875
|
+
transferredBytes: "Test string",
|
|
875
876
|
undeclaredQueryParameters: [
|
|
876
877
|
{
|
|
877
878
|
name: "Test string",
|