mirror of
https://github.com/status-im/consul.git
synced 2025-02-01 00:16:27 +00:00
341dc28ff9
* add namespace proto and registration * fix proto generation * add missing copywrite headers * fix proto linter errors * fix exports and Type export * add mutate hook and more validation * add more validation rules and tests * Apply suggestions from code review Co-authored-by: Semir Patel <semir.patel@hashicorp.com> * fix owner error and add test * remove ACL for now * add tests around space suffix prefix. * only fait when ns and ap are default, add test for it --------- Co-authored-by: Semir Patel <semir.patel@hashicorp.com>
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;
|
|
}
|