github.com/microsoft/moc@v0.17.1/rpc/common/admin/debug/moc_common_debug.proto (about)

     1  // Copyright (c) Microsoft Corporation.
     2  // Licensed under the Apache v2.0 license.
     3  
     4  syntax = "proto3";
     5  option go_package = "github.com/microsoft/moc/rpc/common/admin";
     6  package moc.common.admin;
     7  import "moc_common_common.proto";
     8  
     9  enum DebugOperation {
    10  	DEBUGSERVER = 0;
    11  	STACKTRACE = 1;
    12  }
    13  
    14  message DebugRequest{
    15  	// Operation Type
    16  	DebugOperation OBSOLETE_OperationType = 1 [deprecated=true];
    17  	// Artibraty data
    18  	string Data = 2;
    19  	ProviderAccessOperation OperationType = 3;
    20  }
    21  
    22  message DebugResponse {
    23  	string Result = 1;
    24  }
    25  
    26  service DebugAgent {
    27  	rpc Invoke(DebugRequest) returns (DebugResponse) {}
    28  }
    29  
    30