You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/host/static/public_ids.go

50 lines
1.4 KiB

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package static
import (
"context"
"github.com/hashicorp/boundary/globals"
"github.com/hashicorp/boundary/internal/db"
"github.com/hashicorp/boundary/internal/errors"
"github.com/hashicorp/boundary/internal/host"
"github.com/hashicorp/boundary/internal/types/resource"
)
func init() {
globals.RegisterPrefixToResourceInfo(globals.StaticHostCatalogPrefix, resource.HostCatalog, host.Domain, Subtype)
globals.RegisterPrefixToResourceInfo(globals.StaticHostSetPrefix, resource.HostSet, host.Domain, Subtype)
globals.RegisterPrefixToResourceInfo(globals.StaticHostPrefix, resource.Host, host.Domain, Subtype)
}
// PublicId prefixes for the resources in the static package.
const (
Subtype = globals.Subtype("static")
)
func newHostCatalogId(ctx context.Context) (string, error) {
id, err := db.NewPublicId(ctx, globals.StaticHostCatalogPrefix)
if err != nil {
return "", errors.Wrap(ctx, err, "static.newHostCatalogId")
}
return id, nil
}
func newHostId(ctx context.Context) (string, error) {
id, err := db.NewPublicId(ctx, globals.StaticHostPrefix)
if err != nil {
return "", errors.Wrap(ctx, err, "static.newHostId")
}
return id, nil
}
func newHostSetId(ctx context.Context) (string, error) {
id, err := db.NewPublicId(ctx, globals.StaticHostSetPrefix)
if err != nil {
return "", errors.Wrap(ctx, err, "static.newHostSetId")
}
return id, nil
}