regenerate bigquery 2 (#328)

This commit is contained in:
Sebastian Thiel
2022-03-27 08:23:09 +08:00
parent bfdb767a06
commit 77f097dda2
5 changed files with 7 additions and 7 deletions

View File

@@ -4,7 +4,7 @@
[package]
name = "google-bigquery2-cli"
version = "3.0.0+20220222"
version = "3.0.1+20220222"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
description = "A complete library to interact with bigquery (protocol v2)"
repository = "https://github.com/Byron/google-apis-rs/tree/main/gen/bigquery2-cli"
@@ -37,4 +37,4 @@ tokio = { version = "^ 1.0", features = ["full"] }
[dependencies.google-bigquery2]
path = "../bigquery2"
version = "3.0.0+20220222"
version = "3.0.1+20220222"

View File

@@ -25,7 +25,7 @@ Find the source code [on github](https://github.com/Byron/google-apis-rs/tree/ma
# Usage
This documentation was generated from the *bigquery* API at revision *20220222*. The CLI is at version *3.0.0*.
This documentation was generated from the *bigquery* API at revision *20220222*. The CLI is at version *3.0.1*.
```bash
bigquery2 [options]

View File

@@ -1,4 +1,4 @@
site_name: bigquery v3.0.0+20220222
site_name: bigquery v3.0.1+20220222
site_url: http://byron.github.io/google-apis-rs/google-bigquery2-cli
site_description: A complete library to interact with bigquery (protocol v2)

View File

@@ -4715,7 +4715,7 @@ async fn main() {
let mut app = App::new("bigquery2")
.author("Sebastian Thiel <byronimo@gmail.com>")
.version("3.0.0+20220222")
.version("3.0.1+20220222")
.about("A data platform for customers to create, manage, share and query data.")
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_bigquery2_cli")
.arg(Arg::with_name("url")

View File

@@ -2032,7 +2032,7 @@ impl client::Part for JobStatus {}
/// This type is not used in any activity, and only used as *part* of another schema.
///
#[derive(Default, Clone, Debug, Serialize, Deserialize)]
pub struct JsonObject(Option<HashMap<String, JsonValue>>);
pub struct JsonObject(pub Option<HashMap<String, JsonValue>>);
impl client::Part for JsonObject {}
@@ -2044,7 +2044,7 @@ impl client::Part for JsonObject {}
/// The contained type is `Option<String>`.
///
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct JsonValue(json::Value);
pub struct JsonValue(pub json::Value);
impl Default for JsonValue {
fn default() -> JsonValue {