github.com/hashicorp/vault/sdk@v0.13.0/logical/version.proto (about)

     1  // Copyright (c) HashiCorp, Inc.
     2  // SPDX-License-Identifier: MPL-2.0
     3  
     4  syntax = "proto3";
     5  package logical;
     6  
     7  option go_package = "github.com/hashicorp/vault/sdk/logical";
     8  
     9  message Empty {}
    10  
    11  // VersionReply is the reply for the Version method.
    12  message VersionReply {
    13    string plugin_version = 1;
    14  }
    15  
    16  // PluginVersion is an optional RPC service implemented by plugins.
    17  service PluginVersion {
    18    // Version returns version information for the plugin.
    19    rpc Version(Empty) returns (VersionReply);
    20  }