make regen-apis

This commit is contained in:
OMGeeky
2023-10-23 12:55:17 +02:00
parent a4b0f56b8c
commit 4a258a57a6
1025 changed files with 29943 additions and 28980 deletions

View File

@@ -70,7 +70,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());
@@ -332,7 +332,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());
@@ -594,7 +594,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());
@@ -863,7 +863,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());
@@ -1148,7 +1148,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());
@@ -1410,7 +1410,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());
@@ -1678,7 +1678,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>,