permissiveSsh property

  1. @TagNumber.new(12)
bool get permissiveSsh

When true, Batch will configure SSH to allow passwordless login between VMs running the Batch tasks in the same TaskGroup.

Implementation

@$pb.TagNumber(12)
$core.bool get permissiveSsh => $_getBF(8);
  1. @TagNumber.new(12)
set permissiveSsh (bool v)

Implementation

@$pb.TagNumber(12)
set permissiveSsh($core.bool v) {
  $_setBool(8, v);
}