periodicTuningState property

String? periodicTuningState
getter/setter pair

The state of periodic tuning.

The period we use is 3 months - to do a one-off tune earlier use the TuneModel method. Default value is PERIODIC_TUNING_ENABLED.

Optional. Possible string values are:

  • "PERIODIC_TUNING_STATE_UNSPECIFIED" : Unspecified default value, should never be explicitly set.
  • "PERIODIC_TUNING_DISABLED" : The model has periodic tuning disabled. Tuning can be reenabled by calling the EnableModelPeriodicTuning method or by calling the TuneModel method.
  • "ALL_TUNING_DISABLED" : The model cannot be tuned with periodic tuning OR the TuneModel method. Hide the options in customer UI and reject any requests through the backend self serve API.
  • "PERIODIC_TUNING_ENABLED" : The model has periodic tuning enabled. Tuning can be disabled by calling the DisableModelPeriodicTuning method.

Implementation

core.String? periodicTuningState;