aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/pubsub/label.proto
diff options
context:
space:
mode:
authorGravatar Chen wang <chen.wang.github@gmail.com>2015-02-12 17:29:18 -0800
committerGravatar Chen wang <chen.wang.github@gmail.com>2015-02-12 17:29:18 -0800
commit842325110d6730ca0cc4eb584ac820876528dd44 (patch)
treebba8efdd5aeab7aad1c2031246a47720f1c2ddf4 /examples/pubsub/label.proto
parentbc91e25c3d39916fe55669cb045554e8f034d1af (diff)
Rename examples/tips to examples/pubsub
Diffstat (limited to 'examples/pubsub/label.proto')
-rw-r--r--examples/pubsub/label.proto50
1 files changed, 50 insertions, 0 deletions
diff --git a/examples/pubsub/label.proto b/examples/pubsub/label.proto
new file mode 100644
index 0000000000..6ac786f078
--- /dev/null
+++ b/examples/pubsub/label.proto
@@ -0,0 +1,50 @@
+// This file will be moved to a new location.
+
+// Labels provide a way to associate user-defined metadata with various
+// objects. Labels may be used to organize objects into non-hierarchical
+// groups; think metadata tags attached to mp3s.
+
+syntax = "proto2";
+
+package tech.label;
+
+// A key-value pair applied to a given object.
+message Label {
+ // The key of a label is a syntactically valid URL (as per RFC 1738) with
+ // the "scheme" and initial slashes omitted and with the additional
+ // restrictions noted below. Each key should be globally unique. The
+ // "host" portion is called the "namespace" and is not necessarily
+ // resolvable to a network endpoint. Instead, the namespace indicates what
+ // system or entity defines the semantics of the label. Namespaces do not
+ // restrict the set of objects to which a label may be associated.
+ //
+ // Keys are defined by the following grammar:
+ //
+ // key = hostname "/" kpath
+ // kpath = ksegment *[ "/" ksegment ]
+ // ksegment = alphadigit | *[ alphadigit | "-" | "_" | "." ]
+ //
+ // where "hostname" and "alphadigit" are defined as in RFC 1738.
+ //
+ // Example key:
+ // spanner.google.com/universe
+ required string key = 1;
+
+ // The value of the label.
+ oneof value {
+ // A string value.
+ string str_value = 2;
+ // An integer value.
+ int64 num_value = 3;
+ }
+}
+
+// A collection of labels, such as the set of all labels attached to an
+// object. Each label in the set must have a different key.
+//
+// Users should prefer to embed "repeated Label" directly when possible.
+// This message should only be used in cases where that isn't possible (e.g.
+// with oneof).
+message Labels {
+ repeated Label label = 1;
+}