1syntax = "proto3";
2
3import "github.com/gogo/protobuf/gogoproto/gogo.proto";
4
5package sensu.core.v2;
6
7option go_package = "v2";
8option (gogoproto.populate_all) = true;
9option (gogoproto.equal_all) = true;
10option (gogoproto.marshaler_all) = true;
11option (gogoproto.unmarshaler_all) = true;
12option (gogoproto.sizer_all) = true;
13option (gogoproto.testgen_all) = true;
14
15// Namespace represents a virtual cluster
16message Namespace {
17  // Name is the unique identifier for a namespace.
18  string name = 1;
19}