[][src]Struct gcp_client::google::spanner::admin::database::v1::CreateDatabaseRequest

pub struct CreateDatabaseRequest {
    pub parent: String,
    pub create_statement: String,
    pub extra_statements: Vec<String>,
}

The request for [CreateDatabase][google.spanner.admin.database.v1.DatabaseAdmin.CreateDatabase].

Fields

parent: String

Required. The name of the instance that will serve the new database. Values are of the form projects/<project>/instances/<instance>.

create_statement: String

Required. A CREATE DATABASE statement, which specifies the ID of the new database. The database ID must conform to the regular expression [a-z][a-z0-9_\-]*[a-z0-9] and be between 2 and 30 characters in length. If the database ID is a reserved word or if it contains a hyphen, the database ID must be enclosed in backticks (`).

extra_statements: Vec<String>

Optional. A list of DDL statements to run inside the newly created database. Statements can create tables, indexes, etc. These statements execute atomically with the creation of the database: if there is an error in any statement, the database is not created.

Trait Implementations

impl Clone for CreateDatabaseRequest[src]

impl Debug for CreateDatabaseRequest[src]

impl Default for CreateDatabaseRequest[src]

impl Message for CreateDatabaseRequest[src]

impl PartialEq<CreateDatabaseRequest> for CreateDatabaseRequest[src]

impl StructuralPartialEq for CreateDatabaseRequest[src]

Auto Trait Implementations

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]