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

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

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 a composite index. This returns a [google.longrunning.Operation][google.longrunning.Operation] which may be used to track the status of the creation. The metadata for the operation will be the type [IndexOperationMetadata][google.firestore.admin.v1beta2.IndexOperationMetadata].

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

Lists composite indexes.

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

Gets a composite index.

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

Deletes a composite index.

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

Gets the metadata and configuration for a Field.

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

Updates a field configuration. Currently, field updates apply only to single field index configuration. However, calls to [FirestoreAdmin.UpdateField][google.firestore.admin.v1beta2.FirestoreAdmin.UpdateField] should provide a field mask to avoid changing any configuration that the caller isn’t aware of. The field mask should be specified as: { paths: "index_config" }.

This call returns a [google.longrunning.Operation][google.longrunning.Operation] which may be used to track the status of the field update. The metadata for the operation will be the type [FieldOperationMetadata][google.firestore.admin.v1beta2.FieldOperationMetadata].

To configure the default field settings for the database, use the special Field with resource name: projects/{project_id}/databases/{database_id}/collectionGroups/__default__/fields/*.

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

Lists the field configuration and metadata for this database.

Currently, [FirestoreAdmin.ListFields][google.firestore.admin.v1beta2.FirestoreAdmin.ListFields] only supports listing fields that have been explicitly overridden. To issue this query, call [FirestoreAdmin.ListFields][google.firestore.admin.v1beta2.FirestoreAdmin.ListFields] with the filter set to indexConfig.usesAncestorConfig:false.

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]