Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(842)

Unified Diff: scheduler/appengine/messages/cron.pb.go

Issue 2986033003: [scheduler]: ACLs phase 1 - per Job ACL specification and enforcement. (Closed)
Patch Set: Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scheduler/appengine/messages/cron.pb.go
diff --git a/scheduler/appengine/messages/cron.pb.go b/scheduler/appengine/messages/cron.pb.go
index 2e4406a80f6ea995f5a4a5c333eda3422838ca39..78c55a52a9fac6f539e4fae65829cbaa004b8db3 100644
--- a/scheduler/appengine/messages/cron.pb.go
+++ b/scheduler/appengine/messages/cron.pb.go
@@ -8,6 +8,8 @@ It is generated from these files:
github.com/luci/luci-go/scheduler/appengine/messages/cron.proto
It has these top-level messages:
+ Acl
+ AclSet
Job
Trigger
NoopTask
@@ -35,6 +37,88 @@ var _ = math.Inf
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
+type Acl_Role int32
+
+const (
+ // Can do read-only operations, such as listing invocations of a Job.
+ Acl_READER Acl_Role = 0
+ // Same as READER + can modify state of a Job or Invocation such as aborting
+ // them.
+ Acl_WRITER Acl_Role = 1
+)
+
+var Acl_Role_name = map[int32]string{
+ 0: "READER",
+ 1: "WRITER",
+}
+var Acl_Role_value = map[string]int32{
+ "READER": 0,
+ "WRITER": 1,
+}
+
+func (x Acl_Role) String() string {
+ return proto.EnumName(Acl_Role_name, int32(x))
+}
+func (Acl_Role) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
+
+// A single access control rule.
+type Acl struct {
+ // Role denotes a list of actions that an identity can perform.
+ Role Acl_Role `protobuf:"varint,1,opt,name=role,enum=messages.Acl_Role" json:"role,omitempty"`
+ // A full identity string "kind:name", such as "group:xyz" or
+ // "email:mail@example.com".
+ // For more details, see auth service on kinds of identities.
+ Identity string `protobuf:"bytes,2,opt,name=identity" json:"identity,omitempty"`
+}
+
+func (m *Acl) Reset() { *m = Acl{} }
+func (m *Acl) String() string { return proto.CompactTextString(m) }
+func (*Acl) ProtoMessage() {}
+func (*Acl) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
+
+func (m *Acl) GetRole() Acl_Role {
+ if m != nil {
+ return m.Role
+ }
+ return Acl_READER
+}
+
+func (m *Acl) GetIdentity() string {
+ if m != nil {
+ return m.Identity
+ }
+ return ""
+}
+
+// A set of Acl messages. Can be referenced in a Job or Trigger by name.
+type AclSet struct {
+ // A name of the ACL set, unique for a project.
+ // Required. Must match regex '^[a-z0-9_]+$'.
+ Name string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"`
+ // List of access control rules.
+ // The order does not matter.
+ Acls []*Acl `protobuf:"bytes,2,rep,name=acls" json:"acls,omitempty"`
+}
+
+func (m *AclSet) Reset() { *m = AclSet{} }
+func (m *AclSet) String() string { return proto.CompactTextString(m) }
+func (*AclSet) ProtoMessage() {}
+func (*AclSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
+
+func (m *AclSet) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *AclSet) GetAcls() []*Acl {
+ if m != nil {
+ return m.Acls
+ }
+ return nil
+}
+
// Job specifies a single regular job belonging to a project.
//
// Such jobs runs on a schedule or can be triggered by some trigger.
@@ -69,6 +153,13 @@ type Job struct {
// TODO(vadimsh): Remove this field once all configs are updated not to
// use it.
Task *TaskDefWrapper `protobuf:"bytes,4,opt,name=task" json:"task,omitempty"`
+ // List of access control rules for the Job.
+ // The order does not matter.
+ Acls []*Acl `protobuf:"bytes,5,rep,name=acls" json:"acls,omitempty"`
+ // A list of ACL set names. Each ACL in each referenced ACL set will be
+ // included in this Job.
+ // The order does not matter.
+ AclSets []string `protobuf:"bytes,6,rep,name=acl_sets,json=aclSets" json:"acl_sets,omitempty"`
// Noop is used for testing. It is "do nothing" task.
Noop *NoopTask `protobuf:"bytes,100,opt,name=noop" json:"noop,omitempty"`
// UrlFetch can be used to make a simple HTTP call.
@@ -82,7 +173,7 @@ type Job struct {
func (m *Job) Reset() { *m = Job{} }
func (m *Job) String() string { return proto.CompactTextString(m) }
func (*Job) ProtoMessage() {}
-func (*Job) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
+func (*Job) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
func (m *Job) GetId() string {
if m != nil {
@@ -112,6 +203,20 @@ func (m *Job) GetTask() *TaskDefWrapper {
return nil
}
+func (m *Job) GetAcls() []*Acl {
+ if m != nil {
+ return m.Acls
+ }
+ return nil
+}
+
+func (m *Job) GetAclSets() []string {
+ if m != nil {
+ return m.AclSets
+ }
+ return nil
+}
+
func (m *Job) GetNoop() *NoopTask {
if m != nil {
return m.Noop
@@ -156,6 +261,13 @@ type Trigger struct {
Schedule string `protobuf:"bytes,2,opt,name=schedule" json:"schedule,omitempty"`
// Disabled is true to disable this job.
Disabled bool `protobuf:"varint,3,opt,name=disabled" json:"disabled,omitempty"`
+ // List of access control rules for the Job.
+ // The order does not matter.
+ Acls []*Acl `protobuf:"bytes,4,rep,name=acls" json:"acls,omitempty"`
+ // A list of ACL set names. Each ACL in each referenced ACL set will be
+ // included in this Job.
+ // The order does not matter.
+ AclSets []string `protobuf:"bytes,5,rep,name=acl_sets,json=aclSets" json:"acl_sets,omitempty"`
// Noop is used for testing. It is "do nothing" trigger.
Noop *NoopTask `protobuf:"bytes,100,opt,name=noop" json:"noop,omitempty"`
// Gitiles is used to trigger jobs for new commits on Gitiles.
@@ -165,7 +277,7 @@ type Trigger struct {
func (m *Trigger) Reset() { *m = Trigger{} }
func (m *Trigger) String() string { return proto.CompactTextString(m) }
func (*Trigger) ProtoMessage() {}
-func (*Trigger) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
+func (*Trigger) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
func (m *Trigger) GetId() string {
if m != nil {
@@ -188,6 +300,20 @@ func (m *Trigger) GetDisabled() bool {
return false
}
+func (m *Trigger) GetAcls() []*Acl {
+ if m != nil {
+ return m.Acls
+ }
+ return nil
+}
+
+func (m *Trigger) GetAclSets() []string {
+ if m != nil {
+ return m.AclSets
+ }
+ return nil
+}
+
func (m *Trigger) GetNoop() *NoopTask {
if m != nil {
return m.Noop
@@ -209,7 +335,7 @@ type NoopTask struct {
func (m *NoopTask) Reset() { *m = NoopTask{} }
func (m *NoopTask) String() string { return proto.CompactTextString(m) }
func (*NoopTask) ProtoMessage() {}
-func (*NoopTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
+func (*NoopTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
// GitilesTask specifies parameters of Swarming-based jobs.
type GitilesTask struct {
@@ -222,7 +348,7 @@ type GitilesTask struct {
func (m *GitilesTask) Reset() { *m = GitilesTask{} }
func (m *GitilesTask) String() string { return proto.CompactTextString(m) }
func (*GitilesTask) ProtoMessage() {}
-func (*GitilesTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
+func (*GitilesTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *GitilesTask) GetRepo() string {
if m != nil {
@@ -251,7 +377,7 @@ type UrlFetchTask struct {
func (m *UrlFetchTask) Reset() { *m = UrlFetchTask{} }
func (m *UrlFetchTask) String() string { return proto.CompactTextString(m) }
func (*UrlFetchTask) ProtoMessage() {}
-func (*UrlFetchTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
+func (*UrlFetchTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
func (m *UrlFetchTask) GetMethod() string {
if m != nil {
@@ -300,7 +426,7 @@ type SwarmingTask struct {
func (m *SwarmingTask) Reset() { *m = SwarmingTask{} }
func (m *SwarmingTask) String() string { return proto.CompactTextString(m) }
func (*SwarmingTask) ProtoMessage() {}
-func (*SwarmingTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
+func (*SwarmingTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
func (m *SwarmingTask) GetServer() string {
if m != nil {
@@ -390,7 +516,7 @@ type SwarmingTask_IsolatedRef struct {
func (m *SwarmingTask_IsolatedRef) Reset() { *m = SwarmingTask_IsolatedRef{} }
func (m *SwarmingTask_IsolatedRef) String() string { return proto.CompactTextString(m) }
func (*SwarmingTask_IsolatedRef) ProtoMessage() {}
-func (*SwarmingTask_IsolatedRef) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5, 0} }
+func (*SwarmingTask_IsolatedRef) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7, 0} }
func (m *SwarmingTask_IsolatedRef) GetIsolated() string {
if m != nil {
@@ -430,7 +556,7 @@ type BuildbucketTask struct {
func (m *BuildbucketTask) Reset() { *m = BuildbucketTask{} }
func (m *BuildbucketTask) String() string { return proto.CompactTextString(m) }
func (*BuildbucketTask) ProtoMessage() {}
-func (*BuildbucketTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{6} }
+func (*BuildbucketTask) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
func (m *BuildbucketTask) GetServer() string {
if m != nil {
@@ -474,12 +600,14 @@ type ProjectConfig struct {
Job []*Job `protobuf:"bytes,1,rep,name=job" json:"job,omitempty"`
// Trigger is a set of triggering jobs defined in the project.
Trigger []*Trigger `protobuf:"bytes,2,rep,name=trigger" json:"trigger,omitempty"`
+ // A list of ACL sets. Names must be unique.
+ AclSets []*AclSet `protobuf:"bytes,3,rep,name=acl_sets,json=aclSets" json:"acl_sets,omitempty"`
}
func (m *ProjectConfig) Reset() { *m = ProjectConfig{} }
func (m *ProjectConfig) String() string { return proto.CompactTextString(m) }
func (*ProjectConfig) ProtoMessage() {}
-func (*ProjectConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{7} }
+func (*ProjectConfig) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{9} }
func (m *ProjectConfig) GetJob() []*Job {
if m != nil {
@@ -495,6 +623,13 @@ func (m *ProjectConfig) GetTrigger() []*Trigger {
return nil
}
+func (m *ProjectConfig) GetAclSets() []*AclSet {
+ if m != nil {
+ return m.AclSets
+ }
+ return nil
+}
+
// TaskDefWrapper is a union type of all possible tasks known to the scheduler.
//
// It is used internally when storing jobs in the datastore.
@@ -512,7 +647,7 @@ type TaskDefWrapper struct {
func (m *TaskDefWrapper) Reset() { *m = TaskDefWrapper{} }
func (m *TaskDefWrapper) String() string { return proto.CompactTextString(m) }
func (*TaskDefWrapper) ProtoMessage() {}
-func (*TaskDefWrapper) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{8} }
+func (*TaskDefWrapper) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{10} }
func (m *TaskDefWrapper) GetNoop() *NoopTask {
if m != nil {
@@ -550,6 +685,8 @@ func (m *TaskDefWrapper) GetGitilesTask() *GitilesTask {
}
func init() {
+ proto.RegisterType((*Acl)(nil), "messages.Acl")
+ proto.RegisterType((*AclSet)(nil), "messages.AclSet")
proto.RegisterType((*Job)(nil), "messages.Job")
proto.RegisterType((*Trigger)(nil), "messages.Trigger")
proto.RegisterType((*NoopTask)(nil), "messages.NoopTask")
@@ -560,6 +697,7 @@ func init() {
proto.RegisterType((*BuildbucketTask)(nil), "messages.BuildbucketTask")
proto.RegisterType((*ProjectConfig)(nil), "messages.ProjectConfig")
proto.RegisterType((*TaskDefWrapper)(nil), "messages.TaskDefWrapper")
+ proto.RegisterEnum("messages.Acl_Role", Acl_Role_name, Acl_Role_value)
}
func init() {
@@ -567,54 +705,63 @@ func init() {
}
var fileDescriptor0 = []byte{
- // 780 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x55, 0x4b, 0x6f, 0xf3, 0x44,
- 0x14, 0x95, 0xf3, 0xce, 0x75, 0xd2, 0xb4, 0x23, 0x88, 0x86, 0x0a, 0x68, 0xe4, 0x45, 0x89, 0x78,
- 0x24, 0x52, 0x0a, 0x12, 0x52, 0x17, 0x08, 0x28, 0x20, 0xba, 0x40, 0x95, 0x5b, 0x84, 0x58, 0x20,
- 0xcb, 0x8f, 0x6b, 0x67, 0x5a, 0xdb, 0x63, 0xcd, 0x8c, 0x4b, 0xd9, 0xb3, 0xe7, 0x7f, 0xf4, 0x9f,
- 0xf0, 0xaf, 0x90, 0xc7, 0xcf, 0x56, 0x7c, 0x55, 0x3f, 0xe9, 0xdb, 0x44, 0xbe, 0xe7, 0x9e, 0x7b,
- 0x67, 0xe6, 0xdc, 0x99, 0x13, 0xf8, 0x26, 0x62, 0x6a, 0x9f, 0x7b, 0x1b, 0x9f, 0x27, 0xdb, 0x38,
- 0xf7, 0x99, 0xfe, 0xf9, 0x22, 0xe2, 0x5b, 0xe9, 0xef, 0x31, 0xc8, 0x63, 0x14, 0x5b, 0x37, 0xcb,
- 0x30, 0x8d, 0x58, 0x8a, 0xdb, 0x04, 0xa5, 0x74, 0x23, 0x94, 0x5b, 0x5f, 0xf0, 0x74, 0x93, 0x09,
- 0xae, 0x38, 0x99, 0xd4, 0xa0, 0xf5, 0x6f, 0x0f, 0xfa, 0x97, 0xdc, 0x23, 0x07, 0xd0, 0x63, 0x01,
- 0x35, 0x56, 0xc6, 0x7a, 0x6a, 0xf7, 0x58, 0x40, 0x8e, 0x61, 0x52, 0x37, 0xa3, 0x3d, 0x8d, 0x36,
- 0x71, 0x91, 0x0b, 0x98, 0x74, 0xbd, 0x18, 0x03, 0xda, 0x5f, 0x19, 0xeb, 0x89, 0xdd, 0xc4, 0xe4,
- 0x73, 0x18, 0x28, 0x57, 0xde, 0xd1, 0xc1, 0xca, 0x58, 0x9b, 0x3b, 0xba, 0xa9, 0x17, 0xda, 0xdc,
- 0xb8, 0xf2, 0xee, 0x02, 0xc3, 0xdf, 0x44, 0xb1, 0x33, 0x61, 0x6b, 0x16, 0x39, 0x85, 0x41, 0xca,
- 0x79, 0x46, 0x03, 0xcd, 0x26, 0x2d, 0xfb, 0x17, 0xce, 0xb3, 0xa2, 0xc2, 0xd6, 0x79, 0x72, 0x06,
- 0xd3, 0x5c, 0xc4, 0x4e, 0x88, 0xca, 0xdf, 0x53, 0xd4, 0xe4, 0x65, 0x4b, 0xfe, 0x55, 0xc4, 0x3f,
- 0x16, 0x19, 0x5d, 0x30, 0xc9, 0xab, 0x88, 0xec, 0x60, 0x22, 0xff, 0x74, 0x45, 0xc2, 0xd2, 0x88,
- 0x86, 0xcf, 0x6b, 0xae, 0xab, 0x4c, 0x59, 0x53, 0xf3, 0xc8, 0x39, 0x98, 0x5e, 0xce, 0xe2, 0xc0,
- 0xcb, 0xfd, 0x3b, 0x54, 0x34, 0xd2, 0x65, 0x1f, 0xb4, 0x65, 0xdf, 0xb5, 0x49, 0x5d, 0xd9, 0x65,
- 0x5b, 0x8f, 0x06, 0x8c, 0x6f, 0x04, 0x8b, 0x22, 0x14, 0xef, 0x4c, 0xcf, 0xd7, 0x2a, 0xb4, 0x85,
- 0x71, 0xc4, 0x14, 0x8b, 0x51, 0x56, 0xfa, 0xbc, 0xdf, 0x52, 0x7f, 0x2a, 0x13, 0x9a, 0x5d, 0xb3,
- 0x2c, 0x80, 0x49, 0xdd, 0xc2, 0xfa, 0x0a, 0xcc, 0x0e, 0x87, 0x10, 0x18, 0x08, 0xcc, 0x78, 0xb5,
- 0x7b, 0xfd, 0x5d, 0x62, 0xa1, 0xa4, 0xbd, 0x55, 0xbf, 0xc4, 0x42, 0x69, 0xfd, 0x0e, 0xb3, 0xae,
- 0xf4, 0x64, 0x09, 0xa3, 0x04, 0xd5, 0x9e, 0xd7, 0xe7, 0xae, 0x22, 0x72, 0x08, 0xfd, 0x5c, 0xc4,
- 0xd5, 0xb1, 0x8b, 0x4f, 0x72, 0x02, 0xa6, 0x62, 0x09, 0xf2, 0x5c, 0x39, 0x12, 0x7d, 0x7d, 0xe8,
- 0xa1, 0x0d, 0x15, 0x74, 0x8d, 0xbe, 0xf5, 0xf7, 0x00, 0x66, 0xdd, 0x11, 0x15, 0xbd, 0x25, 0x8a,
- 0x7b, 0x14, 0x75, 0xef, 0x32, 0x22, 0x14, 0xc6, 0x3e, 0x4f, 0x12, 0x37, 0x0d, 0xaa, 0xad, 0xd5,
- 0x21, 0xf9, 0x01, 0x66, 0x4c, 0xf2, 0xd8, 0x55, 0x18, 0x38, 0x02, 0x43, 0xbd, 0x88, 0xb9, 0xb3,
- 0xfe, 0xff, 0x0a, 0x6c, 0x7e, 0xae, 0xa8, 0x36, 0x86, 0xb6, 0xc9, 0xda, 0x80, 0x7c, 0x04, 0x80,
- 0x0f, 0x4a, 0xb8, 0x8e, 0x2b, 0x22, 0x49, 0x07, 0x7a, 0x8d, 0xa9, 0x46, 0xbe, 0x15, 0x91, 0x2c,
- 0xce, 0x86, 0xe9, 0x3d, 0x1d, 0x6a, 0xbc, 0xf8, 0x24, 0x1f, 0x03, 0x04, 0x2c, 0xc1, 0x54, 0x32,
- 0x9e, 0x4a, 0x3a, 0xd2, 0x89, 0x0e, 0x52, 0x28, 0xa9, 0xdc, 0x48, 0xd2, 0x71, 0xa9, 0x64, 0xf1,
- 0x5d, 0xdc, 0x80, 0x4c, 0x30, 0x2e, 0x98, 0xfa, 0x8b, 0x4e, 0xb4, 0x18, 0x4d, 0x4c, 0xbe, 0x84,
- 0x25, 0x3e, 0xa0, 0x9f, 0x2b, 0xc6, 0x53, 0xa7, 0xa3, 0x9a, 0xa4, 0x53, 0xcd, 0x7c, 0xaf, 0xc9,
- 0xde, 0x34, 0xfa, 0x49, 0xf2, 0x29, 0x1c, 0x45, 0xc2, 0xf5, 0xd1, 0xc9, 0x50, 0x30, 0x1e, 0x94,
- 0x05, 0xa0, 0x0b, 0x16, 0x3a, 0x71, 0xa5, 0x71, 0xcd, 0x3d, 0x85, 0x05, 0xe3, 0x4f, 0x5b, 0x9b,
- 0x9a, 0x39, 0x67, 0xbc, 0xd3, 0xf3, 0x38, 0x03, 0xb3, 0x23, 0x53, 0xb1, 0xe9, 0x5a, 0xa8, 0x6a,
- 0x28, 0x4d, 0x4c, 0x3e, 0x81, 0x45, 0x23, 0x7e, 0x35, 0xb7, 0x72, 0xfc, 0x07, 0x35, 0x7c, 0x5d,
- 0xce, 0xef, 0x43, 0x98, 0xa6, 0x6e, 0x82, 0x32, 0x73, 0x7d, 0xd4, 0x23, 0x9a, 0xda, 0x2d, 0x60,
- 0xfd, 0x63, 0xc0, 0xe2, 0xd9, 0x93, 0x7b, 0xe3, 0x4d, 0x58, 0xc2, 0xa8, 0x7a, 0xb5, 0xe5, 0x4a,
- 0x55, 0x54, 0xdc, 0x10, 0xfd, 0x48, 0x51, 0x54, 0xfd, 0xeb, 0xb0, 0x98, 0x54, 0x26, 0x78, 0x86,
- 0x42, 0x31, 0xac, 0x47, 0xdb, 0x41, 0x9a, 0x49, 0x0d, 0xdb, 0x49, 0x59, 0x7f, 0xc0, 0xfc, 0x4a,
- 0xf0, 0x5b, 0xf4, 0xd5, 0xf7, 0x3c, 0x0d, 0x59, 0x44, 0x4e, 0xa0, 0x7f, 0xcb, 0x3d, 0x6a, 0xac,
- 0xfa, 0x6b, 0x73, 0x37, 0x6f, 0x6f, 0xd7, 0x25, 0xf7, 0xec, 0x22, 0x43, 0x3e, 0x83, 0xb1, 0x2a,
- 0x4d, 0x41, 0xdf, 0x50, 0x73, 0x77, 0xd4, 0x31, 0xc5, 0x32, 0x61, 0xd7, 0x0c, 0xeb, 0xb1, 0x07,
- 0x07, 0x4f, 0x9d, 0xb2, 0x71, 0x00, 0xe3, 0x6d, 0x3c, 0xb2, 0xf7, 0x4a, 0x8f, 0x3c, 0x87, 0x79,
- 0xed, 0x7d, 0x8e, 0xf6, 0xed, 0xfe, 0x8b, 0x46, 0x39, 0x93, 0xdd, 0x37, 0x79, 0x01, 0x87, 0x1d,
- 0xfb, 0x73, 0x3a, 0xbe, 0xff, 0x82, 0x63, 0x2e, 0xbc, 0x67, 0xf3, 0xfc, 0x1a, 0x66, 0x95, 0x27,
- 0x95, 0x1d, 0x86, 0x2f, 0xd9, 0x97, 0x19, 0xb5, 0x81, 0x37, 0xd2, 0x7f, 0x66, 0x67, 0xff, 0x05,
- 0x00, 0x00, 0xff, 0xff, 0x1e, 0xac, 0x47, 0x5b, 0x0f, 0x07, 0x00, 0x00,
+ // 917 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x5d, 0x8f, 0x1b, 0x35,
+ 0x14, 0x65, 0x32, 0xd9, 0x7c, 0xdc, 0xc9, 0x6e, 0x52, 0x0b, 0x56, 0xd3, 0x0a, 0xda, 0x30, 0x0f,
+ 0x25, 0xa2, 0x90, 0x48, 0x29, 0x48, 0x48, 0x7d, 0xa8, 0x02, 0xbb, 0xa0, 0xf6, 0x01, 0x55, 0xce,
+ 0xa2, 0x8a, 0xa7, 0x68, 0x32, 0x73, 0x33, 0xeb, 0xee, 0x64, 0x3c, 0xb2, 0x3d, 0xa5, 0xbc, 0x23,
+ 0x21, 0xf1, 0xc2, 0xff, 0xe0, 0x97, 0xf1, 0x33, 0x90, 0x3d, 0xf6, 0x64, 0x76, 0x45, 0x57, 0x05,
+ 0xf5, 0x25, 0xf2, 0xbd, 0xf7, 0x5c, 0xdb, 0x73, 0x8e, 0x7d, 0x1c, 0x78, 0x9a, 0x31, 0x75, 0x59,
+ 0x6d, 0xe7, 0x09, 0xdf, 0x2f, 0xf2, 0x2a, 0x61, 0xe6, 0xe7, 0xcb, 0x8c, 0x2f, 0x64, 0x72, 0x89,
+ 0x69, 0x95, 0xa3, 0x58, 0xc4, 0x65, 0x89, 0x45, 0xc6, 0x0a, 0x5c, 0xec, 0x51, 0xca, 0x38, 0x43,
+ 0xb9, 0x48, 0x04, 0x2f, 0xe6, 0xa5, 0xe0, 0x8a, 0x93, 0x81, 0x4b, 0x46, 0x0c, 0xfc, 0x55, 0x92,
+ 0x93, 0x87, 0xd0, 0x15, 0x3c, 0xc7, 0xd0, 0x9b, 0x7a, 0xb3, 0x93, 0x25, 0x99, 0xbb, 0xfa, 0x7c,
+ 0x95, 0xe4, 0x73, 0xca, 0x73, 0xa4, 0xa6, 0x4e, 0xee, 0xc1, 0x80, 0xa5, 0x58, 0x28, 0xa6, 0x7e,
+ 0x0d, 0x3b, 0x53, 0x6f, 0x36, 0xa4, 0x4d, 0x1c, 0xdd, 0x87, 0xae, 0x46, 0x12, 0x80, 0x1e, 0x3d,
+ 0x5f, 0x9d, 0x9d, 0xd3, 0xc9, 0x07, 0x7a, 0xfc, 0x92, 0x3e, 0xbb, 0x38, 0xa7, 0x13, 0x2f, 0x7a,
+ 0x0a, 0xbd, 0x55, 0x92, 0xaf, 0x51, 0x11, 0x02, 0xdd, 0x22, 0xde, 0xd7, 0xab, 0x0d, 0xa9, 0x19,
+ 0x93, 0x4f, 0xa1, 0x1b, 0x27, 0xb9, 0x0c, 0x3b, 0x53, 0x7f, 0x16, 0x2c, 0x8f, 0xaf, 0xed, 0x80,
+ 0x9a, 0x52, 0xf4, 0xbb, 0x0f, 0xfe, 0x73, 0xbe, 0x25, 0x27, 0xd0, 0x61, 0xa9, 0x6d, 0xee, 0xb0,
+ 0x54, 0x6f, 0xca, 0x7d, 0xb8, 0xdb, 0x94, 0x8b, 0x75, 0x2d, 0x65, 0x32, 0xde, 0xe6, 0x98, 0x86,
+ 0xfe, 0xd4, 0x9b, 0x0d, 0x68, 0x13, 0x93, 0x2f, 0xa0, 0xab, 0x62, 0x79, 0x15, 0x76, 0xa7, 0xde,
+ 0x2c, 0x58, 0x86, 0x87, 0x25, 0x2f, 0x62, 0x79, 0x75, 0x86, 0xbb, 0x97, 0x42, 0xb3, 0x28, 0xa8,
+ 0x41, 0x35, 0x1b, 0x3c, 0x7a, 0xeb, 0x06, 0xc9, 0x5d, 0x18, 0xc4, 0x49, 0xbe, 0x91, 0xa8, 0x64,
+ 0xd8, 0x9b, 0xfa, 0xb3, 0x21, 0xed, 0xc7, 0xe6, 0x8b, 0xa5, 0x26, 0xb8, 0xe0, 0xbc, 0x0c, 0x53,
+ 0xb3, 0x56, 0x8b, 0xe0, 0x1f, 0x39, 0x2f, 0xf5, 0x7a, 0xd4, 0xd4, 0xc9, 0x63, 0x18, 0x56, 0x22,
+ 0xdf, 0xec, 0x50, 0x25, 0x97, 0x21, 0x1a, 0xf0, 0xe9, 0x01, 0xfc, 0x93, 0xc8, 0xbf, 0xd7, 0x15,
+ 0xd3, 0x30, 0xa8, 0x6c, 0x44, 0x96, 0x30, 0x90, 0xbf, 0xc4, 0x62, 0xcf, 0x8a, 0x2c, 0xdc, 0xdd,
+ 0xec, 0x59, 0xdb, 0x4a, 0xdd, 0xe3, 0x70, 0xe4, 0x09, 0x04, 0xdb, 0x8a, 0xe5, 0xe9, 0xb6, 0x4a,
+ 0xae, 0x50, 0x85, 0x99, 0x69, 0xbb, 0x7b, 0x68, 0xfb, 0xf6, 0x50, 0x34, 0x9d, 0x6d, 0x74, 0xf4,
+ 0xb7, 0x07, 0xfd, 0x0b, 0xc1, 0xb2, 0x0c, 0xc5, 0x7b, 0x53, 0xc3, 0xf1, 0xdb, 0x7d, 0x37, 0x7e,
+ 0x8f, 0xfe, 0x1f, 0xbf, 0x0b, 0xe8, 0x67, 0x4c, 0xb1, 0x1c, 0xa5, 0x65, 0xf7, 0xa3, 0x03, 0xf4,
+ 0x87, 0xba, 0x60, 0xd0, 0x0e, 0x15, 0x01, 0x0c, 0xdc, 0x14, 0xd1, 0xd7, 0x10, 0xb4, 0x30, 0xfa,
+ 0x18, 0x0b, 0x2c, 0xb9, 0x3b, 0xc6, 0x7a, 0x5c, 0xe7, 0x76, 0xf5, 0x31, 0x36, 0xb9, 0x9d, 0x8c,
+ 0x7e, 0x86, 0x51, 0x5b, 0x38, 0x72, 0x0a, 0xbd, 0x3d, 0xaa, 0x4b, 0xee, 0x58, 0xb3, 0x11, 0x99,
+ 0x80, 0x5f, 0x89, 0xdc, 0x92, 0xa6, 0x87, 0xe4, 0x01, 0x04, 0x8a, 0xed, 0x91, 0x57, 0x6a, 0x23,
+ 0x31, 0x31, 0x94, 0x1d, 0x51, 0xb0, 0xa9, 0x35, 0x26, 0xd1, 0x6f, 0x5d, 0x18, 0xb5, 0x05, 0xd6,
+ 0x73, 0x4b, 0x14, 0xaf, 0x51, 0xb8, 0xb9, 0xeb, 0x88, 0x84, 0xd0, 0x4f, 0xf8, 0x7e, 0x1f, 0x17,
+ 0xa9, 0xdd, 0x9a, 0x0b, 0xc9, 0x39, 0x8c, 0x98, 0xe4, 0x79, 0xac, 0x30, 0xdd, 0x08, 0xdc, 0x99,
+ 0x45, 0x82, 0x65, 0xf4, 0xef, 0x07, 0x68, 0xfe, 0xcc, 0x42, 0x29, 0xee, 0x68, 0xc0, 0x0e, 0x01,
+ 0xf9, 0x04, 0x00, 0xdf, 0x28, 0x11, 0x6f, 0x62, 0x91, 0xd5, 0x22, 0x0e, 0xe9, 0xd0, 0x64, 0x56,
+ 0x22, 0x93, 0xfa, 0xdb, 0xb0, 0x78, 0x6d, 0x55, 0xd3, 0x43, 0x72, 0x1f, 0x20, 0x65, 0x7b, 0x2c,
+ 0x24, 0xe3, 0x85, 0xbb, 0x2e, 0xad, 0x8c, 0x66, 0x52, 0xc5, 0x99, 0x0c, 0xfb, 0x35, 0x93, 0x7a,
+ 0xac, 0xcf, 0x4f, 0x29, 0x18, 0x17, 0xda, 0x7e, 0x06, 0x86, 0x8c, 0x26, 0x26, 0x5f, 0xc1, 0x29,
+ 0xbe, 0xc1, 0xa4, 0x52, 0x8c, 0x17, 0x9b, 0x16, 0x6b, 0x32, 0x1c, 0x1a, 0xe4, 0x87, 0x4d, 0xf5,
+ 0xa2, 0xe1, 0x4f, 0x92, 0xcf, 0xe1, 0x4e, 0x26, 0xe2, 0x04, 0x37, 0x25, 0x0a, 0xc6, 0xd3, 0xba,
+ 0x01, 0x4c, 0xc3, 0xd8, 0x14, 0x5e, 0x98, 0xbc, 0xc1, 0x3e, 0x84, 0x31, 0xe3, 0xd7, 0xa7, 0x0e,
+ 0x0c, 0xf2, 0x98, 0xf1, 0xd6, 0x9c, 0xf7, 0x4a, 0x08, 0x5a, 0x34, 0x19, 0xcf, 0xb4, 0xa1, 0x15,
+ 0xa5, 0x89, 0xc9, 0x67, 0x30, 0x6e, 0xc8, 0xb7, 0xba, 0xd5, 0xf2, 0x9f, 0xb8, 0xf4, 0xba, 0xd6,
+ 0xef, 0x63, 0x18, 0x6a, 0x9b, 0x94, 0x65, 0x9c, 0xa0, 0x91, 0x68, 0x48, 0x0f, 0x89, 0xe8, 0x4f,
+ 0x0f, 0xc6, 0x37, 0x2e, 0xec, 0x5b, 0x4f, 0xc2, 0x29, 0xf4, 0xec, 0x9d, 0xaf, 0x57, 0xb2, 0x91,
+ 0x3e, 0x21, 0xe6, 0x8a, 0xa3, 0xb0, 0xf3, 0xbb, 0x50, 0x2b, 0x55, 0x0a, 0x5e, 0xa2, 0x50, 0x0c,
+ 0x9d, 0xb4, 0xad, 0x4c, 0xa3, 0xd4, 0xd1, 0x41, 0xa9, 0xe8, 0x0f, 0x0f, 0x8e, 0x5f, 0x08, 0xfe,
+ 0x0a, 0x13, 0xf5, 0x1d, 0x2f, 0x76, 0x2c, 0x23, 0x0f, 0xc0, 0x7f, 0xc5, 0xb7, 0xa1, 0x77, 0xf3,
+ 0x7a, 0x3f, 0xe7, 0x5b, 0xaa, 0x2b, 0xe4, 0x11, 0xf4, 0x55, 0xed, 0x29, 0xf6, 0x11, 0xb8, 0xd3,
+ 0x72, 0xe4, 0xba, 0x40, 0x1d, 0x82, 0x3c, 0x6a, 0x59, 0x81, 0x6f, 0xd0, 0x93, 0x6b, 0x8e, 0xb1,
+ 0x46, 0xd5, 0x98, 0x43, 0xf4, 0x57, 0x07, 0x4e, 0xae, 0x7b, 0x7a, 0xe3, 0x17, 0xde, 0x7f, 0xf1,
+ 0xe3, 0xce, 0x3b, 0xfa, 0xf1, 0x13, 0x38, 0x76, 0x3e, 0xbb, 0x31, 0x2f, 0x8c, 0x7f, 0xab, 0x29,
+ 0x8f, 0x64, 0xfb, 0x06, 0x9f, 0xc1, 0xa4, 0x65, 0xb5, 0x9b, 0xd6, 0x0b, 0x75, 0x8b, 0x3b, 0x8f,
+ 0xb7, 0x37, 0xd4, 0xff, 0x06, 0x46, 0xd6, 0xc1, 0xea, 0x19, 0x8e, 0x6e, 0x33, 0xbb, 0x20, 0x3b,
+ 0x04, 0xdb, 0x9e, 0xf9, 0x8b, 0xf0, 0xf8, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x62, 0x5c, 0xf8,
+ 0x18, 0x65, 0x08, 0x00, 0x00,
}
« scheduler/appengine/messages/cron.proto ('K') | « scheduler/appengine/messages/cron.proto ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698