callerIp property

  1. @TagNumber(1)
String callerIp

The IP address of the caller. For caller from internet, this will be public IPv4 or IPv6 address. For caller from a Compute Engine VM with external IP address, this will be the VM's external IP address. For caller from a Compute Engine VM without external IP address, if the VM is in the same organization (or project) as the accessed resource, caller_ip will be the VM's internal IPv4 address, otherwise the caller_ip will be redacted to "gce-internal-ip". See https://cloud.google.com/compute/docs/vpc/ for more information.

Implementation

@$pb.TagNumber(1)
$core.String get callerIp => $_getSZ(0);
  1. @TagNumber(1)
void callerIp=(String v)

Implementation

@$pb.TagNumber(1)
set callerIp($core.String v) { $_setString(0, v); }