pub struct UpdateDatabaseDdlRequest {
pub operation_id: Option<String>,
pub proto_descriptors: Option<Vec<u8>>,
pub statements: Option<Vec<String>>,
}
Expand description
Enqueues the given DDL statements to be applied, in order but not necessarily all at once, to the database schema at some point (or points) in the future. The server checks that the statements are executable (syntactically valid, name tables that exist, etc.) before enqueueing them, but they may still fail upon later execution (e.g., if a statement from another batch of statements is applied first and it conflicts in some way, or if there is some data-related problem like a NULL
value in a column to which NOT NULL
would be added). If a statement fails, all subsequent statements in the batch are automatically cancelled. Each batch of statements is assigned a name which can be used with the Operations API to monitor progress. See the operation_id field for more details.
§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).
- instances databases update ddl projects (request)
Fields§
§operation_id: Option<String>
If empty, the new update request is assigned an automatically-generated operation ID. Otherwise, operation_id
is used to construct the name of the resulting Operation. Specifying an explicit operation ID simplifies determining whether the statements were executed in the event that the UpdateDatabaseDdl call is replayed, or the return value is otherwise lost: the database and operation_id
fields can be combined to form the name of the resulting longrunning.Operation: /operations/
. operation_id
should be unique within the database, and must be a valid identifier: a-z*
. Note that automatically-generated operation IDs always begin with an underscore. If the named operation already exists, UpdateDatabaseDdl returns ALREADY_EXISTS
.
proto_descriptors: Option<Vec<u8>>
Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run protoc
with –include_imports and –descriptor_set_out. For example, to generate for moon/shot/app.proto, run $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto
For more details, see protobuffer self description.
statements: Option<Vec<String>>
Required. DDL statements to be applied to the database.
Trait Implementations§
Source§impl Clone for UpdateDatabaseDdlRequest
impl Clone for UpdateDatabaseDdlRequest
Source§fn clone(&self) -> UpdateDatabaseDdlRequest
fn clone(&self) -> UpdateDatabaseDdlRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for UpdateDatabaseDdlRequest
impl Debug for UpdateDatabaseDdlRequest
Source§impl Default for UpdateDatabaseDdlRequest
impl Default for UpdateDatabaseDdlRequest
Source§fn default() -> UpdateDatabaseDdlRequest
fn default() -> UpdateDatabaseDdlRequest
Source§impl<'de> Deserialize<'de> for UpdateDatabaseDdlRequest
impl<'de> Deserialize<'de> for UpdateDatabaseDdlRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for UpdateDatabaseDdlRequest
impl Serialize for UpdateDatabaseDdlRequest
impl RequestValue for UpdateDatabaseDdlRequest
Auto Trait Implementations§
impl Freeze for UpdateDatabaseDdlRequest
impl RefUnwindSafe for UpdateDatabaseDdlRequest
impl Send for UpdateDatabaseDdlRequest
impl Sync for UpdateDatabaseDdlRequest
impl Unpin for UpdateDatabaseDdlRequest
impl UnwindSafe for UpdateDatabaseDdlRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more