pub struct GoogleCloudHealthcareV1beta1FhirBigQueryDestination {
pub dataset_uri: Option<String>,
pub force: Option<bool>,
pub schema_config: Option<SchemaConfig>,
pub write_disposition: Option<String>,
}
Expand description
The configuration for exporting to BigQuery.
This type is not used in any activity, and only used as part of another schema.
Fields§
§dataset_uri: Option<String>
BigQuery URI to an existing dataset, up to 2000 characters long, in the format bq://projectId.bqDatasetId
.
force: Option<bool>
Use write_disposition
instead. If write_disposition
is specified, this parameter is ignored. force=false is equivalent to write_disposition=WRITE_EMPTY and force=true is equivalent to write_disposition=WRITE_TRUNCATE.
schema_config: Option<SchemaConfig>
The configuration for the exported BigQuery schema.
write_disposition: Option<String>
Determines if existing data in the destination dataset is overwritten, appended to, or not written if the tables contain data. If a write_disposition is specified, the force
parameter is ignored.
Trait Implementations§
Source§impl Clone for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl Clone for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
Source§fn clone(&self) -> GoogleCloudHealthcareV1beta1FhirBigQueryDestination
fn clone(&self) -> GoogleCloudHealthcareV1beta1FhirBigQueryDestination
Returns a copy 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 GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl Default for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
Source§fn default() -> GoogleCloudHealthcareV1beta1FhirBigQueryDestination
fn default() -> GoogleCloudHealthcareV1beta1FhirBigQueryDestination
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl<'de> Deserialize<'de> for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
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
impl Part for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
Auto Trait Implementations§
impl Freeze for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl RefUnwindSafe for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl Send for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl Sync for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl Unpin for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
impl UnwindSafe for GoogleCloudHealthcareV1beta1FhirBigQueryDestination
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
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>
Converts
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>
Converts
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