make regen-apis

This commit is contained in:
OMGeeky
2023-10-23 12:55:17 +02:00
parent 8fc78fe0ae
commit c356d5fd0e
887 changed files with 9716 additions and 8753 deletions

View File

@@ -30,3 +30,6 @@ pub use method_builders::*;
mod call_builders;
pub use call_builders::*;
mod enums;
pub use enums::*;

View File

@@ -56,7 +56,7 @@ pub struct Execution {
/// The call logging level associated to this execution.
#[serde(rename="callLogLevel")]
pub call_log_level: Option<String>,
pub call_log_level: Option<ExecutionCallLogLevelEnum>,
/// Output only. Measures the duration of the execution.
#[serde_as(as = "Option<::client::serde::duration::Wrapper>")]
@@ -80,7 +80,7 @@ pub struct Execution {
pub start_time: Option<client::chrono::DateTime<client::chrono::offset::Utc>>,
/// Output only. Current state of the execution.
pub state: Option<String>,
pub state: Option<ExecutionStateEnum>,
/// Output only. Status tracks the current steps and progress data of this execution.
pub status: Option<Status>,