-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
9507 lines (8630 loc) · 577 KB
/
test.html
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
<!DOCTYPE html>
<html lang="en">
<head><title>Application Details - IBM Cloud</title>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link rel="icon" type="image/png" href="https://cloud.ibm.com/cache/8c7-1137334920/api/v6/img/favicon.png">
<meta property="og:title" content="Application Details - IBM Cloud"><!-- NREUM: (0) -->
<script type="text/javascript">window.csrfToken = 'iDmvfEGl-ZvQR6bWgwDcMpFTi7wq84ArrDgs';</script>
<script type="text/javascript">
window.appDetailStrings = {
"title": "Application Details - IBM Cloud",
"navTitle": "Navigation",
"logoutConfirmIBMID": "You are logged in to IBM Cloud with your IBMid. Logging out of IBM Cloud signs you out of other IBM apps that you might have open in other browser windows. Do you want to log out?",
"logoutConfirm": "Do you want to log out?",
"save": "Save",
"reset": "Reset",
"upgradeAccount": "Upgrade Account",
"plus": "Plus",
"minus": "Minus",
"B": "B",
"KB": "KB",
"MB": "MB",
"GB": "GB",
"TB": "TB",
"percentage": "{0}%",
"errorTitle": "Error",
"errorTimeout": "<b>Your request timed out.</b> Try again later.",
"errorAppRoutesTitle": "Retrieve app routes",
"errorAppRoutesMessage": "BXNUI0200E: <b>The routes for the app weren't retrieved because of an internal error.</b><br>Try again later. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.",
"missingCsrfToken": "BXNUI2088E: <b>The action that you requested wasn't completed because the CSRF token is missing or not valid.</b><br>Log out, log back in, and try again. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.",
"noItems": "No items to display.",
"overviewNavLabel": "Overview",
"deploymentNavLabel": "Deployment",
"runtimeNavLabel": "Runtime",
"runtimeInstancesNavLabel": "Memory and instances",
"runtimeFilesNavLabel": "Files",
"runtimeSSHNavLabel": "SSH",
"runtimeEnvVarNavLabel": "Environment variables",
"logsNavLabel": "Logs",
"autoscalerNavLabel": "Autoscaling (Beta)",
"connectedObjectsLabel": "Connections",
"newConnectionDialogTitle": "Connect IAM-Enabled Service",
"newConnectionDialogDescription": "To connect, you can customize the ServiceID and access role used for this binding. Restaging your app is required to connect this service and may result in application downtime.",
"newConnectionDialogRoleLabel": "Access Role for Connection",
"newConnectionDialogSubmitButton": "Connect",
"serviceIDCreateNew": "Create New Service ID...",
"serviceIDClearSelection": "Auto Generate",
"serviceIDDefaultText": "Select Service ID...",
"serviceIDTooltip": "A service ID identifies a service or application similar to how a user ID identifies a user. Choose the existing service ID that your application will use to connect to the service.",
"serviceIDLabel": "Service ID for Connection (Optional)",
"serviceIDLabelDefault": "Select Service ID (Optional)",
"serviceIDNameEmpty": "This value is required.",
"serviceIDDescEmpty": "This value is required.",
"serviceIDNameLabel": "New Service ID Name",
"serviceIDNameHint": "Enter Service ID Name",
"serviceIDDescLabel": "New Service ID Description (Optional)",
"serviceIDDescHint": "Enter Service ID Description",
"rolesTooltipTitle": "Access Role Options:",
"rolesOptionsViewer": "View only",
"rolesOptionsOperator": "Ability to use the resource with no purchasing capabilities",
"rolesOptionsEditor": "Ability to modify the resource including purchasing",
"rolesOptionsAdministrator": "All access to all things",
"apimanagementNavLabel": "API Management",
"performanceMonitoring": "Monitoring",
"instancesLabel": "Instances",
"memoryPerInstanceLabel": "Memory quota:",
"availableMemoryLabel": "Available memory:",
"memoryUnitPreInstance": "({0} per Instance)",
"pendingDashes": "--",
"runtimeActionIFrameTitle": "Runtime action",
"actionsLabel": "Actions:",
"dumpLabel": "Dump",
"traceLabel": "Trace",
"noRuntimeInstancesSelectedTitle": "No instances selected",
"noRuntimeInstancesSelectedText": "You must select at least one running instance to start an action.",
"noActionsForRuntime": "No actions available for this runtime",
"memoryLimitDialogTitle": "Memory limit",
"memoryLimitDialogMessage": "With a free trial, your account is limited to 2 GB of memory. To use more memory, you can add a credit card to upgrade to a Pay-As-You-Go account. This type of account includes free allowances, but if you exceed them, runtime charges might apply.",
"addCreditCard": "Add credit card",
"userProvidedServiceInstance": "User-provided service instance",
"viewConnections": "View more",
"createNewService": "Connect new",
"addNewService": "Connect new",
"bindAService": "Create connection",
"unbindService": "Unbind service",
"unbindServiceTitle": "Remove service from app",
"unbindServiceConfirm": "Are you sure you want to remove the '{service_instance_name}' service from the '{app_name}' app?",
"unbindServiceDeleteNotShared": "This is the only app that is using this service instance. Do you want to delete the service instance from IBM Cloud? <p class='note'>Note: Deleting the instance will delete all of its data and make it unavailable for future use. Deleting the instance cannot be undone.</p>",
"unbindServiceDeleteLabel": "Delete the service instance.",
"deleteService": "Delete Service",
"deleteServiceWarning": "Deleting the service will remove it from all apps that are using it. In addition, all of its data will be permanently deleted.",
"deleteServiceConfirm": "Are you sure you want to delete the '{service_instance_name}' service?",
"renameService": "Rename service",
"renameServiceTitle": "Edit service name",
"renameServiceHint": "Enter service name",
"renameServiceBadName": "The service instance name must contain at least one character that is not a blank character.",
"renameServiceTooLong": "The service instance name is too long. Names are limited to 50 characters.",
"serviceInstanceNameTaken": "The service instance name is taken: __name__",
"appNameTaken": "The app name is taken: __name__",
"restageAppTitle": "Restage app",
"restageUnbindService": "Your '{app_name}' app needs to be restaged. Do you want to restage it now?",
"restageCreateService": "Your '{app_name}' app must be restaged to use the new '{service_instance_name}' service. Restaging makes this service available for use. Do you want to restage it now?",
"objectName": "Connection name",
"objectType": "Type",
"objectCategory": "Category",
"objectPricePlan": "Price plan",
"objectAccessRole": "Access role",
"objectAction": "Action",
"serviceNameHeader": "SERVICES",
"planHeader": "PLAN",
"resourceGroupHeader": "RESOURCE GROUP",
"serviceOfferingHeader": "SERVICE OFFERING",
"serviceCredentials": "View credentials",
"serviceCredentialsAndSDKs": "View credentials and SDKs",
"serviceSdkDownload": "SDK download",
"serviceCredentialsTitle": "Service credentials",
"sericesCannotGetVCAP": "BXNUI0065E: <b>The VCAP_SERVICES environment variable for '{0}' wasn't retrieved because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"extensionViewDoc": "View docs",
"serviceQuickDocNoCredentials": "Credentials unavailable. You might not be authorized to view them.",
"appHealth": "App health",
"activityHeader": "Activity feed",
"viewActivityLogs": "View more",
"noActivityAvailable": "No activity available",
"eventAppStop": "stopped <span>__actee_name__</span> app",
"eventAppCreate": "created <span>__actee_name__</span> app",
"eventAppStart": "started <span>__actee_name__</span> app",
"eventAppModInstance": "instances to <span>__instance__</span>",
"eventAppModMemory": "memory to <span>__memory__ MB</span>",
"eventAppModDisk": "disk quota to <span>__disk__ MB</span>",
"eventAppModRoute": "changed routes",
"eventAppModEnv": "modified environment",
"eventAppUpdate": "updated <span>__actee_name__</span> app",
"eventAppInstanceCrash": "an instance of the app crashed: <span>__description__</span>",
"eventAppCrash": "app crashed",
"eventAppCrashStatus": "exit status: <span>__status__</span>, <span>__reason__</span>",
"eventAppDeleteRequest": "requested to delete <span>__actee_name__</span> app",
"eventAppRestage": "restaged <span>__actee_name__</span> app",
"eventAppMigrateDiego": "migration initiated",
"eventAppMigrateDEA": "rollback initiated",
"appFilesNoFile": "No file selected.",
"appFilesInstanceLabel": "Instance: ",
"appFilesFileLabel": "File: ",
"appFilesSizeLabel": "Size: ",
"appFilesDownload": "Download",
"appFilesContent": "File content",
"appFilesNotStarted": "The app is not running, so there are no files available.",
"appFilesErrorForDiego": "File viewing is not supported because the app is running on the Diego architecture, which does not support the Files API.<br />Use the cf ssh command to access the container.",
"appSSHWarning": "For checking files and editing code, use the cf ssh command to do file transfers. <a>Learn more about the cf ssh command</a>.",
"appSSHTitle": "Using the cf ssh command to do file transfers",
"appSSHContent": "SSH content",
"appSSHLabel": "Instance {0}",
"appDEA": "DEA",
"appDEATooltip": "DEA is the previously supported version of the runtime architecture. Migrate your app to Diego, the new runtime architecture.",
"appRollbacktoDEATooltip": "If the migration failed, you can roll the app back to DEA.",
"appDiegoLink": "Migrate to Diego",
"appDEALink": "Rollback to DEA",
"appDiegoNotification": "Review the <a href='/docs/cfapps/depapps.html' target='_blank'>known issues</a> and then select the <span class='diego-inline-title'>Migrate to Diego</span> action to initiate the migration process.",
"appDiegoDialogTitle": "Migrate '{0}'?",
"appDiegoDialogContent": "<p>Before you click Migrate now, make sure you have reviewed the <a href='/docs/cfapps/depapps.html' target='_blank'>known issues</a> that can occur during the migration.</p><br/><p>Alternatively, you can use the <a href='/docs/cfapps/depapps.html' target='_blank'>command line</a> to manually migrate your apps.</p>",
"appDiegoDialogBtn": "Ok",
"appDiegoDialogLaterBtn": "Later",
"migrateDiegoFailDialogTitle": "The app migration wasn't initiated.",
"migrateDiegoFailDialogTitleToDEA": "The rollback to DEA failed.",
"migrateDiegoFailDialogMessage": "<p>BXNUI3066E: The attempt to migrate your app failed because we couldn't contact Cloud Foundry to switch your app to Diego.</p><br/><p>Try again. If you see this message again, contact <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.</p>",
"migrateDiegoFailDialogMessageToDEA": "<p>BXNUI3067E: The attempt to roll your app back to DEA failed because we couldn't contact Cloud Foundry.</p><br/><p>Try again. If you see this message again, contact <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.</p>",
"migrateDiegoFailNotification": "The migration of your app was initiated. Confirm that everything is running as expected. If there are issues, you can roll the app back to DEA or contact <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.",
"migrateTryAgain": "Try again",
"migrateDEATitle": "Confirm rollback to DEA.",
"migrateDEAMessage": "Are you sure you want to roll this app back to DEA?",
"migrateDEACancel": "Cancel",
"migrateDEAOK": "OK",
"appEstimateCost": "Estimate the cost of this app",
"allInstancesRunning": "All instances are running",
"runtimeCardStopped": "Stopped: ",
"runtimeCardRunning": "Running: ",
"runtimeCardHealth": "Health is {0}%",
"unsavedChangesTitle": "Leave page without saving?",
"unsavedChangesDescription": "You have unsaved changes. Are you sure you want to leave this page?",
"continuousIntegrationLabel": "Continuous delivery",
"noContinuousIntegration": "Continuous delivery is not enabled for this app.",
"continuousIntegrationIntro": "Add a Git Repo and Pipeline to build, test, and deploy your app automatically.",
"continuousIntegrationToolChainIntro": "Enable continuous delivery to automate builds, tests, and deployments through the Delivery Pipeline, GitHub, and more.",
"continuousIntegrationViewToolchainIntro": "You enabled continuous delivery and have a toolchain. With your toolchain, you can automate builds, tests, deployments, and more. <a>View Docs</a>.",
"continuousIntegrationAddGitBtn": "Add",
"continuousIntegrationAddToolchainBtn": "Enable",
"continuousIntegrationViewToolchainBtn": "View toolchain",
"continuousIntegrationV1Text": "Looking for the <strong>ADD GIT</strong> button to set up a project at <a>hub.jazz.net</a>? Click <a>here</a>",
"costCardLabel": "Runtime cost",
"costCardMonthlyCharge": "Estimated monthly charge",
"costCardEstimatedTotal": "Estimated total for billing period",
"costCardCurrentCharges": "Current charges for billing period",
"costCardDescription": "Current and estimated cost excludes <a>connected services</a>.",
"costCardBtn": "View full usage details",
"noConnectedObjects": "No services are connected to this app",
"youMightConsider": "You can bind a service:",
"addGitTitle": "Create Git repository",
"configure": "Configure",
"editCode": "Edit code",
"gitUrl": "Git URL",
"orgLabel": "Org:",
"locationLabel": "Location:",
"spaceLabel": "Space:",
"tagLabel": "Tags:",
"addTagsButton": "Add Tags",
"all": "All items",
"cfApps": "Resource list",
"backToDashboard": "Dashboard",
"backToCF": "Cloud Foundry",
"routes": "Routes",
"routesAndDomains": "Routes and domains",
"restartApp": "Restart",
"startApp": "Start",
"stopApp": "Stop",
"appRuntimeNone": "none",
"appRuntimeDefault": "Runtime",
"visitAppString": "Visit App URL",
"appRunning": "Running",
"appStopped": "Stopped",
"appAwake": "This app is awake but will sleep after {0} more days of development inactivity.",
"appAwakeNoCountdown": "This app is awake.",
"appAsleep": "Asleep:  App has been inactive for over 10 days. <a class='upgradeAccountLink' href=\'#\'>Upgrade account</a> or restart app.",
"appStateUnknown": "Unknown",
"appNotRunning": "Not running",
"appIsStarting": "Starting",
"appIsRestarting": "Restarting",
"appIsStopping": "Stopping",
"appIsStaging": "Staging",
"appIsRestaging": "Restaging",
"appMigrationInit": "Migration initiated",
"appRollbackInit": "Rollback initiated",
"appInstancesStarting": "App instances are starting",
"appInstanceStarting": "App instance is starting",
"appInstanceFailed": "{0} instances failed",
"appNotStartedDialogTitle": "'{0}' failed to start",
"appNotStartedDialogInfo": "Your app failed to start.",
"appNotStartedDueToMemory": "The app cannot be started due to an insufficient amount of allocated memory.",
"appNotRestartedDialogTitle": "'{0}' failed to restart",
"appNotRestartedDialogInfo": "Your app failed to restart.",
"appNotStoppedDialogTitle": "'{0}' failed to stop",
"appNotStoppedDialogInfo": "Your app failed to stop.",
"appNotRestagedDialogTitle": "'{0}' failed to restage",
"appNotRestagedDialogInfo": "Your app failed to restage.",
"appInstancesFlappingDialogTitle": "'{0}' failing to restart",
"appInstancesFlappingDialogInfo": "An instance of your app is trying but failing to restart.",
"appInstancesFlappingsDialogInfo": "{0} instances of your app are trying but failing to restart.",
"appMenuTooltip": "Menu",
"appGearMenu": "Gear Menu",
"appRouteMenu": "Edit routes",
"appRenameMenu": "Rename",
"appDeleteMenu": "Delete",
"enableMobile": "Enable app for mobile",
"enableMobileConfirmation": "To enable your app for mobile, IBM Cloud adds app security function provided by {0}. Do you want to add the {0} service to your app?",
"enableMobileFailed": "BXNUI0602E: <b>Failed to add the {0} service to your app because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"addButton": "Add",
"stopButton": "Stop",
"restartButton": "Restart",
"saveButton": "Save",
"cancelButton": "Cancel",
"yesButton": "Yes",
"noButton": "No",
"deleteButton": "Delete",
"removeButton": "Remove",
"restageButton": "Restage",
"okButton": "OK",
"closeButton": "Close",
"stopAppDialogTitle": "Stop app",
"stopAppConfirmation": "Are you sure you want to stop the '{0}' app?",
"restartAppDialogTitle": "Restart app",
"restartAppConfirmation": "Are you sure you want to restart '{0}'?",
"updateAppErrorDialogTitle": "Update app",
"cannotUpdateAppSettings": "BXNUI0020E: <b>The settings for the '{0}' app weren't updated because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"editAppNameHint": "Enter app name",
"appNameDialogTitle": "Edit app name",
"cannotRetrieveInfo": "BXNUI0044E: <b>Information wasn't retrieved from the server because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotDeleteApp": "BXNUI0004E: <b>The '{0}' app wasn't deleted because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"deleteAppDialogShortTitle": "Delete app",
"deleteAppDialogTitle": "Are you sure you want to delete the '{0}' app?",
"deleteAppDialogConfirmation": "After '{0}' app is deleted, some services and routes will not be associated with any app.",
"servicesTab": "Services",
"routesTab": "Routes",
"deleteExplicitServices": "Select the services to be deleted when the app is deleted.",
"deleteExplicitServicesNote": "Services that are not deleted can still be administered from the dashboard.",
"deleteExplicitRoutes": "Select the routes to be deleted when the app is deleted.",
"deleteExplicitRoutesNote": "Routes that are not deleted remain bound to the space, and only apps within the space will be able to use them.",
"updateRouteErrorDialogTitle": "Update route",
"cannotRetrieveAppRoutes": "BXNUI0203E: <b>The routes for the app weren't retrieved because of an internal error.</b><br>Try again later. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.",
"cannotRetrieveOrgDomains": "BXNUI0202E: <b>The domains for the org weren't retrieved because of an internal error.</b><br>Try again later. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.",
"cannotRetrieveSpaceRoutes": "BXNUI0201E: <b>The routes for the space weren't retrieved because of an internal error.</b><br>Try again later. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>.",
"cannotRetrieveSSLServerNames": "BXNUI0073E: <b>Information about the uploaded certificates could not be retrieved.</b> <br>Try again later. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotUpdateRoutes": "BXNUI0022E: <b>The routes for the '{0}' app weren't updated because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotUnmapRouteFromApp": "BXNUI0031E: <b>The '{0}' route wasn't unmapped from the '{1}' app because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotMapRouteToApp": "BXNUI0030E: <b>The '{0}' route wasn't mapped to the '{1}' app because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotDeleteRoutes": "BXNUI0038E: <b>The routes that are associated with the '{0}' app weren't deleted because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"routeIsTaken": "BXNUI0600E: The route '{0}' is already assigned. Try a different route.",
"deleteRouteErrorDialogTitle": "Delete route",
"routeAccessDialogTitle": "Edit routes",
"addNewRoute": "Add route",
"routeSSLNotComplete": "To determine if this route is secured with SSL, enter a host name.",
"routeSSLCovered": "This route is secured with SSL through a certificate that was uploaded for the '{0}' domain.",
"routeSSLCoveredSystemDomain": "This route is secured with SSL because it uses the '{0}' system domain.",
"routeSSLNotCovered": "This route is not secured with SSL. You can upload a certificate for the '{0}' domain on the Manage domains page.",
"deleteRouteTooltip": "Delete route '{0}'",
"UndoRouteDeletion": "Undo",
"routeDeletionWarningTitle": "Route changes:",
"routeDeletionWarningContent": "{0} routes are marked for deletion. Changes will be overridden when you deploy again unless you also update your manifest.yml. <a href='{1}/docs/cfapps/depapps.html#appmanifest' target='_blank'>Learn More</a>",
"oneRouteDeletionWarningContent": "1 route is marked for deletion. Changes will be overridden when you deploy again unless you also update your manifest.yml. <a href='{0}/docs/cfapps/depapps.html#appmanifest' target='_blank'>Learn More</a>",
"authenticationOn": "On",
"authenticationOff": "Off",
"manageDomain": "Manage domains",
"addDomain": "Add custom domain",
"enterHostTip": "Enter host",
"enterHostOptional": "Enter host (optional)",
"deleteRoutesDialogTitle": "Remove",
"deleteRoutesConfirmation": "Are you sure you want to remove or replace the following routes from the '{0}' app?",
"deleteRoutesTitle": "The following routes will no longer be mapped to any app. Do you also want to delete them from the space?",
"deleteRoutesSubTitle": "Note: Any routes that you choose not to delete will remain bound to the space so that they cannot be used by outside apps.",
"inputValueRequired": "The value is required.",
"badHost": "The host name must contain only alphanumeric characters and dash characters, must not begin or end with the dash character, and cannot be more than 63 characters long.",
"duplicateRoute": "Duplicate route.",
"updateServiceTitle": "Update service",
"appEnvVcap": "VCAP_SERVICES",
"appEnvUserDefined": "User defined",
"appEnvNoVcap": "The value for VCAP_SERVICES is empty. Either there are no services associated with this app or you are not authorized to view them.",
"appEnvNoVar": "No items to display.",
"appEnvAdd": "Add",
"appEnvSave": "Save",
"appEnvReset": "Reset",
"appEnvExport": "Export",
"envNameLabel": "Name",
"envValueLabel": "Value",
"envVarActionLabel": "Action",
"copyTooltip": "Copy",
"copySuccessTooltip": "Copied!",
"copyErrorTooltip": "Press Ctrl-C to copy",
"copyErrorTooltip_mac": "Press ⌘-C to copy",
"missingEnvVarName": "Specify an environment variable name.",
"missingEnvVarValue": "Specify an environment variable value.",
"duplicateEnvVarName": "There is a duplicate environment variable name. Remove the entry with the duplicate environment variable name.",
"invalidColumnEditorValue": "Unable to save environment variables. There is a column editor open with an invalid entry.",
"cannotUpdateEnvVars": "BXNUI0021E: <b>The environment variables for the '{0}' app weren't updated because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"updateEnvVariablesDialogTitle": "Update environment variables",
"cannotRetrieveAppInfo": "BXNUI0008E: <b>The '{0}' app details weren't retrieved because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotGetVCAPSerices": "BXNUI0065E: <b>The VCAP_SERVICES environment variable for '{0}' wasn't retrieved because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"unsavedChangesInline": "You have unsaved changes",
"buildpack": "Buildpack",
"memoryAllocation": "Memory allocation",
"MBPerInstance": "MB memory per instance",
"totalMBAllocation": "Total MB allocation",
"MBstillAvailable": "MB still available",
"standardUpgrade": "Your Standard account is limited to {0} MB of runtime memory. Need more?",
"exceedInstanceQuotaLimit": "Exceed instance quota limit",
"running": "Running",
"staging": "Staging",
"stopping": "Stopping",
"starting": "Starting",
"flapping": "Failing to start",
"down": "Down",
"stopped": "Stopped",
"mixed": "Mixed",
"statusLabel": "Status",
"instanceLabel": "Instance",
"cpuLabel": "CPU",
"memoryLabel": "Memory",
"diskLabel": "Disk",
"startedLabel": "Last started",
"noInstance": "The app is not started, so there are no instances to display.",
"header_title": "Logs",
"timestamp_label": "Time stamp",
"log_type_label": "Log type",
"app_instances_label": "App instance",
"channel_label": "Channel:",
"advanced_view": "View in Kibana",
"no_recent_log_entries": "No log entries",
"all_channel_label": "out, err",
"all_label": "All",
"error_label": "Errors",
"out_label": "out",
"err_label": "err",
"all_description": "all",
"api_description": "Cloud Foundry API (API)",
"stg_description": "Staging (STG)",
"dea_description": "Droplet Execution Agent (DEA)",
"rtr_description": "Router (RTR)",
"lgr_description": "Loggregator (LGR)",
"app_description": "Application (APP)",
"ssh_description": "Diego SSH (SSH)",
"cell_description": "Diego Cell (CELL)",
"log_doc": "View information in docs",
"viewMostRecent": "View most recent",
"typeLabel": "Type",
"logsLabel": "Logs",
"timeLabel": "Time",
"actionLabel": "Actions",
"gridViewText": "Grid view",
"listViewText": "List view",
"filter": "Filter",
"search": "Search",
"appConnectedSearch": "Filter items",
"appConnectedNoServiceTitle": "No connected services",
"appConnectedNoService": "Click <strong>Create connection</strong> to add service connections to your app.",
"connectExistingService": "Connect Existing Compatible Service",
"connectServiceConfirmation": "Connect <strong>__service__</strong> to <strong>__app__</strong>?",
"itemsPerPageText": "Items per page",
"pageNumberText": "Page Number",
"itemRangeText": "{from}-{to} of {total} items",
"pageRangeText": "{current} of {total} pages",
"backwardText": "Backward",
"forwardText": "Forward",
"allCategories": "All categories",
"category_blueprints_title": "Blueprints",
"catagory_compute_title": "Compute",
"category_network_title": "Network",
"category_storage_title": "Storage",
"category_media_cdn_title": "Media & CDN",
"category_data_analytics_title": "Data & Analytics",
"category_watson_title": "Watson",
"category_integration_title": "Integrate",
"category_devops_title": "DevOps",
"category_security_title": "Security",
"category_app_services_title": "App services",
"category_mobile_title": "Mobile",
"category_internet_of_things_title": "Internet of Things",
"category_private_title": "Private APIs",
"mobile_tutorial_title": "Mobile tutorials",
"mobile_tutorial_create": "Creating mobile apps",
"mobile_tutorial_android": "Hello World for Android",
"mobile_tutorial_ios": "Hello World for iOS",
"mobile_tutorial_cordova": "Hello World for Cordova",
"noItemToConnect": "No existing services",
"searchServiceHint": "Search compatible services",
"connectButton": "Connect",
"addBindingDialogTitle": "Add service",
"cannotBindServiceToApp": "BXNUI0033E: <b>The '{0}' service wasn't added to the '{1}' app because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"appGettingStarted": "Getting started",
"appGettingStartedHeader": "More ways to develop and deploy your IBM Cloud app",
"appGettingStartedContent": "Getting started content",
"appGettingStartedTutorialContent": "Tutorial content",
"appGettingStartedMoreContent": "More content",
"appGettingStartedRouteTitle": "<span class='titlePrefix'>Your app is ready!</span> <span>{0}</span>",
"eclipseGettingStartedTitle": "<span {0}>Eclipse</span> tools for IBM Cloud",
"eclipseGettingStartedDesc": "Develop, integrate, and push apps to IBM Cloud using Eclipse.",
"vsGettingStartedTitle": "<span {0}>Visual Studio</span>",
"vsGettingStartedDesc": "Easily build, manage, and deploy cloud scale apps with Visual Studio.",
"bluemixGettingStartedTitle": "<span {0}>IBM Cloud</span> Sync",
"bluemixGettingStartedDesc": "Develop locally. Run in IBM Cloud.<p>Sync your code on each save.",
"cfGettingStartedTitle": "Command line interface",
"cfGettingStartedDesc": "Run your code locally.<p>Manually push to IBM Cloud.",
"cfGettingStartedContentTitle": "Getting started with the Cloud Foundry command line interface",
"cfGettingStartedContentSetupCF": "Setup: ",
"cfGettingStartedContentVisitAppOverview": "View app overview",
"gitGettingStartedTitle": "<span {0}>Git</span>",
"toolchainGettingStartedTitle": "<span {0}>Continuous delivery</span>",
"toolchainGettingStartedDesc": "Build, test, and deliver by using DevOps practices.",
"gitGettingStartedDesc": "Deploy your app with the Git CLI,<p>or use IBM Cloud DevOps Services.",
"gettingStartedWithHeader": "Getting started with:",
"nodeRedGettingStartedTitle": "<span {0}>Node-Red Flow Editor</span>",
"nodeRedGettingStartedDesc": "Create IoT apps with Node-Red using the visual flow editor.",
"iotGettingStartedTitle": "<span {0}>Internet of Things</span>",
"iotGettingStartedDesc": "Create Internet of Things apps with Node-Red visual editor and the Internet of Things service.",
"iotElectronicsGettingStartedTitle": "IoT for Electronics",
"iotElectronicsGettingStartedDesc": "Create IoT apps for your connected appliances.",
"developmentStageBeta": "Beta",
"developmentStageExperimental": "Experimental",
"userNotLoggedIn": "BXNUI2027E: <b>No user is logged in.</b><br>Log in and try again.",
"error404_title": "IBM Cloud - Page Not Found",
"error404": "404 Error",
"error404_pageNotFound": "This page seems to be lost in space.",
"error404_homeMessage": "Go back <a href='{0}' class='link'>home</a>.",
"error403_title": "IBM Cloud - Forbidden",
"error403": "403 Error",
"error403_forbidden": "You do not have permission to view this page.",
"error500_title": "IBM Cloud - Internal Server Error",
"error500": "500 Error",
"error500_internalServerError": "An unknown error occurred while retrieving this page.",
"failedGetFileContents": "Failed to retrieve the contents of file path '{0}' in the '{1}' app.",
"noFilesToDisplay": "There are no files to display for instance '{0}' of '{1}' app.",
"noCredentialsForServiceError": "BXNUI0098E: <b>The list of credentials can't be retrieved at the moment.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotRetrieveServiceInstances": "BXNUI0133E: <b>Service bindings weren't retrieved because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotRetrieveServiceBindings": "BXNUI0040E: <b>Service bindings weren't retrieved because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotUnbindServiceFromApp": "BXNUI0034E: <b>The '{0}' service wasn't removed from the '{1}' app because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotUpdateServiceInstance": "BXNUI0023E: <b>The settings for the '{0}' service instance weren't updated because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"cannotDeleteService": "BXNUI0035E: <b>The '{0}' service instance wasn't deleted because a problem occurred contacting Cloud Foundry.</b> <br>Try again later. If you see this message again, go to the <a href='https://developer.ibm.com/bluemix/support/#status' target='_blank'>IBM Cloud status page</a> to check whether a service or component has an issue. If the problem continues, go to <a href='/unifiedsupport/supportcenter' target='_blank'>IBM Cloud Support</a>. ",
"dontShowAgainMessage": "Don't show me this message again",
"overrideInstanceChangesTitle": "Changes May Be Overridden",
"overrideInstanceChangesMessage": "Changes to instances, memory per instance, and memory allocation will be overidden when you deploy your app unless you update your manifest.yml settings. <a href='{0}/docs/cfapps/depapps.html#appmanifest' target='_blank'>Learn more.</a>",
"editInGitHub": "Edit in GitHub",
"errorPageTitle": "Page Not Found",
"lastUpdatedStr": "Last Updated:",
"msgExplanationBeforeContent": "Explanation:",
"msgUserResponseBeforeContent": "Action:",
"tsSymptomsBeforeContent": "What's happening",
"tsCausesBeforeContent": "Why it's happening",
"tsResolveBeforeContent": "How to fix it",
"copiedText": "Copied!",
"tipText": "Tip: ",
"noteText": "Note: ",
"importantText": "Important: ",
"deprecatedText": "Deprecated: "
};
window.cfDomain = 'ng.bluemix.net';
window.appGuid = '6a135764-bd6f-4d39-8502-a0a90bec8d9d';
window.appDetailsBaseUrl = 'https://cloud.ibm.com';
window.isDedicatedOrLocal = '';
window.bluemixUIVersion = 'v6';
window.enableDiegoMigrate = !!'';
window.enableDEARollback = !!'';
window.enableSSHForDiego = !!'true';
window.connectSshNumber = 10;
window.appConfig = {
"contextRoot": "/apps",
"sessionId": "s:wVJwUNmIolGjH0gjQ2l-zlt1w7b2cVYC:IBMid-27000417KS.pZ61akbFkkFXSEMoSlyxi7seC2+G1ggte5ao/YaYMas",
"appRoute": "http://details-app",
"appClientRoute": "https://cloud.ibm.com",
"startCodingInfo": {
"eclipseToolingSupported": ["javaHelloWorld", "nodejsHelloWorld"],
"vsToolingSupported": ["dotnetHelloWorld"],
"docAPIBase": "/api/content",
"nodeRedDocAPI": "{BASE}/starters/Node-RED/start_nodered.html",
"iotDocAPI": "{BASE}/starters/IoT-starter/iot500.html",
"iotElectronicsDocAPI": "{BASE}/starters/IoTElectronics-starter/index.html",
"eclipseDocAPI": "{BASE}/starters/deploy_eclipsetools.html",
"vsDocAPI": "{BASE}/starters/deploy_vs.html",
"commandLineRuntimes": {
"javaHelloWorld": "liberty",
"tomcatHelloWorld": "tomcat",
"nodejsHelloWorld": "nodejs",
"dotnetHelloWorld": "dotnet",
"goHelloWorld": "go",
"phpHelloWorld": "php",
"pythonHelloWorld": "python",
"swiftStarter": "swift",
"rubyHelloWorld": "ruby"
},
"commandLineDocAPI": "{BASE}/starters/install_cli.html",
"gitWithDevOpsDocAPI": "{BASE}/starters/deploy_devops.html",
"nodeRedTemplateId": "node-red-template",
"iotTemplateId": "iot-template",
"iotElectronicsTemplateId": "IoT-for-Electronics-Starter",
"docLang": "en",
"toolchainEnabled": true,
"devopsRegionId": "ibm:yp:us-south"
},
"mobileTypes": {
"MBAAS": {
"mainServices": ["MAS", "MAS_Dev", "MAS_Test"],
"mobileDataServices": ["MobileData", "MobileData_Dev", "MobileData_Test"],
"pushServices": ["Push", "Push_Dev", "Push_Test"],
"platforms": ["iOS", "Android", "Hybrid"],
"runtimes": ["nodejsHelloWorld"],
"boilerplate": "mobileBackendStarter"
},
"MobileFirst": {
"mainServices": ["AppID", "AppID_Dev", "AppID_Test"],
"cloudantNoSqlServices": ["cloudantNoSQLDB", "cloudantNoSQLDB_Dev", "cloudantNoSQLDB_Test"],
"pushServices": ["imfpush", "imfpush_Dev", "imfpush_Test"],
"platforms": ["iOS"],
"runtimes": ["nodejsHelloWorld"],
"boilerplate": "mobileFirstPlatform",
"gettingStarted": "&hash=/client/register/new/ios",
"sample": "&hash=/client/register/sample/ios"
}
},
"toolchainEnabled": true,
"tagsUIEnable": true,
"devopsRegionId": "ibm:yp:us-south",
"toolchainUrl": "https://cloud.ibm.com",
"rtmgmtUrl": "https://rtmgmt.ng.bluemix.net/rest/ace/v1/apps/appGuid/uiMetadata",
"resourcesExplorerUrl": "/resources",
"enableAccountBilling": true,
"lang": "en",
"logTypeInfo": "https://cloud.ibm.com/docs/monitor_log/monitoringandlogging.html#logging_bluemix_apps",
"regionDisplayName": "Dallas",
"regionName": "us-south",
"regionId": "ibm:yp:us-south",
"appFileApiBaseUrl": "https://cloud.ibm.com/apps/api/apps/6a135764-bd6f-4d39-8502-a0a90bec8d9d",
"connectionInfo": {"userName": "[email protected]"},
"pricingUrl": "https://cloud.ibm.com/?direct=classic#/pricing",
"envId": "ibm:yp:us-south",
"appHibernationThreshold": 10,
"gcResources": {
"DIRECT_LINK_COLOCATION": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/378-fbb60ad3d95e3c95/images/uploaded/direct-link.png"},
"doc_url": "https://console.bluemix.net/docs/infrastructure/direct-link/getting-started.html"
},
"DOMAIN_REGISTRATION": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/1709-fbecad4a27e29f3e/images/uploaded/domain-name-service.png"},
"doc_url": "https://console.bluemix.net/docs/infrastructure/dns/getting-started.html"
},
"subnet-ip": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/1342-3fb8cfb5bdfeb644/images/uploaded/subnets-ips.png"},
"doc_url": "https://console.bluemix.net/docs/infrastructure/subnets/getting-started.html"
},
"SUBNET_GROUP": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/1342-3fb8cfb5bdfeb644/images/uploaded/subnets-ips.png"},
"doc_url": "http://knowledgelayer.softlayer.com/learning/utilizing-subnets-and-ips"
},
"VLAN": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/603-08c7e1627dfa74be/images/uploaded/vlan.png"},
"doc_url": "https://console.bluemix.net/docs/infrastructure/vlans/getting-started.html"
},
"accern-api": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6ad34583-a736-4bbe-9d39-940fdb7573f6/artifacts/cache/c570014f65827b811ae0e0f32b53e0af-public/accern_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6ad34583-a736-4bbe-9d39-940fdb7573f6/artifacts/cache/54fd7e044bf089462bfc127587a9a7af-public/accern_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6ad34583-a736-4bbe-9d39-940fdb7573f6/artifacts/cache/84d86404add511c649bd892a9022705b-public/accern_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6ad34583-a736-4bbe-9d39-940fdb7573f6/artifacts/cache/b267b4ad16fce6af892adbd2cfb6201d-public/accern_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Accern/index.html"
},
"accesstrail": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c466e218-9188-4562-9af5-fc7e0dc790c5/artifacts/cache/96c09759b443f8384bc145ef56872f50-public/activity-tracker-32x32.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c466e218-9188-4562-9af5-fc7e0dc790c5/artifacts/cache/96c09759b443f8384bc145ef56872f50-public/activity-tracker-32x32.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c466e218-9188-4562-9af5-fc7e0dc790c5/artifacts/cache/96c09759b443f8384bc145ef56872f50-public/activity-tracker-32x32.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c466e218-9188-4562-9af5-fc7e0dc790c5/artifacts/cache/96c09759b443f8384bc145ef56872f50-public/activity-tracker-32x32.svg"
},
"doc_url": "/docs/services/cloud-activity-tracker?topic=cloud-activity-tracker-getting-started#getting-started"
},
"accountscore": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/b015f9c4-c60a-4f66-abc6-c9b0e6b7f35e/artifacts/cache/59e2dbfde60b47c5ebeb1cbad901bd79-public/accountscore_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/b015f9c4-c60a-4f66-abc6-c9b0e6b7f35e/artifacts/cache/9265b955ddb9819f31283f60771e7f00-public/accountscore_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/b015f9c4-c60a-4f66-abc6-c9b0e6b7f35e/artifacts/cache/837b88462b8c4d25e4ca027f808aae11-public/accountscore_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/b015f9c4-c60a-4f66-abc6-c9b0e6b7f35e/artifacts/cache/e9c412d382f7f4459ae2c646032fdeb6-public/accountscore_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/AccountScore/index.html"
},
"accrete-ai--rational-exuberance": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37fa576b-c3fa-4428-93d5-62acbf434ece/artifacts/cache/318f3110b2a5e86cee23100c33d2a045-public/accreteai-rational-exuberance_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37fa576b-c3fa-4428-93d5-62acbf434ece/artifacts/cache/d3ed8c8c5945516e0b91e9582be8e37d-public/accreteai-rational-exuberance_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37fa576b-c3fa-4428-93d5-62acbf434ece/artifacts/cache/1c587eb589e4ef453bdc4b9606f46030-public/accreteai-rational-exuberance_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37fa576b-c3fa-4428-93d5-62acbf434ece/artifacts/cache/68f2a10319d5c830ce6666679ac5a9d7-public/accreteai-rational-exuberance_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Rational-Exuberance/index.html"
},
"accrete-ai--rumor-hound": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/94ac6fe5-c02e-439e-aef4-596cf839c357/artifacts/cache/8909e481b10947cbb62263404d22d66f-public/accreteai-rumor-hound_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/94ac6fe5-c02e-439e-aef4-596cf839c357/artifacts/cache/c3eecfb5e3da97b4a39bdf8e86161f5a-public/accreteai-rumor-hound_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/94ac6fe5-c02e-439e-aef4-596cf839c357/artifacts/cache/968018e28b5d26bd398b2e954cc834e6-public/accreteai-rumor-hound_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/94ac6fe5-c02e-439e-aef4-596cf839c357/artifacts/cache/68f2a10319d5c830ce6666679ac5a9d7-public/accreteai-rumor-hound_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Rumor-Hound/index.html"
},
"accrete-ai--topic-deltas": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/acd54fb2-91a6-4fff-be88-7b28a993ee6d/artifacts/cache/318f3110b2a5e86cee23100c33d2a045-public/accreteai-topic-deltas_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/acd54fb2-91a6-4fff-be88-7b28a993ee6d/artifacts/cache/0e9afead93d954bd9397a1777967ea9e-public/accreteai-topic-deltas_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/acd54fb2-91a6-4fff-be88-7b28a993ee6d/artifacts/cache/06e02ad9b0a1258ccf128801b3405aed-public/accreteai-topic-deltas_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/acd54fb2-91a6-4fff-be88-7b28a993ee6d/artifacts/cache/68f2a10319d5c830ce6666679ac5a9d7-public/accreteai-topic-deltas_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Topic-Deltas/index.html"
},
"actifio-go": {
"images": {
"feature_image": "https://actifiogo.com/images/logo1.svg",
"image": "https://actifiogo.com/images/logo1.svg",
"medium_image": "https://actifiogo.com/images/logo1.svg",
"small_image": "https://actifiogo.com/images/logo1.svg"
}, "doc_url": "https://cloud.ibm.com/docs/services/Actifio-GO/index.html"
},
"aiopenscale": {
"images": {
"feature_image": "https://aiopenscale-dev.us-south.containers.appdomain.cloud/aiopenscale-broker/public/featured.png",
"image": "https://aiopenscale-dev.us-south.containers.appdomain.cloud/aiopenscale-broker/public/featured.png",
"medium_image": "https://aiopenscale-dev.us-south.containers.appdomain.cloud/aiopenscale-broker/public/featured.png",
"small_image": "https://aiopenscale-dev.us-south.containers.appdomain.cloud/aiopenscale-broker/public/featured.png"
}, "doc_url": "https://cloud.ibm.com/docs/services/ai-openscale/getting-started.html#gettingstarted"
},
"alertnotification": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AlertNotification-8d3cff7f-bb94-1444678145000/artifacts/cache/0b8de05ab84c938328ce29c357abf977-public/alertnotification-64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AlertNotification-8d3cff7f-bb94-1444678145000/artifacts/cache/b1b4ea73c3573e8e065fd6ae4dd5409f-public/alertnotification-50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AlertNotification-8d3cff7f-bb94-1444678145000/artifacts/cache/67d8ca07458ac99980a02a820f3a1f1e-public/alertnotification-32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AlertNotification-8d3cff7f-bb94-1444678145000/artifacts/cache/264a4a205cdbd656aa01974726f1a937-public/alertnotification-24.png"
}, "doc_url": "https://console.cloud.ibm.com/docs/services/AlertNotification/index.html"
},
"alloy": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d9ba7486-1a10-4a6d-86e6-ef0cf69bad85/artifacts/cache/adc222e6003a6486445eb8a125ab2774-public/alloy_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d9ba7486-1a10-4a6d-86e6-ef0cf69bad85/artifacts/cache/0d6a934db552a0f9eae8b0b066c0f545-public/alloy_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d9ba7486-1a10-4a6d-86e6-ef0cf69bad85/artifacts/cache/2a43850069f250370d4d34320aae5e6a-public/alloy_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d9ba7486-1a10-4a6d-86e6-ef0cf69bad85/artifacts/cache/c82581cc5cefb7ef697937ef6922c247-public/alloy_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Alloy/index.html"
},
"apiconnect": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/api-connect/artifacts/cache/671fe136a972b33e6527aa76eb0a9903-public/images/api-connect.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/api-connect/artifacts/cache/671fe136a972b33e6527aa76eb0a9903-public/images/api-connect.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/api-connect/artifacts/cache/671fe136a972b33e6527aa76eb0a9903-public/images/api-connect.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/api-connect/artifacts/cache/671fe136a972b33e6527aa76eb0a9903-public/images/api-connect.svg"
}, "doc_url": "https://cloud.ibm.com/docs/services/apiconnect?topic=apiconnect-getting-started"
},
"appconnect": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/96a0ebf2-2a02-4e32-815f-7c09a1268c78/artifacts/cache/68e62dce5b3a97425a8f0db89fca7ef9-public/Icon.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/96a0ebf2-2a02-4e32-815f-7c09a1268c78/artifacts/cache/68e62dce5b3a97425a8f0db89fca7ef9-public/Icon.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/96a0ebf2-2a02-4e32-815f-7c09a1268c78/artifacts/cache/68e62dce5b3a97425a8f0db89fca7ef9-public/Icon.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/96a0ebf2-2a02-4e32-815f-7c09a1268c78/artifacts/cache/68e62dce5b3a97425a8f0db89fca7ef9-public/Icon.svg"
},
"doc_url": "https://console.stage1.bluemix.net/docs/services/AppConnect/appconnect.html#appconnect"
},
"appid": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AdvancedMobileAccess-d6aece47-d840-45b0-8ab9-ad15354deeea/artifacts/cache/d0b8d5ab55b07a1251adbc6347b7243e-public/images/app_id_64x64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AdvancedMobileAccess-d6aece47-d840-45b0-8ab9-ad15354deeea/artifacts/cache/ad0069c4b8f4f2e2228b9a4a4af84d57-public/images/app_id_50x50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AdvancedMobileAccess-d6aece47-d840-45b0-8ab9-ad15354deeea/artifacts/cache/6ba1acd0da532e6bb7730803d9ffcfdd-public/images/app_id_32x32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/AdvancedMobileAccess-d6aece47-d840-45b0-8ab9-ad15354deeea/artifacts/cache/80be20abc1542389bd038a7452f852ee-public/images/app_id_24x24.png"
}, "doc_url": "https://cloud.ibm.com/docs/services/appid"
},
"applaunch": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/09c156fd-c78b-47e6-b19f-0895e5f01d99/artifacts/cache/a482fd9d480b7e50dd54d2f895d72986-public/applaunch-service-broker/applaunchservice.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/09c156fd-c78b-47e6-b19f-0895e5f01d99/artifacts/cache/a482fd9d480b7e50dd54d2f895d72986-public/applaunch-service-broker/applaunchservice.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/09c156fd-c78b-47e6-b19f-0895e5f01d99/artifacts/cache/a482fd9d480b7e50dd54d2f895d72986-public/applaunch-service-broker/applaunchservice.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/09c156fd-c78b-47e6-b19f-0895e5f01d99/artifacts/cache/a482fd9d480b7e50dd54d2f895d72986-public/applaunch-service-broker/applaunchservice.svg"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/app-launch/index.html"
},
"dotnetHelloWorld": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/dotnetHelloWorld/artifacts/cache/df14309946714fb3daab9f3009fe3449-public/rest/templates/dotnetHelloWorld/cachedIcon/large/0",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/dotnetHelloWorld/artifacts/cache/df14309946714fb3daab9f3009fe3449-public/rest/templates/dotnetHelloWorld/cachedIcon/large/0",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/dotnetHelloWorld/artifacts/cache/6256b64fbaa5cc4df9ab08b0dbd50c0d-public/rest/templates/dotnetHelloWorld/cachedIcon/medium/0",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/dotnetHelloWorld/artifacts/cache/4ad552888ffa2a705f2ab3777de921a4-public/rest/templates/dotnetHelloWorld/cachedIcon/small/0"
}
},
"at-t-flow-designer": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/8514c706-225d-4848-a689-7c0a0bdcca17/artifacts/cache/ba34604a7f9a569f785462c8decf50fe-public/att_flow_designer_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/8514c706-225d-4848-a689-7c0a0bdcca17/artifacts/cache/38992ea3079284a061501e585ad69292-public/att_flow_designer_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/8514c706-225d-4848-a689-7c0a0bdcca17/artifacts/cache/0793d5b852143dd66e7eace3c077a291-public/att_flow_designer_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/8514c706-225d-4848-a689-7c0a0bdcca17/artifacts/cache/3cf44296d24d5662b729a1e7875bd7ec-public/att_flow_designer_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/ATTFlow/index.html"
},
"at-t-iot-data-plans": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/7af3a600-6cf5-4047-a48d-264646af214c/artifacts/cache/d48780f7cf1efb0e7c479aa06b51d3f5-public/att_iot_data_plans_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/7af3a600-6cf5-4047-a48d-264646af214c/artifacts/cache/a8dfb89ec1e7eec9032b563b1f946d7e-public/att_iot_data_plans_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/7af3a600-6cf5-4047-a48d-264646af214c/artifacts/cache/f51e2e9baea69bc5eb54756f7aa73789-public/att_iot_data_plans_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/7af3a600-6cf5-4047-a48d-264646af214c/artifacts/cache/d924114480533f60bbe49c7e4b7d0f3c-public/att_iot_data_plans_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/ATTDataPlans/index.html"
},
"auto-scaling": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6daae5b9-0fc8-4196-bc8b-57a269f01b64/artifacts/cache/4c57280e3855930cc4ff08817c8f9ac3-public/autoscaling64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6daae5b9-0fc8-4196-bc8b-57a269f01b64/artifacts/cache/0dc7ad33cc5e96eab802b45a697b4750-public/autoscaling50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6daae5b9-0fc8-4196-bc8b-57a269f01b64/artifacts/cache/c7dd0a9cdffc4bbb398b699367160c7c-public/autoscaling32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6daae5b9-0fc8-4196-bc8b-57a269f01b64/artifacts/cache/ee64359e6fe41015a2223c10a9f38144-public/autoscaling24.png"
}, "doc_url": "https://www.eu-gb.bluemix.net/docs/services/Auto-Scaling/index.html"
},
"availabilitymonitoring": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/IBM-Performance-Hub-1.0/artifacts/cache/609de6907e4257c0bd6ebf0ffed24a24-public/availability_mon_64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/IBM-Performance-Hub-1.0/artifacts/cache/1587f85fe6df1a14f2bace3968e465ca-public/availability_mon_50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/IBM-Performance-Hub-1.0/artifacts/cache/f2f5bd885e3f016f5296febdb530d5e6-public/availability_mon_32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/IBM-Performance-Hub-1.0/artifacts/cache/5601720f827db64473833c690600842f-public/availability_mon_24.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/AvailabilityMonitoring/index.html"
},
"bare-metal": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/802-c7a4eb2517c31259/images/uploaded/bare-metal.png"},
"doc_url": "https://cloud.ibm.com/docs/bare-metal?topic=bare-metal-about-bm"
},
"biginsightsoncloud": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/BigInsightsonCloud/artifacts/cache/51b4eddca2be36dba0cb92a3489b5895-public/v2gateway/images/BIonCloud_64_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/BigInsightsonCloud/artifacts/cache/449d4b9e72588d00b3a39ede77732a06-public/v2gateway/images/BIonCloud_50_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/BigInsightsonCloud/artifacts/cache/c5c7b5ffbf3e5a3a37d8f76bd0b5e954-public/v2gateway/images/BIonCloud_32_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/BigInsightsonCloud/artifacts/cache/899462c4c441430c33d5bd9547babc58-public/v2gateway/images/BIonCloud_24_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/BigInsights/index.html"
},
"bigip": {
"images": {
"feature_image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/F5_Networks_logo.svg",
"image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/F5_Networks_logo.svg",
"medium_image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/F5_Networks_logo.svg",
"small_image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/F5_Networks_logo.svg"
}, "doc_url": "/services/vmwaresolutions/services/f5_considerations.html"
},
"bitbar-testing-cloud": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ebf44ee3-04ec-49ed-bb5a-0b76bc53bcc4/artifacts/cache/e84b5fbe26726f84bcc21271c2d4932d-public/bitbar-testing-cloud_featured.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ebf44ee3-04ec-49ed-bb5a-0b76bc53bcc4/artifacts/cache/e84b5fbe26726f84bcc21271c2d4932d-public/bitbar-testing-cloud_large.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ebf44ee3-04ec-49ed-bb5a-0b76bc53bcc4/artifacts/cache/e84b5fbe26726f84bcc21271c2d4932d-public/bitbar-testing-cloud_medium.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ebf44ee3-04ec-49ed-bb5a-0b76bc53bcc4/artifacts/cache/e84b5fbe26726f84bcc21271c2d4932d-public/bitbar-testing-cloud_small.svg"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Bitbar-Testing-Cloud/index.html"
},
"block-storage": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/1974-3d74c45e1684594b/images/uploaded/icons/block-storage.png"},
"doc_url": "https://console.bluemix.net/docs/infrastructure/BlockStorage/index.html#getting-started-with-block-storage"
},
"block-storage-group": {"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/1974-3d74c45e1684594b/images/uploaded/icons/block-storage.png"}},
"blockchain": {
"images": {
"feature_image": "https://resource-catalog.stage1.ng.bluemix.net/api/v1/6a0a8840-f899-11e8-bba8-6b3b2c5536be/artifacts/IBP_2_0_Service_Tile_Icon.svg",
"image": "https://resource-catalog.stage1.ng.bluemix.net/api/v1/6a0a8840-f899-11e8-bba8-6b3b2c5536be/artifacts/IBP_2_0_Service_Tile_Icon.svg",
"medium_image": "https://resource-catalog.stage1.ng.bluemix.net/api/v1/6a0a8840-f899-11e8-bba8-6b3b2c5536be/artifacts/IBP_2_0_Service_Tile_Icon.svg",
"small_image": "https://resource-catalog.stage1.ng.bluemix.net/api/v1/6a0a8840-f899-11e8-bba8-6b3b2c5536be/artifacts/IBP_2_0_Service_Tile_Icon.svg"
},
"doc_url": "https://console.cloud.ibm.com/docs/services/blockchain?topic=blockchain-ibp-console-overview#ibp-console-overview"
},
"bondevalue-api": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6fdfccb4-1c28-4401-a94a-000bf75d889e/artifacts/cache/686d2efed2b291e509cddd9a96638f82-public/bondevalue_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6fdfccb4-1c28-4401-a94a-000bf75d889e/artifacts/cache/28d1f27974b2cd125b7b1d144b0aa41a-public/bondevalue_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6fdfccb4-1c28-4401-a94a-000bf75d889e/artifacts/cache/2ec49ba0bc829be08a26b4b6b2381b4d-public/bondevalue_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6fdfccb4-1c28-4401-a94a-000bf75d889e/artifacts/cache/9a9d2cb90d7cbcdd7d07ed0cbc844d20-public/bondevalue_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Bondevalue/index.html"
},
"bosch-iot-rollouts": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d714e1f0-c19d-431e-b669-34b99b01708d/artifacts/cache/9497780ed126283f72e1383f76e7c20f-public/bosch-iot-rollouts_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d714e1f0-c19d-431e-b669-34b99b01708d/artifacts/cache/38e9bbdce148ec8e24f700d5a6d01f1e-public/bosch-iot-rollouts_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d714e1f0-c19d-431e-b669-34b99b01708d/artifacts/cache/bbd86476b6c6a7be9be5fd2cffb8577a-public/bosch-iot-rollouts_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/d714e1f0-c19d-431e-b669-34b99b01708d/artifacts/cache/facc1587f78a5cfbe04ed9f019cea051-public/bosch-iot-rollouts_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Bosch-IoT-Rollouts/index.html"
},
"box": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/adf18fe9-86c1-4c0e-9e31-b6725f4b5271/artifacts/cache/5f2ecd0dedd30438dd2e1ab403391046-public/box_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/adf18fe9-86c1-4c0e-9e31-b6725f4b5271/artifacts/cache/5f2ecd0dedd30438dd2e1ab403391046-public/box_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/adf18fe9-86c1-4c0e-9e31-b6725f4b5271/artifacts/cache/5f2ecd0dedd30438dd2e1ab403391046-public/box_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/adf18fe9-86c1-4c0e-9e31-b6725f4b5271/artifacts/cache/5f2ecd0dedd30438dd2e1ab403391046-public/box_small.png"
}, "doc_url": "https://developers.box.com/docs-overview/"
},
"businessrules": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cf3438d3-48f0-4d80-87c0-98055fdbbdad-rules-BusinessRules/artifacts/cache/d99f3bbdfa92a3470d3f35946843a0b4-public/images/ODM-Cloud-OE-50.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cf3438d3-48f0-4d80-87c0-98055fdbbdad-rules-BusinessRules/artifacts/cache/9be33ec01510bbb310109d5b7f6188ac-public/images/ODM-Cloud-OE-64.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cf3438d3-48f0-4d80-87c0-98055fdbbdad-rules-BusinessRules/artifacts/cache/a5a81369cfccf75917f688c513d9155a-public/images/ODM-Cloud-OE-32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cf3438d3-48f0-4d80-87c0-98055fdbbdad-rules-BusinessRules/artifacts/cache/bd60eeffeb03454c293f56c3379c3401-public/images/ODM-Cloud-OE-24.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/#services/rules/rules.html#rules"
},
"car-diagnostic-api": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37b751fd-75de-4757-b3b8-f33c3cd7e1ec/artifacts/cache/be77eee867c396c1bd77f992b6f4679f-public/car_diagnostic_api_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37b751fd-75de-4757-b3b8-f33c3cd7e1ec/artifacts/cache/c3f53e152350a49416793e28f7f7409c-public/car_diagnostic_api_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37b751fd-75de-4757-b3b8-f33c3cd7e1ec/artifacts/cache/3bde746c44521485dd6cb26a47c73747-public/car_diagnostic_api_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/37b751fd-75de-4757-b3b8-f33c3cd7e1ec/artifacts/cache/0bca35a7626a0fdbd2dd067916b1ed1b-public/car_diagnostic_api_small.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/HellaVentures/index.html"
},
"caveonix": {
"images": {
"feature_image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/Caveonix.png",
"image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/Caveonix.png",
"medium_image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/Caveonix.png",
"small_image": "https://cloud.ibm.com/infrastructure/vmware-solutions/images/icons/Caveonix.png"
}, "doc_url": "/services/vmwaresolutions/vcenter/vc_vcenterserveroverview.html"
},
"cdn-powered-by-akamai": {
"images": {"image": "https://cache.globalcatalog.cloud.ibm.com/static/cache/2728-b3e7807169313f35/images/uploaded/cdn.png"},
"doc_url": "https://console.bluemix.net/docs/infrastructure/CDN/getting-started.html"
},
"cfaas": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c4cfe2d0-01ef-11e8-bd2c-cbf81959e223/artifacts/cache/f49d53172f16aa53bdd6ba39890d675a-public/CloudFoundry_ServiceIcon.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c4cfe2d0-01ef-11e8-bd2c-cbf81959e223/artifacts/cache/f49d53172f16aa53bdd6ba39890d675a-public/CloudFoundry_ServiceIcon.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c4cfe2d0-01ef-11e8-bd2c-cbf81959e223/artifacts/cache/f49d53172f16aa53bdd6ba39890d675a-public/CloudFoundry_ServiceIcon.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/c4cfe2d0-01ef-11e8-bd2c-cbf81959e223/artifacts/cache/f49d53172f16aa53bdd6ba39890d675a-public/CloudFoundry_ServiceIcon.svg"
}, "doc_url": "/docs/cloud-foundry/index.html"
},
"cldamqp": {
"images": {
"feature_image": "https://www.cloudamqp.com/img/cloudamqp-logo.png",
"image": "https://www.cloudamqp.com/img/cloudamqp-logo.png",
"medium_image": "https://www.cloudamqp.com/img/cloudamqp-logo.png",
"small_image": "https://www.cloudamqp.com/img/cloudamqp-logo.png"
}, "doc_url": "https://console.cloud.ibm.com/docs/services/CloudAMQP-77/index.html#gettingstarted"
},
"cloud-backup": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6cde723c-9e49-74ac-4266-3f7a9bb74216/artifacts/cache/30e8df1bd214a3656184c6069fa796ca-public/evault_icon_32-01.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6cde723c-9e49-74ac-4266-3f7a9bb74216/artifacts/cache/30e8df1bd214a3656184c6069fa796ca-public/evault_icon_32-01.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6cde723c-9e49-74ac-4266-3f7a9bb74216/artifacts/cache/30e8df1bd214a3656184c6069fa796ca-public/evault_icon_32-01.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6cde723c-9e49-74ac-4266-3f7a9bb74216/artifacts/cache/30e8df1bd214a3656184c6069fa796ca-public/evault_icon_32-01.svg"
},
"doc_url": "https://cloud.ibm.com/docs/infrastructure/Backup?topic=Backup-getting-started#getting-started"
},
"cloudantnosqldb": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cloudant/artifacts/cache/50822f19759178acf8a514028a3f15d6-public/cloudant64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cloudant/artifacts/cache/1d8632039e592903c9c6c94ce1360f92-public/cloudant50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cloudant/artifacts/cache/1866500b6c2f00c1957d4b28873ea210-public/cloudant32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cloudant/artifacts/cache/3ed04600fde06cca950c25f1b1ca90d3-public/cloudant24.png"
}, "doc_url": "https://console.ng.bluemix.net/docs/services/Cloudant/getting-started.html"
},
"cloudcerts": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cc56b926-cfa1-4f50-ab9d-01986ff692be/artifacts/cache/fbaef5398c1341dfadbb4ef8d817f80f-public/images/cloudcerts-64x64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cc56b926-cfa1-4f50-ab9d-01986ff692be/artifacts/cache/e646d9dedfe42656ce3c41e0e6122d65-public/images/cloudcerts-50x50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cc56b926-cfa1-4f50-ab9d-01986ff692be/artifacts/cache/657f7f72da09ab75f3002aedf52e4b5b-public/images/cloudcerts-32x32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/cc56b926-cfa1-4f50-ab9d-01986ff692be/artifacts/cache/0ba6bc8ebe34cb0ea9481d15688c44a7-public/images/cloudcerts-24x24.png"
},
"doc_url": "/docs/services/certificate-manager?topic=certificate-manager-getting-started#getting-started"
},
"cloudeventmanagement": {
"images": {"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/CloudEventManagement16a036f0-f1fc-11e6-a38d-394caee7d66d/artifacts/cache/21febd67177a28100773ee03d284749e-public/cem-service-icon.svg"},
"doc_url": "https://cloud.ibm.com/docs/services/EventManagement/index.html"
},
"coalesce-for-risk-and-compliance-monitoring": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/a59f46c3-bed4-427d-8376-ce94101c3f08/artifacts/cache/5a21539016ac17c460c688d3c75c1b90-public/coalesce-for-risk-and-compliance-monitoring_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/a59f46c3-bed4-427d-8376-ce94101c3f08/artifacts/cache/ccb23c20d4b970871a05942d211d9a27-public/coalesce-for-risk-and-compliance-monitoring_large.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/a59f46c3-bed4-427d-8376-ce94101c3f08/artifacts/cache/1353005144f708ebe6aedf842fa74222-public/coalesce-for-risk-and-compliance-monitoring_medium.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/a59f46c3-bed4-427d-8376-ce94101c3f08/artifacts/cache/5d5056fcee2e0f3e31a320a978740b9d-public/coalesce-for-risk-and-compliance-monitoring_small.png"
},
"doc_url": "https://console.ng.bluemix.net/docs/services/Coalesce-for-Risk-and-Compliance-Monitoring/index.html"
},
"compare-comply": {
"images": {
"feature_image": "https://wbi.mybluemix.net/icons/compare-comply.svg",
"image": "https://wbi.mybluemix.net/icons/compare-comply.svg",
"medium_image": "https://wbi.mybluemix.net/icons/compare-comply.svg",
"small_image": "https://wbi.mybluemix.net/icons/compare-comply.svg"
}, "doc_url": "/docs/services/compare-comply?topic=compare-comply-getting_started"
},
"compose-enterprise": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeEnterprise-P/artifacts/cache/cbe1a1694c99c15ec00a5f05b453ea78-public/compose-Enterprise_50.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeEnterprise-P/artifacts/cache/a4575c1ee447958fe079c15b0ec75d65-public/compose-Enterprise_64.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeEnterprise-P/artifacts/cache/144cf64b13ffd3e3ecc2ad11ccbec134-public/compose-Enterprise_32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeEnterprise-P/artifacts/cache/4e4f43662591199df98b47bea39a511c-public/compose-Enterprise_24.png"
}, "doc_url": "https://console.us-east.bluemix.net/docs/services/ComposeEnterprise/index.html"
},
"compose-for-janusgraph": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeJanusGraph-P/artifacts/cache/e007ed56c4d9824cb46c0adce731d049-public/compose-JanusGraph-50.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeJanusGraph-P/artifacts/cache/cf37ac2fc9bdb81e16609577bb89dd59-public/compose-JanusGraph-64.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeJanusGraph-P/artifacts/cache/c57d140f33b273ccfa4b21a4a7e0c15d-public/compose-JanusGraph-32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeJanusGraph-P/artifacts/cache/85c61dc1e34888f4da9356160c1e7208-public/compose-JanusGraph-24.png"
}, "doc_url": "/docs/services/ComposeForJanusGraph/index.html"
},
"compose-for-mysql": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeMySQL-P/artifacts/cache/3712396076113e4feed6e80fbacfb336-public/compose-MySQL-50.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeMySQL-P/artifacts/cache/23f75293fe725ac3528c438ebe118fb1-public/compose-MySQL-64.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeMySQL-P/artifacts/cache/dfbcfbae7b22af703369d90f8293efe4-public/compose-MySQL-32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeMySQL-P/artifacts/cache/bb0ba7cf938b92459e9c88ba02a11a8f-public/compose-MySQL-24.png"
}, "doc_url": "/docs/services/ComposeForMySQL/index.html"
},
"compose-for-rethinkdb": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeRethinkDB-P/artifacts/cache/d4e7d8c1f201741969c100e3cf78649d-public/compose-ReThinkDB-50px.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeRethinkDB-P/artifacts/cache/4c9ceb7423a2b273d41d61447f7e8ef9-public/compose-ReThinkDB-64px.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeRethinkDB-P/artifacts/cache/58debb0dd1dceef462f364d6a717b13c-public/compose-ReThinkDB-32px.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeRethinkDB-P/artifacts/cache/379e4651143699fe9b15e405a15278bc-public/compose-ReThinkDB-24px.png"
}, "doc_url": "/docs/services/ComposeForRethinkDB/index.html"
},
"compose-for-scylladb": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeScyllaDB-P/artifacts/cache/500fc2945f729334e5713b7754f04b1a-public/compose-ScyllaDB-50.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeScyllaDB-P/artifacts/cache/2551ecec0f231db3e3718c8af0a0b649-public/compose-ScyllaDB-64.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeScyllaDB-P/artifacts/cache/7e22aa0e2d5a8f6dd5652460218206ee-public/compose-ScyllaDB-32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/ComposeScyllaDB-P/artifacts/cache/38deea54cea6e24336dbefd637eefec3-public/compose-ScyllaDB-24.png"
}, "doc_url": "/docs/services/ComposeForScyllaDB/index.html"
},
"consult-with-icg-wes": {
"images": {
"feature_image": "https://servicebroker.consult-with-icg-wes.cloud.ibm.com/consult-with-icg-wes.svg",
"image": "https://servicebroker.consult-with-icg-wes.cloud.ibm.com/consult-with-icg-wes.svg",
"medium_image": "https://servicebroker.consult-with-icg-wes.cloud.ibm.com/consult-with-icg-wes.svg",
"small_image": "https://servicebroker.consult-with-icg-wes.cloud.ibm.com/consult-with-icg-wes.svg"
}, "doc_url": "/docs/services/consult-with-icg-wes/"
},
"container-registry": {
"images": {
"feature_image": "https://cloud.ibm.com/kubernetes/img/registry-logo-2b24575740.svg",
"image": "https://cloud.ibm.com/kubernetes/img/registry-logo-2b24575740.svg",
"medium_image": "https://cloud.ibm.com/kubernetes/img/registry-logo-2b24575740.svg",
"small_image": "https://cloud.ibm.com/kubernetes/img/registry-logo-2b24575740.svg"
},
"doc_url": "https://cloud.ibm.com/docs/services/Registry?topic=registry-getting-started#getting-started"
},
"containers-kubernetes": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/containers-kubernetes/artifacts/cache/7e87826329af635ee4540b8e40e957cf-public/containers-kubernetes/img/container-service-logo-3aec89a836.svg",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/containers-kubernetes/artifacts/cache/7e87826329af635ee4540b8e40e957cf-public/containers-kubernetes/img/container-service-logo-3aec89a836.svg",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/containers-kubernetes/artifacts/cache/7e87826329af635ee4540b8e40e957cf-public/containers-kubernetes/img/container-service-logo-3aec89a836.svg",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/containers-kubernetes/artifacts/cache/7e87826329af635ee4540b8e40e957cf-public/containers-kubernetes/img/container-service-logo-3aec89a836.svg"
},
"doc_url": "https://cloud.ibm.com/docs/containers?topic=containers-getting-started#getting-started"
},
"continuous-delivery": {
"images": {
"feature_image": "https://continuous-delivery-broker.us-south.devops.cloud.ibm.com/graphics/cd_64x64.png",
"image": "https://continuous-delivery-broker.us-south.devops.cloud.ibm.com/graphics/cd_64x64.png",
"medium_image": "https://continuous-delivery-broker.us-south.devops.cloud.ibm.com/graphics/cd_64x64.png",
"small_image": "https://continuous-delivery-broker.us-south.devops.cloud.ibm.com/graphics/cd_64x64.png"
},
"doc_url": "https://cloud.ibm.com/docs/services/ContinuousDelivery?topic=ContinuousDelivery-getting-started"
},
"continuous-release": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/bcfb2ea3-745c-405f-b1eb-f33af9b2ecb9/artifacts/cache/8903315ed4fb071ea9c87cd023bed211-public/cr_64x64.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/bcfb2ea3-745c-405f-b1eb-f33af9b2ecb9/artifacts/cache/3d7f7b70af6ac6a6ff46c3c8e16c3a72-public/cr_50x50.png",
"medium_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/bcfb2ea3-745c-405f-b1eb-f33af9b2ecb9/artifacts/cache/594f234435105d5776f644eab73464ee-public/cr_32x32.png",
"small_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/bcfb2ea3-745c-405f-b1eb-f33af9b2ecb9/artifacts/cache/b7657c5f94f96e9abe3849b600cbe5c9-public/cr_24x24.png"
}, "doc_url": "/docs/services/UCCR/index.html"
},
"contrast-security": {
"images": {
"feature_image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6777716b-e36e-4e9c-a239-6b9ed99dc12c/artifacts/cache/37427129f4ea09edbb8de825888078a8-public/contrast_security_featured.png",
"image": "https://cache.globalcatalog.cloud.ibm.com/api/v1/6777716b-e36e-4e9c-a239-6b9ed99dc12c/artifacts/cache/52c006a3658afff04391c1d10c47a81c-public/contrast_security_large.png",