name property

  1. @TagNumber(2)
String name

The stable identifier (name) of a resource on the service. A resource can be logically identified as "//{resource.service}/{resource.name}". The differences between a resource name and a URI are:

  • Resource name is a logical identifier, independent of network protocol and API version. For example, //pubsub.googleapis.com/projects/123/topics/news-feed.
  • URI often includes protocol and version information, so it can be used directly by applications. For example, https://pubsub.googleapis.com/v1/projects/123/topics/news-feed.

See https://cloud.google.com/apis/design/resource_names for details.

Implementation

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

Implementation

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