username property

  1. @TagNumber.new(10)
String get username

Optional username for logging in to a docker registry. If username matches projects/*/secrets/*/versions/* then Batch will read the username from the Secret Manager.

Implementation

@$pb.TagNumber(10)
$core.String get username => $_getSZ(6);
  1. @TagNumber.new(10)
set username (String v)

Implementation

@$pb.TagNumber(10)
set username($core.String v) {
  $_setString(6, v);
}