pub struct GoogleCloudDataplexV1ZoneDiscoverySpec {
pub csv_options: Option<GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions>,
pub enabled: Option<bool>,
pub exclude_patterns: Option<Vec<String>>,
pub include_patterns: Option<Vec<String>>,
pub json_options: Option<GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions>,
pub schedule: Option<String>,
}
Expand description
Settings to manage the metadata discovery and publishing in a zone.
This type is not used in any activity, and only used as part of another schema.
Fields§
§csv_options: Option<GoogleCloudDataplexV1ZoneDiscoverySpecCsvOptions>
Optional. Configuration for CSV data.
enabled: Option<bool>
Required. Whether discovery is enabled.
exclude_patterns: Option<Vec<String>>
Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
include_patterns: Option<Vec<String>>
Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.
json_options: Option<GoogleCloudDataplexV1ZoneDiscoverySpecJsonOptions>
Optional. Configuration for Json data.
schedule: Option<String>
Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: “CRON_TZ=${IANA_TIME_ZONE}” or TZ=${IANA_TIME_ZONE}“. The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, CRON_TZ=America/New_York 1 * * * *, or TZ=America/New_York 1 * * * *.
Trait Implementations§
Source§impl Clone for GoogleCloudDataplexV1ZoneDiscoverySpec
impl Clone for GoogleCloudDataplexV1ZoneDiscoverySpec
Source§fn clone(&self) -> GoogleCloudDataplexV1ZoneDiscoverySpec
fn clone(&self) -> GoogleCloudDataplexV1ZoneDiscoverySpec
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleCloudDataplexV1ZoneDiscoverySpec
impl Default for GoogleCloudDataplexV1ZoneDiscoverySpec
Source§fn default() -> GoogleCloudDataplexV1ZoneDiscoverySpec
fn default() -> GoogleCloudDataplexV1ZoneDiscoverySpec
Source§impl<'de> Deserialize<'de> for GoogleCloudDataplexV1ZoneDiscoverySpec
impl<'de> Deserialize<'de> for GoogleCloudDataplexV1ZoneDiscoverySpec
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>,
impl Part for GoogleCloudDataplexV1ZoneDiscoverySpec
Auto Trait Implementations§
impl Freeze for GoogleCloudDataplexV1ZoneDiscoverySpec
impl RefUnwindSafe for GoogleCloudDataplexV1ZoneDiscoverySpec
impl Send for GoogleCloudDataplexV1ZoneDiscoverySpec
impl Sync for GoogleCloudDataplexV1ZoneDiscoverySpec
impl Unpin for GoogleCloudDataplexV1ZoneDiscoverySpec
impl UnwindSafe for GoogleCloudDataplexV1ZoneDiscoverySpec
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