enableFastStartup property

  1. @TagNumber(2)
bool enableFastStartup

Optional. If True, this causes sessions to be pre-created and available for faster startup to enable interactive exploration use-cases. This defaults to False to avoid additional billed charges. These can only be set to True for the environment with name set to "default", and with default configuration.

Implementation

@$pb.TagNumber(2)
$core.bool get enableFastStartup => $_getBF(1);
  1. @TagNumber(2)
void enableFastStartup=(bool v)

Implementation

@$pb.TagNumber(2)
set enableFastStartup($core.bool v) { $_setBool(1, v); }