2024-01-10 17:05:12 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2023-09-20 19:20:20 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2023-10-16 21:43:47 +00:00
|
|
|
package hashicorp.consul.tenancy.v2beta1;
|
2023-09-20 19:20:20 +00:00
|
|
|
|
2023-09-21 21:18:47 +00:00
|
|
|
import "pbresource/annotations.proto";
|
|
|
|
|
2023-09-20 19:20:20 +00: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 21:18:47 +00:00
|
|
|
option (hashicorp.consul.resource.spec) = {scope: SCOPE_PARTITION};
|
|
|
|
|
2023-09-20 19:20:20 +00:00
|
|
|
// Description is where the user puts any information they want
|
|
|
|
// about the namespace. It is not used internally.
|
|
|
|
string description = 1;
|
|
|
|
}
|