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

Side by Side Diff: tokenserver/api/admin/v1/config.pb.go

Issue 2988283002: tokenserver: Allow customizing list of OAuth scopes to use for CRL fetch. (Closed)
Patch Set: 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/admin/v1/config.proto ('k') | tokenserver/api/admin/v1/pb.discovery.go » ('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/admin/v1/config.proto 2 // source: github.com/luci/luci-go/tokenserver/api/admin/v1/config.proto
3 3
4 package admin 4 package admin
5 5
6 import proto "github.com/golang/protobuf/proto" 6 import proto "github.com/golang/protobuf/proto"
7 import fmt "fmt" 7 import fmt "fmt"
8 import math "math" 8 import math "math"
9 9
10 // Reference imports to suppress errors if they are not otherwise used. 10 // Reference imports to suppress errors if they are not otherwise used.
(...skipping 25 matching lines...) Expand all
36 // has a private key and certificate with Common Name set to the FQDN of this 36 // has a private key and certificate with Common Name set to the FQDN of this
37 // node, e.g. "CN=slave43-c1.c.chromecompute.google.com.internal". 37 // node, e.g. "CN=slave43-c1.c.chromecompute.google.com.internal".
38 // 38 //
39 // The Token Server uses this CN to derive an identity string for a machine. It 39 // The Token Server uses this CN to derive an identity string for a machine. It
40 // splits FQDN into a hostname ("slave43-c1") and a domain name 40 // splits FQDN into a hostname ("slave43-c1") and a domain name
41 // ("c.chromecompute.google.com.internal"), searches for a domain name in 41 // ("c.chromecompute.google.com.internal"), searches for a domain name in
42 // "known_domains" set, and, if it is present, uses parameters described there 42 // "known_domains" set, and, if it is present, uses parameters described there
43 // for generating a token that contains machine's FQDN and certificate serial 43 // for generating a token that contains machine's FQDN and certificate serial
44 // number (among other things, see MachineTokenBody in machine_token.proto). 44 // number (among other things, see MachineTokenBody in machine_token.proto).
45 type CertificateAuthorityConfig struct { 45 type CertificateAuthorityConfig struct {
46 » UniqueId int64 `protobuf:"varint,6,opt,name=unique_id,json=uniqueId" js on:"unique_id,omitempty"` 46 » UniqueId int64 `protobuf:"varint,6,opt,name=unique_id,json=uniqueI d" json:"unique_id,omitempty"`
47 » Cn string `protobuf:"bytes,1,opt,name=cn" json:"cn,omitempty"` 47 » Cn string `protobuf:"bytes,1,opt,name=cn" json:"cn,omitempty" `
48 » CertPath string `protobuf:"bytes,2,opt,name=cert_path,json=certPath" jso n:"cert_path,omitempty"` 48 » CertPath string `protobuf:"bytes,2,opt,name=cert_path,json=certPath " json:"cert_path,omitempty"`
49 » CrlUrl string `protobuf:"bytes,3,opt,name=crl_url,json=crlUrl" json:"c rl_url,omitempty"` 49 » CrlUrl string `protobuf:"bytes,3,opt,name=crl_url,json=crlUrl" js on:"crl_url,omitempty"`
50 » UseOauth bool `protobuf:"varint,4,opt,name=use_oauth,json=useOauth" js on:"use_oauth,omitempty"` 50 » UseOauth bool `protobuf:"varint,4,opt,name=use_oauth,json=useOaut h" json:"use_oauth,omitempty"`
51 » OauthScopes []string `protobuf:"bytes,7,rep,name=oauth_scopes,json=oauth Scopes" json:"oauth_scopes,omitempty"`
51 // KnownDomains describes parameters to use for each particular domain. 52 // KnownDomains describes parameters to use for each particular domain.
52 KnownDomains []*DomainConfig `protobuf:"bytes,5,rep,name=known_domains,j son=knownDomains" json:"known_domains,omitempty"` 53 KnownDomains []*DomainConfig `protobuf:"bytes,5,rep,name=known_domains,j son=knownDomains" json:"known_domains,omitempty"`
53 } 54 }
54 55
55 func (m *CertificateAuthorityConfig) Reset() { *m = Certifica teAuthorityConfig{} } 56 func (m *CertificateAuthorityConfig) Reset() { *m = Certifica teAuthorityConfig{} }
56 func (m *CertificateAuthorityConfig) String() string { return proto.C ompactTextString(m) } 57 func (m *CertificateAuthorityConfig) String() string { return proto.C ompactTextString(m) }
57 func (*CertificateAuthorityConfig) ProtoMessage() {} 58 func (*CertificateAuthorityConfig) ProtoMessage() {}
58 func (*CertificateAuthorityConfig) Descriptor() ([]byte, []int) { return fileDes criptor2, []int{1} } 59 func (*CertificateAuthorityConfig) Descriptor() ([]byte, []int) { return fileDes criptor2, []int{1} }
59 60
60 func (m *CertificateAuthorityConfig) GetUniqueId() int64 { 61 func (m *CertificateAuthorityConfig) GetUniqueId() int64 {
(...skipping 24 matching lines...) Expand all
85 return "" 86 return ""
86 } 87 }
87 88
88 func (m *CertificateAuthorityConfig) GetUseOauth() bool { 89 func (m *CertificateAuthorityConfig) GetUseOauth() bool {
89 if m != nil { 90 if m != nil {
90 return m.UseOauth 91 return m.UseOauth
91 } 92 }
92 return false 93 return false
93 } 94 }
94 95
96 func (m *CertificateAuthorityConfig) GetOauthScopes() []string {
97 if m != nil {
98 return m.OauthScopes
99 }
100 return nil
101 }
102
95 func (m *CertificateAuthorityConfig) GetKnownDomains() []*DomainConfig { 103 func (m *CertificateAuthorityConfig) GetKnownDomains() []*DomainConfig {
96 if m != nil { 104 if m != nil {
97 return m.KnownDomains 105 return m.KnownDomains
98 } 106 }
99 return nil 107 return nil
100 } 108 }
101 109
102 // DomainConfig is used inside CertificateAuthorityConfig. 110 // DomainConfig is used inside CertificateAuthorityConfig.
103 type DomainConfig struct { 111 type DomainConfig struct {
104 // Domain is domain names of hosts this config applies to. 112 // Domain is domain names of hosts this config applies to.
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 proto.RegisterType((*DelegationRule)(nil), "tokenserver.admin.Delegation Rule") 363 proto.RegisterType((*DelegationRule)(nil), "tokenserver.admin.Delegation Rule")
356 proto.RegisterType((*ServiceAccountsPermissions)(nil), "tokenserver.admi n.ServiceAccountsPermissions") 364 proto.RegisterType((*ServiceAccountsPermissions)(nil), "tokenserver.admi n.ServiceAccountsPermissions")
357 proto.RegisterType((*ServiceAccountRule)(nil), "tokenserver.admin.Servic eAccountRule") 365 proto.RegisterType((*ServiceAccountRule)(nil), "tokenserver.admin.Servic eAccountRule")
358 } 366 }
359 367
360 func init() { 368 func init() {
361 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/admin/v1/con fig.proto", fileDescriptor2) 369 proto.RegisterFile("github.com/luci/luci-go/tokenserver/api/admin/v1/con fig.proto", fileDescriptor2)
362 } 370 }
363 371
364 var fileDescriptor2 = []byte{ 372 var fileDescriptor2 = []byte{
365 » // 574 bytes of a gzipped FileDescriptorProto 373 » // 597 bytes of a gzipped FileDescriptorProto
366 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x5f, 0x4b, 0x1b, 0x4d, 374 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0xdf, 0x6a, 0xdb, 0x4a,
367 » 0x14, 0xc6, 0x49, 0xb2, 0x89, 0x9b, 0x79, 0xd5, 0x37, 0x4e, 0xa3, 0x1d, 0x6c, 0xa1, 0x69, 0x40, 375 » 0x10, 0xc6, 0xb1, 0x24, 0xdb, 0xf2, 0xe6, 0xcf, 0x71, 0xf6, 0x38, 0x39, 0x4b, 0xce, 0x81, 0xe3,
368 » 0x48, 0x2f, 0x4c, 0xa8, 0x2d, 0xf4, 0xa2, 0xb4, 0x20, 0xe6, 0xc6, 0x50, 0xa8, 0xac, 0xb6, 0xd0, 376 » 0x18, 0x02, 0xee, 0x45, 0x6c, 0x9a, 0x16, 0x7a, 0x51, 0x5a, 0x08, 0xf1, 0x4d, 0x4c, 0xa1, 0x41,
369 » 0xab, 0x61, 0x9c, 0x3d, 0x26, 0x83, 0xb3, 0x33, 0x71, 0xfe, 0x18, 0xfd, 0x1e, 0xfd, 0x84, 0xfd, 377 » 0x49, 0x0b, 0xbd, 0x5a, 0x36, 0xab, 0x89, 0xbd, 0x44, 0xda, 0x75, 0x76, 0x57, 0x71, 0xf2, 0x00,
370 » 0x24, 0x65, 0x67, 0xc7, 0x9a, 0x60, 0x0a, 0xbd, 0x09, 0x39, 0xcf, 0xef, 0x39, 0x67, 0x78, 0xce, 378 » 0x7d, 0x83, 0x3e, 0x70, 0xd1, 0x48, 0x69, 0x1c, 0xe2, 0x42, 0x6f, 0x8c, 0xe7, 0xfb, 0x7d, 0x33,
371 » 0x61, 0xd1, 0xa7, 0xa9, 0x70, 0x33, 0x7f, 0x39, 0xe4, 0xba, 0x18, 0x49, 0xcf, 0x45, 0xf8, 0x39, 379 » 0xcb, 0x7c, 0x03, 0x22, 0x1f, 0x66, 0xca, 0xcf, 0x8b, 0xab, 0x91, 0x34, 0xf9, 0x38, 0x2b, 0xa4,
372 » 0x9c, 0xea, 0x91, 0xd3, 0xd7, 0xa0, 0x2c, 0x98, 0x5b, 0x30, 0x23, 0x36, 0x17, 0x23, 0x96, 0x17, 380 » 0xc2, 0x9f, 0xa3, 0x99, 0x19, 0x7b, 0x73, 0x03, 0xda, 0x81, 0xbd, 0x03, 0x3b, 0x16, 0x0b, 0x35,
373 » 0x42, 0x8d, 0x6e, 0xdf, 0x8e, 0xb8, 0x56, 0x57, 0x62, 0x3a, 0x9c, 0x1b, 0xed, 0x34, 0xde, 0x59, 381 » 0x16, 0x69, 0xae, 0xf4, 0xf8, 0xee, 0xf5, 0x58, 0x1a, 0x7d, 0xad, 0x66, 0xa3, 0x85, 0x35, 0xde,
374 » 0xb2, 0x0d, 0x83, 0xa5, 0xbf, 0x40, 0x3b, 0x17, 0xa5, 0x78, 0x1e, 0xc4, 0x93, 0xe0, 0xc6, 0x97, 382 » 0xd0, 0x9d, 0x15, 0xdb, 0x08, 0x2d, 0x83, 0x25, 0xd9, 0xb9, 0x2c, 0xc5, 0x0b, 0x14, 0x4f, 0xd1,
375 » 0x68, 0x97, 0x83, 0x71, 0xe2, 0x4a, 0x70, 0xe6, 0x80, 0x32, 0xef, 0x66, 0xda, 0x08, 0x77, 0x4f, 383 » 0x4d, 0xaf, 0xc8, 0xae, 0x04, 0xeb, 0xd5, 0xb5, 0x92, 0xc2, 0x03, 0x17, 0x85, 0x9f, 0x1b, 0xab,
376 » 0x6a, 0xbd, 0xc6, 0xe0, 0xbf, 0xa3, 0xc3, 0xe1, 0x93, 0x39, 0xc3, 0x93, 0x47, 0xff, 0xf1, 0x83, 384 » 0xfc, 0x03, 0x6b, 0xf4, 0xc3, 0xe1, 0xc6, 0xf1, 0xd1, 0xe8, 0xc5, 0x9c, 0xd1, 0xe9, 0x93, 0xff,
377 » 0xbd, 0x9a, 0x96, 0x75, 0xf9, 0x1a, 0xd6, 0xff, 0x55, 0x43, 0xfb, 0x7f, 0x6f, 0xc2, 0x2f, 0x50, 385 » 0xe4, 0xd1, 0x5e, 0x4d, 0x4b, 0x7a, 0x72, 0x0d, 0x1b, 0x7c, 0x0f, 0xc8, 0xfe, 0xef, 0x9b, 0xe8,
378 » 0xdb, 0x2b, 0x71, 0xe3, 0x81, 0x8a, 0x9c, 0xb4, 0x7a, 0xb5, 0x41, 0x23, 0x4b, 0x2b, 0xe1, 0x34, 386 » 0xbf, 0xa4, 0x53, 0x68, 0x75, 0x5b, 0x00, 0x57, 0x29, 0x6b, 0xf5, 0x1b, 0xc3, 0x30, 0x89, 0x2b,
379 » 0xc7, 0xdb, 0xa8, 0xce, 0x15, 0xa9, 0xf5, 0x6a, 0x83, 0x76, 0x56, 0xe7, 0xaa, 0x34, 0x97, 0x6f, 387 » 0xe1, 0x2c, 0xa5, 0xdb, 0x24, 0x90, 0x9a, 0x35, 0xfa, 0x8d, 0x61, 0x27, 0x09, 0xa4, 0x2e, 0xcd,
380 » 0xd0, 0x39, 0x73, 0x33, 0x52, 0x0f, 0x72, 0x5a, 0x0a, 0x67, 0xcc, 0xcd, 0xf0, 0x73, 0xb4, 0xc1, 388 » 0xe5, 0x1b, 0x7c, 0x21, 0xfc, 0x9c, 0x05, 0x28, 0xc7, 0xa5, 0x70, 0x2e, 0xfc, 0x9c, 0xfe, 0x43,
381 » 0x8d, 0xa4, 0xde, 0x48, 0xd2, 0x08, 0xa8, 0xc5, 0x8d, 0xfc, 0x66, 0x64, 0x78, 0xc2, 0x02, 0xd5, 389 » 0xda, 0xd2, 0x66, 0xbc, 0xb0, 0x19, 0x0b, 0x11, 0xb5, 0xa4, 0xcd, 0xbe, 0xd8, 0x0c, 0x9f, 0x70,
382 » 0x65, 0x3c, 0x92, 0xf4, 0x6a, 0x83, 0x34, 0x4b, 0xbd, 0x85, 0xaf, 0x65, 0x8d, 0xc7, 0x68, 0xeb, 390 » 0xc0, 0x4d, 0xb9, 0x1e, 0x8b, 0xfa, 0x8d, 0x61, 0x9c, 0xc4, 0x85, 0x83, 0xcf, 0x65, 0x4d, 0x0f,
383 » 0x5a, 0xe9, 0x85, 0xa2, 0xb9, 0x2e, 0x98, 0x50, 0x96, 0x34, 0x43, 0xf4, 0x57, 0x6b, 0xa2, 0x8f, 391 » 0xc8, 0x26, 0x02, 0xee, 0xa4, 0x59, 0x80, 0x63, 0xed, 0x7e, 0x38, 0xec, 0x24, 0x1b, 0xa8, 0x5d,
384 » 0x83, 0x23, 0x86, 0xdd, 0x0c, 0x5d, 0x95, 0x64, 0xfb, 0x0e, 0x6d, 0x2e, 0x53, 0xbc, 0x87, 0x5a, 392 » 0xa0, 0x44, 0x27, 0x64, 0xeb, 0x46, 0x9b, 0xa5, 0xe6, 0xa9, 0xc9, 0x85, 0xd2, 0x8e, 0x35, 0x31,
385 » 0xd5, 0xbc, 0xb0, 0xc9, 0x76, 0x16, 0x2b, 0xfc, 0x1e, 0xed, 0x15, 0x8c, 0xcf, 0x84, 0x02, 0x1a, 393 » 0x9d, 0xff, 0xd7, 0xa4, 0x33, 0x41, 0x47, 0x9d, 0xc7, 0x26, 0x76, 0x55, 0x92, 0x1b, 0x78, 0xb2,
386 » 0xe6, 0x53, 0x29, 0xae, 0xc0, 0x89, 0x02, 0x48, 0x33, 0x44, 0xef, 0x46, 0x1a, 0x4e, 0xf5, 0x25, 394 » 0xb9, 0x4a, 0xe9, 0x1e, 0x69, 0x55, 0xf3, 0x30, 0xec, 0x4e, 0x52, 0x57, 0xf4, 0x2d, 0xd9, 0xcb,
387 » 0xb2, 0x49, 0x92, 0xd6, 0x3b, 0x8d, 0x49, 0x92, 0x36, 0x3a, 0xc9, 0x24, 0x49, 0x93, 0x4e, 0x73, 395 » 0x85, 0x9c, 0x2b, 0x0d, 0x1c, 0xe7, 0xf3, 0x4c, 0x5d, 0x83, 0x57, 0x39, 0xb0, 0x26, 0xa6, 0xd3,
388 » 0x92, 0xa4, 0xad, 0xce, 0x46, 0xff, 0x0c, 0xed, 0x8e, 0x41, 0xc2, 0x94, 0x39, 0xa1, 0xd5, 0x19, 396 » 0xab, 0x29, 0x5e, 0xf3, 0x53, 0xcd, 0xa6, 0x51, 0x1c, 0x74, 0xc3, 0x69, 0x14, 0x87, 0xdd, 0x68,
389 » 0x98, 0x42, 0x58, 0x2b, 0xb4, 0xb2, 0xf8, 0x03, 0x6a, 0x1a, 0x2f, 0xc1, 0xc6, 0x3b, 0xbe, 0x5e, 397 » 0x1a, 0xc5, 0x51, 0xb7, 0x39, 0x8d, 0xe2, 0x56, 0xb7, 0x3d, 0x38, 0x27, 0xbb, 0x13, 0xc8, 0x60,
390 » 0x17, 0xe6, 0x4f, 0x63, 0xe6, 0x25, 0x64, 0x95, 0xbf, 0xff, 0xb3, 0x8e, 0xb6, 0x57, 0x09, 0xc6, 398 » 0x26, 0xbc, 0x32, 0xfa, 0x1c, 0x6c, 0xae, 0x9c, 0x53, 0x46, 0x3b, 0xfa, 0x8e, 0x34, 0x6d, 0x91,
391 » 0x28, 0x51, 0xac, 0x80, 0x78, 0x85, 0xf0, 0x1f, 0x77, 0x51, 0x53, 0x2f, 0x14, 0x18, 0x52, 0x0f, 399 » 0x81, 0xab, 0x4f, 0x7d, 0xb0, 0x6e, 0x99, 0x5f, 0x8d, 0x49, 0x91, 0x41, 0x52, 0xf9, 0x07, 0x3f,
392 » 0xe9, 0xaa, 0x02, 0xbf, 0x44, 0x6d, 0x03, 0x37, 0x1e, 0xac, 0xd3, 0x86, 0x34, 0x02, 0x79, 0x14, 400 » 0x02, 0xb2, 0xfd, 0x9c, 0x50, 0x4a, 0x22, 0x2d, 0x72, 0xa8, 0x0f, 0x85, 0xff, 0x69, 0x8f, 0x34,
393 » 0xca, 0xe8, 0x4c, 0x4a, 0xbd, 0x80, 0x9c, 0x3a, 0x4d, 0x45, 0x31, 0x07, 0x63, 0xb5, 0x62, 0x0e, 401 » 0xcd, 0x52, 0x83, 0x65, 0x01, 0x6e, 0x57, 0x15, 0xf4, 0x3f, 0xd2, 0xb1, 0x70, 0x5b, 0x80, 0xf3,
394 » 0x48, 0x12, 0xac, 0xdd, 0x48, 0x2f, 0xf4, 0xe9, 0x23, 0xc3, 0x6f, 0x50, 0xe7, 0xa1, 0x8b, 0xf9, 402 » 0xc6, 0xb2, 0x10, 0xc9, 0x93, 0x50, 0xae, 0x2e, 0xb2, 0xcc, 0x2c, 0x21, 0xe5, 0xde, 0x70, 0x95,
395 » 0x5c, 0x80, 0xe2, 0x10, 0x2e, 0xd4, 0xce, 0xfe, 0x8f, 0xfa, 0x71, 0x94, 0xf1, 0x01, 0xda, 0x76, 403 » 0x2f, 0xc0, 0x3a, 0xa3, 0x85, 0x07, 0x16, 0xa1, 0xb5, 0x57, 0xd3, 0x4b, 0x73, 0xf6, 0xc4, 0xe8,
396 » 0xcc, 0x4c, 0xc1, 0xd1, 0x32, 0xa8, 0xe0, 0x40, 0x5a, 0xc1, 0xb8, 0x55, 0xa9, 0xe7, 0x95, 0x88, 404 » 0x2b, 0xd2, 0x7d, 0xec, 0x12, 0x45, 0xaa, 0x40, 0x4b, 0xc0, 0x0b, 0x75, 0x92, 0xbf, 0x6a, 0xfd,
397 » 0x8f, 0xd0, 0x6e, 0xc1, 0xee, 0xe8, 0x2d, 0x93, 0x22, 0x17, 0xee, 0x9e, 0xe6, 0xde, 0x84, 0xb0, 405 » 0xa4, 0x96, 0xe9, 0x21, 0xd9, 0xf6, 0xc2, 0xce, 0xc0, 0xf3, 0x72, 0x51, 0x25, 0x81, 0xb5, 0xd0,
398 » 0x64, 0x23, 0x5c, 0xe0, 0x59, 0xc1, 0xee, 0xbe, 0x47, 0x36, 0x8e, 0xa8, 0xff, 0x03, 0xed, 0xc7, 406 » 0xb8, 0x55, 0xa9, 0x17, 0x95, 0x48, 0x8f, 0xc9, 0x6e, 0x2e, 0xee, 0xf9, 0x9d, 0xc8, 0x54, 0xaa,
399 » 0xf6, 0x63, 0xce, 0xb5, 0x57, 0xce, 0x2e, 0x6f, 0xfb, 0xe3, 0xea, 0xb6, 0x0f, 0xd6, 0x6c, 0x7b, 407 » 0xfc, 0x03, 0x4f, 0x0b, 0x8b, 0xcb, 0xb2, 0x36, 0x5e, 0xe0, 0xef, 0x5c, 0xdc, 0x7f, 0xad, 0xd9,
400 » 0xb5, 0x7b, 0x79, 0xe3, 0x9f, 0x11, 0x7e, 0x0a, 0xff, 0x7d, 0xe9, 0x97, 0xad, 0xf0, 0xc5, 0xbf, 408 » 0xa4, 0x46, 0x83, 0x6f, 0x64, 0xbf, 0x6e, 0x3f, 0x91, 0xd2, 0x14, 0xda, 0xbb, 0xd5, 0xb4, 0xdf,
401 » 0xfb, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x79, 0xa6, 0xb9, 0x32, 0x04, 0x00, 0x00, 409 » 0x3f, 0x4f, 0xfb, 0x70, 0x4d, 0xda, 0xcf, 0xbb, 0x57, 0x13, 0xff, 0x48, 0xe8, 0x4b, 0xf8, 0xe7,
410 » 0xa1, 0x5f, 0xb5, 0xf0, 0xa3, 0xf0, 0xe6, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xd6, 0xfd,
411 » 0x81, 0x55, 0x04, 0x00, 0x00,
402 } 412 }
OLDNEW
« no previous file with comments | « tokenserver/api/admin/v1/config.proto ('k') | tokenserver/api/admin/v1/pb.discovery.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698