mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
go generate .
This commit is contained in:
parent
9ed92d2ab6
commit
4ffe33461c
2 changed files with 5 additions and 0 deletions
|
|
@ -308,6 +308,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|||
add_message "hashicorp.vagrant.sdk.TerminalUI.IsInteractiveResponse" do
|
||||
optional :interactive, :bool, 1
|
||||
end
|
||||
add_message "hashicorp.vagrant.sdk.TerminalUI.IsMachineReadableResponse" do
|
||||
optional :machine_readable, :bool, 1
|
||||
end
|
||||
add_message "hashicorp.vagrant.sdk.TerminalUI.OutputRequest" do
|
||||
repeated :lines, :string, 1
|
||||
optional :style, :enum, 2, "hashicorp.vagrant.sdk.TerminalUI.OutputRequest.Style"
|
||||
|
|
@ -1020,6 +1023,7 @@ module Hashicorp
|
|||
ImplementsResp = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.ImplementsResp").msgclass
|
||||
TerminalUI = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.TerminalUI").msgclass
|
||||
TerminalUI::IsInteractiveResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.TerminalUI.IsInteractiveResponse").msgclass
|
||||
TerminalUI::IsMachineReadableResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.TerminalUI.IsMachineReadableResponse").msgclass
|
||||
TerminalUI::OutputRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.TerminalUI.OutputRequest").msgclass
|
||||
TerminalUI::OutputRequest::Style = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.TerminalUI.OutputRequest.Style").enummodule
|
||||
TerminalUI::Response = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("hashicorp.vagrant.sdk.TerminalUI.Response").msgclass
|
||||
|
|
|
|||
|
|
@ -26,6 +26,7 @@ module Hashicorp
|
|||
rpc :Output, ::Hashicorp::Vagrant::Sdk::TerminalUI::OutputRequest, ::Google::Protobuf::Empty
|
||||
rpc :Events, stream(::Hashicorp::Vagrant::Sdk::TerminalUI::Event), stream(::Hashicorp::Vagrant::Sdk::TerminalUI::Response)
|
||||
rpc :IsInteractive, ::Google::Protobuf::Empty, ::Hashicorp::Vagrant::Sdk::TerminalUI::IsInteractiveResponse
|
||||
rpc :IsMachineReadable, ::Google::Protobuf::Empty, ::Hashicorp::Vagrant::Sdk::TerminalUI::IsMachineReadableResponse
|
||||
end
|
||||
|
||||
Stub = Service.rpc_stub_class
|
||||
|
|
|
|||
Loading…
Reference in a new issue