pub struct GoogleFirestoreAdminV1Database {
Show 14 fields pub app_engine_integration_mode: Option<String>, pub concurrency_mode: Option<String>, pub create_time: Option<DateTime<Utc>>, pub delete_protection_state: Option<String>, pub earliest_version_time: Option<DateTime<Utc>>, pub etag: Option<String>, pub key_prefix: Option<String>, pub location_id: Option<String>, pub name: Option<String>, pub point_in_time_recovery_enablement: Option<String>, pub type_: Option<String>, pub uid: Option<String>, pub update_time: Option<DateTime<Utc>>, pub version_retention_period: Option<Duration>,
}
Expand description

A Cloud Firestore Database.

§Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields§

§app_engine_integration_mode: Option<String>

The App Engine integration mode to use for this database.

§concurrency_mode: Option<String>

The concurrency control mode to use for this database.

§create_time: Option<DateTime<Utc>>

Output only. The timestamp at which this database was created. Databases created before 2016 do not populate create_time.

§delete_protection_state: Option<String>

State of delete protection for the database.

§earliest_version_time: Option<DateTime<Utc>>

Output only. The earliest timestamp at which older versions of the data can be read from the database. See [version_retention_period] above; this field is populated with now - version_retention_period. This value is continuously updated, and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.

§etag: Option<String>

This checksum is computed by the server based on the value of other fields, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding.

§key_prefix: Option<String>

Output only. The key_prefix for this database. This key_prefix is used, in combination with the project id (“~”) to construct the application id that is returned from the Cloud Datastore APIs in Google App Engine first generation runtimes. This value may be empty in which case the appid to use for URL-encoded keys is the project_id (eg: foo instead of v~foo).

§location_id: Option<String>

The location of the database. Available locations are listed at https://cloud.google.com/firestore/docs/locations.

§name: Option<String>

The resource name of the Database. Format: projects/{project}/databases/{database}

§point_in_time_recovery_enablement: Option<String>

Whether to enable the PITR feature on this database.

§type_: Option<String>

The type of the database. See https://cloud.google.com/datastore/docs/firestore-or-datastore for information about how to choose.

§uid: Option<String>

Output only. The system-generated UUID4 for this Database.

§update_time: Option<DateTime<Utc>>

Output only. The timestamp at which this database was most recently updated. Note this only includes updates to the database resource and not data contained by the database.

§version_retention_period: Option<Duration>

Output only. The period during which past versions of data are retained in the database. Any read or query can specify a read_time within this window, and will read the state of the database at that time. If the PITR feature is enabled, the retention period is 7 days. Otherwise, the retention period is 1 hour.

Trait Implementations§

source§

impl Clone for GoogleFirestoreAdminV1Database

source§

fn clone(&self) -> GoogleFirestoreAdminV1Database

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for GoogleFirestoreAdminV1Database

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for GoogleFirestoreAdminV1Database

source§

fn default() -> GoogleFirestoreAdminV1Database

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for GoogleFirestoreAdminV1Database

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for GoogleFirestoreAdminV1Database

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl RequestValue for GoogleFirestoreAdminV1Database

source§

impl ResponseResult for GoogleFirestoreAdminV1Database

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,