github.com/hernad/nomad@v1.6.112/drivers/docker/docklog/proto/docker_logger.proto (about) 1 // Copyright (c) HashiCorp, Inc. 2 // SPDX-License-Identifier: MPL-2.0 3 4 syntax = "proto3"; 5 package hashicorp.nomad.drivers.docker.docklog.proto; 6 option go_package = "proto"; 7 8 service DockerLogger { 9 rpc Start(StartRequest) returns (StartResponse) {} 10 rpc Stop(StopRequest) returns (StopResponse) {} 11 } 12 13 message StartRequest { 14 string endpoint = 1; 15 string container_id = 2; 16 string stdout_fifo = 3; 17 string stderr_fifo = 4; 18 string tls_cert = 5; 19 string tls_key = 6; 20 string tls_ca = 7; 21 bool tty = 8; 22 } 23 24 message StartResponse { 25 } 26 27 message StopRequest {} 28 29 message StopResponse {}