scope property

  1. @TagNumber.new(8)
String get scope

Optional. Scope determines how configuration across multiple Gateway instances are merged. The configuration for multiple Gateway instances with the same scope will be merged as presented as a single coniguration to the proxy/load balancer.

Max length 64 characters. Scope should start with a letter and can only have letters, numbers, hyphens.

Implementation

@$pb.TagNumber(8)
$core.String get scope => $_getSZ(7);
  1. @TagNumber.new(8)
set scope (String v)

Implementation

@$pb.TagNumber(8)
set scope($core.String v) {
  $_setString(7, v);
}