Skip to content

Commit

Permalink
Merge pull request #540 from main--/work-around-bigquery
Browse files Browse the repository at this point in the history
Un-blacklist google-bigquery2
  • Loading branch information
Byron authored Feb 22, 2025
2 parents 77b4705 + 77c37f0 commit b5e3f68
Show file tree
Hide file tree
Showing 8 changed files with 9,222 additions and 7,874 deletions.
5 changes: 5 additions & 0 deletions etc/api/bigquery/v2/bigquery-api_overrides.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
api:
no_upload_prefix: JobInsertCall
schemas:
RangeValue:
properties:
end: ~
start: ~
2 changes: 0 additions & 2 deletions etc/api/shared.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ api:
# recursive type
- analyticsadmin
# resursive type
- bigquery
# resursive type
- bigtableadmin
# redefinition of `Scope`
- binaryauthorization
Expand Down
2 changes: 2 additions & 0 deletions etc/bin/mako-render.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,8 @@ def merge(a, b, path=None):
if key in a:
if isinstance(a[key], dict) and isinstance(b[key], dict):
merge(a[key], b[key], path + [str(key)])
elif b[key] is None:
del a[key]
else:
# overwrite leafs unconditionally !
if isinstance(a[key], list) and isinstance(b[key], list):
Expand Down
35 changes: 19 additions & 16 deletions gen/bigquery2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,34 +4,37 @@
[package]

name = "google-bigquery2"
version = "5.0.3+20240214"
version = "6.0.0+20240616"
authors = ["Sebastian Thiel <[email protected]>"]
description = "A complete library to interact with Bigquery (protocol v2)"
repository = "https://github.com/Byron/google-apis-rs/tree/main/gen/bigquery2"
homepage = "https://cloud.google.com/bigquery/"
documentation = "https://docs.rs/google-bigquery2/5.0.3+20240214"
documentation = "https://docs.rs/google-bigquery2/6.0.0+20240616"
license = "MIT"
keywords = ["bigquery", "google", "protocol", "web", "api"]
autobins = false
edition = "2018"
edition = "2021"


[dependencies]
anyhow = "^ 1.0"
hyper-rustls = "0.24.0"
mime = "^ 0.3.0"
serde = { version = "^ 1.0", features = ["derive"] }
serde_json = "^ 1.0"
itertools = "^ 0.10"
google-apis-common = { path = "../../google-apis-common", version = "6.0" }
hyper = "^ 0.14"
http = "^0.2"
tokio = "^1.0"
tower-service = "^0.3.1"
url = "= 1.7"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
hyper = "1"
hyper-rustls = { version = "0.27", default-features = false }
hyper-util = "0.1"
mime = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_with = "3"
tokio = "1"
url = "2"
utoipa = { version = "4", optional = true }
yup-oauth2 = { version = "12", optional = true }

google-apis-common = { path = "../../google-apis-common", version = "7" }



[features]
yup-oauth2 = ["google-apis-common/yup-oauth2"]
default = ["yup-oauth2"]
utoipa = ["dep:utoipa"]
yup-oauth2 = ["dep:yup-oauth2", "google-apis-common/yup-oauth2"]
2 changes: 1 addition & 1 deletion gen/bigquery2/LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DO NOT EDIT !
The MIT License (MIT)
=====================

Copyright © `2015-2020` `Sebastian Thiel`
Copyright 2015–2024 Sebastian Thiel

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
Expand Down
130 changes: 74 additions & 56 deletions gen/bigquery2/README.md

Large diffs are not rendered by default.

Loading

0 comments on commit b5e3f68

Please sign in to comment.