pub enum ServiceTier {
Auto,
Default,
Flex,
}
Expand description
Specifies the latency tier to use for processing the request. This parameter is relevant for customers subscribed to the scale tier service:
- If set to ‘auto’, and the Project is Scale tier enabled, the system will utilize scale tier credits until they are exhausted.
- If set to ‘auto’, and the Project is not Scale tier enabled, the request will be processed using the default service tier with a lower uptime SLA and no latency guarantee.
- If set to ‘default’, the request will be processed using the default service tier with a lower uptime SLA and no latency guarantee.
- If set to ‘flex’, the request will be processed with the Flex Processing service tier. Learn more.
- When not set, the default behavior is ‘auto’.
When this parameter is set, the response body will include the service_tier
utilized.
Variants§
Trait Implementations§
Source§impl Clone for ServiceTier
impl Clone for ServiceTier
Source§fn clone(&self) -> ServiceTier
fn clone(&self) -> ServiceTier
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ServiceTier
impl Debug for ServiceTier
Source§impl Default for ServiceTier
impl Default for ServiceTier
Source§fn default() -> ServiceTier
fn default() -> ServiceTier
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceTier
impl<'de> Deserialize<'de> for ServiceTier
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ServiceTier
impl PartialEq for ServiceTier
Source§impl Serialize for ServiceTier
impl Serialize for ServiceTier
impl Copy for ServiceTier
impl StructuralPartialEq for ServiceTier
Auto Trait Implementations§
impl Freeze for ServiceTier
impl RefUnwindSafe for ServiceTier
impl Send for ServiceTier
impl Sync for ServiceTier
impl Unpin for ServiceTier
impl UnwindSafe for ServiceTier
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more