-
Notifications
You must be signed in to change notification settings - Fork 364
/
Copy pathv2.yml
1395 lines (1116 loc) · 32.7 KB
/
v2.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1000:
name: InvalidAuthToken
http_code: 401
message: "Invalid Auth Token"
1001:
name: MessageParseError
http_code: 400
message: "Request invalid due to parse error: %s"
1002:
name: InvalidRelation
http_code: 400
message: "%s"
1003:
name: InvalidContentType
http_code: 400
message: "Invalid content type, expected: %s"
1004:
name: BadRequest
http_code: 400
message: "Bad request: %s"
10000:
name: NotFound
http_code: 404
message: "Unknown request"
10001:
name: ServerError
http_code: 500
message: "Server error"
10002:
name: NotAuthenticated
http_code: 401
message: "Authentication error"
10003:
name: NotAuthorized
http_code: 403
message: "You are not authorized to perform the requested action"
10004:
name: InvalidRequest
http_code: 400
message: "The request is invalid"
10005:
name: BadQueryParameter
http_code: 400
message: "The query parameter is invalid: %s"
10006:
name: AssociationNotEmpty
http_code: 400
message: "Please delete the %s associations for your %s."
10007:
name: InsufficientScope
http_code: 403
message: "Your token lacks the necessary scopes to access this resource."
10008:
name: UnprocessableEntity
http_code: 422
message: "%s"
10009:
name: UnableToPerform
http_code: 400
message: "%s could not be completed: %s"
10010:
name: ResourceNotFound
http_code: 404
message: "%s"
10011:
name: DatabaseError
http_code: 500
message: "Database error"
10012:
name: OrderByParameterInvalid
http_code: 500
message: "Cannot order by: %s"
10013:
name: RateLimitExceeded
http_code: 429
message: "Rate Limit Exceeded"
10014:
name: IPBasedRateLimitExceeded
http_code: 429
message: "Rate Limit Exceeded: Unauthenticated requests from this IP address have exceeded the limit. Please log in."
10015:
name: ServiceUnavailable
http_code: 503
message: "%s"
10016:
name: ServiceBrokerRateLimitExceeded
http_code: 429
message: "Service broker concurrent request limit exceeded"
10017:
name: OrgSuspended
http_code: 403
message: "The organization is suspended"
10018:
name: RateLimitV2APIExceeded
http_code: 429
message: "Rate Limit of V2 API Exceeded. Please consider using the V3 API"
20001:
name: UserInvalid
http_code: 400
message: "The user info is invalid: %s"
20002:
name: UaaIdTaken
http_code: 400
message: "The UAA ID is taken: %s"
20003:
name: UserNotFound
http_code: 404
message: "The user could not be found: %s"
20004:
name: UaaUnavailable
http_code: 503
message: "The UAA service is currently unavailable"
20006:
name: UserIsInMultipleOrigins
http_code: 400
message: "The user exists in multiple origins. Specify an origin for the requested user from: %s"
20007:
name: UserWithOriginNotFound
http_code: 404
message: "The user could not be found, %s"
30001:
name: OrganizationInvalid
http_code: 400
message: "The organization info is invalid: %s"
30002:
name: OrganizationNameTaken
http_code: 400
message: "The organization name is taken: %s"
30003:
name: OrganizationNotFound
http_code: 404
message: "The organization could not be found: %s"
30004:
name: LastManagerInOrg
http_code: 403
message: "Cannot remove last Org Manager in org"
30005:
name: LastBillingManagerInOrg
http_code: 403
message: "Cannot remove last Billing Manager in org"
30006:
name: LastUserInOrg
http_code: 403
message: "Cannot remove last User in org"
30007:
name: OrganizationAlreadySet
http_code: 400
message: "Cannot change organization"
40001:
name: SpaceInvalid
http_code: 400
message: "The app space info is invalid: %s"
40002:
name: SpaceNameTaken
http_code: 400
message: "The app space name is taken: %s"
40003:
name: SpaceUserNotInOrg
http_code: 400
message: "The app space and the user are not in the same org: %s"
40004:
name: SpaceNotFound
http_code: 404
message: "The app space could not be found: %s"
60001:
name: ServiceInstanceNameEmpty
http_code: 400
message: "Service instance name is required."
60002:
name: ServiceInstanceNameTaken
http_code: 400
message: "The service instance name is taken: %s"
60003:
name: ServiceInstanceInvalid
http_code: 400
message: "The service instance is invalid: %s"
60004:
name: ServiceInstanceNotFound
http_code: 404
message: "The service instance could not be found: %s"
60005:
name: ServiceInstanceQuotaExceeded
http_code: 400
message: "You have exceeded your organization's services limit."
60006:
name: PreviouslyUsedAs_ServiceInstancePaidQuotaExceeded
http_code: 400
message: "You have exceeded your organization's services limit."
60007:
name: ServiceInstanceServicePlanNotAllowed
http_code: 400
message: "The service instance cannot be created because paid service plans are not allowed."
60008:
name: ServiceInstanceDuplicateNotAllowed
http_code: 400
message: "An instance of this service is already present in this space. Some services only support one instance per space."
60009:
name: ServiceInstanceNameTooLong
http_code: 400
message: "You have requested an invalid service instance name. Names are limited to 255 characters."
60010:
name: ServiceInstanceOrganizationNotAuthorized
http_code: 403
message: "A service instance for the selected plan cannot be created in this organization. The plan is visible because another organization you belong to has access to it."
60011:
name: ServiceInstanceDeprovisionFailed
http_code: 409
message: "The service broker reported an error during deprovisioning: %s"
60012:
name: ServiceInstanceSpaceQuotaExceeded
http_code: 400
message: "You have exceeded your space's services limit."
60013:
name: ServiceInstanceServicePlanNotAllowedBySpaceQuota
http_code: 400
message: "The service instance cannot be created because paid service plans are not allowed for your space."
60014:
name: ServiceInstanceSpaceChangeNotAllowed
http_code: 400
message: "Cannot update space for service instance."
60015:
name: ServiceInstanceTagsTooLong
http_code: 400
message: "Combined length of tags for service %s must be 2048 characters or less."
60016:
name: AsyncServiceInstanceOperationInProgress
http_code: 409
message: "An operation for service instance %s is in progress."
60017:
name: ServiceInstanceRouteBindingSpaceMismatch
http_code: 400
message: "The service instance and the route are in different spaces."
60018:
name: ServiceInstanceSpaceNotAuthorized
http_code: 403
message: "A service instance for the selected plan cannot be created in this space."
60019:
name: ServiceInstanceRouteServiceURLInvalid
http_code: 400
message: "The route service URL is invalid: %s"
60020:
name: ServiceInstanceRouteServiceRequiresDiego
http_code: 400
message: "Route services are only supported for apps on Diego. Unbind the service instance from the route or enable Diego for the app."
60021:
name: ServiceInstanceRouteServiceDisabled
http_code: 403
message: "Support for route services is disabled"
60022:
name: AppPortMappingRequiresDiego
http_code: 400
message: "App ports are supported for Diego apps only."
60023:
name: RoutePortNotEnabledOnApp
http_code: 400
message: "Routes can only be mapped to ports already enabled for the application."
60024:
name: MultipleAppPortsMappedDiegoToDea
http_code: 400
message: "The app has routes mapped to multiple ports. Multiple ports are supported for Diego only. Please unmap routes from all but one app port. Multiple routes can be mapped to the same port if desired."
60025:
name: VolumeMountServiceDisabled
http_code: 403
message: "Support for volume mount services is disabled"
60026:
name: DockerAppToDea
http_code: 400
message: "Docker apps cannot run on DEAs"
60027:
name: ServiceInstanceRecursiveDeleteFailed
http_code: 502
message: "Deletion of service instance %s failed because one or more associated resources could not be deleted.\n\n%s"
60028:
name: ManagedServiceInstanceNotFound
http_code: 404
message: "The service instance could not be found: %s"
60029:
name: ServiceInstanceWithInaccessiblePlanNotUpdateable
http_code: 403
message: "Cannot update %s of a service instance that belongs to inaccessible plan"
60030:
name: ServiceInstanceProvisionFailed
http_code: 400
message: "The service broker reported an error during provisioning: %s"
70001:
name: RuntimeInvalid
http_code: 400
message: "The runtime is invalid: %s"
70002:
name: RuntimeNameTaken
http_code: 400
message: "The runtime name is taken: %s"
70003:
name: RuntimeNotFound
http_code: 404
message: "The runtime could not be found: %s"
80001:
name: FrameworkInvalid
http_code: 400
message: "The framework is invalid: %s"
80002:
name: FrameworkNameTaken
http_code: 400
message: "The framework name is taken: %s"
80003:
name: FrameworkNotFound
http_code: 404
message: "The framework could not be found: %s"
90001:
name: ServiceBindingInvalid
http_code: 400
message: "The service binding is invalid: %s"
90002:
name: ServiceBindingDifferentSpaces
http_code: 400
message: "The app and the service are not in the same app space: %s"
90003:
name: ServiceBindingAppServiceTaken
http_code: 400
message: "%s"
90004:
name: ServiceBindingNotFound
http_code: 404
message: "The service binding could not be found: %s"
90005:
name: UnbindableService
http_code: 400
message: "The service instance doesn't support binding."
90006:
name: InvalidLoggingServiceBinding
http_code: 502
message: "The service is attempting to stream logs from your application, but is not registered as a logging service. Please contact the service provider."
90007:
name: ServiceFetchBindingParametersNotSupported
http_code: 400
message: "This service does not support fetching service binding parameters."
90008:
name: AsyncServiceBindingOperationInProgress
http_code: 409
message: "An operation for the service binding between app %s and service instance %s is in progress."
100001:
name: AppInvalid
http_code: 400
message: "The app is invalid: %s"
100002:
name: AppNameTaken
http_code: 400
message: "The app name is taken: %s"
100004:
name: AppNotFound
http_code: 404
message: "The app could not be found: %s"
100005:
name: AppMemoryQuotaExceeded
http_code: 400
message: "You have exceeded your organization's memory limit: %s"
100006:
name: AppMemoryInvalid
http_code: 400
message: "You have specified an invalid amount of memory for your application."
100007:
name: QuotaInstanceMemoryLimitExceeded
http_code: 400
message: "You have exceeded the instance memory limit for your organization's quota."
100008:
name: QuotaInstanceLimitExceeded
http_code: 400
message: "You have exceeded the instance limit for your organization's quota."
100009:
name: AppMemoryInsufficientForSidecars
http_code: 400
message: "The requested memory allocation is not large enough to run all of your sidecar processes."
100010:
name: OrgQuotaLogRateLimitExceeded
http_code: 400
message: "You have exceeded your organization's log rate limit: %s"
110001:
name: ServicePlanInvalid
http_code: 400
message: "The service plan is invalid: %s"
110002:
name: ServicePlanNameTaken
http_code: 400
message: "The service plan name is taken: %s"
110003:
name: ServicePlanNotFound
http_code: 404
message: "The service plan could not be found: %s"
110004:
name: ServicePlanNotUpdateable
http_code: 400
message: "The service does not support changing plans."
120001:
name: ServiceInvalid
http_code: 400
message: "The service is invalid: %s"
120002:
name: ServiceLabelTaken
http_code: 400
message: "The service label is taken: %s"
120003:
name: ServiceNotFound
http_code: 404
message: "The service could not be found: %s"
120004:
name: ServiceFetchInstanceParametersNotSupported
http_code: 400
message: "This service does not support fetching service instance parameters."
130001:
name: DomainInvalid
http_code: 400
message: "The domain is invalid: %s"
130002:
name: DomainNotFound
http_code: 404
message: "The domain could not be found: %s"
130003:
name: DomainNameTaken
http_code: 400
message: "The domain name is taken: %s"
130004:
name: PathInvalid
http_code: 400
message: "The path is invalid: %s"
130005:
name: TotalPrivateDomainsExceeded
http_code: 400
message: "The number of private domains exceeds the quota for organization: %s"
130006:
name: ServiceDoesNotSupportRoutes
http_code: 400
message: "This service does not support route binding."
130007:
name: RouteAlreadyBoundToServiceInstance
http_code: 400
message: "A route may only be bound to a single service instance"
130008:
name: ServiceInstanceAlreadyBoundToSameRoute
http_code: 400
message: "The route and service instance are already bound."
130009:
name: InternalDomainCannotBeDeleted
http_code: 422
message: "The domain '%s' cannot be deleted. It is reserved by the platform."
130010:
name: RouteServiceCannotBeBoundToInternalRoute
http_code: 400
message: "Route services cannot be bound to internal routes."
140001:
name: LegacyApiWithoutDefaultSpace
http_code: 400
message: "A legacy api call requiring a default app space was called, but no default app space is set for the user."
150001:
name: AppPackageInvalid
http_code: 400
message: "The app package is invalid: %s"
150002:
name: AppPackageNotFound
http_code: 404
message: "The app package could not be found: %s"
150003:
name: InsufficientRunningResourcesAvailable
http_code: 503
message: "One or more instances could not be started because of insufficient running resources."
150004:
name: PackageBitsAlreadyUploaded
http_code: 400
message: "Bits may be uploaded only once. Create a new package to upload different bits."
150005:
name: BlobstoreNotLocal
http_code: 400
message: "Downloading blobs can only be done directly to the blobstore."
150006:
name: BlobstoreUnavailable
http_code: 502
message: "Failed to perform operation due to blobstore unavailability."
150007:
name: BlobstoreError
http_code: 500
message: "Failed to perform blobstore operation after three retries."
150008:
name: DockerImageMissing
http_code: 400
message: "Docker credentials can only be supplied for apps with a 'docker_image'"
150009:
name: AppRecursiveDeleteFailed
http_code: 502
message: "Deletion of app %s failed because one or more associated resources could not be deleted.\n\n%s"
150010:
name: ResourceChecksumMismatch
http_code: 500
message: "One or more cached resources did not match the given checksum. They have been deleted; please retry package upload."
160001:
name: AppBitsUploadInvalid
http_code: 400
message: "The app upload is invalid: %s"
160002:
name: AppBitsCopyInvalid
http_code: 400
message: "The app copy is invalid: %s"
160003:
name: AppResourcesFileModeInvalid
http_code: 400
message: "The resource file mode is invalid: %s"
160004:
name: AppResourcesFilePathInvalid
http_code: 400
message: "The resource file path is invalid: %s"
170001:
name: StagingError
http_code: 400
message: "Staging error: %s"
170002:
name: NotStaged
http_code: 400
message: "App has not finished staging"
170003:
name: NoAppDetectedError
http_code: 400
message: "An app was not successfully detected by any available buildpack"
170004:
name: BuildpackCompileFailed
http_code: 400
message: "App staging failed in the buildpack compile phase"
170005:
name: BuildpackReleaseFailed
http_code: 400
message: "App staging failed in the buildpack release phase"
170006:
name: NoBuildpacksFound
http_code: 400
message: "There are no buildpacks available"
170007:
name: StagingTimeExpired
http_code: 504
message: "Staging time expired: %s"
170008:
name: InsufficientResources
http_code: 400
message: "Insufficient resources"
170009:
name: NoCompatibleCell
http_code: 400
message: "Found no compatible cell"
170010:
name: StagerUnavailable
http_code: 503
message: "Stager is unavailable: %s"
170011:
name: StagerError
http_code: 500
message: "Stager error: %s"
170014:
name: RunnerInvalidRequest
http_code: 500
message: "Runner invalid request: %s"
170015:
name: RunnerUnavailable
http_code: 503
message: "Runner is unavailable: %s"
170016:
name: RunnerError
http_code: 500
message: "Runner error: %s"
170017:
name: StagingInProgress
http_code: 422
message: "Only one build can be STAGING at a time per application."
170018:
name: InvalidTaskAddress
http_code: 500
message: "Invalid config: %s"
170019:
name: TaskError
http_code: 500
message: "Task failed: %s"
170020:
name: TaskWorkersUnavailable
http_code: 503
message: "Task workers are unavailable: %s"
170021:
name: InvalidTaskRequest
http_code: 422
message: "The task request is invalid: %s"
180002:
name: ServiceGatewayError
http_code: 503
message: "Service gateway internal error: %s"
180003:
name: ServiceNotImplemented
http_code: 501
message: "Operation not supported for service"
180004:
name: SDSNotAvailable
http_code: 501
message: "No serialization service backends available"
190001:
name: FileError
http_code: 400
message: "File error: %s"
200001:
name: StatsError
http_code: 400
message: "Stats error: %s"
200002:
name: StatsUnavailable
http_code: 503
message: "Stats unavailable: %s"
200003:
name: AppStoppedStatsError
http_code: 400
message: "Could not fetch stats for stopped app: %s"
210001:
name: RouteInvalid
http_code: 400
message: "The route is invalid: %s"
210002:
name: RouteNotFound
http_code: 404
message: "The route could not be found: %s"
210003:
name: RouteHostTaken
http_code: 400
message: "The host is taken: %s"
210004:
name: RoutePathTaken
http_code: 400
message: "The path is taken: %s"
210005:
name: RoutePortTaken
http_code: 400
message: "The port is taken: %s"
210006:
name: RouteMappingTaken
http_code: 400
message: "The route mapping is taken: %s"
210007:
name: RouteMappingNotFound
http_code: 404
message: "The route mapping could not be found: %s"
21008:
name: OutOfRouterGroupPorts
http_code: 403
message: "There are no more ports available for router group: %s. Please contact your administrator for more information."
210009:
name: RouterGroupNotFound
http_code: 404
message: "The router group could not be found: %s"
220001:
name: InstancesError
http_code: 400
message: "Instances error: %s"
220002:
name: InstancesUnavailable
http_code: 503
message: "Instances information unavailable: %s"
230002:
name: EventNotFound
http_code: 404
message: "Event could not be found: %s"
240001:
name: QuotaDefinitionNotFound
http_code: 404
message: "Quota Definition could not be found: %s"
240002:
name: QuotaDefinitionNameTaken
http_code: 400
message: "Quota Definition is taken: %s"
240003:
name: QuotaDefinitionInvalid
http_code: 400
message: "Quota Definition is invalid: %s"
240004:
name: QuotaDefinitionMemoryLimitInvalid
http_code: 400
message: "Quota Definition memory limit cannot be less than -1"
250001:
name: StackInvalid
http_code: 400
message: "The stack is invalid: %s"
250002:
name: StackNameTaken
http_code: 400
message: "The stack name is taken: %s"
250003:
name: StackNotFound
http_code: 404
message: "The stack could not be found: %s"
260001:
name: ServicePlanVisibilityInvalid
http_code: 400
message: "Service Plan Visibility is invalid: %s"
260002:
name: ServicePlanVisibilityAlreadyExists
http_code: 400
message: "This combination of ServicePlan and Organization is already taken: %s"
260003:
name: ServicePlanVisibilityNotFound
http_code: 404
message: "The service plan visibility could not be found: %s"
270001:
name: ServiceBrokerInvalid
http_code: 400
message: "Service broker is invalid: %s"
270002:
name: ServiceBrokerNameTaken
http_code: 400
message: "The service broker name is taken"
270003:
name: ServiceBrokerUrlTaken
http_code: 400
message: "The service broker url is taken: %s"
270004:
name: ServiceBrokerNotFound
http_code: 404
message: "The service broker was not found: %s"
270010:
name: ServiceBrokerNotRemovable
http_code: 400
message: "Can not remove brokers that have associated service instances: %s"
270011:
name: ServiceBrokerUrlInvalid
http_code: 400
message: "%s is not a valid URL"
270012:
name: ServiceBrokerCatalogInvalid
http_code: 502
message: "Service broker catalog is invalid: %s"
270013:
name: ServiceBrokerDashboardClientFailure
http_code: 502
message: "Service broker dashboard clients could not be modified: %s"
270014:
name: ServiceBrokerAsyncRequired
http_code: 400
message: "This service plan requires client support for asynchronous service operations."
270015:
name: ServiceDashboardClientMissingUrl
http_code: 502
message: "Service broker returned dashboard client configuration without a dashboard URL"
270016:
name: ServiceBrokerUrlBasicAuthNotSupported
http_code: 400
message: "User name and password fields in the broker URI are not supported"
270017:
name: ServiceBrokerRespondedAsyncWhenNotAllowed
http_code: 502
message: "The service broker responded asynchronously to a request, but the accepts_incomplete query parameter was false or not given."
270018:
name: ServiceBrokerConcurrencyError
http_code: 422
message: "The service broker could not perform this operation in parallel with other running operations"
270019:
name: ServiceBrokerCatalogIncompatible
http_code: 502
message: "Service broker catalog is incompatible: %s"
270020:
name: ServiceBrokerRequestRejected
http_code: 502
message: "The service broker rejected the request. Status Code: %s. Please check that the URL points to a valid service broker."
270021:
name: ServiceBrokerRequestMalformed
http_code: 502
message: "The service broker returned an invalid response: expected valid JSON object in body. Please check that the URL points to a valid service broker."
270022:
name: ServiceBrokerSyncFailed
http_code: 502
message: "Encountered an error while attempting to sync cloud controller with the service broker's catalog: %s"
290000:
name: BuildpackNameStackTaken
http_code: 422
message: "The buildpack name %s is already in use for the stack %s"
290001:
name: BuildpackNameTaken
http_code: 400
message: "The buildpack name is already in use: %s"
290002:
name: BuildpackBitsUploadInvalid
http_code: 400
message: "The buildpack upload is invalid: %s"
290003:
name: BuildpackInvalid
http_code: 400
message: "Buildpack is invalid: %s"
290004:
name: CustomBuildpacksDisabled
http_code: 400
message: "Custom buildpacks are disabled"
290005:
name: BuildpackLocked
http_code: 409
message: "The buildpack is locked"
290006:
name: JobTimeout
http_code: 524
message: "The job execution has timed out."
290007:
name: SpaceDeleteTimeout
http_code: 524
message: "Deletion of space %s timed out before all resources within could be deleted"