[][src]Struct gcp_client::google::bigtable::admin::v2::AppProfile

pub struct AppProfile {
    pub name: String,
    pub etag: String,
    pub description: String,
    pub routing_policy: Option<RoutingPolicy>,
}

A configuration object describing how Cloud Bigtable should treat traffic from a particular end user application.

Fields

name: String

(OutputOnly) The unique name of the app profile. Values are of the form projects/<project>/instances/<instance>/appProfiles/[_a-zA-Z0-9][-_.a-zA-Z0-9]*.

etag: 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.

description: String

Optional long form description of the use case for this AppProfile.

routing_policy: Option<RoutingPolicy>

The routing policy for all read/write requests that use this app profile. A value must be explicitly set.

Trait Implementations

impl Clone for AppProfile[src]

impl Debug for AppProfile[src]

impl Default for AppProfile[src]

impl Message for AppProfile[src]

impl PartialEq<AppProfile> for AppProfile[src]

impl StructuralPartialEq for AppProfile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]