mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-13 21:19:05 +01:00
rebuild all APIS
This commit is contained in:
@@ -3,8 +3,6 @@
|
||||
// DO NOT EDIT !
|
||||
#![allow(unused_variables, unused_imports, dead_code, unused_mut)]
|
||||
|
||||
extern crate tokio;
|
||||
|
||||
#[macro_use]
|
||||
extern crate clap;
|
||||
|
||||
@@ -12,9 +10,10 @@ use std::env;
|
||||
use std::io::{self, Write};
|
||||
use clap::{App, SubCommand, Arg};
|
||||
|
||||
use google_cloudresourcemanager1::{api, Error, oauth2};
|
||||
use google_cloudresourcemanager1::{api, Error, oauth2, client::chrono, FieldMask};
|
||||
|
||||
mod client;
|
||||
|
||||
use google_clis_common as client;
|
||||
|
||||
use client::{InvalidOptionsError, CLIError, arg_from_str, writer_from_opts, parse_kv_arg,
|
||||
input_file_from_opts, input_mime_from_opts, FieldCursor, FieldError, CallType, UploadProtocol,
|
||||
@@ -780,7 +779,7 @@ where
|
||||
call = call.page_token(value.unwrap_or(""));
|
||||
},
|
||||
"page-size" => {
|
||||
call = call.page_size(arg_from_str(value.unwrap_or("-0"), err, "page-size", "integer"));
|
||||
call = call.page_size( value.map(|v| arg_from_str(v, err, "page-size", "int32")).unwrap_or(-0));
|
||||
},
|
||||
_ => {
|
||||
let mut found = false;
|
||||
@@ -2430,7 +2429,7 @@ where
|
||||
call = call.page_token(value.unwrap_or(""));
|
||||
},
|
||||
"page-size" => {
|
||||
call = call.page_size(arg_from_str(value.unwrap_or("-0"), err, "page-size", "integer"));
|
||||
call = call.page_size( value.map(|v| arg_from_str(v, err, "page-size", "int32")).unwrap_or(-0));
|
||||
},
|
||||
"filter" => {
|
||||
call = call.filter(value.unwrap_or(""));
|
||||
@@ -3694,7 +3693,7 @@ async fn main() {
|
||||
vec for the appropriate value for this field."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -3828,7 +3827,7 @@ async fn main() {
|
||||
vec for the appropriate value for this field."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -3884,7 +3883,7 @@ async fn main() {
|
||||
vec for the appropriate value for this field."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -4065,7 +4064,7 @@ async fn main() {
|
||||
vec for the appropriate value for this field."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -4193,7 +4192,7 @@ async fn main() {
|
||||
vec for the appropriate value for this field."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -4249,7 +4248,7 @@ async fn main() {
|
||||
vec for the appropriate value for this field."##),
|
||||
Some(true),
|
||||
Some(false)),
|
||||
|
||||
@@ -4333,7 +4332,7 @@ async fn main() {
|
||||
|
||||
let mut app = App::new("cloudresourcemanager1")
|
||||
.author("Sebastian Thiel <byronimo@gmail.com>")
|
||||
.version("4.0.1+20220306")
|
||||
.version("5.0.2+20230115")
|
||||
.about("Creates, reads, and updates metadata for Google Cloud Platform resource containers.")
|
||||
.after_help("All documentation details can be found at http://byron.github.io/google-apis-rs/google_cloudresourcemanager1_cli")
|
||||
.arg(Arg::with_name("url")
|
||||
|
||||
Reference in New Issue
Block a user