pulumi/sdk/proto/plugin.proto
Pat Gavlin a23b10a9bf
Update the copyright end date to 2018. (#1068)
Just what it says on the tin.
2018-03-21 12:43:21 -07:00

18 lines
549 B
Protocol Buffer

// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
syntax = "proto3";
package pulumirpc;
// PluginInfo is meta-information about a plugin that is used by the system.
message PluginInfo {
string version = 1; // the semver for this plugin.
}
// PluginDependency is information about a plugin that a program may depend upon.
message PluginDependency {
string name = 1; // the name of the plugin.
string kind = 2; // the kind of plugin (e.g., language, etc).
string version = 3; // the semver for this plugin.
}