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

@@ -940,7 +940,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -1202,7 +1202,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -1464,7 +1464,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -1733,7 +1733,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -2018,7 +2018,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -2280,7 +2280,7 @@ where
}
let mut params = Params::with_capacity(3 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
params.extend(self._additional_params.iter());
@@ -2548,7 +2548,7 @@ where
}
let mut params = Params::with_capacity(6 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
if let Some(value) = self._page_token.as_ref() {
params.push("pageToken", value);
}

View File

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

View File

@@ -12,7 +12,7 @@ use super::*;
pub struct GoogleCloudVideointelligenceV1_AnnotateVideoRequest {
/// Required. Requested video annotation features.
pub features: Option<Vec<String>>,
pub features: Option<Vec<GoogleCloudVideointelligenceV1AnnotateVideoRequestFeaturesEnum>>,
/// The video data bytes. If unset, the input video(s) should be specified via the `input_uri`. If set, `input_uri` must be unset.
#[serde(rename="inputContent")]
@@ -91,7 +91,7 @@ pub struct GoogleCloudVideointelligenceV1_LabelDetectionConfig {
/// What labels should be detected with LABEL_DETECTION, in addition to video-level labels or segment-level labels. If unspecified, defaults to `SHOT_MODE`.
#[serde(rename="labelDetectionMode")]
pub label_detection_mode: Option<String>,
pub label_detection_mode: Option<GoogleCloudVideointelligenceV1LabelDetectionConfigLabelDetectionModeEnum>,
/// Model to use for label detection. Supported values: "builtin/stable" (the default if unset) and "builtin/latest".
pub model: Option<String>,