mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
update all code after version update
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
[package]
|
||||
|
||||
name = "google-iap1-cli"
|
||||
version = "1.0.13+20200406"
|
||||
version = "1.0.14+20200629"
|
||||
authors = ["Sebastian Thiel <byronimo@gmail.com>"]
|
||||
description = "A complete library to interact with Cloud IAP (protocol v1)"
|
||||
repository = "https://github.com/Byron/google-apis-rs/tree/master/gen/iap1-cli"
|
||||
@@ -42,4 +42,4 @@ rustls = ["yup-oauth2/no-openssl"]
|
||||
|
||||
[dependencies.google-iap1]
|
||||
path = "../iap1"
|
||||
version = "1.0.13+20200406"
|
||||
version = "1.0.14+20200629"
|
||||
|
||||
@@ -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 *Cloud IAP* API at revision *20200406*. The CLI is at version *1.0.13*.
|
||||
This documentation was generated from the *Cloud IAP* API at revision *20200629*. The CLI is at version *1.0.14*.
|
||||
|
||||
```bash
|
||||
iap1 [options]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
site_name: Cloud IAP v1.0.13+20200406
|
||||
site_name: Cloud IAP v1.0.14+20200629
|
||||
site_url: http://byron.github.io/google-apis-rs/google-iap1-cli
|
||||
site_description: A complete library to interact with Cloud IAP (protocol v1)
|
||||
|
||||
|
||||
@@ -377,6 +377,7 @@ impl<'n> Engine<'n> {
|
||||
|
||||
let type_info: Option<(&'static str, JsonTypeInfo)> =
|
||||
match &temp_cursor.to_string()[..] {
|
||||
"application-settings.cookie-domain" => Some(("applicationSettings.cookieDomain", JsonTypeInfo { jtype: JsonType::String, ctype: ComplexType::Pod })),
|
||||
"application-settings.access-denied-page-settings.access-denied-page-uri" => Some(("applicationSettings.accessDeniedPageSettings.accessDeniedPageUri", JsonTypeInfo { jtype: JsonType::String, ctype: ComplexType::Pod })),
|
||||
"application-settings.csm-settings.rctoken-aud" => Some(("applicationSettings.csmSettings.rctokenAud", JsonTypeInfo { jtype: JsonType::String, ctype: ComplexType::Pod })),
|
||||
"access-settings.cors-settings.allow-http-options" => Some(("accessSettings.corsSettings.allowHttpOptions", JsonTypeInfo { jtype: JsonType::Boolean, ctype: ComplexType::Pod })),
|
||||
@@ -395,7 +396,7 @@ impl<'n> Engine<'n> {
|
||||
"access-settings.gcip-settings.tenant-ids" => Some(("accessSettings.gcipSettings.tenantIds", JsonTypeInfo { jtype: JsonType::String, ctype: ComplexType::Vec })),
|
||||
"name" => Some(("name", JsonTypeInfo { jtype: JsonType::String, ctype: ComplexType::Pod })),
|
||||
_ => {
|
||||
let suggestion = FieldCursor::did_you_mean(key, &vec!["access-denied-page-settings", "access-denied-page-uri", "access-settings", "allow-http-options", "application-settings", "client-id", "cors-settings", "csm-settings", "gcip-settings", "iam-permission", "iam-service-name", "id", "labels", "login-hint", "login-page-uri", "name", "oauth-settings", "policy-delegation-settings", "policy-name", "rctoken-aud", "region", "resource", "service", "tenant-ids", "type"]);
|
||||
let suggestion = FieldCursor::did_you_mean(key, &vec!["access-denied-page-settings", "access-denied-page-uri", "access-settings", "allow-http-options", "application-settings", "client-id", "cookie-domain", "cors-settings", "csm-settings", "gcip-settings", "iam-permission", "iam-service-name", "id", "labels", "login-hint", "login-page-uri", "name", "oauth-settings", "policy-delegation-settings", "policy-name", "rctoken-aud", "region", "resource", "service", "tenant-ids", "type"]);
|
||||
err.issues.push(CLIError::Field(FieldError::Unknown(temp_cursor.to_string(), suggestion, value.map(|v| v.to_string()))));
|
||||
None
|
||||
}
|
||||
@@ -1352,7 +1353,7 @@ fn main() {
|
||||
Some(r##"Required. Path to create the client in.
|
||||
In the following format:
|
||||
projects/{project_number/id}/brands/{brand}.
|
||||
The project must belong to a GSuite account."##),
|
||||
The project must belong to a G Suite account."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -1508,7 +1509,7 @@ fn main() {
|
||||
|
||||
let mut app = App::new("iap1")
|
||||
.author("Sebastian Thiel <byronimo@gmail.com>")
|
||||
.version("1.0.13+20200406")
|
||||
.version("1.0.14+20200629")
|
||||
.about("Controls access to cloud applications running on Google Cloud Platform.")
|
||||
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_iap1_cli")
|
||||
.arg(Arg::with_name("url")
|
||||
|
||||
Reference in New Issue
Block a user