Skip to content
This repository was archived by the owner on Mar 5, 2026. It is now read-only.

Commit 6075ab3

Browse files
fix: GoogleAdsError missing using generator version after 1.3.0
[PR](googleapis/gapic-generator-typescript#878) within updated gapic-generator-typescript version 1.4.0 Committer: @summer-ji-eng PiperOrigin-RevId: 375759421 Source-Link: googleapis/googleapis@95fa72f Source-Link: googleapis/googleapis-gen@f40a343
1 parent 99445f8 commit 6075ab3

39 files changed

Lines changed: 4609 additions & 0 deletions

owl-bot-staging/v1/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Storage: Nodejs Client
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recurse": true,
3+
"skip": [
4+
"https://codecov.io/gh/googleapis/",
5+
"www.googleapis.com",
6+
"img.shields.io"
7+
],
8+
"silent": true,
9+
"concurrency": 10
10+
}

owl-bot-staging/v1/package.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"name": "@google-cloud/bigquery-storage",
3+
"version": "0.1.0",
4+
"description": "Storage client for Node.js",
5+
"repository": "googleapis/nodejs-storage",
6+
"license": "Apache-2.0",
7+
"author": "Google LLC",
8+
"main": "build/src/index.js",
9+
"files": [
10+
"build/src",
11+
"build/protos"
12+
],
13+
"keywords": [
14+
"google apis client",
15+
"google api client",
16+
"google apis",
17+
"google api",
18+
"google",
19+
"google cloud platform",
20+
"google cloud",
21+
"cloud",
22+
"google storage",
23+
"storage",
24+
"big query read"
25+
],
26+
"scripts": {
27+
"clean": "gts clean",
28+
"compile": "tsc -p . && cp -r protos build/",
29+
"compile-protos": "compileProtos src",
30+
"docs": "jsdoc -c .jsdoc.js",
31+
"predocs-test": "npm run docs",
32+
"docs-test": "linkinator docs",
33+
"fix": "gts fix",
34+
"lint": "gts check",
35+
"prepare": "npm run compile-protos && npm run compile",
36+
"system-test": "c8 mocha build/system-test",
37+
"test": "c8 mocha build/test"
38+
},
39+
"dependencies": {
40+
"google-gax": "^2.14.0"
41+
},
42+
"devDependencies": {
43+
"@types/mocha": "^8.2.2",
44+
"@types/node": "^14.17.1",
45+
"@types/sinon": "^10.0.0",
46+
"c8": "^7.7.2",
47+
"gts": "^3.1.0",
48+
"jsdoc": "^3.6.7",
49+
"jsdoc-fresh": "^1.0.2",
50+
"jsdoc-region-tag": "^1.0.6",
51+
"linkinator": "^2.13.6",
52+
"mocha": "^8.4.0",
53+
"null-loader": "^4.0.1",
54+
"pack-n-play": "^1.0.0-2",
55+
"sinon": "^10.0.0",
56+
"ts-loader": "^9.2.2",
57+
"typescript": "^4.2.4",
58+
"webpack": "^5.37.1",
59+
"webpack-cli": "^4.7.0"
60+
},
61+
"engines": {
62+
"node": ">=v10.24.0"
63+
}
64+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
// Copyright 2021 Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
syntax = "proto3";
16+
17+
package google.cloud.bigquery.storage.v1;
18+
19+
option csharp_namespace = "Google.Cloud.BigQuery.Storage.V1";
20+
option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/storage/v1;storage";
21+
option java_multiple_files = true;
22+
option java_outer_classname = "ArrowProto";
23+
option java_package = "com.google.cloud.bigquery.storage.v1";
24+
option php_namespace = "Google\\Cloud\\BigQuery\\Storage\\V1";
25+
26+
// Arrow schema as specified in
27+
// https://arrow.apache.org/docs/python/api/datatypes.html
28+
// and serialized to bytes using IPC:
29+
// https://arrow.apache.org/docs/format/Columnar.html#serialization-and-interprocess-communication-ipc
30+
//
31+
// See code samples on how this message can be deserialized.
32+
message ArrowSchema {
33+
// IPC serialized Arrow schema.
34+
bytes serialized_schema = 1;
35+
}
36+
37+
// Arrow RecordBatch.
38+
message ArrowRecordBatch {
39+
// IPC-serialized Arrow RecordBatch.
40+
bytes serialized_record_batch = 1;
41+
42+
// The count of rows in `serialized_record_batch`.
43+
int64 row_count = 2;
44+
}
45+
46+
// Contains options specific to Arrow Serialization.
47+
message ArrowSerializationOptions {
48+
// Compression codec's supported by Arrow.
49+
enum CompressionCodec {
50+
// If unspecified no compression will be used.
51+
COMPRESSION_UNSPECIFIED = 0;
52+
53+
// LZ4 Frame (https://github.com/lz4/lz4/blob/dev/doc/lz4_Frame_format.md)
54+
LZ4_FRAME = 1;
55+
56+
// Zstandard compression.
57+
ZSTD = 2;
58+
}
59+
60+
// The compression codec to use for Arrow buffers in serialized record
61+
// batches.
62+
CompressionCodec buffer_compression = 2;
63+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
// Copyright 2021 Google LLC
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
syntax = "proto3";
16+
17+
package google.cloud.bigquery.storage.v1;
18+
19+
option csharp_namespace = "Google.Cloud.BigQuery.Storage.V1";
20+
option go_package = "google.golang.org/genproto/googleapis/cloud/bigquery/storage/v1;storage";
21+
option java_multiple_files = true;
22+
option java_outer_classname = "AvroProto";
23+
option java_package = "com.google.cloud.bigquery.storage.v1";
24+
option php_namespace = "Google\\Cloud\\BigQuery\\Storage\\V1";
25+
26+
// Avro schema.
27+
message AvroSchema {
28+
// Json serialized schema, as described at
29+
// https://avro.apache.org/docs/1.8.1/spec.html.
30+
string schema = 1;
31+
}
32+
33+
// Avro rows.
34+
message AvroRows {
35+
// Binary serialized rows in a block.
36+
bytes serialized_binary_rows = 1;
37+
38+
// The count of rows in the returning block.
39+
int64 row_count = 2;
40+
}

0 commit comments

Comments
 (0)