chore(code-gen): update to latest version

Which is to be published
This commit is contained in:
Sebastian Thiel
2016-09-11 10:13:33 +02:00
parent 13ed4eaecb
commit 45d86f31f2
626 changed files with 285857 additions and 24274 deletions

View File

@@ -4,9 +4,9 @@
[package]
name = "google-cloudtrace1-cli"
version = "0.3.6+20151207"
version = "0.3.6+20160518"
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
description = "A complete library to interact with cloudtrace (protocol v1)"
description = "A complete library to interact with Cloud Trace (protocol v1)"
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/cloudtrace1-cli"
homepage = "https://cloud.google.com/tools/cloud-trace"
documentation = "http://byron.github.io/google-apis-rs/google_cloudtrace1_cli"
@@ -19,10 +19,10 @@ name = "cloudtrace1"
[dependencies]
hyper = "^ 0.9"
mime = "^ 0.2.0"
serde = "^ 0.7.5"
serde_json = "^ 0.7.0"
yup-oauth2 = { version = "^ 0.6.0", optional = true, default-features = false }
serde_macros = { version = "^ 0.7.5", optional = true }
serde = "^ 0.8"
serde_json = "^ 0.8"
yup-oauth2 = { version = "^ 0.6", optional = true, default-features = false }
serde_macros = { version = "^ 0.8", optional = true }
strsim = "^0.4"
yup-hyper-mock = "^1.0"
clap = "^2.0"
@@ -33,7 +33,7 @@ nightly = ["serde_macros","yup-oauth2/nightly","google-cloudtrace1/nightly"]
with-serde-codegen = ["serde_codegen","yup-oauth2/with-serde-codegen","google-cloudtrace1/with-serde-codegen"]
[build-dependencies]
serde_codegen = { version = "^ 0.7.14", optional = true }
serde_codegen = { version = "^ 0.8", optional = true }
[dependencies.google-cloudtrace1]

View File

@@ -3,14 +3,14 @@ DO NOT EDIT !
This file was generated automatically from 'src/mako/cli/README.md.mako'
DO NOT EDIT !
-->
The `cloudtrace1` command-line interface *(CLI)* allows to use most features of the *Google cloudtrace* service from the comfort of your terminal.
The `cloudtrace1` command-line interface *(CLI)* allows to use most features of the *Google Cloud Trace* service from the comfort of your terminal.
By default all output is printed to standard out, but flags can be set to direct it into a file independent of your shell's
capabilities. Errors will be printed to standard error, and cause the program's exit code to be non-zero.
If data-structures are requested, these will be returned as pretty-printed JSON, to be useful as input to other tools.
Everything else about the *cloudtrace* API can be found at the
Everything else about the *Cloud Trace* API can be found at the
[official documentation site](https://cloud.google.com/tools/cloud-trace).
# Downloads
@@ -24,7 +24,7 @@ Find the source code [on github](https://github.com/Byron/google-apis-rs/tree/ma
# Usage
This documentation was generated from the *cloudtrace* API at revision *20151207*. The CLI is at version *0.3.6*.
This documentation was generated from the *Cloud Trace* API at revision *20160518*. The CLI is at version *0.3.6*.
```bash
cloudtrace1 [options]

View File

@@ -1,4 +1,4 @@
site_name: cloudtrace v0.3.6+20151207
site_name: Cloud Trace v0.3.6+20160518
site_url: http://byron.github.io/google-apis-rs/google-cloudtrace1-cli
site_description: Write integrating applications with bcore

View File

@@ -38,7 +38,7 @@ enum DoitError {
struct Engine<'n> {
opt: ArgMatches<'n>,
hub: api::Cloudtrace<hyper::Client, Authenticator<DefaultAuthenticatorDelegate, JsonTokenStorage, hyper::Client>>,
hub: api::CloudTrace<hyper::Client, Authenticator<DefaultAuthenticatorDelegate, JsonTokenStorage, hyper::Client>>,
gp: Vec<&'static str>,
gpm: Vec<(&'static str, &'static str)>,
}
@@ -331,7 +331,7 @@ impl<'n> Engine<'n> {
};
let engine = Engine {
opt: opt,
hub: api::Cloudtrace::new(client, auth),
hub: api::CloudTrace::new(client, auth),
gp: vec!["$-xgafv", "access-token", "alt", "bearer-token", "callback", "fields", "key", "oauth-token", "pp", "pretty-print", "quota-user", "upload-type", "upload-protocol"],
gpm: vec![
("$-xgafv", "$.xgafv"),
@@ -365,7 +365,7 @@ fn main() {
let arg_data = [
("projects", "methods: 'patch-traces', 'traces-get' and 'traces-list'", vec![
("patch-traces",
Some(r##"Sends new traces to Cloud Trace or updates existing traces. If the ID of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the ID does not match, a new trace is created."##),
Some(r##"Sends new traces to Stackdriver Trace or updates existing traces. If the ID of a trace that you send matches that of an existing trace, any fields in the existing trace and its spans are overwritten by the provided values, and any new fields provided are merged with the existing trace data. If the ID does not match, a new trace is created."##),
"Details at http://byron.github.io/google-apis-rs/google_cloudtrace1_cli/projects_patch-traces",
vec![
(Some(r##"project-id"##),
@@ -448,8 +448,8 @@ fn main() {
let mut app = App::new("cloudtrace1")
.author("Sebastian Thiel <byronimo@gmail.com>")
.version("0.3.6+20151207")
.about("The Cloud Trace API allows you to send traces to and retrieve traces from Google Cloud Trace.")
.version("0.3.6+20160518")
.about("Send and retrieve trace data from Google Cloud Trace. Data is generated and available by default for all App Engine applications. Data from other applications can be written to Cloud Trace for display, reporting, and analysis.")
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_cloudtrace1_cli")
.arg(Arg::with_name("url")
.long("scope")