Struct gapi_grpc::google::firestore::admin::v1beta1::firestore_admin_client::FirestoreAdminClient[][src]

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

The Cloud Firestore Admin API.

This API provides several administrative services for Cloud Firestore.

Concepts

Project, Database, Namespace, Collection, and Document are used as defined in the Google Cloud Firestore API.

Operation: An Operation represents work being performed in the background.

Services

Index

The index service manages Cloud Firestore indexes.

Index creation is performed asynchronously. An Operation resource is created for each such asynchronous operation. The state of the operation (including any errors encountered) may be queried via the Operation resource.

Metadata

Provides metadata and statistical information about data in Cloud Firestore. The data provided as part of this API may be stale.

Operation

The Operations collection provides a record of actions performed for the specified Project (including any Operations in progress). Operations are not created directly but through calls on other collections or resources.

An Operation that is not yet done may be cancelled. The request to cancel is asynchronous and the Operation may continue to run for some time after the request to cancel is made.

An Operation that is done may be deleted so that it is no longer listed as part of the Operation collection.

Operations are created by service FirestoreAdmin, but are accessed via service google.longrunning.Operations.

Implementations

impl FirestoreAdminClient<Channel>[src]

pub async fn connect<D>(dst: D) -> Result<Self, Error> where
    D: TryInto<Endpoint>,
    D::Error: Into<StdError>, 
[src]

Attempt to create a new client by connecting to a given endpoint.

impl<T> FirestoreAdminClient<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_index(
    &mut self,
    request: impl IntoRequest<CreateIndexRequest>
) -> Result<Response<Operation>, Status>
[src]

Creates the specified index. A newly created index’s initial state is CREATING. On completion of the returned [google.longrunning.Operation][google.longrunning.Operation], the state will be READY. If the index already exists, the call will return an ALREADY_EXISTS status.

During creation, the process could result in an error, in which case the index will move to the ERROR state. The process can be recovered by fixing the data that caused the error, removing the index with [delete][google.firestore.admin.v1beta1.FirestoreAdmin.DeleteIndex], then re-creating the index with [create][google.firestore.admin.v1beta1.FirestoreAdmin.CreateIndex].

Indexes with a single field cannot be created.

pub async fn list_indexes(
    &mut self,
    request: impl IntoRequest<ListIndexesRequest>
) -> Result<Response<ListIndexesResponse>, Status>
[src]

Lists the indexes that match the specified filters.

pub async fn get_index(
    &mut self,
    request: impl IntoRequest<GetIndexRequest>
) -> Result<Response<Index>, Status>
[src]

Gets an index.

pub async fn delete_index(
    &mut self,
    request: impl IntoRequest<DeleteIndexRequest>
) -> Result<Response<()>, Status>
[src]

Deletes an index.

pub async fn export_documents(
    &mut self,
    request: impl IntoRequest<ExportDocumentsRequest>
) -> Result<Response<Operation>, Status>
[src]

Exports a copy of all or a subset of documents from Google Cloud Firestore to another storage system, such as Google Cloud Storage. Recent updates to documents may not be reflected in the export. The export occurs in the background and its progress can be monitored and managed via the Operation resource that is created. The output of an export may only be used once the associated operation is done. If an export operation is cancelled before completion it may leave partial data behind in Google Cloud Storage.

pub async fn import_documents(
    &mut self,
    request: impl IntoRequest<ImportDocumentsRequest>
) -> Result<Response<Operation>, Status>
[src]

Imports documents into Google Cloud Firestore. Existing documents with the same name are overwritten. The import occurs in the background and its progress can be monitored and managed via the Operation resource that is created. If an ImportDocuments operation is cancelled, it is possible that a subset of the data has already been imported to Cloud Firestore.

Trait Implementations

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

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

Auto Trait Implementations

impl<T> !RefUnwindSafe for FirestoreAdminClient<T>

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

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

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

impl<T> !UnwindSafe for FirestoreAdminClient<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> 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]