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/plugin/ids.go

25 lines
497 B

// Copyright IBM Corp. 2020, 2025
// SPDX-License-Identifier: BUSL-1.1
package plugin
import (
"context"
"github.com/hashicorp/boundary/internal/db"
"github.com/hashicorp/boundary/internal/errors"
)
// PublicId prefixes for the resources in the plugin package.
const (
PluginPrefix = "pl"
)
func newPluginId(ctx context.Context) (string, error) {
id, err := db.NewPublicId(ctx, PluginPrefix)
if err != nil {
return "", errors.Wrap(ctx, err, "plugin.newPluginId")
}
return id, nil
}