Class: Google::Cloud::Dataplex::V1::Trigger::Schedule
- Inherits:
-
Object
- Object
- Google::Cloud::Dataplex::V1::Trigger::Schedule
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/dataplex/v1/processing.rb
Overview
The scan is scheduled to run periodically.
Instance Attribute Summary collapse
-
#cron ⇒ ::String
Required.
Instance Attribute Details
#cron ⇒ ::String
Returns Required. Cron schedule for running scans periodically.
To explicitly set a timezone in 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
(wikipedia).
For example, CRON_TZ=America/New_York 1 * * * *
, or
TZ=America/New_York 1 * * * *
.
This field is required for Schedule scans.
56 57 58 59 |
# File 'proto_docs/google/cloud/dataplex/v1/processing.rb', line 56 class Schedule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |