pub struct AppProfile {
pub description: Option<String>,
pub etag: Option<String>,
pub multi_cluster_routing_use_any: Option<MultiClusterRoutingUseAny>,
pub name: Option<String>,
pub priority: Option<String>,
pub single_cluster_routing: Option<SingleClusterRouting>,
pub standard_isolation: Option<StandardIsolation>,
}
Expand description
A configuration object describing how Cloud Bigtable should treat traffic from a particular end user application.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- instances app profiles create projects (request|response)
- instances app profiles get projects (response)
- instances app profiles patch projects (request)
Fields§
§description: Option<String>
Long form description of the use case for this AppProfile.
etag: Option<String>
Strongly validated etag for optimistic concurrency control. Preserve the value returned from GetAppProfile
when calling UpdateAppProfile
to fail the request if there has been a modification in the mean time. The update_mask
of the request need not include etag
for this protection to apply. See Wikipedia and RFC 7232 for more details.
multi_cluster_routing_use_any: Option<MultiClusterRoutingUseAny>
Use a multi-cluster routing policy.
name: Option<String>
The unique name of the app profile. Values are of the form projects/{project}/instances/{instance}/appProfiles/_a-zA-Z0-9*
.
priority: Option<String>
This field has been deprecated in favor of standard_isolation.priority
. If you set this field, standard_isolation.priority
will be set instead. The priority of requests sent using this app profile.
single_cluster_routing: Option<SingleClusterRouting>
Use a single-cluster routing policy.
standard_isolation: Option<StandardIsolation>
The standard options used for isolating this app profile’s traffic from other use cases.
Trait Implementations§
Source§impl Clone for AppProfile
impl Clone for AppProfile
Source§fn clone(&self) -> AppProfile
fn clone(&self) -> AppProfile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for AppProfile
impl Debug for AppProfile
Source§impl Default for AppProfile
impl Default for AppProfile
Source§fn default() -> AppProfile
fn default() -> AppProfile
Source§impl<'de> Deserialize<'de> for AppProfile
impl<'de> Deserialize<'de> for AppProfile
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>,
Source§impl Serialize for AppProfile
impl Serialize for AppProfile
impl RequestValue for AppProfile
impl ResponseResult for AppProfile
Auto Trait Implementations§
impl Freeze for AppProfile
impl RefUnwindSafe for AppProfile
impl Send for AppProfile
impl Sync for AppProfile
impl Unpin for AppProfile
impl UnwindSafe for AppProfile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more