pub struct ExtendSchemaRequest {
pub description: Option<String>,
pub file_contents: Option<Vec<u8>>,
pub gcs_path: Option<String>,
}Expand description
ExtendSchemaRequest is the request message for ExtendSchema method.
§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§
§description: Option<String>Required. Description for Schema Change.
file_contents: Option<Vec<u8>>File uploaded as a byte stream input.
gcs_path: Option<String>File stored in Cloud Storage bucket and represented in the form projects/{project_id}/buckets/{bucket_name}/objects/{object_name} File should be in the same project as the domain.
Trait Implementations§
Source§impl Clone for ExtendSchemaRequest
impl Clone for ExtendSchemaRequest
Source§fn clone(&self) -> ExtendSchemaRequest
fn clone(&self) -> ExtendSchemaRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ExtendSchemaRequest
impl Debug for ExtendSchemaRequest
Source§impl Default for ExtendSchemaRequest
impl Default for ExtendSchemaRequest
Source§fn default() -> ExtendSchemaRequest
fn default() -> ExtendSchemaRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExtendSchemaRequest
impl<'de> Deserialize<'de> for ExtendSchemaRequest
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ExtendSchemaRequest
impl Serialize for ExtendSchemaRequest
impl RequestValue for ExtendSchemaRequest
Auto Trait Implementations§
impl Freeze for ExtendSchemaRequest
impl RefUnwindSafe for ExtendSchemaRequest
impl Send for ExtendSchemaRequest
impl Sync for ExtendSchemaRequest
impl Unpin for ExtendSchemaRequest
impl UnwindSafe for ExtendSchemaRequest
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
Mutably borrows from an owned value. Read more