vault/sdk/logical/plugin.proto
helenfufu c27a54a99c
add vault build date to system view plugin env VAULT-32676 (#29082)
---------

Co-authored-by: Thy Ton <maithytonn@gmail.com>
2024-12-10 14:30:21 -08:00

25 lines
660 B
Protocol Buffer

// Copyright (c) HashiCorp, Inc.
// 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;
}