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

Side by Side Diff: tokenserver/api/minter/v1/token_minter.pb.go

Issue 2987383002: tokenserver: Protos for service account rules. (Closed)
Patch Set: tokenserver: Protos for service account rules. Created 3 years, 4 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 unified diff | Download patch
« no previous file with comments | « tokenserver/api/minter/v1/token_minter.proto ('k') | tokenserver/api/oauth_token_grant.proto » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Code generated by protoc-gen-go. DO NOT EDIT. 1 // Code generated by protoc-gen-go. DO NOT EDIT.
2 // source: github.com/luci/luci-go/tokenserver/api/minter/v1/token_minter.proto 2 // source: github.com/luci/luci-go/tokenserver/api/minter/v1/token_minter.proto
3 3
4 /* 4 /*
5 Package minter is a generated protocol buffer package. 5 Package minter is a generated protocol buffer package.
6 6
7 It is generated from these files: 7 It is generated from these files:
8 github.com/luci/luci-go/tokenserver/api/minter/v1/token_minter.proto 8 github.com/luci/luci-go/tokenserver/api/minter/v1/token_minter.proto
9 9
10 It has these top-level messages: 10 It has these top-level messages:
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
542 // An end user that wants to act as the service account (perhaps indirec tly). 542 // An end user that wants to act as the service account (perhaps indirec tly).
543 // 543 //
544 // A string of the form "user:<email>". On Swarming, this is an identity of 544 // A string of the form "user:<email>". On Swarming, this is an identity of
545 // a user that posted the task. 545 // a user that posted the task.
546 // 546 //
547 // TODO(vadimsh): Verify that this user is present during MintOAuthToken Grant 547 // TODO(vadimsh): Verify that this user is present during MintOAuthToken Grant
548 // RPC by requiring the end user's credentials, e.g make Swarming forwar d 548 // RPC by requiring the end user's credentials, e.g make Swarming forwar d
549 // user's OAuth token to the token server, where it can be validated. 549 // user's OAuth token to the token server, where it can be validated.
550 // 550 //
551 // Required. 551 // Required.
552 » EndUserIdentity string `protobuf:"bytes,3,opt,name=end_user_identity,jso n=endUserIdentity" json:"end_user_identity,omitempty"` 552 » EndUser string `protobuf:"bytes,3,opt,name=end_user,json=endUser" json:" end_user,omitempty"`
553 // Optional reason why the grant is created. 553 // Optional reason why the grant is created.
554 // 554 //
555 // Used only for logging and auditing purposes. Doesn't become part of t he 555 // Used only for logging and auditing purposes. Doesn't become part of t he
556 // grant. 556 // grant.
557 Intent string `protobuf:"bytes,4,opt,name=intent" json:"intent,omitempty "` 557 Intent string `protobuf:"bytes,4,opt,name=intent" json:"intent,omitempty "`
558 } 558 }
559 559
560 func (m *MintOAuthTokenGrantRequest) Reset() { *m = MintOAuth TokenGrantRequest{} } 560 func (m *MintOAuthTokenGrantRequest) Reset() { *m = MintOAuth TokenGrantRequest{} }
561 func (m *MintOAuthTokenGrantRequest) String() string { return proto.C ompactTextString(m) } 561 func (m *MintOAuthTokenGrantRequest) String() string { return proto.C ompactTextString(m) }
562 func (*MintOAuthTokenGrantRequest) ProtoMessage() {} 562 func (*MintOAuthTokenGrantRequest) ProtoMessage() {}
563 func (*MintOAuthTokenGrantRequest) Descriptor() ([]byte, []int) { return fileDes criptor0, []int{7} } 563 func (*MintOAuthTokenGrantRequest) Descriptor() ([]byte, []int) { return fileDes criptor0, []int{7} }
564 564
565 func (m *MintOAuthTokenGrantRequest) GetServiceAccount() string { 565 func (m *MintOAuthTokenGrantRequest) GetServiceAccount() string {
566 if m != nil { 566 if m != nil {
567 return m.ServiceAccount 567 return m.ServiceAccount
568 } 568 }
569 return "" 569 return ""
570 } 570 }
571 571
572 func (m *MintOAuthTokenGrantRequest) GetValidityDuration() int64 { 572 func (m *MintOAuthTokenGrantRequest) GetValidityDuration() int64 {
573 if m != nil { 573 if m != nil {
574 return m.ValidityDuration 574 return m.ValidityDuration
575 } 575 }
576 return 0 576 return 0
577 } 577 }
578 578
579 func (m *MintOAuthTokenGrantRequest) GetEndUserIdentity() string { 579 func (m *MintOAuthTokenGrantRequest) GetEndUser() string {
580 if m != nil { 580 if m != nil {
581 » » return m.EndUserIdentity 581 » » return m.EndUser
582 } 582 }
583 return "" 583 return ""
584 } 584 }
585 585
586 func (m *MintOAuthTokenGrantRequest) GetIntent() string { 586 func (m *MintOAuthTokenGrantRequest) GetIntent() string {
587 if m != nil { 587 if m != nil {
588 return m.Intent 588 return m.Intent
589 } 589 }
590 return "" 590 return ""
591 } 591 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
630 // MintOAuthTokenViaGrantRequest is passed to MintOAuthTokenViaGrant. 630 // MintOAuthTokenViaGrantRequest is passed to MintOAuthTokenViaGrant.
631 // 631 //
632 // Additional implicit field is the identity of whoever makes this call. It is 632 // Additional implicit field is the identity of whoever makes this call. It is
633 // compared against 'wielder_identity' inside the token. 633 // compared against 'wielder_identity' inside the token.
634 type MintOAuthTokenViaGrantRequest struct { 634 type MintOAuthTokenViaGrantRequest struct {
635 // A previously generated grant, as returned by MintOAuthTokenGrant. 635 // A previously generated grant, as returned by MintOAuthTokenGrant.
636 GrantToken string `protobuf:"bytes,1,opt,name=grant_token,json=grantToke n" json:"grant_token,omitempty"` 636 GrantToken string `protobuf:"bytes,1,opt,name=grant_token,json=grantToke n" json:"grant_token,omitempty"`
637 // The list of OAuth scopes the access token should have. 637 // The list of OAuth scopes the access token should have.
638 // 638 //
639 // The server may reject the request if some scopes are not allowed. 639 // The server may reject the request if some scopes are not allowed.
640 » OauthScopes []string `protobuf:"bytes,2,rep,name=oauth_scopes,json=oauth Scopes" json:"oauth_scopes,omitempty"` 640 » OauthScope []string `protobuf:"bytes,2,rep,name=oauth_scope,json=oauthSc ope" json:"oauth_scope,omitempty"`
641 // Minimally accepted validity duration of the returned OAuth token (sec onds). 641 // Minimally accepted validity duration of the returned OAuth token (sec onds).
642 // 642 //
643 // The server may return a token that lives longer than this. The maximu m is 643 // The server may return a token that lives longer than this. The maximu m is
644 // 1h. An attempt to get a token that lives longer than 1h will result i n 644 // 1h. An attempt to get a token that lives longer than 1h will result i n
645 // an error. 645 // an error.
646 // 646 //
647 // The returned token validity duration doesn't depend on the lifetime o f 647 // The returned token validity duration doesn't depend on the lifetime o f
648 // the grant: it's possible to use a grant that expires in 1 sec to get an 648 // the grant: it's possible to use a grant that expires in 1 sec to get an
649 // access token that lives for 1h. 649 // access token that lives for 1h.
650 // 650 //
651 // Default is 300 sec. 651 // Default is 300 sec.
652 MinValidityDuration int64 `protobuf:"varint,3,opt,name=min_validity_dura tion,json=minValidityDuration" json:"min_validity_duration,omitempty"` 652 MinValidityDuration int64 `protobuf:"varint,3,opt,name=min_validity_dura tion,json=minValidityDuration" json:"min_validity_duration,omitempty"`
653 } 653 }
654 654
655 func (m *MintOAuthTokenViaGrantRequest) Reset() { *m = MintOA uthTokenViaGrantRequest{} } 655 func (m *MintOAuthTokenViaGrantRequest) Reset() { *m = MintOA uthTokenViaGrantRequest{} }
656 func (m *MintOAuthTokenViaGrantRequest) String() string { return prot o.CompactTextString(m) } 656 func (m *MintOAuthTokenViaGrantRequest) String() string { return prot o.CompactTextString(m) }
657 func (*MintOAuthTokenViaGrantRequest) ProtoMessage() {} 657 func (*MintOAuthTokenViaGrantRequest) ProtoMessage() {}
658 func (*MintOAuthTokenViaGrantRequest) Descriptor() ([]byte, []int) { return file Descriptor0, []int{9} } 658 func (*MintOAuthTokenViaGrantRequest) Descriptor() ([]byte, []int) { return file Descriptor0, []int{9} }
659 659
660 func (m *MintOAuthTokenViaGrantRequest) GetGrantToken() string { 660 func (m *MintOAuthTokenViaGrantRequest) GetGrantToken() string {
661 if m != nil { 661 if m != nil {
662 return m.GrantToken 662 return m.GrantToken
663 } 663 }
664 return "" 664 return ""
665 } 665 }
666 666
667 func (m *MintOAuthTokenViaGrantRequest) GetOauthScopes() []string { 667 func (m *MintOAuthTokenViaGrantRequest) GetOauthScope() []string {
668 if m != nil { 668 if m != nil {
669 » » return m.OauthScopes 669 » » return m.OauthScope
670 } 670 }
671 return nil 671 return nil
672 } 672 }
673 673
674 func (m *MintOAuthTokenViaGrantRequest) GetMinValidityDuration() int64 { 674 func (m *MintOAuthTokenViaGrantRequest) GetMinValidityDuration() int64 {
675 if m != nil { 675 if m != nil {
676 return m.MinValidityDuration 676 return m.MinValidityDuration
677 } 677 }
678 return 0 678 return 0
679 } 679 }
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
1065 }, 1065 },
1066 Streams: []grpc.StreamDesc{}, 1066 Streams: []grpc.StreamDesc{},
1067 Metadata: "github.com/luci/luci-go/tokenserver/api/minter/v1/token_minte r.proto", 1067 Metadata: "github.com/luci/luci-go/tokenserver/api/minter/v1/token_minte r.proto",
1068 } 1068 }
1069 1069
1070 func init() { 1070 func init() {
1071 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/minter/v1/to ken_minter.proto", fileDescriptor0) 1071 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/minter/v1/to ken_minter.proto", fileDescriptor0)
1072 } 1072 }
1073 1073
1074 var fileDescriptor0 = []byte{ 1074 var fileDescriptor0 = []byte{
1075 // 1117 bytes of a gzipped FileDescriptorProto 1075 // 1110 bytes of a gzipped FileDescriptorProto
1076 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcd, 0x6e, 0xdb, 0x46, 1076 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0xcf, 0x6e, 0xdb, 0xc6,
1077 0x17, 0x0d, 0x25, 0xd9, 0x91, 0xae, 0x64, 0x9b, 0x1e, 0xd9, 0x8e, 0x3e, 0xe5, 0x4b, 0xed, 0xa8, 1077 0x13, 0x36, 0x2d, 0xd9, 0x96, 0x46, 0xb6, 0x43, 0xaf, 0x6c, 0x47, 0x51, 0x7e, 0xf9, 0xd9, 0x55,
1078 0x45, 0x6b, 0x38, 0x8d, 0x84, 0xa8, 0xe8, 0x0f, 0x90, 0x6e, 0x18, 0x99, 0xb1, 0xe5, 0x44, 0x92, 1078 0x8b, 0xd6, 0x48, 0x1a, 0x09, 0x51, 0xd1, 0x3f, 0x40, 0x7a, 0x61, 0x64, 0xc6, 0x96, 0x13, 0x49,
1079 0x31, 0xa4, 0x1c, 0x74, 0x45, 0xd0, 0xe4, 0x44, 0x1e, 0x44, 0x22, 0x15, 0x72, 0x68, 0xd4, 0xdd, 1079 0xc6, 0x92, 0x72, 0xd0, 0x13, 0x41, 0x93, 0x1b, 0x79, 0x11, 0x89, 0x54, 0xc8, 0xa5, 0x51, 0xf7,
1080 0xf4, 0x09, 0xba, 0xee, 0xa2, 0x9b, 0xf6, 0x09, 0xba, 0xeb, 0x33, 0xf4, 0x49, 0xba, 0xeb, 0xba, 1080 0xd2, 0x27, 0xe8, 0xb1, 0xa7, 0x5e, 0xda, 0x43, 0xcf, 0x7d, 0x8d, 0x3e, 0x49, 0x6f, 0x3d, 0xf7,
1081 0xdb, 0x82, 0x33, 0xa4, 0x44, 0x4a, 0x54, 0xe3, 0x14, 0xe8, 0xc6, 0x10, 0xcf, 0xbd, 0x73, 0xcf, 1081 0x5a, 0x70, 0x77, 0x69, 0x93, 0x12, 0xd5, 0x38, 0x05, 0x7a, 0x11, 0xb8, 0xdf, 0xcc, 0xce, 0x7c,
1082 0x99, 0x73, 0xef, 0xcc, 0x18, 0x8e, 0x47, 0x94, 0x5d, 0x05, 0x97, 0x4d, 0xcb, 0x9d, 0xb4, 0xc6, 1082 0xfb, 0xcd, 0xec, 0xac, 0xe0, 0x70, 0x44, 0xd9, 0x45, 0x74, 0xde, 0x74, 0xfc, 0x49, 0x6b, 0x1c,
1083 0x81, 0x45, 0xf9, 0x9f, 0xc7, 0x23, 0xb7, 0xc5, 0xdc, 0x37, 0xc4, 0xf1, 0x89, 0x77, 0x4d, 0xbc, 1083 0x39, 0x94, 0xff, 0x3c, 0x1e, 0xf9, 0x2d, 0xe6, 0xbf, 0x21, 0x5e, 0x48, 0x82, 0x4b, 0x12, 0xb4,
1084 0x96, 0x39, 0xa5, 0xad, 0x09, 0x75, 0x18, 0xf1, 0x5a, 0xd7, 0x4f, 0x44, 0xc4, 0x10, 0xdf, 0xcd, 1084 0xec, 0x29, 0x6d, 0x4d, 0xa8, 0xc7, 0x48, 0xd0, 0xba, 0x7c, 0x22, 0x2c, 0x96, 0x58, 0x37, 0xa7,
1085 0xa9, 0xe7, 0x32, 0x17, 0xa1, 0x44, 0x76, 0x53, 0x44, 0xea, 0xfb, 0x23, 0xd7, 0x1d, 0x8d, 0x49, 1085 0x81, 0xcf, 0x7c, 0x84, 0x52, 0xde, 0x4d, 0x61, 0xa9, 0xef, 0x8d, 0x7c, 0x7f, 0x34, 0x26, 0x2d,
1086 0x8b, 0x67, 0x5c, 0x06, 0xaf, 0x5b, 0x8c, 0x4e, 0x88, 0xcf, 0xcc, 0xc9, 0x54, 0x2c, 0xaa, 0x9f, 1086 0xee, 0x71, 0x1e, 0xbd, 0x6e, 0x31, 0x3a, 0x21, 0x21, 0xb3, 0x27, 0x53, 0xb1, 0xa9, 0x7e, 0xbc,
1087 0xae, 0xa2, 0x8e, 0x59, 0x03, 0x76, 0xd5, 0xb2, 0xc9, 0x98, 0x8c, 0x4c, 0x46, 0x5d, 0xa7, 0x35, 1087 0x28, 0x75, 0x92, 0x35, 0x62, 0x17, 0x2d, 0x97, 0x8c, 0xc9, 0xc8, 0x66, 0xd4, 0xf7, 0x5a, 0x13,
1088 0x21, 0xbe, 0x6f, 0x8e, 0x88, 0x9f, 0xc0, 0xa2, 0x4a, 0x4f, 0x6f, 0xbd, 0x09, 0xd3, 0xba, 0xa2, 1088 0x12, 0x86, 0xf6, 0x88, 0x84, 0x29, 0x4c, 0x46, 0x7a, 0x7a, 0xeb, 0x43, 0xd8, 0xce, 0x05, 0xf5,
1089 0x0e, 0x31, 0x38, 0x2e, 0x16, 0x37, 0xde, 0xc2, 0xbd, 0x1e, 0x75, 0x58, 0x4f, 0x84, 0xf4, 0x30, 1089 0x88, 0xc5, 0x71, 0xb1, 0xb9, 0xf1, 0x16, 0xee, 0xf6, 0xa8, 0xc7, 0x7a, 0xc2, 0x64, 0xc6, 0x16,
1090 0x82, 0xc9, 0xdb, 0x80, 0xf8, 0x0c, 0x7d, 0x05, 0x35, 0x9f, 0x78, 0xd4, 0x1c, 0xd3, 0xef, 0x88, 1090 0x4c, 0xde, 0x46, 0x24, 0x64, 0xe8, 0x2b, 0xa8, 0x85, 0x24, 0xa0, 0xf6, 0x98, 0x7e, 0x47, 0x5c,
1091 0x2d, 0x16, 0x19, 0x9e, 0x88, 0xd5, 0xa4, 0x03, 0xe9, 0xb0, 0x82, 0xf7, 0xe6, 0xf1, 0xd4, 0xca, 1091 0xb1, 0xc9, 0x0a, 0x84, 0xad, 0xa6, 0xec, 0x2b, 0x07, 0xeb, 0x78, 0xf7, 0xc6, 0x9e, 0xd9, 0xf9,
1092 0xff, 0x43, 0xc9, 0xa7, 0x23, 0xc7, 0x64, 0x81, 0x47, 0x6a, 0x39, 0x9e, 0x3a, 0x07, 0x1a, 0x3f, 1092 0x3f, 0x28, 0x87, 0x74, 0xe4, 0xd9, 0x2c, 0x0a, 0x48, 0x6d, 0x99, 0xbb, 0xde, 0x00, 0x8d, 0x1f,
1093 0xe4, 0xa0, 0x9a, 0xc5, 0x77, 0x00, 0x65, 0x8b, 0x78, 0x8c, 0xbe, 0xa6, 0x96, 0xc9, 0x48, 0x44, 1093 0x96, 0xa1, 0x9a, 0x97, 0x6f, 0x1f, 0x2a, 0x0e, 0x09, 0x18, 0x7d, 0x4d, 0x1d, 0x9b, 0x11, 0x99,
1094 0x91, 0x84, 0xd0, 0x2b, 0xa8, 0xce, 0xca, 0x18, 0xe6, 0x78, 0xe4, 0x7a, 0x94, 0x5d, 0x4d, 0x38, 1094 0x22, 0x0d, 0xa1, 0x57, 0x50, 0xbd, 0x0e, 0x63, 0xd9, 0xe3, 0x91, 0x1f, 0x50, 0x76, 0x31, 0xe1,
1095 0xc3, 0x66, 0xfb, 0xe3, 0xe6, 0x72, 0x1b, 0x9a, 0x5a, 0x9c, 0xae, 0xc4, 0xd9, 0x18, 0xf9, 0x4b, 1095 0x19, 0x36, 0xdb, 0x1f, 0x37, 0xe7, 0xcb, 0xd0, 0x34, 0x12, 0x77, 0x2d, 0xf1, 0xc6, 0x28, 0x9c,
1096 0x18, 0xfa, 0x12, 0x4a, 0xd4, 0xf7, 0x03, 0x62, 0x1b, 0x26, 0xab, 0xe5, 0x0f, 0xa4, 0xc3, 0x72, 1096 0xc3, 0xd0, 0x97, 0x50, 0xa6, 0x61, 0x18, 0x11, 0xd7, 0xb2, 0x59, 0xad, 0xb0, 0xaf, 0x1c, 0x54,
1097 0xbb, 0xde, 0x14, 0x1d, 0x6c, 0xc6, 0x1d, 0x6c, 0xea, 0x71, 0x07, 0x71, 0x51, 0x24, 0x2b, 0x0c, 1097 0xda, 0xf5, 0xa6, 0xa8, 0x60, 0x33, 0xa9, 0x60, 0xd3, 0x4c, 0x2a, 0x88, 0x4b, 0xc2, 0x59, 0x63,
1098 0x7d, 0x0d, 0x20, 0x8c, 0x61, 0x37, 0x53, 0x52, 0x2b, 0x70, 0x21, 0x0f, 0x52, 0x42, 0x92, 0x3b, 1098 0xe8, 0x6b, 0x00, 0x21, 0x0c, 0xbb, 0x9a, 0x92, 0x5a, 0x91, 0x13, 0x79, 0x90, 0x21, 0x92, 0x3e,
1099 0xd5, 0x6f, 0xa6, 0x04, 0x97, 0x58, 0xfc, 0xf3, 0xac, 0x50, 0x5c, 0x93, 0xd7, 0x1b, 0x7f, 0x49, 1099 0xa9, 0x79, 0x35, 0x25, 0xb8, 0xcc, 0x92, 0xcf, 0x93, 0x62, 0x69, 0x45, 0x5d, 0x6d, 0xfc, 0xa5,
1100 0x50, 0x5b, 0xee, 0x81, 0x3f, 0x75, 0x1d, 0x9f, 0x84, 0x04, 0xc4, 0xf3, 0x5c, 0xcf, 0xb0, 0x5c, 1100 0x40, 0x6d, 0xbe, 0x06, 0xe1, 0xd4, 0xf7, 0x42, 0x12, 0x27, 0x20, 0x41, 0xe0, 0x07, 0x96, 0xe3,
1101 0x5b, 0x78, 0xb2, 0x48, 0x10, 0xed, 0x54, 0x0d, 0xb3, 0x3a, 0xae, 0x4d, 0x70, 0x89, 0xc4, 0x3f, 1101 0xbb, 0x42, 0x93, 0xd9, 0x04, 0xf2, 0xa4, 0x7a, 0xec, 0xd5, 0xf1, 0x5d, 0x82, 0xcb, 0x24, 0xf9,
1102 0xd1, 0x87, 0xb0, 0x21, 0x56, 0x47, 0xd3, 0xc3, 0xad, 0x2a, 0xe1, 0x0a, 0x07, 0x7b, 0x02, 0x43, 1102 0x44, 0x1f, 0xc2, 0x86, 0xd8, 0x2d, 0xbb, 0x87, 0x4b, 0x55, 0xc6, 0xeb, 0x1c, 0xec, 0x09, 0x0c,
1103 0x03, 0xd8, 0x8c, 0x9b, 0x2b, 0x48, 0x23, 0x07, 0x0e, 0xb3, 0x68, 0xb2, 0x44, 0xe2, 0x0d, 0x96, 1103 0x0d, 0x60, 0x33, 0x29, 0xae, 0x48, 0x2a, 0x15, 0x38, 0xc8, 0x4b, 0x93, 0x47, 0x12, 0x6f, 0xb0,
1104 0xd2, 0xfc, 0x09, 0x6c, 0x85, 0x8b, 0xa8, 0x45, 0x8c, 0x6b, 0xe2, 0xf9, 0xd4, 0x75, 0xb8, 0x33, 1104 0x0c, 0xe7, 0x4f, 0xe0, 0x4e, 0xbc, 0x89, 0x3a, 0xc4, 0xba, 0x24, 0x41, 0x48, 0x7d, 0x8f, 0x2b,
1105 0x25, 0xbc, 0x19, 0xc1, 0x17, 0x02, 0x6d, 0xfc, 0x2a, 0xc1, 0x4e, 0xe6, 0xae, 0x33, 0x2a, 0xe4, 1105 0x53, 0xc6, 0x9b, 0x12, 0x3e, 0x13, 0x68, 0xe3, 0x37, 0x05, 0xb6, 0x73, 0x4f, 0x9d, 0x13, 0x61,
1106 0xb2, 0x2a, 0x20, 0x1d, 0x50, 0x38, 0xed, 0x46, 0x6a, 0xb4, 0x6b, 0xbb, 0x5c, 0xff, 0x47, 0x59, 1106 0x39, 0x2f, 0x02, 0x32, 0x01, 0xc5, 0xdd, 0x6e, 0x65, 0x5a, 0xbb, 0xb6, 0xc3, 0xf9, 0x7f, 0x94,
1107 0xfa, 0x5f, 0x06, 0x16, 0x4d, 0x52, 0x9e, 0xde, 0xc1, 0xf2, 0x78, 0x01, 0x7b, 0x56, 0x49, 0x76, 1107 0xc7, 0xff, 0x65, 0xe4, 0xd0, 0x74, 0xca, 0xe3, 0x25, 0xac, 0x8e, 0x67, 0xb0, 0x67, 0xeb, 0xe9,
1108 0xf5, 0xac, 0x50, 0x94, 0xe4, 0xdc, 0x59, 0xa1, 0xb8, 0x23, 0xef, 0x36, 0xde, 0x80, 0xbc, 0x58, 1108 0xaa, 0x9e, 0x14, 0x4b, 0x8a, 0xba, 0x7c, 0x52, 0x2c, 0x6d, 0xab, 0x3b, 0x8d, 0x37, 0xa0, 0xce,
1109 0x21, 0x34, 0x39, 0x4d, 0x2f, 0x09, 0x93, 0x27, 0xc9, 0xa4, 0x36, 0xac, 0x93, 0x6f, 0xa7, 0xd4, 1109 0x46, 0x88, 0x45, 0xce, 0xa6, 0x57, 0x84, 0xc8, 0x93, 0xb4, 0x53, 0x1b, 0x56, 0xc9, 0xb7, 0x53,
1110 0xbb, 0xe1, 0x1b, 0xf9, 0xe7, 0xf1, 0x8a, 0x32, 0x1b, 0xbf, 0x4b, 0x50, 0x0f, 0x07, 0xe3, 0x78, 1110 0x1a, 0x5c, 0xf1, 0x83, 0xfc, 0x73, 0x7b, 0x49, 0xcf, 0xc6, 0xef, 0x0a, 0xd4, 0xe3, 0xc6, 0x38,
1111 0x76, 0xe2, 0x53, 0xe7, 0xe5, 0x31, 0xa0, 0xe8, 0x2e, 0x20, 0xb6, 0x41, 0x6d, 0xe2, 0x30, 0xca, 1111 0xbc, 0xbe, 0xf1, 0x99, 0xfb, 0xf2, 0x18, 0x90, 0x9c, 0x05, 0xc4, 0xb5, 0xa8, 0x4b, 0x3c, 0x46,
1112 0x6e, 0x22, 0xf2, 0xed, 0x59, 0xa4, 0x1b, 0x05, 0xd0, 0x23, 0xd8, 0xbe, 0x36, 0xc7, 0xd4, 0xa6, 1112 0xd9, 0x95, 0x4c, 0xbe, 0x75, 0x6d, 0xe9, 0x4a, 0x03, 0x7a, 0x04, 0x5b, 0x97, 0xf6, 0x98, 0xba,
1113 0xec, 0xc6, 0xb0, 0x03, 0x8f, 0xd7, 0xe3, 0x62, 0xf2, 0x58, 0x8e, 0x03, 0xc7, 0x11, 0x8e, 0xea, 1113 0x94, 0x5d, 0x59, 0x6e, 0x14, 0xf0, 0x78, 0x9c, 0x4c, 0x01, 0xab, 0x89, 0xe1, 0x50, 0xe2, 0xa8,
1114 0x50, 0x34, 0x03, 0x9b, 0x12, 0xc7, 0x0a, 0xa7, 0x21, 0x7f, 0x58, 0xc2, 0xb3, 0xef, 0x30, 0x16, 1114 0x0e, 0x25, 0x3b, 0x72, 0x29, 0xf1, 0x9c, 0xb8, 0x1b, 0x0a, 0x07, 0x65, 0x7c, 0xbd, 0x8e, 0x6d,
1115 0x75, 0xc1, 0xaf, 0x15, 0x44, 0x2c, 0xfe, 0x46, 0x7b, 0xb0, 0x1e, 0xfa, 0xec, 0xb0, 0xda, 0x1a, 1115 0xb2, 0x0a, 0x61, 0xad, 0x28, 0x6c, 0xc9, 0x1a, 0xed, 0xc2, 0x6a, 0xac, 0xb3, 0xc7, 0x6a, 0x2b,
1116 0xd7, 0x11, 0x7d, 0x35, 0x7e, 0x91, 0xe0, 0x7e, 0xe6, 0x56, 0xa2, 0x86, 0xef, 0xc0, 0x5a, 0xd2, 1116 0x9c, 0x87, 0x5c, 0x35, 0x7e, 0x51, 0xe0, 0x7e, 0xee, 0x51, 0x64, 0xc1, 0xb7, 0x61, 0x25, 0xad,
1117 0x3b, 0xf1, 0x81, 0x3a, 0x50, 0x9d, 0xdf, 0x76, 0x86, 0x1f, 0x5c, 0x8a, 0x1c, 0xe1, 0x20, 0x6a, 1117 0x9d, 0x58, 0xa0, 0x0e, 0x54, 0x6f, 0xa6, 0x9d, 0x15, 0x46, 0xe7, 0xc2, 0x47, 0x28, 0x88, 0x9a,
1118 0xc6, 0x57, 0x62, 0x53, 0x8b, 0x22, 0x18, 0xcd, 0xd3, 0x63, 0x2c, 0x6b, 0x96, 0xf2, 0x99, 0xd3, 1118 0xc9, 0x48, 0x6c, 0x1a, 0xd2, 0x82, 0xd1, 0x8d, 0x7b, 0x82, 0xe5, 0xf5, 0x52, 0x21, 0xb7, 0x1b,
1119 0xf8, 0x5b, 0x64, 0xf7, 0x40, 0x09, 0xd8, 0x15, 0x97, 0x77, 0xe2, 0x99, 0x0e, 0x8b, 0xed, 0x4e, 1119 0x7f, 0x95, 0x72, 0x0f, 0xb4, 0x88, 0x5d, 0x70, 0x7a, 0x47, 0x81, 0xed, 0xb1, 0x44, 0xee, 0x54,
1120 0xd4, 0x31, 0x2d, 0xcb, 0x0d, 0x1c, 0x16, 0x89, 0x8d, 0xeb, 0x28, 0x02, 0x7d, 0x3f, 0xa3, 0x8f, 1120 0x1c, 0xdb, 0x71, 0xfc, 0xc8, 0x63, 0x92, 0x6c, 0x12, 0x47, 0x13, 0xe8, 0xfb, 0x09, 0x7d, 0x0f,
1121 0x60, 0x9b, 0x38, 0xb6, 0x11, 0xf8, 0xc4, 0x9b, 0xf7, 0x50, 0xe8, 0xdb, 0x22, 0x8e, 0x3d, 0xf4, 1121 0x4a, 0xc4, 0x73, 0xad, 0x28, 0x24, 0x81, 0xa4, 0xb5, 0x46, 0x3c, 0x77, 0x18, 0x92, 0x20, 0xa5,
1122 0x89, 0x37, 0xeb, 0xe0, 0xdc, 0xdc, 0x42, 0xca, 0xdc, 0x9f, 0x22, 0x73, 0x97, 0x84, 0x47, 0xe6, 1122 0x65, 0x31, 0xa3, 0xe5, 0x4f, 0x52, 0xcb, 0x39, 0x9e, 0x52, 0xcb, 0x3d, 0xa8, 0x8c, 0x62, 0x20,
1123 0xee, 0x43, 0x79, 0x14, 0x02, 0xa9, 0xf1, 0x04, 0x0e, 0xfd, 0xeb, 0xe1, 0xbc, 0xbd, 0xad, 0x3f, 1123 0xd3, 0x8d, 0xc0, 0xa1, 0x7f, 0xdd, 0x8b, 0xb7, 0x57, 0xf1, 0x47, 0x05, 0x1e, 0x64, 0xd9, 0x9d,
1124 0x4a, 0xf0, 0x20, 0xad, 0xee, 0x82, 0x9a, 0x29, 0x67, 0xdf, 0xa9, 0xef, 0x21, 0x54, 0xdc, 0xf0, 1124 0x51, 0x3b, 0x23, 0xe4, 0x3b, 0xf9, 0xed, 0x41, 0xc5, 0x8f, 0x9f, 0x3f, 0x2b, 0x74, 0xfc, 0x69,
1125 0x3d, 0x34, 0x7c, 0xcb, 0x9d, 0x12, 0xbf, 0x96, 0xe3, 0x53, 0x57, 0xe6, 0x98, 0xc6, 0x21, 0xd4, 1125 0x3c, 0xb3, 0xe2, 0x1e, 0x03, 0x0e, 0x19, 0x31, 0x82, 0xda, 0xb0, 0x33, 0xa1, 0x9e, 0x35, 0xaf,
1126 0x86, 0xdd, 0x09, 0x75, 0x8c, 0x65, 0xe3, 0xf3, 0xdc, 0xf8, 0xea, 0x84, 0x3a, 0x17, 0x0b, 0xde, 1126 0x72, 0x81, 0xab, 0x5c, 0x9d, 0x50, 0xef, 0x6c, 0x46, 0xe8, 0xc6, 0xcf, 0x0a, 0xfc, 0x7f, 0x11,
1127 0x37, 0x7e, 0x96, 0xe0, 0x83, 0x55, 0xca, 0x22, 0xeb, 0x1e, 0x42, 0xc5, 0xb4, 0x2c, 0xe2, 0xfb, 1127 0x2f, 0x29, 0xdc, 0x07, 0xb0, 0x6e, 0x3b, 0x0e, 0x09, 0xc3, 0x0c, 0xb3, 0x8a, 0xc0, 0xfe, 0x7b,
1128 0x29, 0x6d, 0x65, 0x81, 0xfd, 0xf7, 0xe6, 0x1d, 0x3d, 0x05, 0xb4, 0xfc, 0x84, 0x21, 0x19, 0x2a, 1128 0xe9, 0x1e, 0x3e, 0x05, 0x34, 0xff, 0x5e, 0x21, 0x15, 0xd6, 0x87, 0xfd, 0x17, 0xfd, 0xc1, 0xab,
1129 0xc3, 0xfe, 0x8b, 0xfe, 0xe0, 0x55, 0xdf, 0x50, 0x5e, 0x9e, 0x0c, 0xe4, 0x3b, 0xa8, 0x0a, 0x5b, 1129 0xbe, 0xa5, 0xbd, 0x3c, 0x1a, 0xa8, 0x4b, 0xa8, 0x0a, 0x77, 0x8c, 0x63, 0xad, 0xfd, 0xf9, 0x17,
1130 0xda, 0xa9, 0xd2, 0xfe, 0xfc, 0x0b, 0x03, 0x6b, 0x8a, 0x00, 0xa5, 0xa3, 0x3f, 0x24, 0x28, 0xcd, 1130 0x16, 0x36, 0x34, 0x01, 0x2a, 0x0f, 0xff, 0x50, 0xa0, 0x7c, 0xfd, 0x06, 0xa0, 0x0a, 0xac, 0x19,
1131 0x9e, 0x05, 0x54, 0x86, 0xbb, 0xda, 0xb0, 0xd3, 0x51, 0x35, 0x4d, 0xbe, 0x83, 0xfe, 0x07, 0xbb, 1131 0xc3, 0x4e, 0x47, 0x37, 0x0c, 0x75, 0x09, 0xdd, 0x83, 0x9d, 0x61, 0xdf, 0x18, 0x9e, 0x9e, 0x0e,
1132 0xc3, 0xbe, 0x36, 0x3c, 0x3f, 0x1f, 0x60, 0x5d, 0x3d, 0x36, 0xb4, 0xee, 0x49, 0x5f, 0xd1, 0x87, 1132 0xb0, 0xa9, 0x1f, 0x5a, 0x46, 0xf7, 0xa8, 0xaf, 0x99, 0x43, 0xac, 0xab, 0x0a, 0xaa, 0xc3, 0x6e,
1133 0x58, 0x95, 0x25, 0x54, 0x87, 0xbd, 0x64, 0x48, 0x1f, 0xbc, 0x50, 0xfb, 0x86, 0xfe, 0xcd, 0xb9, 1133 0xda, 0x64, 0x0e, 0x5e, 0xe8, 0x7d, 0xcb, 0xfc, 0xe6, 0x54, 0x57, 0x97, 0xd1, 0x16, 0x6c, 0x3c,
1134 0x2a, 0xe7, 0xd0, 0x36, 0x6c, 0x3c, 0x53, 0x8e, 0x0d, 0xbd, 0xdb, 0x53, 0x35, 0x5d, 0xe9, 0x9d, 1134 0xd3, 0x0e, 0x2d, 0xb3, 0xdb, 0xd3, 0x0d, 0x53, 0xeb, 0x9d, 0xaa, 0x85, 0xd8, 0x3d, 0x86, 0x3a,
1135 0xcb, 0xf9, 0x30, 0x3d, 0x84, 0x3a, 0x2a, 0xd6, 0xbb, 0xcf, 0xbb, 0x1d, 0x45, 0x57, 0x8d, 0xe7, 1135 0x3a, 0x36, 0xbb, 0xcf, 0xbb, 0x1d, 0xcd, 0xd4, 0xad, 0xe7, 0x03, 0xdc, 0xd3, 0x4c, 0xb5, 0x98,
1136 0x03, 0xdc, 0x53, 0x74, 0xb9, 0x10, 0xa7, 0xcf, 0xab, 0xaf, 0x09, 0x62, 0x1d, 0x0f, 0xb5, 0xb0, 1136 0xb8, 0xdf, 0x44, 0x5f, 0x11, 0x89, 0x4d, 0x3c, 0x34, 0xe2, 0xd8, 0xa9, 0x4d, 0xea, 0x2a, 0xba,
1137 0x76, 0x62, 0x91, 0xbc, 0x8e, 0xee, 0x41, 0x95, 0x17, 0xe7, 0x84, 0x0a, 0x3e, 0x19, 0xf6, 0xd4, 1137 0x0b, 0x55, 0x1e, 0x9c, 0x27, 0xd4, 0xf0, 0xd1, 0xb0, 0xa7, 0xf7, 0x4d, 0x43, 0x5d, 0x43, 0x7b,
1138 0xbe, 0xae, 0xc9, 0x77, 0xd1, 0x3e, 0xdc, 0xef, 0x29, 0x9d, 0xd3, 0x6e, 0x5f, 0x8d, 0x82, 0xbd, 1138 0x70, 0xbf, 0xa7, 0x75, 0x8e, 0xbb, 0x7d, 0x5d, 0x1a, 0x7b, 0xdd, 0xbe, 0xd9, 0xed, 0x1f, 0x59,
1139 0x6e, 0x5f, 0xef, 0xf6, 0x4f, 0x0c, 0x15, 0xe3, 0x01, 0x96, 0x8b, 0xed, 0x3f, 0xf3, 0x50, 0xe6, 1139 0x3a, 0xc6, 0x03, 0xac, 0x96, 0xda, 0x7f, 0x16, 0xa0, 0xc2, 0x8b, 0xd1, 0xe3, 0x13, 0x1d, 0x4d,
1140 0xcd, 0xe8, 0xf1, 0x4b, 0x1e, 0x4d, 0x40, 0x5e, 0x7c, 0x50, 0xd1, 0xa3, 0xcc, 0xd7, 0x2c, 0xfb, 1140 0x40, 0x9d, 0x7d, 0x3d, 0xd1, 0xa3, 0xdc, 0xa7, 0x2b, 0xff, 0x7f, 0x4e, 0xfd, 0xd3, 0xdb, 0x39,
1141 0x5f, 0x9f, 0xfa, 0xa7, 0xb7, 0x4b, 0x8e, 0x86, 0xe4, 0x1a, 0xaa, 0x19, 0x77, 0x1b, 0x6a, 0xae, 1141 0xcb, 0x26, 0xb9, 0x84, 0x6a, 0xce, 0x20, 0x43, 0xcd, 0x45, 0x41, 0xf2, 0x87, 0x77, 0xbd, 0x75,
1142 0x2a, 0x92, 0x7d, 0x9f, 0xd7, 0x5b, 0xb7, 0xce, 0x4f, 0xf3, 0x2e, 0x1c, 0xfb, 0xd5, 0xbc, 0xd9, 1142 0x6b, 0xff, 0x6c, 0xde, 0x99, 0x4b, 0xbf, 0x38, 0x6f, 0xfe, 0x14, 0x5b, 0x9c, 0x77, 0xd1, 0x34,
1143 0x17, 0xdb, 0x6a, 0xde, 0x55, 0xf7, 0xc9, 0xf7, 0xb0, 0x97, 0x7d, 0x6c, 0xd0, 0x93, 0x77, 0x97, 1143 0xf9, 0x1e, 0x76, 0xf3, 0xaf, 0x0d, 0x7a, 0xf2, 0xee, 0x50, 0x33, 0x57, 0xbf, 0xde, 0x7e, 0x9f,
1144 0x5a, 0x38, 0xfc, 0xf5, 0xf6, 0xfb, 0x2c, 0x11, 0x02, 0x2e, 0xd7, 0xf9, 0xd1, 0xfa, 0xec, 0xef, 1144 0x2d, 0x82, 0xc0, 0xf9, 0x2a, 0xbf, 0x5a, 0x9f, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x3c,
1145 0x00, 0x00, 0x00, 0xff, 0xff, 0x9b, 0x07, 0xeb, 0xf4, 0xbf, 0x0b, 0x00, 0x00, 1145 0x11, 0x1e, 0xac, 0x0b, 0x00, 0x00,
1146 } 1146 }
OLDNEW
« no previous file with comments | « tokenserver/api/minter/v1/token_minter.proto ('k') | tokenserver/api/oauth_token_grant.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698