Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
sarus_data_spec / sarus_data_spec / protobuf / constraint.proto
Size: Mime:
syntax = "proto3";
package sarus_data_spec;


enum ConstraintKind {
  SYNTHETIC = 0;
  DP = 1;
  PUBLIC = 2;
  PUP = 3;
  MOCK = 4;
  PUP_FOR_REWRITING = 5;
}

message VariantConstraint {
  string uuid = 1;
  string dataspec = 2;
  ConstraintKind constraint_kind = 3;
  repeated string required_context = 4;
  map<string, string> properties = 5;
}