[][src]Struct gcp_client::google::bigtable::admin::table::v1::bigtable_table_service_client::BigtableTableServiceClient

pub struct BigtableTableServiceClient<T> { /* fields omitted */ }

Service for creating, configuring, and deleting Cloud Bigtable tables. Provides access to the table schemas only, not the data stored within the tables.

Implementations

impl<T> BigtableTableServiceClient<T> where
    T: GrpcService<BoxBody>,
    T::ResponseBody: Body + HttpBody + Send + 'static,
    T::Error: Into<StdError>,
    <T::ResponseBody as HttpBody>::Error: Into<StdError> + Send
[src]

pub fn new(inner: T) -> Self[src]

pub fn with_interceptor(inner: T, interceptor: impl Into<Interceptor>) -> Self[src]

pub async fn create_table<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateTableRequest>
) -> Result<Response<Table>, Status>
[src]

Creates a new table, to be served from a specified cluster. The table can be created with a full set of initial column families, specified in the request.

pub async fn list_tables<'_>(
    &'_ mut self,
    request: impl IntoRequest<ListTablesRequest>
) -> Result<Response<ListTablesResponse>, Status>
[src]

Lists the names of all tables served from a specified cluster.

pub async fn get_table<'_>(
    &'_ mut self,
    request: impl IntoRequest<GetTableRequest>
) -> Result<Response<Table>, Status>
[src]

Gets the schema of the specified table, including its column families.

pub async fn delete_table<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteTableRequest>
) -> Result<Response<()>, Status>
[src]

Permanently deletes a specified table and all of its data.

pub async fn rename_table<'_>(
    &'_ mut self,
    request: impl IntoRequest<RenameTableRequest>
) -> Result<Response<()>, Status>
[src]

Changes the name of a specified table. Cannot be used to move tables between clusters, zones, or projects.

pub async fn create_column_family<'_>(
    &'_ mut self,
    request: impl IntoRequest<CreateColumnFamilyRequest>
) -> Result<Response<ColumnFamily>, Status>
[src]

Creates a new column family within a specified table.

pub async fn update_column_family<'_>(
    &'_ mut self,
    request: impl IntoRequest<ColumnFamily>
) -> Result<Response<ColumnFamily>, Status>
[src]

Changes the configuration of a specified column family.

pub async fn delete_column_family<'_>(
    &'_ mut self,
    request: impl IntoRequest<DeleteColumnFamilyRequest>
) -> Result<Response<()>, Status>
[src]

Permanently deletes a specified column family and all of its data.

pub async fn bulk_delete_rows<'_>(
    &'_ mut self,
    request: impl IntoRequest<BulkDeleteRowsRequest>
) -> Result<Response<()>, Status>
[src]

Delete all rows in a table corresponding to a particular prefix

Trait Implementations

impl<T: Clone> Clone for BigtableTableServiceClient<T>[src]

impl<T> Debug for BigtableTableServiceClient<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for BigtableTableServiceClient<T>

impl<T> Send for BigtableTableServiceClient<T> where
    T: Send

impl<T> Sync for BigtableTableServiceClient<T> where
    T: Sync

impl<T> Unpin for BigtableTableServiceClient<T> where
    T: Unpin

impl<T> !UnwindSafe for BigtableTableServiceClient<T>

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]