Struct gapi_grpc::google::firestore::admin::v1beta1::ExportDocumentsRequest[][src]

pub struct ExportDocumentsRequest {
    pub name: String,
    pub collection_ids: Vec<String>,
    pub output_uri_prefix: String,
}

The request for [FirestoreAdmin.ExportDocuments][google.firestore.admin.v1beta1.FirestoreAdmin.ExportDocuments].

Fields

name: String

Database to export. Should be of the form: projects/{project_id}/databases/{database_id}.

collection_ids: Vec<String>

Which collection ids to export. Unspecified means all collections.

output_uri_prefix: String

The output URI. Currently only supports Google Cloud Storage URIs of the form: gs://BUCKET_NAME[/NAMESPACE_PATH], where BUCKET_NAME is the name of the Google Cloud Storage bucket and NAMESPACE_PATH is an optional Google Cloud Storage namespace path. When choosing a name, be sure to consider Google Cloud Storage naming guidelines: https://cloud.google.com/storage/docs/naming. If the URI is a bucket (without a namespace path), a prefix will be generated based on the start time.

Trait Implementations

impl Clone for ExportDocumentsRequest[src]

impl Debug for ExportDocumentsRequest[src]

impl Default for ExportDocumentsRequest[src]

impl Message for ExportDocumentsRequest[src]

impl PartialEq<ExportDocumentsRequest> for ExportDocumentsRequest[src]

impl StructuralPartialEq for ExportDocumentsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ExportDocumentsRequest

impl Send for ExportDocumentsRequest

impl Sync for ExportDocumentsRequest

impl Unpin for ExportDocumentsRequest

impl UnwindSafe for ExportDocumentsRequest

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]