| OLD | NEW |
| 1 // Code generated by protoc-gen-go. | 1 // Code generated by protoc-gen-go. DO NOT EDIT. |
| 2 // source: infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project
_config.proto | 2 // source: github.com/luci/luci-go/buildbucket/client/cmd/buildbucket/proto/proj
ect_config.proto |
| 3 // DO NOT EDIT! | |
| 4 | 3 |
| 5 /* | 4 /* |
| 6 Package buildbucket is a generated protocol buffer package. | 5 Package buildbucket is a generated protocol buffer package. |
| 7 | 6 |
| 8 It is generated from these files: | 7 It is generated from these files: |
| 9 » infra/tools/swarming-transition/cmd/swarmbucketbuilders/proto/project_co
nfig.proto | 8 » github.com/luci/luci-go/buildbucket/client/cmd/buildbucket/proto/project
_config.proto |
| 10 | 9 |
| 11 It has these top-level messages: | 10 It has these top-level messages: |
| 12 Acl | 11 Acl |
| 12 AclSet |
| 13 Swarming | 13 Swarming |
| 14 Bucket | 14 Bucket |
| 15 BuildbucketCfg | 15 BuildbucketCfg |
| 16 */ | 16 */ |
| 17 package buildbucket | 17 package buildbucket |
| 18 | 18 |
| 19 import proto "github.com/golang/protobuf/proto" | 19 import proto "github.com/golang/protobuf/proto" |
| 20 import fmt "fmt" | 20 import fmt "fmt" |
| 21 import math "math" | 21 import math "math" |
| 22 | 22 |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 return "" | 103 return "" |
| 104 } | 104 } |
| 105 | 105 |
| 106 func (m *Acl) GetIdentity() string { | 106 func (m *Acl) GetIdentity() string { |
| 107 if m != nil && m.Identity != nil { | 107 if m != nil && m.Identity != nil { |
| 108 return *m.Identity | 108 return *m.Identity |
| 109 } | 109 } |
| 110 return "" | 110 return "" |
| 111 } | 111 } |
| 112 | 112 |
| 113 // A set of Acl messages. Can be referenced in a bucket by name. |
| 114 type AclSet struct { |
| 115 // A name of the ACL set. Required. Must match regex '^[a-z0-9_]+$'. |
| 116 Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` |
| 117 // List of access control rules. |
| 118 // The order does not matter. |
| 119 Acls []*Acl `protobuf:"bytes,2,rep,name=acls" json:"acls,omi
tempty"` |
| 120 XXX_unrecognized []byte `json:"-"` |
| 121 } |
| 122 |
| 123 func (m *AclSet) Reset() { *m = AclSet{} } |
| 124 func (m *AclSet) String() string { return proto.CompactTextString(m)
} |
| 125 func (*AclSet) ProtoMessage() {} |
| 126 func (*AclSet) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} } |
| 127 |
| 128 func (m *AclSet) GetName() string { |
| 129 if m != nil && m.Name != nil { |
| 130 return *m.Name |
| 131 } |
| 132 return "" |
| 133 } |
| 134 |
| 135 func (m *AclSet) GetAcls() []*Acl { |
| 136 if m != nil { |
| 137 return m.Acls |
| 138 } |
| 139 return nil |
| 140 } |
| 141 |
| 113 // Configuration of buildbucket-swarming integration for one bucket. | 142 // Configuration of buildbucket-swarming integration for one bucket. |
| 114 type Swarming struct { | 143 type Swarming struct { |
| 115 // Hostname of the swarming instance, e.g. "chromium-swarm.appspot.com". | 144 // Hostname of the swarming instance, e.g. "chromium-swarm.appspot.com". |
| 116 Hostname *string `protobuf:"bytes,1,opt,name=hostname" json:"hostname,om
itempty"` | 145 Hostname *string `protobuf:"bytes,1,opt,name=hostname" json:"hostname,om
itempty"` |
| 117 // Used to generate a URL for Build, may contain parameters | 146 // Used to generate a URL for Build, may contain parameters |
| 118 // {swarming_hostname}, {task_id}, {bucket} and {builder}. Defaults to: | 147 // {swarming_hostname}, {task_id}, {bucket} and {builder}. Defaults to: |
| 119 // https://{swarming_hostname}/user/task/{task_id} | 148 // https://{swarming_hostname}/user/task/{task_id} |
| 120 UrlFormat *string `protobuf:"bytes,2,opt,name=url_format,json=urlFormat"
json:"url_format,omitempty"` | 149 UrlFormat *string `protobuf:"bytes,2,opt,name=url_format,json=urlFormat"
json:"url_format,omitempty"` |
| 121 // Defines default values for builders. | 150 // Defines default values for builders. |
| 122 BuilderDefaults *Swarming_Builder `protobuf:"bytes,3,opt,name=builder_de
faults,json=builderDefaults" json:"builder_defaults,omitempty"` | 151 BuilderDefaults *Swarming_Builder `protobuf:"bytes,3,opt,name=builder_de
faults,json=builderDefaults" json:"builder_defaults,omitempty"` |
| 123 // Configuration for each builder. | 152 // Configuration for each builder. |
| 124 // Swarming tasks are created only for builds for builders that are not | 153 // Swarming tasks are created only for builds for builders that are not |
| 125 // explicitly specified. | 154 // explicitly specified. |
| 126 Builders []*Swarming_Builder `protobuf:"bytes,4,rep,name=builders" json:
"builders,omitempty"` | 155 Builders []*Swarming_Builder `protobuf:"bytes,4,rep,name=builders" json:
"builders,omitempty"` |
| 127 // Percentage of builds that should use a canary swarming task template. | 156 // Percentage of builds that should use a canary swarming task template. |
| 128 // A value from 0 to 100. | 157 // A value from 0 to 100. |
| 129 TaskTemplateCanaryPercentage *uint32 `protobuf:"varint,5,opt,name=task_t
emplate_canary_percentage,json=taskTemplateCanaryPercentage" json:"task_template
_canary_percentage,omitempty"` | 158 TaskTemplateCanaryPercentage *uint32 `protobuf:"varint,5,opt,name=task_t
emplate_canary_percentage,json=taskTemplateCanaryPercentage" json:"task_template
_canary_percentage,omitempty"` |
| 130 XXX_unrecognized []byte `json:"-"` | 159 XXX_unrecognized []byte `json:"-"` |
| 131 } | 160 } |
| 132 | 161 |
| 133 func (m *Swarming) Reset() { *m = Swarming{} } | 162 func (m *Swarming) Reset() { *m = Swarming{} } |
| 134 func (m *Swarming) String() string { return proto.CompactTextString(m
) } | 163 func (m *Swarming) String() string { return proto.CompactTextString(m
) } |
| 135 func (*Swarming) ProtoMessage() {} | 164 func (*Swarming) ProtoMessage() {} |
| 136 func (*Swarming) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1}
} | 165 func (*Swarming) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2}
} |
| 137 | 166 |
| 138 func (m *Swarming) GetHostname() string { | 167 func (m *Swarming) GetHostname() string { |
| 139 if m != nil && m.Hostname != nil { | 168 if m != nil && m.Hostname != nil { |
| 140 return *m.Hostname | 169 return *m.Hostname |
| 141 } | 170 } |
| 142 return "" | 171 return "" |
| 143 } | 172 } |
| 144 | 173 |
| 145 func (m *Swarming) GetUrlFormat() string { | 174 func (m *Swarming) GetUrlFormat() string { |
| 146 if m != nil && m.UrlFormat != nil { | 175 if m != nil && m.UrlFormat != nil { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 // | 219 // |
| 191 // Fields properties and properties_j can be used together, but cannot b
oth | 220 // Fields properties and properties_j can be used together, but cannot b
oth |
| 192 // specify values for same property. | 221 // specify values for same property. |
| 193 PropertiesJ []string `protobuf:"bytes,4,rep,name=properties_j,json=
propertiesJ" json:"properties_j,omitempty"` | 222 PropertiesJ []string `protobuf:"bytes,4,rep,name=properties_j,json=
propertiesJ" json:"properties_j,omitempty"` |
| 194 XXX_unrecognized []byte `json:"-"` | 223 XXX_unrecognized []byte `json:"-"` |
| 195 } | 224 } |
| 196 | 225 |
| 197 func (m *Swarming_Recipe) Reset() { *m = Swarming_Recipe{} } | 226 func (m *Swarming_Recipe) Reset() { *m = Swarming_Recipe{} } |
| 198 func (m *Swarming_Recipe) String() string { return proto.CompactTextS
tring(m) } | 227 func (m *Swarming_Recipe) String() string { return proto.CompactTextS
tring(m) } |
| 199 func (*Swarming_Recipe) ProtoMessage() {} | 228 func (*Swarming_Recipe) ProtoMessage() {} |
| 200 func (*Swarming_Recipe) Descriptor() ([]byte, []int) { return fileDescriptor0, [
]int{1, 0} } | 229 func (*Swarming_Recipe) Descriptor() ([]byte, []int) { return fileDescriptor0, [
]int{2, 0} } |
| 201 | 230 |
| 202 func (m *Swarming_Recipe) GetRepository() string { | 231 func (m *Swarming_Recipe) GetRepository() string { |
| 203 if m != nil && m.Repository != nil { | 232 if m != nil && m.Repository != nil { |
| 204 return *m.Repository | 233 return *m.Repository |
| 205 } | 234 } |
| 206 return "" | 235 return "" |
| 207 } | 236 } |
| 208 | 237 |
| 209 func (m *Swarming_Recipe) GetName() string { | 238 func (m *Swarming_Recipe) GetName() string { |
| 210 if m != nil && m.Name != nil { | 239 if m != nil && m.Name != nil { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 // Maximum build execution time. Not to be confused with pending time. | 285 // Maximum build execution time. Not to be confused with pending time. |
| 257 ExecutionTimeoutSecs *uint32 `protobuf:"varint,7,opt,name=execution_time
out_secs,json=executionTimeoutSecs" json:"execution_timeout_secs,omitempty"` | 286 ExecutionTimeoutSecs *uint32 `protobuf:"varint,7,opt,name=execution_time
out_secs,json=executionTimeoutSecs" json:"execution_timeout_secs,omitempty"` |
| 258 // Caches that should be present on the bot. | 287 // Caches that should be present on the bot. |
| 259 Caches []*Swarming_Builder_CacheEntry `protobuf:"bytes,9,rep,n
ame=caches" json:"caches,omitempty"` | 288 Caches []*Swarming_Builder_CacheEntry `protobuf:"bytes,9,rep,n
ame=caches" json:"caches,omitempty"` |
| 260 XXX_unrecognized []byte `json:"-"` | 289 XXX_unrecognized []byte `json:"-"` |
| 261 } | 290 } |
| 262 | 291 |
| 263 func (m *Swarming_Builder) Reset() { *m = Swarming_Builder{}
} | 292 func (m *Swarming_Builder) Reset() { *m = Swarming_Builder{}
} |
| 264 func (m *Swarming_Builder) String() string { return proto.CompactText
String(m) } | 293 func (m *Swarming_Builder) String() string { return proto.CompactText
String(m) } |
| 265 func (*Swarming_Builder) ProtoMessage() {} | 294 func (*Swarming_Builder) ProtoMessage() {} |
| 266 func (*Swarming_Builder) Descriptor() ([]byte, []int) { return fileDescriptor0,
[]int{1, 1} } | 295 func (*Swarming_Builder) Descriptor() ([]byte, []int) { return fileDescriptor0,
[]int{2, 1} } |
| 267 | 296 |
| 268 func (m *Swarming_Builder) GetName() string { | 297 func (m *Swarming_Builder) GetName() string { |
| 269 if m != nil && m.Name != nil { | 298 if m != nil && m.Name != nil { |
| 270 return *m.Name | 299 return *m.Name |
| 271 } | 300 } |
| 272 return "" | 301 return "" |
| 273 } | 302 } |
| 274 | 303 |
| 275 func (m *Swarming_Builder) GetCategory() string { | 304 func (m *Swarming_Builder) GetCategory() string { |
| 276 if m != nil && m.Category != nil { | 305 if m != nil && m.Category != nil { |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 340 Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` | 369 Path *string `protobuf:"bytes,2,opt,name=path" json:"path,omitempty"` |
| 341 // Valid package version for all packages matched by package name. | 370 // Valid package version for all packages matched by package name. |
| 342 Version *string `protobuf:"bytes,3,opt,name=version" json:"vers
ion,omitempty"` | 371 Version *string `protobuf:"bytes,3,opt,name=version" json:"vers
ion,omitempty"` |
| 343 XXX_unrecognized []byte `json:"-"` | 372 XXX_unrecognized []byte `json:"-"` |
| 344 } | 373 } |
| 345 | 374 |
| 346 func (m *Swarming_Builder_CipdPackage) Reset() { *m = Swarming_Builder_C
ipdPackage{} } | 375 func (m *Swarming_Builder_CipdPackage) Reset() { *m = Swarming_Builder_C
ipdPackage{} } |
| 347 func (m *Swarming_Builder_CipdPackage) String() string { return proto.CompactTex
tString(m) } | 376 func (m *Swarming_Builder_CipdPackage) String() string { return proto.CompactTex
tString(m) } |
| 348 func (*Swarming_Builder_CipdPackage) ProtoMessage() {} | 377 func (*Swarming_Builder_CipdPackage) ProtoMessage() {} |
| 349 func (*Swarming_Builder_CipdPackage) Descriptor() ([]byte, []int) { | 378 func (*Swarming_Builder_CipdPackage) Descriptor() ([]byte, []int) { |
| 350 » return fileDescriptor0, []int{1, 1, 0} | 379 » return fileDescriptor0, []int{2, 1, 0} |
| 351 } | 380 } |
| 352 | 381 |
| 353 func (m *Swarming_Builder_CipdPackage) GetPackageName() string { | 382 func (m *Swarming_Builder_CipdPackage) GetPackageName() string { |
| 354 if m != nil && m.PackageName != nil { | 383 if m != nil && m.PackageName != nil { |
| 355 return *m.PackageName | 384 return *m.PackageName |
| 356 } | 385 } |
| 357 return "" | 386 return "" |
| 358 } | 387 } |
| 359 | 388 |
| 360 func (m *Swarming_Builder_CipdPackage) GetPath() string { | 389 func (m *Swarming_Builder_CipdPackage) GetPath() string { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 381 // A path cannot be shared among multiple caches or CIPD installations. | 410 // A path cannot be shared among multiple caches or CIPD installations. |
| 382 // A task will fail if a file/dir with the same name already exists. | 411 // A task will fail if a file/dir with the same name already exists. |
| 383 Path *string `protobuf:"bytes,2,opt,name=path" json:"path,om
itempty"` | 412 Path *string `protobuf:"bytes,2,opt,name=path" json:"path,om
itempty"` |
| 384 XXX_unrecognized []byte `json:"-"` | 413 XXX_unrecognized []byte `json:"-"` |
| 385 } | 414 } |
| 386 | 415 |
| 387 func (m *Swarming_Builder_CacheEntry) Reset() { *m = Swarming_Builder_Ca
cheEntry{} } | 416 func (m *Swarming_Builder_CacheEntry) Reset() { *m = Swarming_Builder_Ca
cheEntry{} } |
| 388 func (m *Swarming_Builder_CacheEntry) String() string { return proto.CompactText
String(m) } | 417 func (m *Swarming_Builder_CacheEntry) String() string { return proto.CompactText
String(m) } |
| 389 func (*Swarming_Builder_CacheEntry) ProtoMessage() {} | 418 func (*Swarming_Builder_CacheEntry) ProtoMessage() {} |
| 390 func (*Swarming_Builder_CacheEntry) Descriptor() ([]byte, []int) { | 419 func (*Swarming_Builder_CacheEntry) Descriptor() ([]byte, []int) { |
| 391 » return fileDescriptor0, []int{1, 1, 1} | 420 » return fileDescriptor0, []int{2, 1, 1} |
| 392 } | 421 } |
| 393 | 422 |
| 394 func (m *Swarming_Builder_CacheEntry) GetName() string { | 423 func (m *Swarming_Builder_CacheEntry) GetName() string { |
| 395 if m != nil && m.Name != nil { | 424 if m != nil && m.Name != nil { |
| 396 return *m.Name | 425 return *m.Name |
| 397 } | 426 } |
| 398 return "" | 427 return "" |
| 399 } | 428 } |
| 400 | 429 |
| 401 func (m *Swarming_Builder_CacheEntry) GetPath() string { | 430 func (m *Swarming_Builder_CacheEntry) GetPath() string { |
| 402 if m != nil && m.Path != nil { | 431 if m != nil && m.Path != nil { |
| 403 return *m.Path | 432 return *m.Path |
| 404 } | 433 } |
| 405 return "" | 434 return "" |
| 406 } | 435 } |
| 407 | 436 |
| 408 // Defines one bucket in buildbucket.cfg | 437 // Defines one bucket in buildbucket.cfg |
| 409 type Bucket struct { | 438 type Bucket struct { |
| 410 // Name of the bucket. Names are unique within one instance of buildbuck
et. | 439 // Name of the bucket. Names are unique within one instance of buildbuck
et. |
| 411 // If another project already uses this name, a config will be rejected. | 440 // If another project already uses this name, a config will be rejected. |
| 412 // Name reservation is first-come first-serve. | 441 // Name reservation is first-come first-serve. |
| 413 Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` | 442 Name *string `protobuf:"bytes,1,opt,name=name" json:"name,omitempty"` |
| 414 // List of access control rules for the bucket. | 443 // List of access control rules for the bucket. |
| 444 // The order does not matter. |
| 415 Acls []*Acl `protobuf:"bytes,2,rep,name=acls" json:"acls,omitempty"` | 445 Acls []*Acl `protobuf:"bytes,2,rep,name=acls" json:"acls,omitempty"` |
| 446 // A list of ACL set names. Each ACL in each referenced ACL set will be |
| 447 // included in this bucket. |
| 448 // The order does not matter. |
| 449 AclSets []string `protobuf:"bytes,4,rep,name=acl_sets,json=aclSets" json
:"acl_sets,omitempty"` |
| 416 // Buildbucket-swarming integration. | 450 // Buildbucket-swarming integration. |
| 417 Swarming *Swarming `protobuf:"bytes,3,opt,name=swarming" json:"s
warming,omitempty"` | 451 Swarming *Swarming `protobuf:"bytes,3,opt,name=swarming" json:"s
warming,omitempty"` |
| 418 XXX_unrecognized []byte `json:"-"` | 452 XXX_unrecognized []byte `json:"-"` |
| 419 } | 453 } |
| 420 | 454 |
| 421 func (m *Bucket) Reset() { *m = Bucket{} } | 455 func (m *Bucket) Reset() { *m = Bucket{} } |
| 422 func (m *Bucket) String() string { return proto.CompactTextString(m)
} | 456 func (m *Bucket) String() string { return proto.CompactTextString(m)
} |
| 423 func (*Bucket) ProtoMessage() {} | 457 func (*Bucket) ProtoMessage() {} |
| 424 func (*Bucket) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} } | 458 func (*Bucket) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} } |
| 425 | 459 |
| 426 func (m *Bucket) GetName() string { | 460 func (m *Bucket) GetName() string { |
| 427 if m != nil && m.Name != nil { | 461 if m != nil && m.Name != nil { |
| 428 return *m.Name | 462 return *m.Name |
| 429 } | 463 } |
| 430 return "" | 464 return "" |
| 431 } | 465 } |
| 432 | 466 |
| 433 func (m *Bucket) GetAcls() []*Acl { | 467 func (m *Bucket) GetAcls() []*Acl { |
| 434 if m != nil { | 468 if m != nil { |
| 435 return m.Acls | 469 return m.Acls |
| 436 } | 470 } |
| 437 return nil | 471 return nil |
| 438 } | 472 } |
| 439 | 473 |
| 474 func (m *Bucket) GetAclSets() []string { |
| 475 if m != nil { |
| 476 return m.AclSets |
| 477 } |
| 478 return nil |
| 479 } |
| 480 |
| 440 func (m *Bucket) GetSwarming() *Swarming { | 481 func (m *Bucket) GetSwarming() *Swarming { |
| 441 if m != nil { | 482 if m != nil { |
| 442 return m.Swarming | 483 return m.Swarming |
| 443 } | 484 } |
| 444 return nil | 485 return nil |
| 445 } | 486 } |
| 446 | 487 |
| 447 // Schema of buildbucket.cfg file, a project config. | 488 // Schema of buildbucket.cfg file, a project config. |
| 448 type BuildbucketCfg struct { | 489 type BuildbucketCfg struct { |
| 449 // All buckets defined for this project. | 490 // All buckets defined for this project. |
| 450 » Buckets []*Bucket `protobuf:"bytes,1,rep,name=buckets" json:"bu
ckets,omitempty"` | 491 » Buckets []*Bucket `protobuf:"bytes,1,rep,name=buckets" json:"buckets,omi
tempty"` |
| 492 » // A list of ACL sets. Names must be unique. |
| 493 » AclSets []*AclSet `protobuf:"bytes,2,rep,name=acl_sets,json=acl
Sets" json:"acl_sets,omitempty"` |
| 451 XXX_unrecognized []byte `json:"-"` | 494 XXX_unrecognized []byte `json:"-"` |
| 452 } | 495 } |
| 453 | 496 |
| 454 func (m *BuildbucketCfg) Reset() { *m = BuildbucketCfg{} } | 497 func (m *BuildbucketCfg) Reset() { *m = BuildbucketCfg{} } |
| 455 func (m *BuildbucketCfg) String() string { return proto.CompactTextSt
ring(m) } | 498 func (m *BuildbucketCfg) String() string { return proto.CompactTextSt
ring(m) } |
| 456 func (*BuildbucketCfg) ProtoMessage() {} | 499 func (*BuildbucketCfg) ProtoMessage() {} |
| 457 func (*BuildbucketCfg) Descriptor() ([]byte, []int) { return fileDescriptor0, []
int{3} } | 500 func (*BuildbucketCfg) Descriptor() ([]byte, []int) { return fileDescriptor0, []
int{4} } |
| 458 | 501 |
| 459 func (m *BuildbucketCfg) GetBuckets() []*Bucket { | 502 func (m *BuildbucketCfg) GetBuckets() []*Bucket { |
| 460 if m != nil { | 503 if m != nil { |
| 461 return m.Buckets | 504 return m.Buckets |
| 462 } | 505 } |
| 463 return nil | 506 return nil |
| 464 } | 507 } |
| 465 | 508 |
| 509 func (m *BuildbucketCfg) GetAclSets() []*AclSet { |
| 510 if m != nil { |
| 511 return m.AclSets |
| 512 } |
| 513 return nil |
| 514 } |
| 515 |
| 466 func init() { | 516 func init() { |
| 467 proto.RegisterType((*Acl)(nil), "buildbucket.Acl") | 517 proto.RegisterType((*Acl)(nil), "buildbucket.Acl") |
| 518 proto.RegisterType((*AclSet)(nil), "buildbucket.AclSet") |
| 468 proto.RegisterType((*Swarming)(nil), "buildbucket.Swarming") | 519 proto.RegisterType((*Swarming)(nil), "buildbucket.Swarming") |
| 469 proto.RegisterType((*Swarming_Recipe)(nil), "buildbucket.Swarming.Recipe
") | 520 proto.RegisterType((*Swarming_Recipe)(nil), "buildbucket.Swarming.Recipe
") |
| 470 proto.RegisterType((*Swarming_Builder)(nil), "buildbucket.Swarming.Build
er") | 521 proto.RegisterType((*Swarming_Builder)(nil), "buildbucket.Swarming.Build
er") |
| 471 proto.RegisterType((*Swarming_Builder_CipdPackage)(nil), "buildbucket.Sw
arming.Builder.CipdPackage") | 522 proto.RegisterType((*Swarming_Builder_CipdPackage)(nil), "buildbucket.Sw
arming.Builder.CipdPackage") |
| 472 proto.RegisterType((*Swarming_Builder_CacheEntry)(nil), "buildbucket.Swa
rming.Builder.CacheEntry") | 523 proto.RegisterType((*Swarming_Builder_CacheEntry)(nil), "buildbucket.Swa
rming.Builder.CacheEntry") |
| 473 proto.RegisterType((*Bucket)(nil), "buildbucket.Bucket") | 524 proto.RegisterType((*Bucket)(nil), "buildbucket.Bucket") |
| 474 proto.RegisterType((*BuildbucketCfg)(nil), "buildbucket.BuildbucketCfg") | 525 proto.RegisterType((*BuildbucketCfg)(nil), "buildbucket.BuildbucketCfg") |
| 475 proto.RegisterEnum("buildbucket.Acl_Role", Acl_Role_name, Acl_Role_value
) | 526 proto.RegisterEnum("buildbucket.Acl_Role", Acl_Role_name, Acl_Role_value
) |
| 476 } | 527 } |
| 477 | 528 |
| 478 func init() { | 529 func init() { |
| 479 » proto.RegisterFile("infra/tools/swarming-transition/cmd/swarmbucketbuild
ers/proto/project_config.proto", fileDescriptor0) | 530 » proto.RegisterFile("github.com/luci/luci-go/buildbucket/client/cmd/build
bucket/proto/project_config.proto", fileDescriptor0) |
| 480 } | 531 } |
| 481 | 532 |
| 482 var fileDescriptor0 = []byte{ | 533 var fileDescriptor0 = []byte{ |
| 483 » // 690 bytes of a gzipped FileDescriptorProto | 534 » // 736 bytes of a gzipped FileDescriptorProto |
| 484 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x84, 0x54,
0xcd, 0x6e, 0x13, 0x31, | 535 » 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54,
0xcd, 0x6e, 0xdb, 0x38, |
| 485 » 0x10, 0x66, 0x9b, 0x6d, 0x7e, 0x26, 0x4d, 0x89, 0x4c, 0x8b, 0x56, 0x51,
0x0b, 0x21, 0x70, 0x48, | 536 » 0x10, 0x5e, 0xd9, 0x8a, 0x7f, 0xc6, 0x71, 0xd6, 0xe0, 0x26, 0x0b, 0xad,
0x91, 0x64, 0xbd, 0xde, |
| 486 » 0x0f, 0x4d, 0x44, 0xd5, 0x0b, 0x27, 0x68, 0xd3, 0xa0, 0x82, 0x50, 0x55,
0xb9, 0x41, 0xdc, 0x58, | 537 » 0x3d, 0x38, 0x87, 0xc8, 0xd8, 0x20, 0x97, 0xbd, 0xad, 0xed, 0xb8, 0x48,
0x8b, 0x22, 0x08, 0x68, |
| 487 » 0xb9, 0x8e, 0xb3, 0x75, 0xbb, 0x59, 0xaf, 0x6c, 0x2f, 0x90, 0x13, 0xcf,
0xc0, 0x8b, 0xf0, 0x12, | 538 » 0x07, 0xbd, 0x55, 0x60, 0x68, 0x5a, 0x66, 0x22, 0x89, 0x02, 0x49, 0xb5,
0xf5, 0xa9, 0xaf, 0xd0, |
| 488 » 0xbc, 0x18, 0xb2, 0xbd, 0xbb, 0x49, 0x51, 0x44, 0x2f, 0xd1, 0xce, 0xcc,
0x37, 0x3f, 0xdf, 0x37, | 539 » 0xbe, 0x48, 0x5f, 0xa2, 0x2f, 0x56, 0x88, 0x92, 0x65, 0xa5, 0x30, 0x1a,
0xa0, 0x17, 0x81, 0xf3, |
| 489 » 0xe3, 0x00, 0xe6, 0xc9, 0x4c, 0x92, 0xa1, 0x16, 0x22, 0x56, 0x43, 0xf5,
0x9d, 0xc8, 0x39, 0x4f, | 540 » 0xf1, 0x9b, 0xe1, 0x37, 0xf3, 0x51, 0x84, 0x3b, 0x9f, 0xeb, 0x55, 0x72,
0xef, 0x52, 0x11, 0x0e, |
| 490 » 0xa2, 0x43, 0x2d, 0x49, 0xa2, 0xb8, 0xe6, 0x22, 0x19, 0xd2, 0xf9, 0xd4,
0xf9, 0xaf, 0x33, 0x7a, | 541 » 0x83, 0x84, 0x72, 0xf3, 0x39, 0xf7, 0xc5, 0xf0, 0x3e, 0xe1, 0xc1, 0xe2,
0x3e, 0xa1, 0x8f, 0x4c, |
| 491 » 0xc7, 0xf4, 0x75, 0xc6, 0xe3, 0x29, 0x93, 0x6a, 0x98, 0x4a, 0xa1, 0x85,
0xf9, 0xbd, 0x65, 0x54, | 542 » 0x0f, 0x69, 0xc0, 0x59, 0xa4, 0x87, 0x34, 0x5c, 0x3c, 0x81, 0x63, 0x29,
0xb4, 0x48, 0xbf, 0x0f, |
| 492 » 0x87, 0x54, 0x24, 0x33, 0x1e, 0x0d, 0xac, 0x13, 0x35, 0x2d, 0xc8, 0xe1,
0x7b, 0xbf, 0x3c, 0xa8, | 543 » 0x8c, 0x6a, 0x8f, 0x8a, 0x68, 0xc9, 0x7d, 0xd7, 0x80, 0xa8, 0x55, 0xe2,
0xf5, 0x3f, 0x5b, 0x50, |
| 493 » 0x9c, 0xd0, 0x18, 0x1d, 0x80, 0x2f, 0x45, 0xcc, 0x02, 0xaf, 0xeb, 0xf5,
0xb7, 0x8f, 0x76, 0x07, | 544 » 0x1d, 0xd1, 0x00, 0x9d, 0x81, 0x2d, 0x45, 0xc0, 0x1c, 0xab, 0x67, 0x0d,
0x0e, 0x2e, 0x8e, 0xdc, |
| 494 » 0x2b, 0x98, 0xc1, 0x09, 0x8d, 0x07, 0x58, 0xc4, 0x0c, 0x5b, 0x08, 0xda,
0x81, 0xcd, 0x48, 0x8a, | 545 » 0x12, 0xc7, 0x1d, 0xd1, 0xc0, 0xc5, 0x22, 0x60, 0xd8, 0x50, 0xd0, 0x21,
0xec, 0xf9, 0x52, 0x24, |
| 495 » 0x2c, 0x0d, 0x36, 0xba, 0x5e, 0xbf, 0x81, 0x9d, 0x81, 0x3a, 0x50, 0xe7,
0x53, 0x96, 0x68, 0xae, | 546 » 0xb1, 0x53, 0xe9, 0x59, 0x83, 0x26, 0xce, 0x02, 0xd4, 0x85, 0x06, 0x5f,
0xb0, 0x48, 0x73, 0xbd, |
| 496 » 0x17, 0x41, 0xc5, 0x06, 0x4a, 0xbb, 0x77, 0x08, 0xbe, 0xc9, 0x47, 0x00,
0x55, 0x3c, 0x3e, 0x39, | 547 » 0x76, 0xaa, 0x66, 0xa3, 0x88, 0xfb, 0xe7, 0x60, 0xa7, 0xf9, 0x08, 0xa0,
0x86, 0xa7, 0xa3, 0xab, |
| 497 » 0x1b, 0xe3, 0xf6, 0x23, 0xd4, 0x82, 0xc6, 0xd5, 0xe8, 0x7c, 0x7c, 0xf6,
0xf9, 0xd3, 0x18, 0xb7, | 548 » 0x29, 0xee, 0xfc, 0x82, 0xda, 0xd0, 0x9c, 0x4d, 0xae, 0xa7, 0x57, 0x77,
0xaf, 0xa7, 0xb8, 0x63, |
| 498 » 0x3d, 0x13, 0xfa, 0x82, 0x3f, 0x4c, 0xc6, 0xb8, 0xbd, 0xd1, 0xfb, 0x53,
0x83, 0xfa, 0x55, 0xce, | 549 » 0xa5, 0x5b, 0x6f, 0xf0, 0xcb, 0xf9, 0x14, 0x77, 0x2a, 0xfd, 0x31, 0xd4,
0x46, 0x34, 0x98, 0x31, |
| 499 » 0xd5, 0xd4, 0xbd, 0x11, 0x4a, 0x27, 0x64, 0xee, 0x86, 0x6b, 0xe0, 0xd2,
0x46, 0xfb, 0x00, 0x99, | 550 » 0x8d, 0x10, 0xd8, 0x11, 0x09, 0x33, 0x55, 0x4d, 0x6c, 0xd6, 0xe8, 0x1f,
0xb0, 0x09, 0x0d, 0x94, |
| 500 » 0x8c, 0xc3, 0x99, 0x90, 0x73, 0xa2, 0xf3, 0x71, 0x1a, 0x99, 0x8c, 0xdf,
0x5b, 0x07, 0x3a, 0x87, | 551 » 0x53, 0xe9, 0x55, 0x07, 0xad, 0x8b, 0xce, 0xf7, 0x4a, 0xb1, 0xd9, 0xed,
0x7f, 0xad, 0x43, 0x63, |
| 501 » 0x76, 0xae, 0x47, 0x38, 0x65, 0x33, 0x92, 0xc5, 0x5a, 0xd9, 0xd1, 0x9a,
0x47, 0xfb, 0xf7, 0xf8, | 552 » 0xf6, 0x9e, 0xc8, 0x90, 0x47, 0x7e, 0xaa, 0x6d, 0x25, 0x94, 0x2e, 0x95,
0x2a, 0x62, 0x74, 0x02, |
| 502 » 0x15, 0xbd, 0x06, 0xa7, 0x0e, 0x8d, 0x1f, 0xe7, 0x69, 0x67, 0x79, 0x16,
0x7a, 0x03, 0xf5, 0x42, | 553 » 0x90, 0xc8, 0xc0, 0x5b, 0x0a, 0x19, 0x12, 0x9d, 0xb7, 0xd4, 0x4c, 0x64,
0xf0, 0xc2, 0x00, 0xe8, |
| 503 » 0xd9, 0xc0, 0xef, 0x56, 0x1e, 0xae, 0x50, 0xc2, 0xd1, 0x18, 0x9e, 0x6b,
0xa2, 0xee, 0x42, 0xcd, | 554 » 0x1a, 0x3a, 0xe6, 0x00, 0x26, 0xbd, 0x05, 0x5b, 0x92, 0x24, 0xd0, 0xca,
0xb4, 0xd7, 0xba, 0x38, |
| 504 » 0xe6, 0x69, 0x4c, 0x34, 0x0b, 0x29, 0x49, 0x88, 0x5c, 0x84, 0x29, 0x93,
0x94, 0x25, 0x9a, 0x44, | 555 » 0x79, 0x72, 0xf2, 0xe6, 0x2c, 0x77, 0x9c, 0xb1, 0xf1, 0xaf, 0x79, 0xda,
0x55, 0x9e, 0x85, 0xfe, |
| 505 » 0x2c, 0xd8, 0xec, 0x7a, 0xfd, 0x16, 0xde, 0x33, 0xb0, 0x49, 0x8e, 0x1a,
0x59, 0xd0, 0x65, 0x89, | 556 » 0x83, 0x46, 0x0e, 0x29, 0xc7, 0x36, 0xda, 0x9f, 0xa9, 0x50, 0xd0, 0xd1,
0x14, 0xfe, 0xd4, 0x44, |
| 506 » 0xe9, 0xfc, 0x84, 0x2a, 0x66, 0x94, 0xa7, 0x0c, 0x3d, 0x03, 0x90, 0x2c,
0x15, 0x8a, 0x6b, 0x21, | 557 » 0x3d, 0x7a, 0x9a, 0x85, 0x71, 0x40, 0x34, 0xf3, 0x28, 0x89, 0x88, 0x5c,
0x7b, 0x31, 0x93, 0x94, |
| 507 » 0x17, 0xb9, 0x24, 0x2b, 0x1e, 0x84, 0xc0, 0xb7, 0x62, 0x39, 0x39, 0xec,
0xb7, 0xc9, 0x49, 0xa5, | 558 » 0x45, 0x9a, 0xf8, 0xcc, 0xd9, 0xeb, 0x59, 0x83, 0x36, 0x3e, 0x4e, 0x69,
0xf3, 0x9c, 0x35, 0x31, |
| 508 » 0x48, 0x99, 0xd4, 0x9c, 0x19, 0x0d, 0x2a, 0x26, 0x67, 0xe9, 0x41, 0x2f,
0x60, 0x6b, 0x69, 0x85, | 559 » 0xa4, 0xdb, 0x82, 0xd3, 0xfd, 0x08, 0x35, 0xcc, 0x28, 0x8f, 0x19, 0x3a,
0x05, 0x90, 0x2c, 0x16, |
| 509 » 0xb7, 0x96, 0x63, 0x03, 0x37, 0x97, 0xbe, 0x8f, 0x9d, 0xdf, 0x3e, 0xd4,
0x72, 0x76, 0x65, 0x0b, | 560 » 0x8a, 0x6b, 0x21, 0xd7, 0xf9, 0x48, 0x4a, 0x48, 0x31, 0xf7, 0x4a, 0x69,
0xee, 0xa7, 0x00, 0xb1, |
| 510 » 0x6f, 0xa5, 0x45, 0x07, 0xea, 0x94, 0x68, 0x16, 0x99, 0xa1, 0xaa, 0x6e,
0x4f, 0x85, 0x8d, 0x5e, | 561 » 0x14, 0x31, 0x93, 0x9a, 0xb3, 0x74, 0x06, 0xd5, 0x34, 0x67, 0x8b, 0xa0,
0xbf, 0x60, 0x7f, 0x1b, |
| 511 » 0x42, 0xab, 0xb8, 0xdd, 0x50, 0x93, 0x48, 0x05, 0x1b, 0xb6, 0xfe, 0x56,
0xe1, 0x9c, 0x90, 0x48, | 562 » 0x79, 0x0f, 0xa6, 0xc7, 0x26, 0x6e, 0x6d, 0xb1, 0x57, 0xdd, 0x2f, 0x36,
0xd4, 0xf3, 0xee, 0x76, |
| 512 » 0x99, 0x19, 0xa7, 0x7c, 0xce, 0x12, 0xc5, 0x45, 0x52, 0xce, 0xb8, 0xf4,
0xa0, 0x0b, 0x68, 0x51, | 563 » 0x5a, 0xdb, 0x85, 0x06, 0x25, 0x9a, 0xf9, 0xa9, 0xa8, 0x5a, 0xe6, 0xd3,
0x26, 0x46, 0x7f, 0x43, |
| 513 » 0x9e, 0x4e, 0xc3, 0x94, 0xd0, 0x3b, 0x12, 0x31, 0x15, 0xd4, 0xed, 0x22,
0x0e, 0xfe, 0xbb, 0x88, | 564 » 0x5b, 0xe5, 0x13, 0xf2, 0x34, 0xf1, 0x33, 0xff, 0x9b, 0x78, 0x7f, 0x03,
0xce, 0x89, 0xaf, 0x52, |
| 514 » 0xc1, 0x88, 0xa7, 0xd3, 0x4b, 0x97, 0x81, 0xb7, 0xe8, 0xd2, 0x50, 0xe8,
0x18, 0xaa, 0xd2, 0x2a, | 565 » 0x8d, 0x0b, 0x1e, 0xb2, 0x48, 0x71, 0x11, 0x15, 0x1a, 0xb7, 0x08, 0xba,
0x81, 0x36, 0xe5, 0xf1, |
| 515 » 0x1a, 0xf8, 0xf6, 0x26, 0xf6, 0xd6, 0x17, 0x72, 0xaa, 0xe3, 0x1c, 0x6b,
0x68, 0xa6, 0x92, 0x0b, | 566 » 0xc2, 0x8b, 0x09, 0x7d, 0x24, 0x3e, 0x53, 0x4e, 0xc3, 0x18, 0x71, 0xf6,
0x43, 0x23, 0xdc, 0x09, |
| 516 » 0x69, 0xce, 0xdc, 0xed, 0xad, 0xb4, 0xd1, 0x31, 0x3c, 0x65, 0x3f, 0x18,
0xcd, 0xcc, 0xc3, 0x0c, | 567 » 0x8f, 0x17, 0xb7, 0x59, 0x06, 0xde, 0xa7, 0xdb, 0x40, 0xa1, 0x4b, 0xa8,
0x49, 0x33, 0x51, 0xc7, |
| 517 » 0x35, 0x9f, 0x33, 0x91, 0xe9, 0x50, 0x31, 0xaa, 0x82, 0x9a, 0x45, 0xee,
0x94, 0xd1, 0x89, 0x0b, | 568 » 0x36, 0x77, 0xe2, 0x78, 0x77, 0xa1, 0x6c, 0xea, 0x38, 0xe7, 0xa6, 0x6d,
0xc6, 0x92, 0x0b, 0x99, |
| 518 » 0x5e, 0x31, 0xaa, 0xd0, 0x3b, 0xa8, 0x52, 0x42, 0x6f, 0x98, 0x0a, 0x1a,
0x96, 0x50, 0xff, 0x01, | 569 » 0xfe, 0x2a, 0x99, 0x6f, 0x45, 0x8c, 0x2e, 0xe1, 0x77, 0xf6, 0x81, 0xd1,
0x44, 0x73, 0x11, 0x79, |
| 519 » 0x42, 0x06, 0x3b, 0x4e, 0xb4, 0x5c, 0xe0, 0x3c, 0xaf, 0xf3, 0x15, 0x9a,
0x2b, 0x34, 0xed, 0x32, | 570 » 0x9a, 0x87, 0x4c, 0x24, 0xda, 0x53, 0x8c, 0x2a, 0xa7, 0x6e, 0x98, 0x87,
0xc5, 0xee, 0x3c, 0xdb, |
| 520 » 0xdd, 0x67, 0xb8, 0xb2, 0xa5, 0x66, 0xee, 0xbb, 0x30, 0xcb, 0x42, 0xe0,
0xa7, 0x44, 0xdf, 0x14, | 571 » 0x9c, 0x31, 0xaa, 0xd0, 0xff, 0x50, 0xa3, 0x84, 0xae, 0x98, 0x72, 0x9a,
0xa6, 0xa1, 0xc1, 0x33, |
| 521 » 0x37, 0x62, 0xbe, 0x51, 0x00, 0xb5, 0x6f, 0x4c, 0x1a, 0xad, 0xf3, 0xf7,
0x5b, 0x98, 0x9d, 0x63, | 572 » 0x0d, 0xa5, 0xdc, 0x69, 0xa4, 0xe5, 0x1a, 0xe7, 0x79, 0xdd, 0xb7, 0xd0,
0x2a, 0xb5, 0x69, 0xcc, |
| 522 » 0x80, 0x65, 0xd7, 0xb5, 0xcb, 0x5f, 0x53, 0xaf, 0x97, 0x41, 0xf5, 0xd4,
0x72, 0x58, 0x9b, 0xf1, | 573 » 0xcc, 0x96, 0x5e, 0xc9, 0xa5, 0x56, 0x8e, 0xdd, 0xa4, 0x66, 0x21, 0xb0,
0x63, 0xa2, 0x57, 0x9b, |
| 523 » 0x0a, 0x7c, 0x42, 0x63, 0x77, 0x09, 0xcd, 0xa3, 0xf6, 0xbf, 0xff, 0x37,
0xd8, 0x46, 0xd1, 0x6b, | 574 » 0x3b, 0x92, 0xae, 0x91, 0x03, 0xf5, 0x77, 0x4c, 0xa6, 0xb3, 0xce, 0xdf,
0x80, 0x4d, 0xd8, 0xbd, |
| 524 » 0xa8, 0x17, 0x37, 0x92, 0xbf, 0xdc, 0xdd, 0xb5, 0xea, 0xe0, 0x12, 0xd6,
0x7b, 0x0b, 0xdb, 0xa7, | 575 » 0x04, 0xd8, 0x9e, 0xba, 0xd3, 0xfc, 0x1d, 0xf5, 0xfa, 0x9f, 0x2c, 0xa8,
0x8d, 0x4d, 0x13, 0x3f, |
| 525 » 0x4b, 0xc4, 0x68, 0x16, 0xa1, 0x43, 0xa8, 0x39, 0x43, 0x05, 0x9e, 0xed,
0xf6, 0xe4, 0x5e, 0x0d, | 576 » 0xff, 0x14, 0xa0, 0x3f, 0xa0, 0x41, 0x68, 0xe0, 0x29, 0xa6, 0x55, 0x7e,
0x29, 0xeb, 0xc4, 0x3c, |
| 526 » 0x37, 0x24, 0x2e, 0x30, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xbb, 0xdf,
0x53, 0x5a, 0x73, 0x05, | 577 » 0x2f, 0x0a, 0xfd, 0x0b, 0x8d, 0xcd, 0xfd, 0xc9, 0xff, 0xea, 0xa3, 0x9d,
0x93, 0xc3, 0x05, 0xad, |
| 527 » 0x00, 0x00, | 578 » 0x2f, 0xe0, 0x60, 0xbc, 0x65, 0x4c, 0x96, 0x3e, 0x3a, 0x87, 0x7a, 0x16,
0x28, 0xc7, 0x32, 0x42, |
| 579 » 0x7e, 0x7b, 0x52, 0x23, 0xd3, 0x8f, 0x37, 0x1c, 0xe4, 0x96, 0xe4, 0x54,
0x76, 0xf0, 0xb3, 0xa7, |
| 580 » 0xaf, 0xd0, 0xf8, 0x2d, 0x00, 0x00, 0xff, 0xff, 0xb2, 0xed, 0xa5, 0x27,
0x06, 0x06, 0x00, 0x00, |
| 528 } | 581 } |
| OLD | NEW |