pub struct GoogleCloudDataplexV1ActionIncompatibleDataSchema {
pub existing_schema: Option<String>,
pub new_schema: Option<String>,
pub sampled_data_locations: Option<Vec<String>>,
pub schema_change: Option<String>,
pub table: Option<String>,
}
Expand description
Action details for incompatible schemas detected by discovery.
This type is not used in any activity, and only used as part of another schema.
Fields§
§existing_schema: Option<String>
The existing and expected schema of the table. The schema is provided as a JSON formatted structure listing columns and data types.
new_schema: Option<String>
The new and incompatible schema within the table. The schema is provided as a JSON formatted structured listing columns and data types.
sampled_data_locations: Option<Vec<String>>
The list of data locations sampled and used for format/schema inference.
schema_change: Option<String>
Whether the action relates to a schema that is incompatible or modified.
table: Option<String>
The name of the table containing invalid data.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl Clone for GoogleCloudDataplexV1ActionIncompatibleDataSchema
Source§fn clone(&self) -> GoogleCloudDataplexV1ActionIncompatibleDataSchema
fn clone(&self) -> GoogleCloudDataplexV1ActionIncompatibleDataSchema
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 GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl Default for GoogleCloudDataplexV1ActionIncompatibleDataSchema
Source§fn default() -> GoogleCloudDataplexV1ActionIncompatibleDataSchema
fn default() -> GoogleCloudDataplexV1ActionIncompatibleDataSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1ActionIncompatibleDataSchema
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 GoogleCloudDataplexV1ActionIncompatibleDataSchema
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl RefUnwindSafe for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl Send for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl Sync for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl Unpin for GoogleCloudDataplexV1ActionIncompatibleDataSchema
impl UnwindSafe for GoogleCloudDataplexV1ActionIncompatibleDataSchema
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