mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-23 15:49:49 +01:00
make regen-apis
This commit is contained in:
@@ -78,9 +78,9 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(8 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("hash", self._hash);
|
||||
params.push("sizeBytes", self._size_bytes.to_string());
|
||||
params.push("instanceName", &self._instance_name);
|
||||
params.push("hash", &self._hash);
|
||||
params.push("sizeBytes", &self._size_bytes.to_string());
|
||||
if let Some(value) = self._inline_stdout.as_ref() {
|
||||
params.push("inlineStdout", value.to_string());
|
||||
}
|
||||
@@ -406,9 +406,9 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(7 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("hash", self._hash);
|
||||
params.push("sizeBytes", self._size_bytes.to_string());
|
||||
params.push("instanceName", &self._instance_name);
|
||||
params.push("hash", &self._hash);
|
||||
params.push("sizeBytes", &self._size_bytes.to_string());
|
||||
if let Some(value) = self._results_cache_policy_priority.as_ref() {
|
||||
params.push("resultsCachePolicy.priority", value.to_string());
|
||||
}
|
||||
@@ -730,7 +730,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("instanceName", &self._instance_name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1022,7 +1022,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("instanceName", &self._instance_name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1314,7 +1314,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("instanceName", &self._instance_name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1606,7 +1606,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(4 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("instanceName", &self._instance_name);
|
||||
|
||||
params.extend(self._additional_params.iter());
|
||||
|
||||
@@ -1897,9 +1897,9 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(7 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("hash", self._hash);
|
||||
params.push("sizeBytes", self._size_bytes.to_string());
|
||||
params.push("instanceName", &self._instance_name);
|
||||
params.push("hash", &self._hash);
|
||||
params.push("sizeBytes", &self._size_bytes.to_string());
|
||||
if let Some(value) = self._page_token.as_ref() {
|
||||
params.push("pageToken", value);
|
||||
}
|
||||
@@ -2208,7 +2208,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());
|
||||
|
||||
@@ -2493,7 +2493,7 @@ where
|
||||
}
|
||||
|
||||
let mut params = Params::with_capacity(3 + self._additional_params.len());
|
||||
params.push("instanceName", self._instance_name);
|
||||
params.push("instanceName", &self._instance_name);
|
||||
|
||||
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::*;
|
||||
|
||||
@@ -232,7 +232,7 @@ pub struct BuildBazelRemoteExecutionV2CacheCapabilities {
|
||||
/// All the digest functions supported by the remote cache. Remote cache may support multiple digest functions simultaneously.
|
||||
#[serde(rename="digestFunction")]
|
||||
|
||||
pub digest_function: Option<Vec<String>>,
|
||||
pub digest_function: Option<Vec<BuildBazelRemoteExecutionV2CacheCapabilityDigestFunctionEnum>>,
|
||||
/// Maximum total size of blobs to be uploaded/downloaded using batch methods. A value of 0 means no limit is set, although in practice there will always be a message size limitation of the protocol in use, e.g. GRPC.
|
||||
#[serde(rename="maxBatchTotalSizeBytes")]
|
||||
|
||||
@@ -241,11 +241,11 @@ pub struct BuildBazelRemoteExecutionV2CacheCapabilities {
|
||||
/// Compressors supported by the "compressed-blobs" bytestream resources. Servers MUST support identity/no-compression, even if it is not listed here. Note that this does not imply which if any compressors are supported by the server at the gRPC level.
|
||||
#[serde(rename="supportedCompressor")]
|
||||
|
||||
pub supported_compressor: Option<Vec<String>>,
|
||||
pub supported_compressor: Option<Vec<BuildBazelRemoteExecutionV2CacheCapabilitySupportedCompressorEnum>>,
|
||||
/// Whether absolute symlink targets are supported.
|
||||
#[serde(rename="symlinkAbsolutePathStrategy")]
|
||||
|
||||
pub symlink_absolute_path_strategy: Option<String>,
|
||||
pub symlink_absolute_path_strategy: Option<BuildBazelRemoteExecutionV2CacheCapabilitySymlinkAbsolutePathStrategyEnum>,
|
||||
}
|
||||
|
||||
impl client::Part for BuildBazelRemoteExecutionV2CacheCapabilities {}
|
||||
@@ -411,7 +411,7 @@ pub struct BuildBazelRemoteExecutionV2ExecutionCapabilities {
|
||||
/// Remote execution may only support a single digest function.
|
||||
#[serde(rename="digestFunction")]
|
||||
|
||||
pub digest_function: Option<String>,
|
||||
pub digest_function: Option<BuildBazelRemoteExecutionV2ExecutionCapabilityDigestFunctionEnum>,
|
||||
/// Whether remote execution is enabled for the particular server/instance.
|
||||
#[serde(rename="execEnabled")]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user