Sha256: 8da2b41d5eb4490e082cbc6c79b63df969f570e9459b15cd91e80b526d637acc

Contents?: true

Size: 600 Bytes

Versions: 26

Compression:

Stored size: 600 Bytes

Contents

package generic.remote;

import "error.proto";

message Tag {
  optional string guid = 1;
  optional string name = 2;
  repeated Error errors = 3;
}

message Tags {
  repeated Tag records = 1;
}

message TagRequest {
  repeated string guid = 1;
  repeated string name = 2;
}

service TagService {
  rpc Search (TagRequest) returns (Tags);
  rpc Create (Tag) returns (Tag);
  rpc Update (Tag) returns (Tag);
  rpc Delete (Tag) returns (Tag);
  rpc CreateAll (Tags) returns (Tags);
  rpc UpdateAll (Tags) returns (Tags);
  rpc DeleteAll (Tags) returns (Tags);
  rpc DestroyAll (Tags) returns (Tags);
}

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
active_remote-3.1.3 spec/support/definitions/tag.proto
active_remote-3.1.2 spec/support/definitions/tag.proto
active_remote-3.1.2.pre spec/support/definitions/tag.proto
active_remote-3.1.1 spec/support/definitions/tag.proto
active_remote-3.1.0 spec/support/definitions/tag.proto
active_remote-3.0.0 spec/support/definitions/tag.proto
active_remote-3.0.0.pre1 spec/support/definitions/tag.proto
active_remote-2.4.0 spec/support/definitions/tag.proto
active_remote-2.3.5 spec/support/definitions/tag.proto
active_remote-2.3.4 spec/support/definitions/tag.proto
active_remote-2.3.3 spec/support/definitions/tag.proto
active_remote-2.3.3.pre spec/support/definitions/tag.proto
active_remote-2.3.2 spec/support/definitions/tag.proto
active_remote-2.3.1 spec/support/definitions/tag.proto
active_remote-2.3.0 spec/support/definitions/tag.proto
active_remote-2.2.0 spec/support/definitions/tag.proto
active_remote-2.1.1 spec/support/definitions/tag.proto
active_remote-2.1.0 spec/support/definitions/tag.proto
active_remote-2.1.0.rc2 spec/support/definitions/tag.proto
active_remote-2.1.0.rc1 spec/support/definitions/tag.proto