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/proto/controller/api/resources/plugins/v1/plugin.proto

20 lines
619 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
syntax = "proto3";
package controller.api.resources.plugins.v1;
option go_package = "github.com/hashicorp/boundary/sdk/pbs/controller/api/resources/plugins;plugins";
message PluginInfo {
// Output only. The ID of the Plugin.
string id = 1; // @gotags: `class:"public" eventstream:"observation"`
// Output only. The name of the plugin resource in boundary, if any.
string name = 2; // @gotags: `class:"public"`
// Output only. The description of the plugin in boundary, if any.
string description = 3; // @gotags: `class:"public"`
}