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

@@ -74,7 +74,7 @@ where
}
let mut params = Params::with_capacity(5 + 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);
}
@@ -629,7 +629,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());
@@ -893,7 +893,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
if let Some(value) = self._options_requested_policy_version.as_ref() {
params.push("options.requestedPolicyVersion", value.to_string());
}
@@ -1453,7 +1453,7 @@ where
}
let mut params = Params::with_capacity(5 + self._additional_params.len());
params.push("name", self._name);
params.push("name", &self._name);
if let Some(value) = self._update_mask.as_ref() {
params.push("updateMask", value.to_string());
}
@@ -1755,7 +1755,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -2047,7 +2047,7 @@ where
}
let mut params = Params::with_capacity(4 + self._additional_params.len());
params.push("resource", self._resource);
params.push("resource", &self._resource);
params.extend(self._additional_params.iter());
@@ -2332,7 +2332,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());
@@ -2601,7 +2601,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());
@@ -2896,7 +2896,7 @@ where
}
let mut params = Params::with_capacity(8 + self._additional_params.len());
params.push("parent", self._parent);
params.push("parent", &self._parent);
if let Some(value) = self._start_time.as_ref() {
params.push("startTime", ::client::serde::datetime_to_string(&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

@@ -13,11 +13,11 @@ pub struct AggregationInfo {
/// no description provided
#[serde(rename="aggregationInterval")]
pub aggregation_interval: Option<String>,
pub aggregation_interval: Option<AggregationInfoAggregationIntervalEnum>,
/// no description provided
#[serde(rename="aggregationLevel")]
pub aggregation_level: Option<String>,
pub aggregation_level: Option<AggregationInfoAggregationLevelEnum>,
}
impl client::Part for AggregationInfo {}
@@ -56,7 +56,7 @@ pub struct AuditLogConfig {
/// The log type that this config enables.
#[serde(rename="logType")]
pub log_type: Option<String>,
pub log_type: Option<AuditLogConfigLogTypeEnum>,
}
impl client::Part for AuditLogConfig {}
@@ -187,7 +187,7 @@ pub struct GeoTaxonomy {
/// The type of Geo Taxonomy: GLOBAL, REGIONAL, or MULTI_REGIONAL.
#[serde(rename="type")]
pub type_: Option<String>,
pub type_: Option<GeoTaxonomyTypeEnum>,
}
impl client::Part for GeoTaxonomy {}