1234567891011121314151617181920212223242526272829303132333435363738 |
- syntax = "proto3";
- package llnwApi.Delivery;
- service DeliveryService {
- rpc ListDeliveryServiceInstances(ShortName)returns(DeliveryList);
- }
- message Base{
- string username = 1;
- string key = 2;
- }
- message ShortName{
- Base base = 1;
- string shortName = 2;
- }
- message ProtocolSetOptions{
- string name = 1;
- repeated string parameters = 2;
- string source = 3;
- }
- message ProtocolSet{
- string sourceProtocol = 1;
- string publishedProtocol = 2;
- repeated ProtocolSetOptions options = 3;
- }
- message DeliveryEntity{
- string uuid = 1;
- bool isEnabled = 2;
- string shortname = 3;
- string status = 4;
- string sourceHostname = 5;
- string publishedHostname = 6;
- string sourceUrlPath = 7;
- string publishedUrlPath = 8;
- repeated ProtocolSet protocolSets = 9;
- }
- message DeliveryList{
- repeated DeliveryEntity deliveries = 1;
- }
|