github.com/timstclair/heapster@v0.20.0-alpha1/Godeps/_workspace/src/google.golang.org/appengine/internal/capability/capability_service.proto (about)

     1  syntax = "proto2";
     2  option go_package = "channel";
     3  
     4  package appengine;
     5  
     6  message IsEnabledRequest {
     7    required string package = 1;
     8    repeated string capability = 2;
     9    repeated string call = 3;
    10  }
    11  
    12  message IsEnabledResponse {
    13    enum SummaryStatus {
    14      DEFAULT = 0;
    15      ENABLED = 1;
    16      SCHEDULED_FUTURE = 2;
    17      SCHEDULED_NOW = 3;
    18      DISABLED = 4;
    19      UNKNOWN = 5;
    20    }
    21    optional SummaryStatus summary_status = 1;
    22  
    23    optional int64 time_until_scheduled = 2;
    24  }
    25  
    26  service CapabilityService {
    27    rpc IsEnabled(IsEnabledRequest) returns (IsEnabledResponse) {};
    28  }