address property
The address of the API backend.
The scheme is used to determine the backend protocol and security. The following schemes are accepted:
SCHEME PROTOCOL SECURITY http:// HTTP None https:// HTTP TLS grpc:// gRPC None grpcs:// gRPC TLS
It is recommended to explicitly include a scheme. Leaving out the scheme may cause constrasting behaviors across platforms.
If the port is unspecified, the default is:
- 80 for schemes without TLS
- 443 for schemes with TLS
For HTTP backends, use google.api.BackendRule.protocol
to specify the protocol version.
Implementation
@$pb.TagNumber(2)
$core.String get address => $_getSZ(1);
Implementation
@$pb.TagNumber(2)
set address($core.String value) => $_setString(1, value);