mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
24 lines
661 B
Protocol Buffer
24 lines
661 B
Protocol Buffer
// Copyright IBM Corp. 2016, 2025
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
syntax = "proto3";
|
|
|
|
package logical;
|
|
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
option go_package = "github.com/hashicorp/vault/sdk/logical";
|
|
|
|
message PluginEnvironment {
|
|
// VaultVersion is the version of the Vault server
|
|
string vault_version = 1;
|
|
|
|
// VaultVersionPrerelease is the prerelease information of the Vault server
|
|
string vault_version_prerelease = 2;
|
|
|
|
// VaultVersionMetadata is the version metadata of the Vault server
|
|
string vault_version_metadata = 3;
|
|
|
|
// VaultBuildDate is the build date of the Vault server
|
|
google.protobuf.Timestamp vault_build_date = 4;
|
|
}
|