mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-01-06 19:45:20 +01:00
make regen-apis
This commit is contained in:
@@ -699,8 +699,8 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(5 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
if let Some(value) = self._get_stats.as_ref() {
|
||||
params.push("getStats", value.to_string());
|
||||
}
|
||||
@@ -980,9 +980,9 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("task", self._task);
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
params.push("task", &self._task);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1251,9 +1251,9 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(5 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("task", self._task);
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
params.push("task", &self._task);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1539,8 +1539,8 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(5 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1838,10 +1838,10 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(8 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("numTasks", self._num_tasks.to_string());
|
||||
params.push("leaseSecs", self._lease_secs.to_string());
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
params.push("numTasks", &self._num_tasks.to_string());
|
||||
params.push("leaseSecs", &self._lease_secs.to_string());
|
||||
if let Some(value) = self._tag.as_ref() {
|
||||
params.push("tag", value);
|
||||
}
|
||||
@@ -2150,8 +2150,8 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -2429,10 +2429,10 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(7 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("task", self._task);
|
||||
params.push("newLeaseSeconds", self._new_lease_seconds.to_string());
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
params.push("task", &self._task);
|
||||
params.push("newLeaseSeconds", &self._new_lease_seconds.to_string());
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -2751,10 +2751,10 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(7 + self._additional_params.len());
|
||||
params.push("project", self._project);
|
||||
params.push("taskqueue", self._taskqueue);
|
||||
params.push("task", self._task);
|
||||
params.push("newLeaseSeconds", self._new_lease_seconds.to_string());
|
||||
params.push("project", &self._project);
|
||||
params.push("taskqueue", &self._taskqueue);
|
||||
params.push("task", &self._task);
|
||||
params.push("newLeaseSeconds", &self._new_lease_seconds.to_string());
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
|
||||
@@ -30,3 +30,6 @@ pub use method_builders::*;
|
||||
|
||||
mod call_builders;
|
||||
pub use call_builders::*;
|
||||
|
||||
mod enums;
|
||||
pub use enums::*;
|
||||
|
||||
Reference in New Issue
Block a user