Struct gapi_grpc::google::bigtable::admin::v2::SnapshotTableRequest[][src]

pub struct SnapshotTableRequest {
    pub name: String,
    pub cluster: String,
    pub snapshot_id: String,
    pub ttl: Option<Duration>,
    pub description: String,
}

Request message for [google.bigtable.admin.v2.BigtableTableAdmin.SnapshotTable][google.bigtable.admin.v2.BigtableTableAdmin.SnapshotTable]

Note: This is a private alpha release of Cloud Bigtable snapshots. This feature is not currently available to most Cloud Bigtable customers. This feature might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy.

Fields

name: String

Required. The unique name of the table to have the snapshot taken. Values are of the form projects/{project}/instances/{instance}/tables/{table}.

cluster: String

Required. The name of the cluster where the snapshot will be created in. Values are of the form projects/{project}/instances/{instance}/clusters/{cluster}.

snapshot_id: String

Required. The ID by which the new snapshot should be referred to within the parent cluster, e.g., mysnapshot of the form: [_a-zA-Z0-9][-_.a-zA-Z0-9]* rather than projects/{project}/instances/{instance}/clusters/{cluster}/snapshots/mysnapshot.

ttl: Option<Duration>

The amount of time that the new snapshot can stay active after it is created. Once ‘ttl’ expires, the snapshot will get deleted. The maximum amount of time a snapshot can stay active is 7 days. If ‘ttl’ is not specified, the default value of 24 hours will be used.

description: String

Description of the snapshot.

Trait Implementations

impl Clone for SnapshotTableRequest[src]

impl Debug for SnapshotTableRequest[src]

impl Default for SnapshotTableRequest[src]

impl Message for SnapshotTableRequest[src]

impl PartialEq<SnapshotTableRequest> for SnapshotTableRequest[src]

impl StructuralPartialEq for SnapshotTableRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for SnapshotTableRequest

impl Send for SnapshotTableRequest

impl Sync for SnapshotTableRequest

impl Unpin for SnapshotTableRequest

impl UnwindSafe for SnapshotTableRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]