File tree Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Expand file tree Collapse file tree 1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -804,6 +804,24 @@ paths:
804
804
description : No content
805
805
default :
806
806
$ref : ' #/responses/error'
807
+ /{account_id}/builds/status :
808
+ parameters :
809
+ - name : account_id
810
+ type : string
811
+ in : path
812
+ required : true
813
+ get :
814
+ operationId : getAccountBuildStatus
815
+ tags : [build]
816
+ responses :
817
+ ' 200 ' :
818
+ description : OK
819
+ schema :
820
+ type : array
821
+ items :
822
+ $ref : ' #/definitions/buildStatus'
823
+ default :
824
+ $ref : ' #/responses/error'
807
825
/sites/{site_id}/dns :
808
826
parameters :
809
827
- name : site_id
@@ -2351,6 +2369,39 @@ definitions:
2351
2369
type : object
2352
2370
branch :
2353
2371
type : string
2372
+ buildStatus :
2373
+ type : object
2374
+ properties :
2375
+ active :
2376
+ type : integer
2377
+ pending_concurrency :
2378
+ type : integer
2379
+ enqueued :
2380
+ type : integer
2381
+ build_count :
2382
+ type : integer
2383
+ minutes :
2384
+ type : object
2385
+ properties :
2386
+ current :
2387
+ type : integer
2388
+ current_average_sec :
2389
+ type : integer
2390
+ previous :
2391
+ type : integer
2392
+ period_start_date :
2393
+ type : string
2394
+ format : dateTime
2395
+ period_end_date :
2396
+ type : string
2397
+ format : dateTime
2398
+ last_updated_at :
2399
+ type : string
2400
+ format : dateTime
2401
+ included_minutes :
2402
+ type : string
2403
+ included_minutes_with_packs :
2404
+ type : string
2354
2405
build :
2355
2406
type : object
2356
2407
properties :
You can’t perform that action at this time.
0 commit comments