mirror of https://github.com/status-im/consul.git
13 lines
423 B
Protocol Buffer
13 lines
423 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package hashicorp.consul.tenancy.v1alpha1;
|
||
|
|
||
|
// The name of the Namespace is in the outer Resource.ID.Name.
|
||
|
// It must be unique within a partition and must be a
|
||
|
// DNS hostname. There are also other reserved names that may not be used.
|
||
|
message Namespace {
|
||
|
// Description is where the user puts any information they want
|
||
|
// about the namespace. It is not used internally.
|
||
|
string description = 1;
|
||
|
}
|