authEnabled property

  1. @TagNumber(23)
bool authEnabled

Optional. Indicates whether OSS Redis AUTH is enabled for the instance. If set to "true" AUTH is enabled on the instance. Default value is "false" meaning AUTH is disabled.

Implementation

@$pb.TagNumber(23)
$core.bool get authEnabled => $_getBF(19);
  1. @TagNumber(23)
void authEnabled=(bool v)

Implementation

@$pb.TagNumber(23)
set authEnabled($core.bool v) { $_setBool(19, v); }