Interface FeatureView.SyncConfigOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
FeatureView.SyncConfig, FeatureView.SyncConfig.Builder
Enclosing class:
FeatureView

public static interface FeatureView.SyncConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Optional.
    Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.
    com.google.protobuf.ByteString
    Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getCron

      String getCron()
       Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled
       runs. 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 * * * *".
       
      string cron = 1;
      Returns:
      The cron.
    • getCronBytes

      com.google.protobuf.ByteString getCronBytes()
       Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled
       runs. 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 * * * *".
       
      string cron = 1;
      Returns:
      The bytes for cron.
    • getContinuous

      boolean getContinuous()
       Optional. If true, syncs the FeatureView in a continuous manner to Online
       Store.
       
      bool continuous = 2 [(.google.api.field_behavior) = OPTIONAL];
      Returns:
      The continuous.