#[non_exhaustive]pub struct BulkCreateDataTableRowsRequest {
pub parent: String,
pub requests: Vec<CreateDataTableRowRequest>,
/* private fields */
}Expand description
Request to create data table rows in bulk.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.parent: StringRequired. The resource id of the data table. Format: /projects/{project}/locations/{location}/instances/{instance}/dataTables/{data_table}
requests: Vec<CreateDataTableRowRequest>Required. Data table rows to create. A maximum of 1000 rows (for sync requests) or 2000 rows (for async requests) can be created in a single request. Total size of the rows should be less than 4MB.
Implementations§
Source§impl BulkCreateDataTableRowsRequest
impl BulkCreateDataTableRowsRequest
Sourcepub fn set_parent<T: Into<String>>(self, v: T) -> Self
pub fn set_parent<T: Into<String>>(self, v: T) -> Self
Sourcepub fn set_requests<T, V>(self, v: T) -> Self
pub fn set_requests<T, V>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for BulkCreateDataTableRowsRequest
impl Clone for BulkCreateDataTableRowsRequest
Source§fn clone(&self) -> BulkCreateDataTableRowsRequest
fn clone(&self) -> BulkCreateDataTableRowsRequest
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 Default for BulkCreateDataTableRowsRequest
impl Default for BulkCreateDataTableRowsRequest
Source§fn default() -> BulkCreateDataTableRowsRequest
fn default() -> BulkCreateDataTableRowsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for BulkCreateDataTableRowsRequest
impl PartialEq for BulkCreateDataTableRowsRequest
Source§fn eq(&self, other: &BulkCreateDataTableRowsRequest) -> bool
fn eq(&self, other: &BulkCreateDataTableRowsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkCreateDataTableRowsRequest
Auto Trait Implementations§
impl Freeze for BulkCreateDataTableRowsRequest
impl RefUnwindSafe for BulkCreateDataTableRowsRequest
impl Send for BulkCreateDataTableRowsRequest
impl Sync for BulkCreateDataTableRowsRequest
impl Unpin for BulkCreateDataTableRowsRequest
impl UnsafeUnpin for BulkCreateDataTableRowsRequest
impl UnwindSafe for BulkCreateDataTableRowsRequest
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