2023-09-20 15:20:20 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-10-16 16:43:47 -05:00
|
|
|
package hashicorp.consul.tenancy.v2beta1;
|
2023-09-20 15:20:20 -04:00
|
|
|
|
2023-09-21 17:18:47 -04:00
|
|
|
import "pbresource/annotations.proto";
|
|
|
|
|
2023-09-20 15:20:20 -04:00
|
|
|
// 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 {
|
2023-09-21 17:18:47 -04:00
|
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_PARTITION};
|
|
|
|
|
2023-09-20 15:20:20 -04:00
|
|
|
// Description is where the user puts any information they want
|
|
|
|
// about the namespace. It is not used internally.
|
|
|
|
string description = 1;
|
|
|
|
}
|