From de68427a0c6c307b5ebd7216c1bdc528b501a38f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=CC=81rgio=20Ramos?= Date: Fri, 21 Jul 2017 15:08:15 +0100 Subject: [PATCH] test(cp-gql-mock-server): unit tests --- packages/cp-gql-mock-server/package.json | 25 +- .../cp-gql-mock-server/src/complex-data.json | 2203 +- packages/cp-gql-mock-server/src/cp-data.json | 118 +- packages/cp-gql-mock-server/src/data.json | 8 +- packages/cp-gql-mock-server/src/index.js | 2 +- packages/cp-gql-mock-server/src/resolvers.js | 73 +- packages/cp-gql-mock-server/src/wp-data.json | 51 +- packages/cp-gql-mock-server/test/index.js | 840 + .../test/snapshots/index.js.md | 16996 ++++++++++++++++ .../test/snapshots/index.js.snap | Bin 0 -> 56131 bytes packages/cp-gql-mock-server/test/tags/all.gql | 129 + .../test/tags/create-deployment-group.gql | 114 + .../test/tags/delete-deployment-group.gql | 5 + .../test/tags/delete-services.gql | 5 + .../deployment-groups-direct-filtered.gql | 27 + .../test/tags/deployment-groups-direct.gql | 27 + .../test/tags/deployment-groups-filtered.gql | 30 + .../test/tags/deployment-groups.gql | 9 + .../test/tags/instances-direct-filtered.gql | 6 + .../test/tags/instances-direct.gql | 6 + .../test/tags/instances-filtered.gql | 32 + .../test/tags/instances.gql | 28 + .../test/tags/portal-only.gql | 5 + .../test/tags/provision-manifest.gql | 19 + .../test/tags/restart-services.gql | 5 + .../cp-gql-mock-server/test/tags/scale.gql | 11 + .../test/tags/services-direct-filtered.gql | 12 + .../test/tags/services-direct.gql | 12 + .../test/tags/services-filtered.gql | 19 + .../cp-gql-mock-server/test/tags/services.gql | 20 + .../test/tags/start-services.gql | 5 + .../test/tags/stop-services.gql | 5 + packages/cp-gql-schema/schema.gql | 68 +- packages/pseudo-json-ast/package.json | 4 +- packages/pseudo-yaml-ast/package.json | 4 +- packages/remcalc/package.json | 4 +- packages/rnd-id/package.json | 4 +- packages/styled-is/package.json | 4 +- packages/unitcalc/package.json | 4 +- yarn.lock | 534 +- 40 files changed, 20035 insertions(+), 1438 deletions(-) create mode 100644 packages/cp-gql-mock-server/test/index.js create mode 100644 packages/cp-gql-mock-server/test/snapshots/index.js.md create mode 100644 packages/cp-gql-mock-server/test/snapshots/index.js.snap create mode 100644 packages/cp-gql-mock-server/test/tags/all.gql create mode 100644 packages/cp-gql-mock-server/test/tags/create-deployment-group.gql create mode 100644 packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql create mode 100644 packages/cp-gql-mock-server/test/tags/delete-services.gql create mode 100644 packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql create mode 100644 packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql create mode 100644 packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql create mode 100644 packages/cp-gql-mock-server/test/tags/deployment-groups.gql create mode 100644 packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql create mode 100644 packages/cp-gql-mock-server/test/tags/instances-direct.gql create mode 100644 packages/cp-gql-mock-server/test/tags/instances-filtered.gql create mode 100644 packages/cp-gql-mock-server/test/tags/instances.gql create mode 100644 packages/cp-gql-mock-server/test/tags/portal-only.gql create mode 100644 packages/cp-gql-mock-server/test/tags/provision-manifest.gql create mode 100644 packages/cp-gql-mock-server/test/tags/restart-services.gql create mode 100644 packages/cp-gql-mock-server/test/tags/scale.gql create mode 100644 packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql create mode 100644 packages/cp-gql-mock-server/test/tags/services-direct.gql create mode 100644 packages/cp-gql-mock-server/test/tags/services-filtered.gql create mode 100644 packages/cp-gql-mock-server/test/tags/services.gql create mode 100644 packages/cp-gql-mock-server/test/tags/start-services.gql create mode 100644 packages/cp-gql-mock-server/test/tags/stop-services.gql diff --git a/packages/cp-gql-mock-server/package.json b/packages/cp-gql-mock-server/package.json index 24327fe8..776bc958 100644 --- a/packages/cp-gql-mock-server/package.json +++ b/packages/cp-gql-mock-server/package.json @@ -8,10 +8,10 @@ "scripts": { "lint": "eslint . --fix", "lint-ci": "eslint . --format junit --output-file $CIRCLE_TEST_REPORTS/lint/cp-gql-mock-server.xml", - "test": "echo 0", - "test-ci": "echo 0", + "test": "nyc --reporter=lcov --reporter=text ava --verbose", + "test-ci": "nyc --report-dir=$CIRCLE_ARTIFACTS/cp-gql-mock-server --reporter=lcov --reporter=text ava --tap | tap-xunit > $CIRCLE_TEST_REPORTS/test/cp-gql-mock-server.xml", "start": "node src/index.js", - "dev": "nodemon src/index.js" + "dev": "PORT=3000 nodemon src/index.js" }, "dependencies": { "build-array": "^1.0.0", @@ -21,6 +21,7 @@ "good-squeeze": "^5.0.2", "graphi": "^2.2.1", "hapi": "^16.4.3", + "hasha": "^3.0.0", "joi": "^10.6.0", "joyent-cp-gql-schema": "^1.0.4", "js-yaml": "^3.8.4", @@ -33,8 +34,24 @@ "uuid": "^3.1.0" }, "devDependencies": { + "apollo-client": "^1.9.0-1", + "ava": "^0.21.0", + "delay": "^2.0.0", "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", - "nodemon": "^1.11.0" + "execa": "^0.7.0", + "mz": "^2.6.0", + "nodemon": "^1.11.0", + "nyc": "^11.0.3", + "tap-xunit": "^1.7.0" + }, + "ava": { + "files": [ + "test/*.js" + ], + "source": [ + "src/*.js" + ], + "failFast": true } } diff --git a/packages/cp-gql-mock-server/src/complex-data.json b/packages/cp-gql-mock-server/src/complex-data.json index 1ace9882..f8237074 100644 --- a/packages/cp-gql-mock-server/src/complex-data.json +++ b/packages/cp-gql-mock-server/src/complex-data.json @@ -1,2050 +1,2231 @@ { "deploymentGroup": { - "id": "9fcb374d-a267-4c2a-9d9c-ba469b804639", + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", "name": "Complex Microservices", "slug": "complex-microservices", "status": "ACTIVE" }, "services": [ { - "id": "242607", + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", "slug": "accountservice", "name": "AccountService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "729002", + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", "slug": "addressservice", "name": "AddressService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "488529", + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24", "slug": "bloomreachservice", "name": "BloomreachService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "909294", + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479", "slug": "cartservice", "name": "CartService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "856966", + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3", "slug": "extra service reported by containerpilot: cartservice-https", "name": "Extra service reported by ContainerPilot: CartService-HTTPS", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "956482", + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8", "slug": "cctokenizationclientservice", "name": "CCTokenizationClientService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "913200", + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c", "slug": "checkoutservice", "name": "CheckoutService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "466915", + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc", "slug": "colorswatchservice", "name": "ColorSwatchService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "638975", + "id": "66babdef-4512-456c-8d16-b6223766da01", "slug": "emailmarketingservice", "name": "EmailMarketingService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "706935", + "id": "21b2b735-1706-49f6-a136-f2910c110e84", "slug": "favoriteservice", "name": "FavoriteService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "287366", + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", "slug": "findinstoreservice", "name": "FindInStoreService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "927558", + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", "slug": "fitpredictorservice", "name": "FitpredictorService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "535349", + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", "slug": "hidefromcatalogservice", "name": "HidefromcatalogService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "284889", + "id": "25725be5-6880-438f-9590-7c8cd9606224", "slug": "internationalcheckoutservice", "name": "InternationalCheckoutService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "674952", + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83", "slug": "internationalposervice", "name": "InternationalPOService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "855926", + "id": "de943737-bf8f-4adb-979a-05b083e1b52d", "slug": "internationalshippingservice", "name": "InternationalShippingService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "10433", + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167", "slug": "inventoryservice", "name": "InventoryService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "227269", + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", "slug": "localizationservice", "name": "LocalizationService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "207752", + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", "slug": "moreaccountservice", "name": "MoreAccountService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "380820", + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", "slug": "navigationservice", "name": "NavigationService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "869876", + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c", "slug": "ordercreationjob", "name": "OrderCreationJob", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "880882", + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6", "slug": "orderservice", "name": "OrderService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "134052", + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274", "slug": "orderservice", "name": "OrderService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "201374", + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", "slug": "paymentmethodservice", "name": "PaymentMethodService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "198108", + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", "slug": "paymentservice", "name": "PaymentService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "185292", + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", "slug": "paymentservice", "name": "PaymentService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "678590", + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", "slug": "priceservice", "name": "PriceService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "419819", + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", "slug": "privatesaleservice", "name": "PrivatesaleService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "194381", + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", "slug": "productarrayservice", "name": "ProductArrayService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "317244", + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca", "slug": "productdetailservice", "name": "ProductDetailService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "922095", + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", "slug": "productservice", "name": "ProductService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "147698", + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", "slug": "profileservice", "name": "ProfileService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "300275", + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1", "slug": "promoservice", "name": "PromoService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "660331", + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", "slug": "promotionservice", "name": "PromotionService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "421766", + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082", "slug": "questionanswerservice", "name": "QuestionanswerService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "750289", + "id": "8b8a8506-fc87-4464-acac-f98b934ed755", "slug": "redbaloonservice", "name": "RedBaloonService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "959890", + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", "slug": "extra service reported by containerpilot: redbaloonservice-https", "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "356524", + "id": "709971c3-794d-42b5-b2dc-42c51db75c41", "slug": "reviewsservice", "name": "ReviewsService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "502691", + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", "slug": "searchfacetsservice", "name": "SearchFacetsService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "323973", + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", "slug": "searchindexservice", "name": "SearchIndexService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "52512", + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", "slug": "shoprunnerservice", "name": "ShopRunnerService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "416078", + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0", "slug": "taxservice", "name": "TaxService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "365023", + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa", "slug": "toggleservice", "name": "ToggleService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "998776", + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", "slug": "useraccountservice", "name": "UserAccountService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "668748", + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", "slug": "userauthenticationservice", "name": "UserAuthenticationService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "52483", + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", "slug": "waitlistoverlayservice", "name": "WaitlistOverlayService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, - "connections": [ - "primary-mongodb" - ] + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", + "connections": ["5e527d47-7a19-439e-b6bb-32c456bd423c"] }, { - "id": "846583", + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", "slug": "waitlistservice", "name": "WaitlistService", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "primary-consul", + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a", "slug": "consul", "name": "Consul", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" }, { - "id": "primary-nginx", + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0", "slug": "nginx", "name": "Nginx", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null, + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE", "connections": [ - "242607", - "729002", - "488529", - "909294", - "856966", - "956482", - "913200", - "466915", - "638975", - "706935", - "287366", - "927558", - "535349", - "284889", - "674952", - "855926", - "10433", - "227269", - "207752", - "380820", - "869876", - "880882", - "134052", - "201374", - "198108", - "185292", - "678590", - "419819", - "194381", - "317244", - "922095", - "147698", - "300275", - "660331", - "421766", - "750289", - "959890", - "356524", - "502691", - "323973", - "52512", - "416078", - "365023", - "998776", - "668748", - "52483", - "846583", - "primary-consul" + "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", + "c60b44f3-388d-43dd-9ea8-6ed99a83d767", + "f5606d06-7f4d-45b2-85df-8f4688778f24", + "7043a0ca-dee6-42d4-856e-ff77c8902479", + "31663285-2b58-4f92-b6f5-3ef34591c3a3", + "3b954132-49fc-405c-9d91-c59b8953d7b8", + "0b50ef08-486c-4999-8638-80d8f6a3465c", + "71564ea7-9a9d-4d00-9409-505ef03567fc", + "66babdef-4512-456c-8d16-b6223766da01", + "21b2b735-1706-49f6-a136-f2910c110e84", + "7e6b96d5-648c-44b2-9e5a-34423fc0a982", + "ba9ca60e-8f67-49ae-a834-da244b1e3f80", + "5fffbfde-7f65-46cb-b729-db9cdb1843e6", + "25725be5-6880-438f-9590-7c8cd9606224", + "b14f7f85-834b-41fe-866b-571d8a77ab83", + "de943737-bf8f-4adb-979a-05b083e1b52d", + "dc6e21d4-f0ce-4717-8415-93fd785c7167", + "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", + "d3b47ee2-1755-446d-88d9-3e44a4b404e2", + "339c1174-acd0-4740-a0af-3b0e87d2b2d1", + "8871105e-ae08-4ebf-81ae-748d6e33941c", + "9f2b665b-31a7-49e6-b021-d1767e092aa6", + "bd9fdb62-39ac-4a58-9d83-6b955a938274", + "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", + "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", + "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", + "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", + "760cc6d2-e4c3-4781-923c-8edebe20fbc9", + "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", + "1d2b1206-a025-4717-bc20-ddd0acf14fca", + "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", + "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", + "693659a1-0d46-49aa-925c-2fcf16c07fc1", + "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", + "ecf54138-7d5f-4e5b-9246-7762550e1082", + "8b8a8506-fc87-4464-acac-f98b934ed755", + "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", + "709971c3-794d-42b5-b2dc-42c51db75c41", + "825f73d0-cbf0-4c9e-ab12-0f53128d2444", + "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", + "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", + "c62413d0-7eb0-4151-9da5-3b331ffafce0", + "8d1e1795-0baa-48da-a173-ca9d145dcffa", + "7728f1ff-ad43-416a-acd5-6d4f506a3f48", + "6126b9a2-0402-4b1d-b7af-6e4486e0973c", + "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", + "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", + "2540f59b-5f81-4458-94a1-38e6eef5d78a" ] }, { - "id": "primary-mongodb", + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c", "slug": "mongodb", "name": "MongoDB", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "status": null + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "status": "ACTIVE" } ], "instances": [ { - "id": "instance-242607-0", + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "242607", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", + "machineId": "7a94462f-5174-42b2-9029-f7e74001fe1a", "name": "instance-AccountService-0" }, { - "id": "instance-242607-1", + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "242607", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", + "machineId": "5ad2f3a8-8720-429b-90f1-c5f118a51f4e", "name": "instance-AccountService-1" }, { - "id": "instance-242607-2", + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "242607", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987", + "machineId": "7ce5d386-42b3-44be-a05d-04a17899e486", "name": "instance-AccountService-2" }, { - "id": "instance-729002-0", + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "729002", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", + "machineId": "b0913e4f-0fc6-4658-839e-400dc3e53cf0", "name": "instance-AddressService-0" }, { - "id": "instance-729002-1", + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "729002", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", + "machineId": "086d8974-b305-4c27-9ad8-f69aa02e1381", "name": "instance-AddressService-1" }, { - "id": "instance-729002-2", + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "729002", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", + "machineId": "eab404b3-2f19-455c-bc82-98b004110162", "name": "instance-AddressService-2" }, { - "id": "instance-729002-3", + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "729002", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", + "machineId": "f9f95eec-793c-4c08-9ec2-0c7082d51e27", "name": "instance-AddressService-3" }, { - "id": "instance-729002-4", + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "729002", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c60b44f3-388d-43dd-9ea8-6ed99a83d767", + "machineId": "2769fdde-3a1c-4f8b-886f-f32b2d40f959", "name": "instance-AddressService-4" }, { - "id": "instance-488529-0", + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "488529", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", + "machineId": "f98aa65b-3e60-4b86-a9e6-375bf61171e6", "name": "instance-BloomreachService-0" }, { - "id": "instance-488529-1", + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "488529", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", + "machineId": "0f079926-e47d-482c-aad5-88f4949f57e3", "name": "instance-BloomreachService-1" }, { - "id": "instance-488529-2", + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "488529", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", + "machineId": "c7b52e3d-ee71-4cf2-97ce-0da074015d20", "name": "instance-BloomreachService-2" }, { - "id": "instance-488529-3", + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "488529", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "f5606d06-7f4d-45b2-85df-8f4688778f24", + "machineId": "8336efdb-07d1-4341-98e9-9de9f5bd729b", "name": "instance-BloomreachService-3" }, { - "id": "instance-909294-0", + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "909294", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", + "machineId": "e09438d9-966f-4088-a56d-4a9deb9cf30a", "name": "instance-CartService-0" }, { - "id": "instance-909294-1", + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "909294", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", + "machineId": "e9b2346c-5c57-40ac-9b7a-b0789dabf3ec", "name": "instance-CartService-1" }, { - "id": "instance-909294-2", + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "909294", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", + "machineId": "7fc260fa-3e62-43c8-beb2-4eb56e63b163", "name": "instance-CartService-2" }, { - "id": "instance-909294-3", + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "909294", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", + "machineId": "df6355d5-2f1a-4d5e-bbb8-92a13fae0f2d", "name": "instance-CartService-3" }, { - "id": "instance-909294-4", + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "909294", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7043a0ca-dee6-42d4-856e-ff77c8902479", + "machineId": "86604767-e5de-46f0-8409-038ac87e7b4d", "name": "instance-CartService-4" }, { - "id": "instance-856966-0", + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "856966", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", + "machineId": "c9a49cff-4438-460f-bc46-610bfecbddca", "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0" }, { - "id": "instance-856966-1", + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "856966", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", + "machineId": "4252ddb5-e9b4-4d1e-aa53-6e1bdcdeab30", "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1" }, { - "id": "instance-856966-2", + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "856966", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", + "machineId": "783c5eb2-2145-4fd2-a22f-274bec3b2ffc", "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2" }, { - "id": "instance-856966-3", + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "856966", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "31663285-2b58-4f92-b6f5-3ef34591c3a3", + "machineId": "f8a54a11-93f4-4b0a-9c80-be6542393448", "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3" }, { - "id": "instance-956482-0", + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "956482", + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "3b954132-49fc-405c-9d91-c59b8953d7b8", + "machineId": "ec5214d1-fff8-4a29-b05b-506e7f7de178", "name": "instance-CCTokenizationClientService-0" }, { - "id": "instance-956482-1", + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "956482", - "name": "instance-CCTokenizationClientService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "3b954132-49fc-405c-9d91-c59b8953d7b8", + "name": "instance-CCTokenizationClientService-1", + "machineId": "6e28e57f-21c4-486e-bf19-c9171ad454e9" }, { - "id": "instance-956482-2", + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "956482", - "name": "instance-CCTokenizationClientService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "3b954132-49fc-405c-9d91-c59b8953d7b8", + "name": "instance-CCTokenizationClientService-2", + "machineId": "9c4c6c41-bacd-4b2e-8bc8-c96c762d5ffc" }, { - "id": "instance-913200-0", + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "913200", - "name": "instance-CheckoutService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "0b50ef08-486c-4999-8638-80d8f6a3465c", + "name": "instance-CheckoutService-0", + "machineId": "7eada63f-fd3c-47d8-84c7-7b2f100ece48" }, { - "id": "instance-913200-1", + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "913200", - "name": "instance-CheckoutService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "0b50ef08-486c-4999-8638-80d8f6a3465c", + "name": "instance-CheckoutService-1", + "machineId": "2546f9cc-82bd-4efd-86a7-f1f9c161f553" }, { - "id": "instance-913200-2", + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "913200", - "name": "instance-CheckoutService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "0b50ef08-486c-4999-8638-80d8f6a3465c", + "name": "instance-CheckoutService-2", + "machineId": "d5916d7b-9e2d-449e-a726-fd6eb679d8dc" }, { - "id": "instance-466915-0", + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "466915", - "name": "instance-ColorSwatchService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", + "name": "instance-ColorSwatchService-0", + "machineId": "fe1bd98d-fbc7-4ae9-bb88-1a08f14d3c3c" }, { - "id": "instance-466915-1", + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "466915", - "name": "instance-ColorSwatchService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", + "name": "instance-ColorSwatchService-1", + "machineId": "019fbce4-48f3-4093-bb5b-cbc57129c6ce" }, { - "id": "instance-466915-2", + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "466915", - "name": "instance-ColorSwatchService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", + "name": "instance-ColorSwatchService-2", + "machineId": "24fc33c1-aaaa-451e-b666-990e730b0e1e" }, { - "id": "instance-466915-3", + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "466915", - "name": "instance-ColorSwatchService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", + "name": "instance-ColorSwatchService-3", + "machineId": "d9a54997-106d-4618-add6-d40139b0d951" }, { - "id": "instance-466915-4", + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "466915", - "name": "instance-ColorSwatchService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "71564ea7-9a9d-4d00-9409-505ef03567fc", + "name": "instance-ColorSwatchService-4", + "machineId": "2131357d-c850-4fdd-a3b6-8ac350abf59b" }, { - "id": "instance-638975-0", + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "638975", - "name": "instance-EmailMarketingService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "66babdef-4512-456c-8d16-b6223766da01", + "name": "instance-EmailMarketingService-0", + "machineId": "4d915c72-b436-49ba-a144-f0e98a017888" }, { - "id": "instance-638975-1", + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "638975", - "name": "instance-EmailMarketingService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "66babdef-4512-456c-8d16-b6223766da01", + "name": "instance-EmailMarketingService-1", + "machineId": "efbc9404-aec8-4aab-a66a-8caef91a8d58" }, { - "id": "instance-638975-2", + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "638975", - "name": "instance-EmailMarketingService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "66babdef-4512-456c-8d16-b6223766da01", + "name": "instance-EmailMarketingService-2", + "machineId": "5181e8a9-241e-401d-9504-669826345dd1" }, { - "id": "instance-706935-0", + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "706935", - "name": "instance-FavoriteService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", + "name": "instance-FavoriteService-0", + "machineId": "fe775a4a-e081-42c4-a9b8-605f52a6cb69" }, { - "id": "instance-706935-1", + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "706935", - "name": "instance-FavoriteService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", + "name": "instance-FavoriteService-1", + "machineId": "549ba710-03d2-4c7b-a26a-ae19b9684fc2" }, { - "id": "instance-706935-2", + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "706935", - "name": "instance-FavoriteService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", + "name": "instance-FavoriteService-2", + "machineId": "acd9fc0f-9e67-4926-88c9-f824844b67ce" }, { - "id": "instance-706935-3", + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "706935", - "name": "instance-FavoriteService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", + "name": "instance-FavoriteService-3", + "machineId": "8d099a34-07da-4e06-87a0-44039f9cf59f" }, { - "id": "instance-706935-4", + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "706935", - "name": "instance-FavoriteService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "21b2b735-1706-49f6-a136-f2910c110e84", + "name": "instance-FavoriteService-4", + "machineId": "9b5674a0-2b22-4349-850a-fdfd2ca312c2" }, { - "id": "instance-287366-0", + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "287366", - "name": "instance-FindInStoreService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", + "name": "instance-FindInStoreService-0", + "machineId": "0ba01fce-6e3c-433c-b341-e9afee0bf252" }, { - "id": "instance-287366-1", + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "287366", - "name": "instance-FindInStoreService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", + "name": "instance-FindInStoreService-1", + "machineId": "a61a0d3d-2cae-4ef0-954a-0f005c386eed" }, { - "id": "instance-287366-2", + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "287366", - "name": "instance-FindInStoreService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7e6b96d5-648c-44b2-9e5a-34423fc0a982", + "name": "instance-FindInStoreService-2", + "machineId": "4be8670e-2ea5-4fc5-80c3-29cc0fab5f8d" }, { - "id": "instance-927558-0", + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "927558", - "name": "instance-FitpredictorService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", + "name": "instance-FitpredictorService-0", + "machineId": "81b0904b-637e-4ead-8092-353f062ad614" }, { - "id": "instance-927558-1", + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "927558", - "name": "instance-FitpredictorService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", + "name": "instance-FitpredictorService-1", + "machineId": "007d9c65-40c5-482d-8ee8-b9ec75d522a6" }, { - "id": "instance-927558-2", + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "927558", - "name": "instance-FitpredictorService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", + "name": "instance-FitpredictorService-2", + "machineId": "49d90976-e8ec-467b-ae78-70bd5332f24d" }, { - "id": "instance-927558-3", + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "927558", - "name": "instance-FitpredictorService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ba9ca60e-8f67-49ae-a834-da244b1e3f80", + "name": "instance-FitpredictorService-3", + "machineId": "2f58f000-99a1-41fd-a6f3-23610c935eaa" }, { - "id": "instance-535349-0", + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "535349", - "name": "instance-HidefromcatalogService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", + "name": "instance-HidefromcatalogService-0", + "machineId": "37fb72ed-bb1c-405a-a01c-950b1d62fd44" }, { - "id": "instance-535349-1", + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "535349", - "name": "instance-HidefromcatalogService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", + "name": "instance-HidefromcatalogService-1", + "machineId": "da0da055-9067-4159-bf2a-bbe7bca13dc2" }, { - "id": "instance-535349-2", + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "535349", - "name": "instance-HidefromcatalogService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", + "name": "instance-HidefromcatalogService-2", + "machineId": "1fc8dc72-aa74-490d-873a-121554f25109" }, { - "id": "instance-535349-3", + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "535349", - "name": "instance-HidefromcatalogService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5fffbfde-7f65-46cb-b729-db9cdb1843e6", + "name": "instance-HidefromcatalogService-3", + "machineId": "75de8a2f-bec8-4dab-b046-b1aa8ad3d2e4" }, { - "id": "instance-284889-0", + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "284889", - "name": "instance-InternationalCheckoutService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", + "name": "instance-InternationalCheckoutService-0", + "machineId": "6242323a-f3c1-40f0-81b4-284ad1fa238f" }, { - "id": "instance-284889-1", + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "284889", - "name": "instance-InternationalCheckoutService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", + "name": "instance-InternationalCheckoutService-1", + "machineId": "ccef4c0d-3608-4bad-9127-fda2932ee78a" }, { - "id": "instance-284889-2", + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "284889", - "name": "instance-InternationalCheckoutService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", + "name": "instance-InternationalCheckoutService-2", + "machineId": "c9de38ac-22bc-40ed-9ff2-b8afc3175d47" }, { - "id": "instance-284889-3", + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "284889", - "name": "instance-InternationalCheckoutService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", + "name": "instance-InternationalCheckoutService-3", + "machineId": "afdc3777-df66-4772-961a-34fe4910fec6" }, { - "id": "instance-284889-4", + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "284889", - "name": "instance-InternationalCheckoutService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "25725be5-6880-438f-9590-7c8cd9606224", + "name": "instance-InternationalCheckoutService-4", + "machineId": "51190835-8e73-45eb-a2c3-b349a45b1248" }, { - "id": "instance-674952-0", + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "674952", - "name": "instance-InternationalPOService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", + "name": "instance-InternationalPOService-0", + "machineId": "b2366748-e22e-4962-9808-0c00e76fe883" }, { - "id": "instance-674952-1", + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "674952", - "name": "instance-InternationalPOService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", + "name": "instance-InternationalPOService-1", + "machineId": "dae58381-7f28-44c8-9b8e-0496f2dd6974" }, { - "id": "instance-674952-2", + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "674952", - "name": "instance-InternationalPOService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", + "name": "instance-InternationalPOService-2", + "machineId": "d9a88b5c-9033-47a4-b729-75945c65af52" }, { - "id": "instance-674952-3", + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "674952", - "name": "instance-InternationalPOService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b14f7f85-834b-41fe-866b-571d8a77ab83", + "name": "instance-InternationalPOService-3", + "machineId": "c5b5eede-0062-4036-9b2a-e6668b742336" }, { - "id": "instance-855926-0", + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "855926", - "name": "instance-InternationalShippingService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", + "name": "instance-InternationalShippingService-0", + "machineId": "d6db9222-bf82-4c80-8572-08c7bfc91077" }, { - "id": "instance-855926-1", + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "855926", - "name": "instance-InternationalShippingService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", + "name": "instance-InternationalShippingService-1", + "machineId": "d9ebdf82-d73a-438b-9465-e82fc8bb575e" }, { - "id": "instance-855926-2", + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "855926", - "name": "instance-InternationalShippingService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", + "name": "instance-InternationalShippingService-2", + "machineId": "dc63df5d-7496-4585-a7f8-dcd1f2218c0f" }, { - "id": "instance-855926-3", + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "855926", - "name": "instance-InternationalShippingService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "de943737-bf8f-4adb-979a-05b083e1b52d", + "name": "instance-InternationalShippingService-3", + "machineId": "dadbf32d-f51d-4f23-aedf-5e604b869958" }, { - "id": "instance-10433-0", + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "10433", - "name": "instance-InventoryService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", + "name": "instance-InventoryService-0", + "machineId": "a27e578a-9a20-4d76-9555-6e7acb2928af" }, { - "id": "instance-10433-1", + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "10433", - "name": "instance-InventoryService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", + "name": "instance-InventoryService-1", + "machineId": "5a1b6519-8608-4579-8860-1798b1744413" }, { - "id": "instance-10433-2", + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "10433", - "name": "instance-InventoryService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", + "name": "instance-InventoryService-2", + "machineId": "f35becf4-fa3c-4af3-9412-8250e0aa5381" }, { - "id": "instance-10433-3", + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "10433", - "name": "instance-InventoryService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "dc6e21d4-f0ce-4717-8415-93fd785c7167", + "name": "instance-InventoryService-3", + "machineId": "c09e4729-fee5-4c77-b589-014c85331987" }, { - "id": "instance-227269-0", + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "227269", - "name": "instance-LocalizationService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", + "name": "instance-LocalizationService-0", + "machineId": "328876ea-8774-4d87-b523-c6a3410dc5c5" }, { - "id": "instance-227269-1", + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "227269", - "name": "instance-LocalizationService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", + "name": "instance-LocalizationService-1", + "machineId": "009cc3dc-a378-47ef-ab44-7c8f79e01007" }, { - "id": "instance-227269-2", + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "227269", - "name": "instance-LocalizationService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", + "name": "instance-LocalizationService-2", + "machineId": "25959dc2-862c-46f7-b59d-06569585f3e8" }, { - "id": "instance-227269-3", + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "227269", - "name": "instance-LocalizationService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81", + "name": "instance-LocalizationService-3", + "machineId": "e7988ff9-2cf8-4d74-995f-4ace9e8d1971" }, { - "id": "instance-207752-0", + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "207752", - "name": "instance-MoreAccountService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", + "name": "instance-MoreAccountService-0", + "machineId": "e20c9221-0ff5-498c-afa3-0828ee3c54c0" }, { - "id": "instance-207752-1", + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "207752", - "name": "instance-MoreAccountService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", + "name": "instance-MoreAccountService-1", + "machineId": "d7dcdc8e-63c1-4d6b-8057-c5b43df376d3" }, { - "id": "instance-207752-2", + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "207752", - "name": "instance-MoreAccountService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", + "name": "instance-MoreAccountService-2", + "machineId": "7ddee330-71be-4f15-b4d0-016ab587a90b" }, { - "id": "instance-207752-3", + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "207752", - "name": "instance-MoreAccountService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", + "name": "instance-MoreAccountService-3", + "machineId": "39db7636-8986-40f9-aa62-9d471afd8d2e" }, { - "id": "instance-207752-4", + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "207752", - "name": "instance-MoreAccountService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d3b47ee2-1755-446d-88d9-3e44a4b404e2", + "name": "instance-MoreAccountService-4", + "machineId": "c0d0f9f3-933d-4e22-9b92-89db0068d9e4" }, { - "id": "instance-380820-0", + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "380820", - "name": "instance-NavigationService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", + "name": "instance-NavigationService-0", + "machineId": "8317d214-2aa9-4061-be02-2d7e773ee778" }, { - "id": "instance-380820-1", + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "380820", - "name": "instance-NavigationService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", + "name": "instance-NavigationService-1", + "machineId": "004bf8a2-22fe-4ac5-8875-f3f92241fcfa" }, { - "id": "instance-380820-2", + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "380820", - "name": "instance-NavigationService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", + "name": "instance-NavigationService-2", + "machineId": "2734c9b8-5551-4d62-910b-d56c2e7702cf" }, { - "id": "instance-380820-3", + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "380820", - "name": "instance-NavigationService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", + "name": "instance-NavigationService-3", + "machineId": "1eca43b9-2bb0-4b85-af65-70e6a3a93d98" }, { - "id": "instance-380820-4", + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "380820", - "name": "instance-NavigationService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "339c1174-acd0-4740-a0af-3b0e87d2b2d1", + "name": "instance-NavigationService-4", + "machineId": "1036dd0a-2ac5-4c39-9678-442b41b5b66b" }, { - "id": "instance-869876-0", + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "869876", - "name": "instance-OrderCreationJob-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", + "name": "instance-OrderCreationJob-0", + "machineId": "0e0430e8-3c0b-49e8-ad21-cba0aa2aba3d" }, { - "id": "instance-869876-1", + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "869876", - "name": "instance-OrderCreationJob-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", + "name": "instance-OrderCreationJob-1", + "machineId": "983f5a54-d7a0-4976-923e-62e0fb4c560f" }, { - "id": "instance-869876-2", + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "869876", - "name": "instance-OrderCreationJob-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", + "name": "instance-OrderCreationJob-2", + "machineId": "ec8b9feb-22ca-4e89-847f-0f0c3a464860" }, { - "id": "instance-869876-3", + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "869876", - "name": "instance-OrderCreationJob-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", + "name": "instance-OrderCreationJob-3", + "machineId": "fa34f03c-7d28-40ba-9bf9-95cbf21b25cf" }, { - "id": "instance-869876-4", + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "869876", - "name": "instance-OrderCreationJob-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8871105e-ae08-4ebf-81ae-748d6e33941c", + "name": "instance-OrderCreationJob-4", + "machineId": "c0b1fdd2-8d6f-46f1-b359-214d7500d70e" }, { - "id": "instance-880882-0", + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "880882", - "name": "instance-OrderService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "9f2b665b-31a7-49e6-b021-d1767e092aa6", + "name": "instance-OrderService-0", + "machineId": "03524b3f-f7de-4433-9b00-d2c1ca38cfb2" }, { - "id": "instance-880882-1", + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "880882", - "name": "instance-OrderService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "9f2b665b-31a7-49e6-b021-d1767e092aa6", + "name": "instance-OrderService-1", + "machineId": "c09b7477-ee9a-42f0-aa60-4e5d092812b5" }, { - "id": "instance-880882-2", + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "880882", - "name": "instance-OrderService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "9f2b665b-31a7-49e6-b021-d1767e092aa6", + "name": "instance-OrderService-2", + "machineId": "ecca8837-37b7-458b-a05b-74a5752a2315" }, { - "id": "instance-134052-0", + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "134052", - "name": "instance-OrderService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", + "name": "instance-OrderService-0", + "machineId": "510a8c12-e752-4f2c-9670-c03a15503796" }, { - "id": "instance-134052-1", + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "134052", - "name": "instance-OrderService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", + "name": "instance-OrderService-1", + "machineId": "e313aa06-ac32-46da-9010-cee561578c59" }, { - "id": "instance-134052-2", + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "134052", - "name": "instance-OrderService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", + "name": "instance-OrderService-2", + "machineId": "aa7d299c-a589-4cc4-8e39-42097e6dce17" }, { - "id": "instance-134052-3", + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "134052", - "name": "instance-OrderService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "bd9fdb62-39ac-4a58-9d83-6b955a938274", + "name": "instance-OrderService-3", + "machineId": "1f908042-c694-4e31-a678-acd1ec165644" }, { - "id": "instance-201374-0", + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "201374", - "name": "instance-PaymentMethodService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", + "name": "instance-PaymentMethodService-0", + "machineId": "ac777422-423d-450a-acf0-2a42d4c1f157" }, { - "id": "instance-201374-1", + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "201374", - "name": "instance-PaymentMethodService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", + "name": "instance-PaymentMethodService-1", + "machineId": "f2ba162f-9e11-4ceb-abdc-8d9fbbc135cb" }, { - "id": "instance-201374-2", + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "201374", - "name": "instance-PaymentMethodService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", + "name": "instance-PaymentMethodService-2", + "machineId": "d1c99e98-8924-479c-832f-de15c316c05e" }, { - "id": "instance-201374-3", + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "201374", - "name": "instance-PaymentMethodService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", + "name": "instance-PaymentMethodService-3", + "machineId": "c5667348-c39e-41e9-91f9-b92cd307ff64" }, { - "id": "instance-201374-4", + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "201374", - "name": "instance-PaymentMethodService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc", + "name": "instance-PaymentMethodService-4", + "machineId": "9bf197fe-4d56-4347-ad34-85bcf8f05d77" }, { - "id": "instance-198108-0", + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "198108", - "name": "instance-PaymentService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", + "name": "instance-PaymentService-0", + "machineId": "84a339a3-8b1f-42fe-9d71-5fc43af7efb9" }, { - "id": "instance-198108-1", + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "198108", - "name": "instance-PaymentService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", + "name": "instance-PaymentService-1", + "machineId": "40044bd9-fa29-47be-acf7-aafa2e3abe71" }, { - "id": "instance-198108-2", + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "198108", - "name": "instance-PaymentService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", + "name": "instance-PaymentService-2", + "machineId": "3d885b0c-79b7-44d2-b418-cbbe2025f0fa" }, { - "id": "instance-198108-3", + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "198108", - "name": "instance-PaymentService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d", + "name": "instance-PaymentService-3", + "machineId": "39ddada7-151f-4786-b81f-26dd8ff4cef8" }, { - "id": "instance-185292-0", + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "185292", - "name": "instance-PaymentService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", + "name": "instance-PaymentService-0", + "machineId": "266048f5-3d0b-4955-a1d5-a63273bbff07" }, { - "id": "instance-185292-1", + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "185292", - "name": "instance-PaymentService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", + "name": "instance-PaymentService-1", + "machineId": "0f8334e4-50ad-47a1-8fc8-00095798eb91" }, { - "id": "instance-185292-2", + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "185292", - "name": "instance-PaymentService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", + "name": "instance-PaymentService-2", + "machineId": "97791e82-627a-46a6-998d-a70bff7ee278" }, { - "id": "instance-185292-3", + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "185292", - "name": "instance-PaymentService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408", + "name": "instance-PaymentService-3", + "machineId": "c7676607-ece9-474c-a620-ebfdea63e284" }, { - "id": "instance-678590-0", + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "678590", - "name": "instance-PriceService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", + "name": "instance-PriceService-0", + "machineId": "5f78a2b3-eea8-4e0e-b41a-2de9ec2bbee3" }, { - "id": "instance-678590-1", + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "678590", - "name": "instance-PriceService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", + "name": "instance-PriceService-1", + "machineId": "69c8da0e-dcc6-4a49-901f-1c26d78e1083" }, { - "id": "instance-678590-2", + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "678590", - "name": "instance-PriceService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", + "name": "instance-PriceService-2", + "machineId": "684f61e1-e87a-4fcf-819b-97e8ab0d53b5" }, { - "id": "instance-678590-3", + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "678590", - "name": "instance-PriceService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4", + "name": "instance-PriceService-3", + "machineId": "bb776fb1-f554-4702-9389-b20672f1ba47" }, { - "id": "instance-419819-0", + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "419819", - "name": "instance-PrivatesaleService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", + "name": "instance-PrivatesaleService-0", + "machineId": "b5eef5e0-be43-40be-a0ff-5d2dee072d37" }, { - "id": "instance-419819-1", + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "419819", - "name": "instance-PrivatesaleService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", + "name": "instance-PrivatesaleService-1", + "machineId": "62f71598-1db7-4a03-8f70-09c2fef48c51" }, { - "id": "instance-419819-2", + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "419819", - "name": "instance-PrivatesaleService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", + "name": "instance-PrivatesaleService-2", + "machineId": "085ea830-c7cb-4956-a867-cc574526465a" }, { - "id": "instance-419819-3", + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "419819", - "name": "instance-PrivatesaleService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "760cc6d2-e4c3-4781-923c-8edebe20fbc9", + "name": "instance-PrivatesaleService-3", + "machineId": "07bddd94-bc76-40bb-a639-65f8f39ac4a6" }, { - "id": "instance-194381-0", + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "194381", - "name": "instance-ProductArrayService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", + "name": "instance-ProductArrayService-0", + "machineId": "9923fd69-69bf-450a-bb53-e34b9cda7951" }, { - "id": "instance-194381-1", + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "194381", - "name": "instance-ProductArrayService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", + "name": "instance-ProductArrayService-1", + "machineId": "36296795-b50b-449c-b494-3d53f3aebde8" }, { - "id": "instance-194381-2", + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "194381", - "name": "instance-ProductArrayService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", + "name": "instance-ProductArrayService-2", + "machineId": "f1b7ca63-4511-4fcf-974f-985e7b212ce3" }, { - "id": "instance-194381-3", + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "194381", - "name": "instance-ProductArrayService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", + "name": "instance-ProductArrayService-3", + "machineId": "9ba3229c-d24e-45dc-ba8f-6b8f6942b887" }, { - "id": "instance-194381-4", + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "194381", - "name": "instance-ProductArrayService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f", + "name": "instance-ProductArrayService-4", + "machineId": "ac5028c0-d8e3-4550-ae38-0f40bec5133f" }, { - "id": "instance-317244-0", + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "317244", - "name": "instance-ProductDetailService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", + "name": "instance-ProductDetailService-0", + "machineId": "495f234d-846a-45af-a9d1-a8c0b0010396" }, { - "id": "instance-317244-1", + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "317244", - "name": "instance-ProductDetailService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", + "name": "instance-ProductDetailService-1", + "machineId": "01106446-1320-420f-a486-8195f4755b43" }, { - "id": "instance-317244-2", + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "317244", - "name": "instance-ProductDetailService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", + "name": "instance-ProductDetailService-2", + "machineId": "1ae6f186-d9ee-487b-ba5f-35549395b2b8" }, { - "id": "instance-317244-3", + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "317244", - "name": "instance-ProductDetailService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", + "name": "instance-ProductDetailService-3", + "machineId": "107e3f9a-c63f-4a78-999d-dce5932cc206" }, { - "id": "instance-317244-4", + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "317244", - "name": "instance-ProductDetailService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1d2b1206-a025-4717-bc20-ddd0acf14fca", + "name": "instance-ProductDetailService-4", + "machineId": "2f8fc356-8d85-446c-848b-ae383388b6ab" }, { - "id": "instance-922095-0", + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "922095", - "name": "instance-ProductService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", + "name": "instance-ProductService-0", + "machineId": "94455b1b-6fb9-4442-b1d3-9e91cef30e2e" }, { - "id": "instance-922095-1", + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "922095", - "name": "instance-ProductService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", + "name": "instance-ProductService-1", + "machineId": "7abfe76d-7b8a-4a4d-9e75-e296ba7e0e25" }, { - "id": "instance-922095-2", + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "922095", - "name": "instance-ProductService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6", + "name": "instance-ProductService-2", + "machineId": "2e733d49-fb55-42b5-8117-699608dd1bf9" }, { - "id": "instance-147698-0", + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "147698", - "name": "instance-ProfileService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", + "name": "instance-ProfileService-0", + "machineId": "e27097a6-d7e6-4541-b9b2-22e7bcf9091f" }, { - "id": "instance-147698-1", + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "147698", - "name": "instance-ProfileService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", + "name": "instance-ProfileService-1", + "machineId": "73e64de6-0d37-4eb5-8c49-fa32311b4f7c" }, { - "id": "instance-147698-2", + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "147698", - "name": "instance-ProfileService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", + "name": "instance-ProfileService-2", + "machineId": "be83bd3e-13fb-4a1b-98cc-0839ec80d11d" }, { - "id": "instance-147698-3", + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "147698", - "name": "instance-ProfileService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a", + "name": "instance-ProfileService-3", + "machineId": "f0683944-7392-4801-b474-fe78ca61a91b" }, { - "id": "instance-300275-0", + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "300275", - "name": "instance-PromoService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "693659a1-0d46-49aa-925c-2fcf16c07fc1", + "name": "instance-PromoService-0", + "machineId": "06a5c1be-646c-480e-96a8-8620fd221b03" }, { - "id": "instance-300275-1", + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "300275", - "name": "instance-PromoService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "693659a1-0d46-49aa-925c-2fcf16c07fc1", + "name": "instance-PromoService-1", + "machineId": "5bf90ba8-c3e7-4fc2-a0aa-4b245367f70e" }, { - "id": "instance-300275-2", + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "300275", - "name": "instance-PromoService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "693659a1-0d46-49aa-925c-2fcf16c07fc1", + "name": "instance-PromoService-2", + "machineId": "399e7051-8b61-4ef9-a7da-ed1e33ca0fa1" }, { - "id": "instance-660331-0", + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "660331", - "name": "instance-PromotionService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", + "name": "instance-PromotionService-0", + "machineId": "c6def1eb-c4c5-4915-a664-1e54a4d27ab2" }, { - "id": "instance-660331-1", + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "660331", - "name": "instance-PromotionService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", + "name": "instance-PromotionService-1", + "machineId": "986aaa77-ebf4-4404-be8c-43850df29ae6" }, { - "id": "instance-660331-2", + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "660331", - "name": "instance-PromotionService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", + "name": "instance-PromotionService-2", + "machineId": "7802a82e-d529-4c91-9961-510a4aa310a0" }, { - "id": "instance-660331-3", + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "660331", - "name": "instance-PromotionService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", + "name": "instance-PromotionService-3", + "machineId": "abafc915-b56c-4d2e-8ed2-2d3770212a0a" }, { - "id": "instance-660331-4", + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "660331", - "name": "instance-PromotionService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31", + "name": "instance-PromotionService-4", + "machineId": "a12f36bb-0939-493b-b59f-7c6b2c45b979" }, { - "id": "instance-421766-0", + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "421766", - "name": "instance-QuestionanswerService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", + "name": "instance-QuestionanswerService-0", + "machineId": "1e284cf3-e996-4487-b357-25db82a65938" }, { - "id": "instance-421766-1", + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "421766", - "name": "instance-QuestionanswerService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", + "name": "instance-QuestionanswerService-1", + "machineId": "4dc23279-7bf0-48c2-8d09-ce15e41f7a50" }, { - "id": "instance-421766-2", + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "421766", - "name": "instance-QuestionanswerService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", + "name": "instance-QuestionanswerService-2", + "machineId": "a4aa9d5b-5674-4796-bb33-0314c053facc" }, { - "id": "instance-421766-3", + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "421766", - "name": "instance-QuestionanswerService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "ecf54138-7d5f-4e5b-9246-7762550e1082", + "name": "instance-QuestionanswerService-3", + "machineId": "db675533-f542-4bba-a977-c3a12d0609f4" }, { - "id": "instance-750289-0", + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "750289", - "name": "instance-RedBaloonService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8b8a8506-fc87-4464-acac-f98b934ed755", + "name": "instance-RedBaloonService-0", + "machineId": "839d2461-cb78-4072-a81f-bba16a49fc89" }, { - "id": "instance-750289-1", + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "750289", - "name": "instance-RedBaloonService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8b8a8506-fc87-4464-acac-f98b934ed755", + "name": "instance-RedBaloonService-1", + "machineId": "f07ea401-edb9-4140-a57c-6f21864895c6" }, { - "id": "instance-750289-2", + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "750289", - "name": "instance-RedBaloonService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8b8a8506-fc87-4464-acac-f98b934ed755", + "name": "instance-RedBaloonService-2", + "machineId": "15451e87-4a2c-41de-ae45-5188ea3763e9" }, { - "id": "instance-959890-0", + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "959890", - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0", + "machineId": "20f5bf63-c7d7-4b80-bbe0-63dd744f1b72" }, { - "id": "instance-959890-1", + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "959890", - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1", + "machineId": "bf10d972-17e0-4267-908e-4a8184d7c164" }, { - "id": "instance-959890-2", + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "959890", - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2", + "machineId": "d7204a39-5005-4925-a2d5-02afbb2457db" }, { - "id": "instance-959890-3", + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "959890", - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3", + "machineId": "80dac6f7-e459-4f42-b824-5abdd6f13d41" }, { - "id": "instance-959890-4", + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "959890", - "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4", + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4", + "machineId": "dbb819d5-9df2-48e1-8412-7cd48ca4c186" }, { - "id": "instance-356524-0", + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "356524", - "name": "instance-ReviewsService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", + "name": "instance-ReviewsService-0", + "machineId": "708e3623-0cbf-4dff-89b5-8b4dc06e56bf" }, { - "id": "instance-356524-1", + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "356524", - "name": "instance-ReviewsService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", + "name": "instance-ReviewsService-1", + "machineId": "2771dc39-4fa3-41ef-80bd-4522165ff428" }, { - "id": "instance-356524-2", + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "356524", - "name": "instance-ReviewsService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", + "name": "instance-ReviewsService-2", + "machineId": "fcba67fb-5119-4fb0-9d2d-8cb877464d98" }, { - "id": "instance-356524-3", + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "356524", - "name": "instance-ReviewsService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", + "name": "instance-ReviewsService-3", + "machineId": "85ff21d8-15a6-4e76-8b7d-656c53656ba4" }, { - "id": "instance-356524-4", + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "356524", - "name": "instance-ReviewsService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "709971c3-794d-42b5-b2dc-42c51db75c41", + "name": "instance-ReviewsService-4", + "machineId": "b8a3a53f-f1c3-4796-b2b8-85b96b6a96a4" }, { - "id": "instance-502691-0", + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "502691", - "name": "instance-SearchFacetsService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", + "name": "instance-SearchFacetsService-0", + "machineId": "b9dbbeaa-c1f5-468f-89ac-f04b98a931ce" }, { - "id": "instance-502691-1", + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "502691", - "name": "instance-SearchFacetsService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", + "name": "instance-SearchFacetsService-1", + "machineId": "683e9733-adb6-4e5f-bdce-eea7027b6173" }, { - "id": "instance-502691-2", + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "502691", - "name": "instance-SearchFacetsService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "825f73d0-cbf0-4c9e-ab12-0f53128d2444", + "name": "instance-SearchFacetsService-2", + "machineId": "0215a196-9fea-4197-a478-1f0191fde5c2" }, { - "id": "instance-323973-0", + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "323973", - "name": "instance-SearchIndexService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", + "name": "instance-SearchIndexService-0", + "machineId": "dabb9629-7844-4e0b-ab9b-9657de583864" }, { - "id": "instance-323973-1", + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "323973", - "name": "instance-SearchIndexService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", + "name": "instance-SearchIndexService-1", + "machineId": "7a52ffd7-460b-4e23-92a2-e405d3ac9c6c" }, { - "id": "instance-323973-2", + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "323973", - "name": "instance-SearchIndexService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", + "name": "instance-SearchIndexService-2", + "machineId": "307f023d-519e-4cfc-845f-9fda283bc766" }, { - "id": "instance-323973-3", + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "323973", - "name": "instance-SearchIndexService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6", + "name": "instance-SearchIndexService-3", + "machineId": "01750ab3-f20c-4077-8453-3a99025f846e" }, { - "id": "instance-52512-0", + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52512", - "name": "instance-ShopRunnerService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", + "name": "instance-ShopRunnerService-0", + "machineId": "51a1bdc0-e282-4e8f-b2aa-b3f663fe4e64" }, { - "id": "instance-52512-1", + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52512", - "name": "instance-ShopRunnerService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", + "name": "instance-ShopRunnerService-1", + "machineId": "5f66cadd-4d6e-497d-ac32-258b5e70d36c" }, { - "id": "instance-52512-2", + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52512", - "name": "instance-ShopRunnerService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", + "name": "instance-ShopRunnerService-2", + "machineId": "ec91237d-5052-49ad-be25-d55b8be15f75" }, { - "id": "instance-52512-3", + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52512", - "name": "instance-ShopRunnerService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", + "name": "instance-ShopRunnerService-3", + "machineId": "06e22fb5-e6c0-43cd-806c-32c308f54687" }, { - "id": "instance-52512-4", + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52512", - "name": "instance-ShopRunnerService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6", + "name": "instance-ShopRunnerService-4", + "machineId": "aba0f29a-664b-4455-b51d-8d4f61c7f936" }, { - "id": "instance-416078-0", + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "416078", - "name": "instance-TaxService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", + "name": "instance-TaxService-0", + "machineId": "b723da71-3441-4a0d-962f-13be9fc87f12" }, { - "id": "instance-416078-1", + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "416078", - "name": "instance-TaxService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", + "name": "instance-TaxService-1", + "machineId": "3625f022-5b5e-4d46-b580-fcd3ca11f013" }, { - "id": "instance-416078-2", + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "416078", - "name": "instance-TaxService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", + "name": "instance-TaxService-2", + "machineId": "291f11b6-141a-4416-8e41-a9eec2d70514" }, { - "id": "instance-416078-3", + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "416078", - "name": "instance-TaxService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", + "name": "instance-TaxService-3", + "machineId": "d3b4eb5b-ff7b-44f7-ad5a-6d07e7d688c3" }, { - "id": "instance-416078-4", + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "416078", - "name": "instance-TaxService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "c62413d0-7eb0-4151-9da5-3b331ffafce0", + "name": "instance-TaxService-4", + "machineId": "790e4bb5-f089-42cd-8e86-b9645eed618a" }, { - "id": "instance-365023-0", + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "365023", - "name": "instance-ToggleService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", + "name": "instance-ToggleService-0", + "machineId": "4d4cb469-20d3-44d1-91d3-40d7805c84ac" }, { - "id": "instance-365023-1", + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "365023", - "name": "instance-ToggleService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", + "name": "instance-ToggleService-1", + "machineId": "5fe7ceca-b886-4248-9808-7eb6ed46515f" }, { - "id": "instance-365023-2", + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "365023", - "name": "instance-ToggleService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", + "name": "instance-ToggleService-2", + "machineId": "d279a63f-9471-4078-90a0-9d59bbd374f5" }, { - "id": "instance-365023-3", + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "365023", - "name": "instance-ToggleService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "8d1e1795-0baa-48da-a173-ca9d145dcffa", + "name": "instance-ToggleService-3", + "machineId": "99185403-e804-443f-9ede-014d5f4006ac" }, { - "id": "instance-998776-0", + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "998776", - "name": "instance-UserAccountService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", + "name": "instance-UserAccountService-0", + "machineId": "44b454b1-cc8b-4a8d-95d9-b5939a00a9bd" }, { - "id": "instance-998776-1", + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "998776", - "name": "instance-UserAccountService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", + "name": "instance-UserAccountService-1", + "machineId": "f57ba43d-159b-4c61-91c3-1f5d29d74a7a" }, { - "id": "instance-998776-2", + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "998776", - "name": "instance-UserAccountService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", + "name": "instance-UserAccountService-2", + "machineId": "fca15f53-b425-47f0-863d-e338982122e7" }, { - "id": "instance-998776-3", + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "998776", - "name": "instance-UserAccountService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "7728f1ff-ad43-416a-acd5-6d4f506a3f48", + "name": "instance-UserAccountService-3", + "machineId": "22e70edc-1813-41ad-ab5e-1bef4eb5912e" }, { - "id": "instance-668748-0", + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "668748", - "name": "instance-UserAuthenticationService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", + "name": "instance-UserAuthenticationService-0", + "machineId": "23368713-1e27-42e9-a842-b6555ba2c7be" }, { - "id": "instance-668748-1", + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "668748", - "name": "instance-UserAuthenticationService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", + "name": "instance-UserAuthenticationService-1", + "machineId": "f432cc77-91a8-42e5-baa3-4b64405dd83f" }, { - "id": "instance-668748-2", + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "668748", - "name": "instance-UserAuthenticationService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", + "name": "instance-UserAuthenticationService-2", + "machineId": "16e5550f-c09d-4bad-89bb-3628c5576bbe" }, { - "id": "instance-668748-3", + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "668748", - "name": "instance-UserAuthenticationService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "6126b9a2-0402-4b1d-b7af-6e4486e0973c", + "name": "instance-UserAuthenticationService-3", + "machineId": "5760762c-eea2-4d96-abdb-eae263111d83" }, { - "id": "instance-52483-0", + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52483", - "name": "instance-WaitlistOverlayService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", + "name": "instance-WaitlistOverlayService-0", + "machineId": "51f541e1-4e82-4e16-907d-6aeb113f394c" }, { - "id": "instance-52483-1", + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52483", - "name": "instance-WaitlistOverlayService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", + "name": "instance-WaitlistOverlayService-1", + "machineId": "d9bac0ca-3e98-4afb-b426-3c17bab35d45" }, { - "id": "instance-52483-2", + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "52483", - "name": "instance-WaitlistOverlayService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5", + "name": "instance-WaitlistOverlayService-2", + "machineId": "600fada5-2369-477f-b22d-18a79653109f" }, { - "id": "instance-846583-0", + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "846583", - "name": "instance-WaitlistService-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", + "name": "instance-WaitlistService-0", + "machineId": "ece4ae8e-c5c4-40c2-8d28-594d7015fd36" }, { - "id": "instance-846583-1", + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "846583", - "name": "instance-WaitlistService-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", + "name": "instance-WaitlistService-1", + "machineId": "214b9f77-c6ec-446c-a20c-0b7e0e5bbf98" }, { - "id": "instance-846583-2", + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "846583", - "name": "instance-WaitlistService-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", + "name": "instance-WaitlistService-2", + "machineId": "f4a0a162-2093-4481-b6c6-f8728600cd03" }, { - "id": "instance-846583-3", + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "846583", - "name": "instance-WaitlistService-3" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", + "name": "instance-WaitlistService-3", + "machineId": "8319135d-3568-42f3-8df4-550615639ff1" }, { - "id": "instance-846583-4", + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "846583", - "name": "instance-WaitlistService-4" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4", + "name": "instance-WaitlistService-4", + "machineId": "d178d330-b864-4985-b245-8dc1c1eb7d54" }, { - "id": "instance-primary-consul-0", + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-consul", - "name": "instance-Consul-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2540f59b-5f81-4458-94a1-38e6eef5d78a", + "name": "instance-Consul-0", + "machineId": "5581072a-bd07-4d44-bd9d-86f23e421e6b" }, { - "id": "instance-primary-consul-1", + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-consul", - "name": "instance-Consul-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2540f59b-5f81-4458-94a1-38e6eef5d78a", + "name": "instance-Consul-1", + "machineId": "4bf8e8b8-ea02-482f-b832-9e29428e96af" }, { - "id": "instance-primary-consul-2", + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-consul", - "name": "instance-Consul-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "2540f59b-5f81-4458-94a1-38e6eef5d78a", + "name": "instance-Consul-2", + "machineId": "d678775c-4921-4a58-80e7-d2c787db73f9" }, { - "id": "instance-primary-nginx-0", + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-nginx", - "name": "instance-Nginx-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0", + "name": "instance-Nginx-0", + "machineId": "7a2cc743-3dec-497d-a4e0-04a1238997cb" }, { - "id": "instance-primary-mongodb-0", + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-mongodb", - "name": "instance-MongoDB-0" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5e527d47-7a19-439e-b6bb-32c456bd423c", + "name": "instance-MongoDB-0", + "machineId": "290c2f89-4d03-46dd-a637-d9c4d3d64a7b" }, { - "id": "instance-primary-mongodb-1", + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-mongodb", - "name": "instance-MongoDB-1" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5e527d47-7a19-439e-b6bb-32c456bd423c", + "name": "instance-MongoDB-1", + "machineId": "b40d9796-ebfd-4926-972d-9a65ec03fda4" }, { - "id": "instance-primary-mongodb-2", + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2", "status": "RUNNING", "healthy": "UNKNOWN", - "deploymentGroupId": "9fcb374d-a267-4c2a-9d9c-ba469b804639", - "serviceId": "primary-mongodb", - "name": "instance-MongoDB-2" + "deploymentGroupId": "ba217234-9b1b-41a7-8079-08f9a4aadb0f", + "serviceId": "5e527d47-7a19-439e-b6bb-32c456bd423c", + "name": "instance-MongoDB-2", + "machineId": "a8137828-e1de-40ef-8714-b94c0bec24cb" } ] } diff --git a/packages/cp-gql-mock-server/src/cp-data.json b/packages/cp-gql-mock-server/src/cp-data.json index 217708c0..70d9cfad 100644 --- a/packages/cp-gql-mock-server/src/cp-data.json +++ b/packages/cp-gql-mock-server/src/cp-data.json @@ -4,51 +4,40 @@ "name": "cpexample", "slug": "cpexample", "imported": true, - "status": "ACTIVE", - "__typename": "DeploymentGroup" + "status": "ACTIVE" }, "services": [ { "id": "af6a5cd2-291f-490b-bf3b-141b010635db", "name": "frontend", "slug": "frontend", - "status": null, - "__typename": "Service", + "status": "ACTIVE", "branches": [], - "connections": [ - "aea06a05-830a-46d3-bdc1-9dcba97303de" - ], + "connections": ["aea06a05-830a-46d3-bdc1-9dcba97303de"], "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" }, { "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", "name": "mysql", "slug": "mysql", - "status": null, - "__typename": "Service", + "status": "ACTIVE", "branches": [ { "name": "mysql-primary", "slug": "mysql-primary", - "instances": [ - "1188dfa0-efac-4142-8a6d-615841dc04e7" - ], - "__typename": "Service", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "id": "mysql-primary-mysql-primary" + "instances": ["1188dfa0-efac-4142-8a6d-615841dc04e7"], + "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" }, { "name": "mysql", "slug": "mysql", "instances": [ - "0d757833-7912-4777-81ce-f302c653cfda", + "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b", "3ec9132f-9093-4644-a2fd-a9749d0011ca", "6e460ff1-7bc3-4c9b-b093-f37b1134f37b", "991cbab5-b773-4651-b5b9-b95c299cf50f" ], - "__typename": "Service", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "id": "mysql-mysql" + "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" } ], "connections": [], @@ -58,8 +47,7 @@ "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4", "name": "producer", "slug": "producer", - "status": null, - "__typename": "Service", + "status": "ACTIVE", "branches": [], "connections": [ "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", @@ -71,8 +59,7 @@ "id": "aea06a05-830a-46d3-bdc1-9dcba97303de", "name": "api", "slug": "api", - "status": null, - "__typename": "Service", + "status": "ACTIVE", "branches": [], "connections": [ "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", @@ -85,8 +72,7 @@ "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a", "name": "consul", "slug": "consul", - "status": null, - "__typename": "Service", + "status": "ACTIVE", "branches": [], "connections": [], "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67" @@ -100,132 +86,88 @@ "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "af6a5cd2-291f-490b-bf3b-141b010635db", + "machineId": "c5da7ba6-c544-4f78-9dcc-4ae418a08ed2", "name": "frontend-0" }, { "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d", "status": "FAILED", "healthy": "UNAVAILABLE", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "af6a5cd2-291f-490b-bf3b-141b010635db", + "machineId": "4be909bb-1ee1-4503-a5d0-62e3d460bb93", "name": "frontend-1" }, { - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7", + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b", "status": "RUNNING", "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql-primary-0" - }, - { - "id": "0d757833-7912-4777-81ce-f302c653cfda", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql-0" - }, - { - "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", + "machineId": "45d1ce78-900b-402d-9553-858e4ec55b87", "name": "mysql-1" }, { "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b", "status": "RUNNING", "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql-2" - }, - { - "id": "991cbab5-b773-4651-b5b9-b95c299cf50f", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql-3" - }, - { - "id": "0d757833-7912-4777-81ce-f302c653cfda", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql-0" - }, - { - "id": "1188dfa0-efac-4142-8a6d-615841dc04e7", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", - "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", - "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", - "name": "mysql-1" - }, - { - "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b", - "status": "RUNNING", - "healthy": "UNKNOWN", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", + "machineId": "11d2c82a-6092-4cac-a97a-bec81bbaffdf", "name": "mysql-2" }, { "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca", "status": "RUNNING", "healthy": "UNKNOWN", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", + "machineId": "4a58eab4-3bb6-49c6-aaeb-45a7a9310af0", "name": "mysql-3" }, { "id": "991cbab5-b773-4651-b5b9-b95c299cf50f", "status": "RUNNING", "healthy": "UNKNOWN", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", + "machineId": "9f6c637f-0ef5-464c-b278-55c3cf2a76f5", "name": "mysql-4" }, + { + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7", + "status": "RUNNING", + "healthy": "UNKNOWN", + "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", + "serviceId": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1", + "machineId": "7dd8b110-dbea-43a4-9643-316ed2a053bd", + "name": "mysql-5" + }, { "id": "1e3dc868-8738-41b3-a70f-ea332823429c", "status": "RUNNING", "healthy": "UNKNOWN", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4", + "machineId": "76d03576-787b-4ac9-85e7-3e6e5ea5b60c", "name": "producer-0" }, { "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e", "status": "RUNNING", "healthy": "UNKNOWN", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "aea06a05-830a-46d3-bdc1-9dcba97303de", + "machineId": "949c82eb-b6bf-47e0-a7e5-d3edbc7299be", "name": "api-0" }, { "id": "c9698959-eaa2-4b32-9333-fc2591702cf7", "status": "RUNNING", "healthy": "UNAVAILABLE", - "__typename": "Instance", "deploymentGroupId": "24b16df5-7553-45d9-ab7f-62d541764b67", "serviceId": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a", + "machineId": "65b286a1-66f6-4c42-bdd5-0fdb986bfbf3", "name": "consul-0" } ] diff --git a/packages/cp-gql-mock-server/src/data.json b/packages/cp-gql-mock-server/src/data.json index 42d5ca50..fc3d2ce9 100644 --- a/packages/cp-gql-mock-server/src/data.json +++ b/packages/cp-gql-mock-server/src/data.json @@ -1,11 +1,13 @@ { "datacenter": { - "id": "datacenter-uuid", - "region": "us-east-1" + "id": "e84d14cc-5b49-4b4e-83ce-ae82e3994c44", + "region": "us-east-1", + "name": "US East 1" }, "portal": { + "id": "296a92bf-65cd-4787-b5a7-444489a31e04", "user": { - "id": "id", + "id": "daf18f20-60c3-4a17-a61e-b5aa60f9e43e", "login": "juditgreskovits", "firstName": "Judit", "lastName": "Greskovits", diff --git a/packages/cp-gql-mock-server/src/index.js b/packages/cp-gql-mock-server/src/index.js index b90ea32a..58128f7e 100644 --- a/packages/cp-gql-mock-server/src/index.js +++ b/packages/cp-gql-mock-server/src/index.js @@ -20,7 +20,7 @@ const handlerError = err => { }; server.connection({ - port: 3000, + port: process.env.PORT, routes: { cors: true } diff --git a/packages/cp-gql-mock-server/src/resolvers.js b/packages/cp-gql-mock-server/src/resolvers.js index fa390d72..06bc7779 100644 --- a/packages/cp-gql-mock-server/src/resolvers.js +++ b/packages/cp-gql-mock-server/src/resolvers.js @@ -8,19 +8,27 @@ const flatten = require('lodash.flatten'); const random = require('lodash.random'); const uniq = require('lodash.uniq'); const yaml = require('js-yaml'); +const hasha = require('hasha'); const wpData = require('./wp-data.json'); const cpData = require('./cp-data.json'); const complexData = require('./complex-data.json'); -const { - datacenter, - portal -} = require('./data.json'); +const { datacenter, portal } = require('./data.json'); -const deploymentGroups = [wpData.deploymentGroup, cpData.deploymentGroup, complexData.deploymentGroup]; -const services = wpData.services.concat(cpData.services).concat(complexData.services); -const instances = wpData.instances.concat(cpData.instances).concat(complexData.instances); +const deploymentGroups = [ + wpData.deploymentGroup, + cpData.deploymentGroup, + complexData.deploymentGroup +]; + +const services = wpData.services + .concat(cpData.services) + .concat(complexData.services); + +const instances = wpData.instances + .concat(cpData.instances) + .concat(complexData.instances); const find = (query = {}) => item => Object.keys(query).every(key => item[key] === query[key]); @@ -44,12 +52,15 @@ const getUnfilteredServices = query => { instances: instancesResolver(service), branches: (service.branches || []).map(service => Object.assign({}, service, { - instances: () => { - return Promise.resolve( + id: hasha(JSON.stringify(service)), + instances: query => + Promise.resolve( flatten( - service.instances.map(id => instances.filter(find({ id }))) + service.instances.map(id => + instances.filter(find(Object.assign({}, query, { id }))) + ) ) - )} + ) }) ) }); @@ -115,12 +126,15 @@ const getPortal = () => ); const createDeploymentGroup = ({ name }) => { - const dg = { - id: uuid(), + const _dg = { slug: paramCase(name), name }; + const dg = Object.assign({}, _dg, { + id: hasha(JSON.stringify(_dg)) + }); + deploymentGroups.push(dg); return Promise.resolve(dg); @@ -166,20 +180,26 @@ const createServicesFromManifest = ({ deploymentGroupId, raw }) => { const manifest = yaml.safeLoad(raw); Object.keys(manifest).forEach(name => { - const service = { - id: uuid(), - deploymentGroup: deploymentGroupId, + const _service = { + deploymentGroupId, slug: paramCase(name), name }; - const instance = { - id: uuid(), + const service = Object.assign({}, _service, { + id: hasha(JSON.stringify(_service)) + }); + + const _instance = { name: camelCase(`${service.slug}_01`), - service: service.id, - deploymentGroup: deploymentGroupId + serviceId: service.id, + deploymentGroupId }; + const instance = Object.assign({}, _instance, { + id: hasha(JSON.stringify(_instance)) + }); + services.push(service); instances.push(instance); }); @@ -207,14 +227,19 @@ const scale = ({ serviceId, replicas }) => { const up = n => { buildArray(n).forEach((_, i) => { - instances.push({ - id: uuid(), + const instance = { name: `${services[serviceIndex].slug}_${currentScale + i}`, serviceId, deploymentGroupId: services[serviceIndex].deploymentGroupId, status: 'ACTIVE', healthy: 'UNKNOWN' - }); + }; + + instances.push( + Object.assign({}, instance, { + id: hasha(JSON.stringify(instance)) + }) + ); }); }; @@ -385,7 +410,7 @@ module.exports = { createDeploymentGroup, provisionManifest: options => createServicesFromManifest(options).then(() => ({ - id: uuid(), + id: hasha(JSON.stringify(options)), type: options.type, format: options.format })), diff --git a/packages/cp-gql-mock-server/src/wp-data.json b/packages/cp-gql-mock-server/src/wp-data.json index 046e099d..59efbbf3 100644 --- a/packages/cp-gql-mock-server/src/wp-data.json +++ b/packages/cp-gql-mock-server/src/wp-data.json @@ -1,19 +1,16 @@ { - "deploymentGroup": - { - "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "slug": "wordpress-blog-example", - "name": "Wordpress Blog Example" - }, + "deploymentGroup": { + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "slug": "wordpress-blog-example", + "name": "Wordpress Blog Example" + }, "services": [ { "id": "081a792c-47e0-4439-924b-2efa9788ae9e", "slug": "nginx", "name": "Nginx", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "connections": [ - "be227788-74f1-4e5b-a85f-b5c71cbae8d8" - ] + "connections": ["be227788-74f1-4e5b-a85f-b5c71cbae8d8"] }, { "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8", @@ -43,17 +40,20 @@ "slug": "percona", "name": "Percona", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", - "branches": [{ - "id": "dmklaskdls", - "slug": "percona", - "name": "Percona", - "instances": ["c3ec7633-a02b-4615-86a0-9e6faeaae94b"] - }, { - "id": "dmklaskdls", - "slug": "percona-primary", - "name": "percona-primary", - "instances": ["c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76"] - }] + "branches": [ + { + "id": "dmklaskdls", + "slug": "percona", + "name": "Percona", + "instances": ["c3ec7633-a02b-4615-86a0-9e6faeaae94b"] + }, + { + "id": "dmklaskdls", + "slug": "percona-primary", + "name": "percona-primary", + "instances": ["c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76"] + } + ] }, { "id": "97c68055-db88-45c9-ad49-f26da4264777", @@ -86,6 +86,7 @@ "name": "wordpress_01", "serviceId": "be227788-74f1-4e5b-a85f-b5c71cbae8d8", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "011f7479-2d45-442d-99bf-7f6216954cc8", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -94,6 +95,7 @@ "name": "nfs_01", "serviceId": "6a0eee76-c019-413b-9d5f-44712b55b993", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "991c0d29-5c99-4a45-a05f-78c213e77d4f", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -102,6 +104,7 @@ "name": "consul", "serviceId": "97c68055-db88-45c9-ad49-f26da4264777", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "ff5dd3a0-7c12-4ea9-8a41-58b759b2c76d", "status": "RUNNING", "healthy": "UNHEALTHY" }, @@ -110,6 +113,7 @@ "name": "memcache_01", "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "8d8a2238-d981-4849-b523-a37456fbe20b", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -118,6 +122,7 @@ "name": "memcache_02", "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "f95ad0b9-996f-4f49-8826-e08dd319d5a8", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -126,6 +131,7 @@ "name": "memcache_03", "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "d6871ac4-6433-40c3-89e8-8853ce7f8571", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -134,6 +140,7 @@ "name": "memcache_04", "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "d89612c8-0578-474a-b45d-98a1dcf6dd18", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -142,6 +149,7 @@ "name": "memcache_05", "serviceId": "6d31aff4-de1e-4042-a983-fbd23d5c530c", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "3a9fbaf8-722b-463a-86bd-8d3afe0dd759", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -150,6 +158,7 @@ "name": "nginx", "serviceId": "081a792c-47e0-4439-924b-2efa9788ae9e", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "76fe79b8-356b-408d-9089-93c87abdbe93", "status": "RUNNING", "healthy": "HEALTHY" }, @@ -158,6 +167,7 @@ "name": "percona-primary", "serviceId": "4ee4103e-1a52-4099-a48e-01588f597c70", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "bd57fbf6-f80a-4d59-a6cd-ab3e41813796", "status": "RUNNING", "healthy": "UNHEALTHY" }, @@ -166,6 +176,7 @@ "name": "percona-secondary", "serviceId": "4ee4103e-1a52-4099-a48e-01588f597c70", "deploymentGroupId": "e0ea0c02-55cc-45fe-8064-3e5176a59401", + "machineId": "54f56455-3b0c-4e79-882c-ff28b517d2b9", "status": "RUNNING", "healthy": "HEALTHY" } diff --git a/packages/cp-gql-mock-server/test/index.js b/packages/cp-gql-mock-server/test/index.js new file mode 100644 index 00000000..d9b0d7a0 --- /dev/null +++ b/packages/cp-gql-mock-server/test/index.js @@ -0,0 +1,840 @@ +const test = require('ava'); +const gql = require('graphql-tag'); +const { readFile } = require('mz/fs'); +const path = require('path'); +const execa = require('execa'); +const wait = require('delay'); + +const { + default: ApolloClient, + createNetworkInterface +} = require('apollo-client'); + +let port = 3000; + +const fetchTag = file => + readFile(path.join(__dirname, `tags/${file}.gql`), 'utf-8'); + +const getClient = () => + new Promise((resolve, reject) => { + const server = execa('node', ['.'], { + stdio: 'pipe', + cwd: path.join(__dirname, '..'), + env: { + PORT: (port += 1) + } + }); + + const client = new ApolloClient({ + networkInterface: createNetworkInterface({ + uri: `http://localhost:${port}/api/graphql` + }) + }); + + const close = () => { + client.resetStore(); + }; + + server.stdout.on('data', d => { + if (/server started at /.test(d)) { + resolve(client); + } + }); + + server.stdout.pipe(process.stdout); + server.stderr.pipe(process.stderr); + }); + +test('should return everything', async t => { + const client = await getClient(); + + const res = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('all')) + }); + + t.snapshot(JSON.stringify(res.data, null, 2)); +}); + +test('should return only Portal', async t => { + const client = await getClient(); + + const res = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('portal-only')) + }); + + t.snapshot(JSON.stringify(res.data, null, 2)); +}); + +test("should return DeploymentGroup's", async t => { + const client = await getClient(); + + const dgs = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups')) + }); + + const dgsDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct')) + }); + + t.snapshot(JSON.stringify(dgs.data, null, 2)); + t.snapshot(JSON.stringify(dgsDirect.data, null, 2)); +}); + +test("should return filtered DeploymentGroup's", async t => { + const client = await getClient(); + + const dgs = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'wordpress-blog-example' + } + }); + + const dgsDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'wordpress-blog-example' + } + }); + + t.snapshot(JSON.stringify(dgs.data, null, 2)); + t.snapshot(JSON.stringify(dgsDirect.data, null, 2)); +}); + +test('should return services', async t => { + const client = await getClient(); + + const services = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('services')) + }); + + const servicesDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('services-direct')) + }); + + t.snapshot(JSON.stringify(services.data, null, 2)); + t.snapshot(JSON.stringify(servicesDirect.data, null, 2)); +}); + +test('should return filtered services', async t => { + const client = await getClient(); + + const services = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('services-filtered')), + variables: { + dgSlug: 'wordpress-blog-example', + sSlug: 'nginx' + } + }); + + const servicesDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('services-direct-filtered')), + variables: { + sSlug: 'nginx' + } + }); + + t.snapshot(JSON.stringify(services.data, null, 2)); + t.snapshot(JSON.stringify(servicesDirect.data, null, 2)); +}); + +test('should return instances', async t => { + const client = await getClient(); + + const instances = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('instances')) + }); + + const instancesDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('instances-direct')) + }); + + t.snapshot(JSON.stringify(instances.data, null, 2)); + t.snapshot(JSON.stringify(instancesDirect.data, null, 2)); +}); + +test('should return filtered instances', async t => { + const client = await getClient(); + + const instances = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('instances-filtered')), + variables: { + dgSlug: 'cpexample', + sSlug: 'mysql', + iName: 'mysql-2', + biName: 'mysql-1' + } + }); + + const instancesDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('instances-direct-filtered')), + variables: { + dgSlug: 'cpexample', + sSlug: 'mysql', + iName: 'mysql-2', + biName: 'mysql-1' + } + }); + + t.snapshot(JSON.stringify(instances.data, null, 2)); + t.snapshot(JSON.stringify(instancesDirect.data, null, 2)); +}); + +test('should create DeploymentGroup', async t => { + const client = await getClient(); + + const created = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test' + } + }); + + const dgs = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups')) + }); + + const dgsDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct')) + }); + + const fDgs = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test' + } + }); + + const fDgsDirect = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test' + } + }); + + t.snapshot(JSON.stringify(created.data, null, 2)); + t.snapshot(JSON.stringify(dgs.data, null, 2)); + t.snapshot(JSON.stringify(dgsDirect.data, null, 2)); + t.snapshot(JSON.stringify(fDgs.data, null, 2)); + t.snapshot(JSON.stringify(fDgsDirect.data, null, 2)); +}); + +test('should delete DeploymentGroup', async t => { + const client = await getClient(); + + const created = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test1' + } + }); + + const dgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups')) + }); + + const dgsDirectBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct')) + }); + + const fDgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test1' + } + }); + + const fDgsDirectBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test1' + } + }); + + t.snapshot(JSON.stringify(created.data, null, 2)); + t.snapshot(JSON.stringify(dgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(dgsDirectBefore.data, null, 2)); + t.snapshot(JSON.stringify(fDgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(fDgsDirectBefore.data, null, 2)); + + const deleted = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('delete-deployment-group')), + variables: { + id: created.data.createDeploymentGroup.id + } + }); + + const dgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups')) + }); + + const dgsDirectAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct')) + }); + + const fDgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test1' + } + }); + + const fDgsDirectAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test1' + } + }); + + t.snapshot(JSON.stringify(dgsAfter.data, null, 2)); + t.snapshot(JSON.stringify(dgsDirectAfter.data, null, 2)); + t.snapshot(JSON.stringify(fDgsAfter.data, null, 2)); + t.snapshot(JSON.stringify(fDgsDirectAfter.data, null, 2)); +}); + +test('should provisionManifest', async t => { + const client = await getClient(); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test2' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgs = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test2' + } + }); + + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(provision.data, null, 2)); + t.snapshot(JSON.stringify(dgs.data, null, 2)); +}); + +test('should scale up', async t => { + const client = await getClient(); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test3' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test3' + } + }); + + const scale = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('scale')), + variables: { + serviceId: dgsBefore.data.portal.deploymentGroups[0].services[0].id, + replicas: 10 + } + }); + + await wait(3100); + + const dgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test3' + } + }); + + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(provision.data, null, 2)); + t.snapshot(JSON.stringify(dgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfter.data, null, 2)); +}); + +test('should scale down', async t => { + const client = await getClient(); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test4' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgs = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test4' + } + }); + + const scaleUp = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('scale')), + variables: { + serviceId: dgs.data.portal.deploymentGroups[0].services[0].id, + replicas: 10 + } + }); + + await wait(3100); + + const dgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test4' + } + }); + + const scaleDown = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('scale')), + variables: { + serviceId: dgs.data.portal.deploymentGroups[0].services[0].id, + replicas: 7 + } + }); + + await wait(3100); + + const dgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-filtered')), + variables: { + slug: 'test4' + } + }); + + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(provision.data, null, 2)); + t.snapshot(JSON.stringify(dgs.data, null, 2)); + t.snapshot(JSON.stringify(dgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfter.data, null, 2)); +}); + +test("should delete Service's", async t => { + const client = await getClient(); + + const dgsInitial = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test5' + } + }); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test5' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test5' + } + }); + + const deleted = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('delete-services')), + variables: { + ids: dgsBefore.data.deploymentGroups + .filter(({ id }) => id === dg.data.createDeploymentGroup.id)[0] + .services.map(({ id }) => id) + } + }); + + await wait(5100); + + const dgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test5' + } + }); + + t.snapshot(JSON.stringify(dgsInitial.data, null, 2)); + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(dgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(deleted.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfter.data, null, 2)); +}); + +test("should restart Service's", async t => { + const client = await getClient(); + + const dgsInitial = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test6' + } + }); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test6' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test6' + } + }); + + const restarted = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('restart-services')), + variables: { + ids: dgsBefore.data.deploymentGroups + .filter(({ id }) => id === dg.data.createDeploymentGroup.id)[0] + .services.map(({ id }) => id) + } + }); + + const dgsWhile = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test6' + } + }); + + await wait(5100); + + const dgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test6' + } + }); + + t.snapshot(JSON.stringify(dgsInitial.data, null, 2)); + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(dgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(restarted.data, null, 2)); + t.snapshot(JSON.stringify(dgsWhile.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfter.data, null, 2)); +}); + +test("should stop Service's", async t => { + const client = await getClient(); + + const dgsInitial = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test7' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgsBefore = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + const stopped = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('stop-services')), + variables: { + ids: dgsBefore.data.deploymentGroups + .filter(({ id }) => id === dg.data.createDeploymentGroup.id)[0] + .services.map(({ id }) => id) + } + }); + + const dgsWhile = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + await wait(5100); + + const dgsAfter = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + t.snapshot(JSON.stringify(dgsInitial.data, null, 2)); + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(dgsBefore.data, null, 2)); + t.snapshot(JSON.stringify(stopped.data, null, 2)); + t.snapshot(JSON.stringify(dgsWhile.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfter.data, null, 2)); +}); + +test("should start Service's", async t => { + const client = await getClient(); + + const dgsInitial = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + const dg = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('create-deployment-group')), + variables: { + name: 'test7' + } + }); + + const provision = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('provision-manifest')), + variables: { + deploymentGroupId: dg.data.createDeploymentGroup.id, + type: 'COMPOSE', + format: 'YAML', + environment: {}, + files: [], + raw: ` + redis: + image: redis:latest + ` + } + }); + + const dgsBeforeStop = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + const stopped = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('stop-services')), + variables: { + ids: dgsBeforeStop.data.deploymentGroups + .filter(({ id }) => id === dg.data.createDeploymentGroup.id)[0] + .services.map(({ id }) => id) + } + }); + + const dgsWhileStop = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + await wait(5100); + + const dgsAfterStop = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + const started = await client.mutate({ + fetchPolicy: 'network-only', + mutation: gql(await fetchTag('start-services')), + variables: { + ids: dgsBeforeStop.data.deploymentGroups + .filter(({ id }) => id === dg.data.createDeploymentGroup.id)[0] + .services.map(({ id }) => id) + } + }); + + const dgsWhileStart = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + await wait(5100); + + const dgsAfterStart = await client.query({ + fetchPolicy: 'network-only', + query: gql(await fetchTag('deployment-groups-direct-filtered')), + variables: { + slug: 'test7' + } + }); + + t.snapshot(JSON.stringify(dgsInitial.data, null, 2)); + t.snapshot(JSON.stringify(dg.data, null, 2)); + t.snapshot(JSON.stringify(dgsBeforeStop.data, null, 2)); + t.snapshot(JSON.stringify(stopped.data, null, 2)); + t.snapshot(JSON.stringify(dgsWhileStop.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfterStop.data, null, 2)); + t.snapshot(JSON.stringify(started.data, null, 2)); + t.snapshot(JSON.stringify(dgsWhileStart.data, null, 2)); + t.snapshot(JSON.stringify(dgsAfterStart.data, null, 2)); +}); diff --git a/packages/cp-gql-mock-server/test/snapshots/index.js.md b/packages/cp-gql-mock-server/test/snapshots/index.js.md new file mode 100644 index 00000000..7e7fb4be --- /dev/null +++ b/packages/cp-gql-mock-server/test/snapshots/index.js.md @@ -0,0 +1,16996 @@ +# Snapshot report for `test/index.js` + +The actual snapshot is saved in `index.js.snap`. + +Generated by [AVA](https://ava.li). + +## should delete Service's + +> Snapshot 1 + + `{␊ + "deploymentGroups": []␊ + }` + +> Snapshot 2 + + `{␊ + "createDeploymentGroup": {␊ + "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ + "name": "test5",␊ + "slug": "test5",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ + "name": "test5",␊ + "slug": "test5",␊ + "services": [␊ + {␊ + "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "b2d0f26ba4e10b2b45e43a6ef25ae6989f2d64f59091942d7460b822c30f210306b758698f4d14e327d6b93c112d6ce2445bd831f7f92ddb503a93a83433d903",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 4 + + `{␊ + "deleteServices": [␊ + {␊ + "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +> Snapshot 5 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "35deb8bfefda461de237a7849ab878ee4cc7b05c5d45a19523dd0db0d036d344240d6e5c27fd5d38887c6f0a2a65bf0445fcbdd9e6df211eb91dc050992e74b7",␊ + "name": "test5",␊ + "slug": "test5",␊ + "services": [␊ + {␊ + "id": "f8dffb8b983c74baff85d6dc585aa994c4f835f28fb8bbc922b1e15248e751a8953beb17243eae04e1f583b9b72f95b91b3f1ce05d1c031cbde87682ed24c7b5",␊ + "name": "redis",␊ + "status": "DELETED",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "b2d0f26ba4e10b2b45e43a6ef25ae6989f2d64f59091942d7460b822c30f210306b758698f4d14e327d6b93c112d6ce2445bd831f7f92ddb503a93a83433d903",␊ + "name": "redis_01",␊ + "status": "DELETED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + } + +## should restart Service's + +> Snapshot 1 + + `{␊ + "deploymentGroups": []␊ + }` + +> Snapshot 2 + + `{␊ + "createDeploymentGroup": {␊ + "id": "cbea5bc65f7636a7b6d7628d1999c1eb387fe71f1b9dcdafefffcfa15895279fb2b3c916b6521326043897891ac351e54a87ad7895f351d86f6a893cab682ff7",␊ + "name": "test6",␊ + "slug": "test6",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "cbea5bc65f7636a7b6d7628d1999c1eb387fe71f1b9dcdafefffcfa15895279fb2b3c916b6521326043897891ac351e54a87ad7895f351d86f6a893cab682ff7",␊ + "name": "test6",␊ + "slug": "test6",␊ + "services": [␊ + {␊ + "id": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "960b82992924cd5ef8605cfeda0eb226232d1b70c466ea0b970a09eddc4ccb47be6af2b79ffdb3047f2dbebfbed8962aaf362aae64704a75bf306d5a91875c06",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 4 + + `{␊ + "restartServices": [␊ + {␊ + "id": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +> Snapshot 5 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "cbea5bc65f7636a7b6d7628d1999c1eb387fe71f1b9dcdafefffcfa15895279fb2b3c916b6521326043897891ac351e54a87ad7895f351d86f6a893cab682ff7",␊ + "name": "test6",␊ + "slug": "test6",␊ + "services": [␊ + {␊ + "id": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ + "name": "redis",␊ + "status": "RESTARTING",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "960b82992924cd5ef8605cfeda0eb226232d1b70c466ea0b970a09eddc4ccb47be6af2b79ffdb3047f2dbebfbed8962aaf362aae64704a75bf306d5a91875c06",␊ + "name": "redis_01",␊ + "status": "STOPPING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 6 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "cbea5bc65f7636a7b6d7628d1999c1eb387fe71f1b9dcdafefffcfa15895279fb2b3c916b6521326043897891ac351e54a87ad7895f351d86f6a893cab682ff7",␊ + "name": "test6",␊ + "slug": "test6",␊ + "services": [␊ + {␊ + "id": "e75721979b2119b961dab67e5a1077ec0b8027b3bc30e07a0122b65361ddad4d2f9e66e7ee2715b5aa9ee29e708066ef021a9a0efa392c4ed15cd18a3b34451a",␊ + "name": "redis",␊ + "status": "ACTIVE",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "960b82992924cd5ef8605cfeda0eb226232d1b70c466ea0b970a09eddc4ccb47be6af2b79ffdb3047f2dbebfbed8962aaf362aae64704a75bf306d5a91875c06",␊ + "name": "redis_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + } + +## should stop Service's + +> Snapshot 1 + + `{␊ + "deploymentGroups": []␊ + }` + +> Snapshot 2 + + `{␊ + "createDeploymentGroup": {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 4 + + `{␊ + "stopServices": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +> Snapshot 5 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": "STOPPING",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": "STOPPING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 6 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": "STOPPED",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": "STOPPED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + } + +## should start Service's + +> Snapshot 1 + + `{␊ + "deploymentGroups": []␊ + }` + +> Snapshot 2 + + `{␊ + "createDeploymentGroup": {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 4 + + `{␊ + "stopServices": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +> Snapshot 5 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": "STOPPING",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": "STOPPING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 6 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": "STOPPED",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": "STOPPED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 7 + + `{␊ + "startServices": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +> Snapshot 8 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": "PROVISIONING",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": "PROVISIONING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 9 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "c49c9cad2642dcef3c54915872f76ca5b13e311ce3e49178df3e41f25eaa927e58986603924116b086182dbb440c811086a7569e84dd06055e4b84dc586554a2",␊ + "name": "test7",␊ + "slug": "test7",␊ + "services": [␊ + {␊ + "id": "d274dd1460c2e2d73dcad4660f1810ffdb4e72dc6ec0f1ceed52107a6eaf2469c80f86b75c4d43e631d052c65fa5695e23e27ff6142d7a56a52d7d6fd678bd96",␊ + "name": "redis",␊ + "status": "ACTIVE",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9c876a58606d9918e7623bfac8dc61ac24493e4f36ec89b962ba77b3dfbc580f4c0521cef5d5e8cd339d39db7abe2c4b495ca41e45cb95d33d017eea99736e6b",␊ + "name": "redis_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + } + +## should create DeploymentGroup + +> Snapshot 1 + + `{␊ + "createDeploymentGroup": {␊ + "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ + "name": "test",␊ + "slug": "test",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "slug": "wordpress-blog-example",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "slug": "cpexample",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "slug": "complex-microservices",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ + "slug": "test",␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "status": null,␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "status": null,␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "status": null,␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "status": null,␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "status": null,␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "status": null,␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "status": "ACTIVE",␊ + "slug": "frontend",␊ + "instances": [␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "status": "FAILED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "status": "ACTIVE",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "status": "ACTIVE",␊ + "slug": "producer",␊ + "instances": [␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "status": "ACTIVE",␊ + "slug": "api",␊ + "instances": [␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "status": "ACTIVE",␊ + "slug": "accountservice",␊ + "instances": [␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "status": "ACTIVE",␊ + "slug": "addressservice",␊ + "instances": [␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "status": "ACTIVE",␊ + "slug": "bloomreachservice",␊ + "instances": [␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "status": "ACTIVE",␊ + "slug": "cartservice",␊ + "instances": [␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "status": "ACTIVE",␊ + "slug": "cctokenizationclientservice",␊ + "instances": [␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "checkoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "status": "ACTIVE",␊ + "slug": "colorswatchservice",␊ + "instances": [␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "status": "ACTIVE",␊ + "slug": "emailmarketingservice",␊ + "instances": [␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "status": "ACTIVE",␊ + "slug": "favoriteservice",␊ + "instances": [␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "status": "ACTIVE",␊ + "slug": "findinstoreservice",␊ + "instances": [␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "status": "ACTIVE",␊ + "slug": "fitpredictorservice",␊ + "instances": [␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "status": "ACTIVE",␊ + "slug": "hidefromcatalogservice",␊ + "instances": [␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "internationalcheckoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "status": "ACTIVE",␊ + "slug": "internationalposervice",␊ + "instances": [␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "status": "ACTIVE",␊ + "slug": "internationalshippingservice",␊ + "instances": [␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "status": "ACTIVE",␊ + "slug": "inventoryservice",␊ + "instances": [␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "status": "ACTIVE",␊ + "slug": "localizationservice",␊ + "instances": [␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "status": "ACTIVE",␊ + "slug": "moreaccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "status": "ACTIVE",␊ + "slug": "navigationservice",␊ + "instances": [␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "status": "ACTIVE",␊ + "slug": "ordercreationjob",␊ + "instances": [␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "status": "ACTIVE",␊ + "slug": "paymentmethodservice",␊ + "instances": [␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "status": "ACTIVE",␊ + "slug": "priceservice",␊ + "instances": [␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "status": "ACTIVE",␊ + "slug": "privatesaleservice",␊ + "instances": [␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "status": "ACTIVE",␊ + "slug": "productarrayservice",␊ + "instances": [␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "status": "ACTIVE",␊ + "slug": "productdetailservice",␊ + "instances": [␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "status": "ACTIVE",␊ + "slug": "productservice",␊ + "instances": [␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "status": "ACTIVE",␊ + "slug": "profileservice",␊ + "instances": [␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "status": "ACTIVE",␊ + "slug": "promoservice",␊ + "instances": [␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "status": "ACTIVE",␊ + "slug": "promotionservice",␊ + "instances": [␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "status": "ACTIVE",␊ + "slug": "questionanswerservice",␊ + "instances": [␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "status": "ACTIVE",␊ + "slug": "redbaloonservice",␊ + "instances": [␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "status": "ACTIVE",␊ + "slug": "reviewsservice",␊ + "instances": [␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "status": "ACTIVE",␊ + "slug": "searchfacetsservice",␊ + "instances": [␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "status": "ACTIVE",␊ + "slug": "searchindexservice",␊ + "instances": [␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "status": "ACTIVE",␊ + "slug": "shoprunnerservice",␊ + "instances": [␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "status": "ACTIVE",␊ + "slug": "taxservice",␊ + "instances": [␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "status": "ACTIVE",␊ + "slug": "toggleservice",␊ + "instances": [␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "status": "ACTIVE",␊ + "slug": "useraccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "status": "ACTIVE",␊ + "slug": "userauthenticationservice",␊ + "instances": [␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistoverlayservice",␊ + "instances": [␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistservice",␊ + "instances": [␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "status": "ACTIVE",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "status": "ACTIVE",␊ + "slug": "mongodb",␊ + "instances": [␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ + "name": "test",␊ + "slug": "test",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 4 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ + "name": "test",␊ + "slug": "test",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 5 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "4b521e6902b981f55c89b914e637ecee239ba28ae4fa24f672dd9d40af65e5e0991cffee6e0b317cc8da978e90aec2400c57158d7ebd3b34f5e6c644d7815011",␊ + "name": "test",␊ + "slug": "test",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +## should delete DeploymentGroup + +> Snapshot 1 + + `{␊ + "createDeploymentGroup": {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "slug": "wordpress-blog-example",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "slug": "cpexample",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "slug": "complex-microservices",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "slug": "test1",␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "status": null,␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "status": null,␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "status": null,␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "status": null,␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "status": null,␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "status": null,␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "status": "ACTIVE",␊ + "slug": "frontend",␊ + "instances": [␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "status": "FAILED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "status": "ACTIVE",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "status": "ACTIVE",␊ + "slug": "producer",␊ + "instances": [␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "status": "ACTIVE",␊ + "slug": "api",␊ + "instances": [␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "status": "ACTIVE",␊ + "slug": "accountservice",␊ + "instances": [␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "status": "ACTIVE",␊ + "slug": "addressservice",␊ + "instances": [␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "status": "ACTIVE",␊ + "slug": "bloomreachservice",␊ + "instances": [␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "status": "ACTIVE",␊ + "slug": "cartservice",␊ + "instances": [␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "status": "ACTIVE",␊ + "slug": "cctokenizationclientservice",␊ + "instances": [␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "checkoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "status": "ACTIVE",␊ + "slug": "colorswatchservice",␊ + "instances": [␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "status": "ACTIVE",␊ + "slug": "emailmarketingservice",␊ + "instances": [␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "status": "ACTIVE",␊ + "slug": "favoriteservice",␊ + "instances": [␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "status": "ACTIVE",␊ + "slug": "findinstoreservice",␊ + "instances": [␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "status": "ACTIVE",␊ + "slug": "fitpredictorservice",␊ + "instances": [␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "status": "ACTIVE",␊ + "slug": "hidefromcatalogservice",␊ + "instances": [␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "internationalcheckoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "status": "ACTIVE",␊ + "slug": "internationalposervice",␊ + "instances": [␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "status": "ACTIVE",␊ + "slug": "internationalshippingservice",␊ + "instances": [␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "status": "ACTIVE",␊ + "slug": "inventoryservice",␊ + "instances": [␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "status": "ACTIVE",␊ + "slug": "localizationservice",␊ + "instances": [␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "status": "ACTIVE",␊ + "slug": "moreaccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "status": "ACTIVE",␊ + "slug": "navigationservice",␊ + "instances": [␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "status": "ACTIVE",␊ + "slug": "ordercreationjob",␊ + "instances": [␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "status": "ACTIVE",␊ + "slug": "paymentmethodservice",␊ + "instances": [␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "status": "ACTIVE",␊ + "slug": "priceservice",␊ + "instances": [␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "status": "ACTIVE",␊ + "slug": "privatesaleservice",␊ + "instances": [␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "status": "ACTIVE",␊ + "slug": "productarrayservice",␊ + "instances": [␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "status": "ACTIVE",␊ + "slug": "productdetailservice",␊ + "instances": [␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "status": "ACTIVE",␊ + "slug": "productservice",␊ + "instances": [␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "status": "ACTIVE",␊ + "slug": "profileservice",␊ + "instances": [␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "status": "ACTIVE",␊ + "slug": "promoservice",␊ + "instances": [␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "status": "ACTIVE",␊ + "slug": "promotionservice",␊ + "instances": [␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "status": "ACTIVE",␊ + "slug": "questionanswerservice",␊ + "instances": [␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "status": "ACTIVE",␊ + "slug": "redbaloonservice",␊ + "instances": [␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "status": "ACTIVE",␊ + "slug": "reviewsservice",␊ + "instances": [␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "status": "ACTIVE",␊ + "slug": "searchfacetsservice",␊ + "instances": [␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "status": "ACTIVE",␊ + "slug": "searchindexservice",␊ + "instances": [␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "status": "ACTIVE",␊ + "slug": "shoprunnerservice",␊ + "instances": [␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "status": "ACTIVE",␊ + "slug": "taxservice",␊ + "instances": [␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "status": "ACTIVE",␊ + "slug": "toggleservice",␊ + "instances": [␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "status": "ACTIVE",␊ + "slug": "useraccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "status": "ACTIVE",␊ + "slug": "userauthenticationservice",␊ + "instances": [␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistoverlayservice",␊ + "instances": [␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistservice",␊ + "instances": [␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "status": "ACTIVE",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "status": "ACTIVE",␊ + "slug": "mongodb",␊ + "instances": [␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 4 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 5 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 6 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "slug": "wordpress-blog-example",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "slug": "cpexample",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "slug": "complex-microservices",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "slug": "test1",␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 7 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "status": null,␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "status": null,␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "status": null,␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "status": null,␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "status": null,␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "status": null,␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "status": "ACTIVE",␊ + "slug": "frontend",␊ + "instances": [␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "status": "FAILED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "status": "ACTIVE",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "status": "ACTIVE",␊ + "slug": "producer",␊ + "instances": [␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "status": "ACTIVE",␊ + "slug": "api",␊ + "instances": [␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "status": "ACTIVE",␊ + "slug": "accountservice",␊ + "instances": [␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "status": "ACTIVE",␊ + "slug": "addressservice",␊ + "instances": [␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "status": "ACTIVE",␊ + "slug": "bloomreachservice",␊ + "instances": [␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "status": "ACTIVE",␊ + "slug": "cartservice",␊ + "instances": [␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "status": "ACTIVE",␊ + "slug": "cctokenizationclientservice",␊ + "instances": [␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "checkoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "status": "ACTIVE",␊ + "slug": "colorswatchservice",␊ + "instances": [␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "status": "ACTIVE",␊ + "slug": "emailmarketingservice",␊ + "instances": [␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "status": "ACTIVE",␊ + "slug": "favoriteservice",␊ + "instances": [␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "status": "ACTIVE",␊ + "slug": "findinstoreservice",␊ + "instances": [␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "status": "ACTIVE",␊ + "slug": "fitpredictorservice",␊ + "instances": [␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "status": "ACTIVE",␊ + "slug": "hidefromcatalogservice",␊ + "instances": [␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "internationalcheckoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "status": "ACTIVE",␊ + "slug": "internationalposervice",␊ + "instances": [␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "status": "ACTIVE",␊ + "slug": "internationalshippingservice",␊ + "instances": [␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "status": "ACTIVE",␊ + "slug": "inventoryservice",␊ + "instances": [␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "status": "ACTIVE",␊ + "slug": "localizationservice",␊ + "instances": [␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "status": "ACTIVE",␊ + "slug": "moreaccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "status": "ACTIVE",␊ + "slug": "navigationservice",␊ + "instances": [␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "status": "ACTIVE",␊ + "slug": "ordercreationjob",␊ + "instances": [␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "status": "ACTIVE",␊ + "slug": "paymentmethodservice",␊ + "instances": [␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "status": "ACTIVE",␊ + "slug": "priceservice",␊ + "instances": [␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "status": "ACTIVE",␊ + "slug": "privatesaleservice",␊ + "instances": [␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "status": "ACTIVE",␊ + "slug": "productarrayservice",␊ + "instances": [␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "status": "ACTIVE",␊ + "slug": "productdetailservice",␊ + "instances": [␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "status": "ACTIVE",␊ + "slug": "productservice",␊ + "instances": [␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "status": "ACTIVE",␊ + "slug": "profileservice",␊ + "instances": [␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "status": "ACTIVE",␊ + "slug": "promoservice",␊ + "instances": [␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "status": "ACTIVE",␊ + "slug": "promotionservice",␊ + "instances": [␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "status": "ACTIVE",␊ + "slug": "questionanswerservice",␊ + "instances": [␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "status": "ACTIVE",␊ + "slug": "redbaloonservice",␊ + "instances": [␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "status": "ACTIVE",␊ + "slug": "reviewsservice",␊ + "instances": [␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "status": "ACTIVE",␊ + "slug": "searchfacetsservice",␊ + "instances": [␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "status": "ACTIVE",␊ + "slug": "searchindexservice",␊ + "instances": [␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "status": "ACTIVE",␊ + "slug": "shoprunnerservice",␊ + "instances": [␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "status": "ACTIVE",␊ + "slug": "taxservice",␊ + "instances": [␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "status": "ACTIVE",␊ + "slug": "toggleservice",␊ + "instances": [␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "status": "ACTIVE",␊ + "slug": "useraccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "status": "ACTIVE",␊ + "slug": "userauthenticationservice",␊ + "instances": [␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistoverlayservice",␊ + "instances": [␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistservice",␊ + "instances": [␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "status": "ACTIVE",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "status": "ACTIVE",␊ + "slug": "mongodb",␊ + "instances": [␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +> Snapshot 8 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 9 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "f06d408f22c3e297fd333d8babe18dff10ccb05cefc1d8d97448c8ca1f92ff339719a377f22c427124cd33d1a5586c0dbe77b68e55191734c837c4807aedeeff",␊ + "name": "test1",␊ + "slug": "test1",␊ + "services": [],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +## should provisionManifest + +> Snapshot 1 + + `{␊ + "createDeploymentGroup": {␊ + "id": "c36561211b553e0a19374bdef2a9789a2cb2bb9cbd03db638a1ac8e7ae2f180341ad53b1abd027d39a1f29e2f7b499f4a051f76df29bd30c18dee756d65b8c2e",␊ + "name": "test2",␊ + "slug": "test2",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "provisionManifest": {␊ + "id": "994e659bc73629743811e053fb0d18af8ebc0f715edacf82be12802680b694d0b70627c94330d107337b2377d783e0b2fa7b713b68bb0577b31a6ee1076bd522",␊ + "__typename": "Version"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "c36561211b553e0a19374bdef2a9789a2cb2bb9cbd03db638a1ac8e7ae2f180341ad53b1abd027d39a1f29e2f7b499f4a051f76df29bd30c18dee756d65b8c2e",␊ + "name": "test2",␊ + "slug": "test2",␊ + "services": [␊ + {␊ + "id": "6a79e8243b9d79cde590624facda46342865423bdd8a18fa4f3ce0ddc685451dba351d7a733c3fce5e38593af11c013f6a6379134c58be30b451ff7e963a01fd",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "9dd994654b2d3af7bc8350544a55571e81192e0881c39d02fdd79100725a008d9e06f2b4e5e84d7f6166a37b14998ad1c80e0b159c1365ebbda11ceff7501521",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +## should return DeploymentGroup's + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "slug": "wordpress-blog-example",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "slug": "cpexample",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "slug": "complex-microservices",␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "status": null,␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "status": null,␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "status": null,␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "status": null,␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "status": null,␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "status": null,␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "status": "ACTIVE",␊ + "slug": "frontend",␊ + "instances": [␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "status": "FAILED",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "status": "ACTIVE",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "status": "ACTIVE",␊ + "slug": "producer",␊ + "instances": [␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "status": "ACTIVE",␊ + "slug": "api",␊ + "instances": [␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "status": "ACTIVE",␊ + "slug": "accountservice",␊ + "instances": [␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "status": "ACTIVE",␊ + "slug": "addressservice",␊ + "instances": [␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "status": "ACTIVE",␊ + "slug": "bloomreachservice",␊ + "instances": [␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "status": "ACTIVE",␊ + "slug": "cartservice",␊ + "instances": [␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "status": "ACTIVE",␊ + "slug": "cctokenizationclientservice",␊ + "instances": [␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "checkoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "status": "ACTIVE",␊ + "slug": "colorswatchservice",␊ + "instances": [␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "status": "ACTIVE",␊ + "slug": "emailmarketingservice",␊ + "instances": [␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "status": "ACTIVE",␊ + "slug": "favoriteservice",␊ + "instances": [␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "status": "ACTIVE",␊ + "slug": "findinstoreservice",␊ + "instances": [␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "status": "ACTIVE",␊ + "slug": "fitpredictorservice",␊ + "instances": [␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "status": "ACTIVE",␊ + "slug": "hidefromcatalogservice",␊ + "instances": [␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "status": "ACTIVE",␊ + "slug": "internationalcheckoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "status": "ACTIVE",␊ + "slug": "internationalposervice",␊ + "instances": [␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "status": "ACTIVE",␊ + "slug": "internationalshippingservice",␊ + "instances": [␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "status": "ACTIVE",␊ + "slug": "inventoryservice",␊ + "instances": [␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "status": "ACTIVE",␊ + "slug": "localizationservice",␊ + "instances": [␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "status": "ACTIVE",␊ + "slug": "moreaccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "status": "ACTIVE",␊ + "slug": "navigationservice",␊ + "instances": [␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "status": "ACTIVE",␊ + "slug": "ordercreationjob",␊ + "instances": [␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "status": "ACTIVE",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "status": "ACTIVE",␊ + "slug": "paymentmethodservice",␊ + "instances": [␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "status": "ACTIVE",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "status": "ACTIVE",␊ + "slug": "priceservice",␊ + "instances": [␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "status": "ACTIVE",␊ + "slug": "privatesaleservice",␊ + "instances": [␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "status": "ACTIVE",␊ + "slug": "productarrayservice",␊ + "instances": [␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "status": "ACTIVE",␊ + "slug": "productdetailservice",␊ + "instances": [␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "status": "ACTIVE",␊ + "slug": "productservice",␊ + "instances": [␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "status": "ACTIVE",␊ + "slug": "profileservice",␊ + "instances": [␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "status": "ACTIVE",␊ + "slug": "promoservice",␊ + "instances": [␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "status": "ACTIVE",␊ + "slug": "promotionservice",␊ + "instances": [␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "status": "ACTIVE",␊ + "slug": "questionanswerservice",␊ + "instances": [␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "status": "ACTIVE",␊ + "slug": "redbaloonservice",␊ + "instances": [␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "status": "ACTIVE",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "status": "ACTIVE",␊ + "slug": "reviewsservice",␊ + "instances": [␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "status": "ACTIVE",␊ + "slug": "searchfacetsservice",␊ + "instances": [␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "status": "ACTIVE",␊ + "slug": "searchindexservice",␊ + "instances": [␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "status": "ACTIVE",␊ + "slug": "shoprunnerservice",␊ + "instances": [␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "status": "ACTIVE",␊ + "slug": "taxservice",␊ + "instances": [␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "status": "ACTIVE",␊ + "slug": "toggleservice",␊ + "instances": [␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "status": "ACTIVE",␊ + "slug": "useraccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "status": "ACTIVE",␊ + "slug": "userauthenticationservice",␊ + "instances": [␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistoverlayservice",␊ + "instances": [␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "status": "ACTIVE",␊ + "slug": "waitlistservice",␊ + "instances": [␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "status": "ACTIVE",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "status": "ACTIVE",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "status": "ACTIVE",␊ + "slug": "mongodb",␊ + "instances": [␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +## should return everything + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "user": {␊ + "id": "daf18f20-60c3-4a17-a61e-b5aa60f9e43e",␊ + "firstName": "Judit",␊ + "lastName": "Greskovits",␊ + "email": "name@email.com",␊ + "login": "juditgreskovits",␊ + "__typename": "User"␊ + },␊ + "datacenter": {␊ + "id": "e84d14cc-5b49-4b4e-83ce-ae82e3994c44",␊ + "name": "US East 1",␊ + "region": "us-east-1",␊ + "__typename": "Datacenter"␊ + },␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "hash": null,␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "machineId": "76fe79b8-356b-408d-9089-93c87abdbe93",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "be227788-74f1-4e5b-a85f-b5c71cbae8d8"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": null,␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "hash": null,␊ + "name": "Wordpress",␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "machineId": "011f7479-2d45-442d-99bf-7f6216954cc8",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "4ee4103e-1a52-4099-a48e-01588f597c70"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": null,␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "hash": null,␊ + "name": "NFS",␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "machineId": "991c0d29-5c99-4a45-a05f-78c213e77d4f",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": null,␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "hash": null,␊ + "name": "Memcached",␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "machineId": "8d8a2238-d981-4849-b523-a37456fbe20b",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "machineId": "f95ad0b9-996f-4f49-8826-e08dd319d5a8",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "machineId": "d6871ac4-6433-40c3-89e8-8853ce7f8571",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "machineId": "d89612c8-0578-474a-b45d-98a1dcf6dd18",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "machineId": "3a9fbaf8-722b-463a-86bd-8d3afe0dd759",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": null,␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "hash": null,␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "machineId": "bd57fbf6-f80a-4d59-a6cd-ab3e41813796",␊ + "status": "RUNNING",␊ + "healthy": "UNHEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "machineId": "54f56455-3b0c-4e79-882c-ff28b517d2b9",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [␊ + {␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "machineId": "bd57fbf6-f80a-4d59-a6cd-ab3e41813796",␊ + "status": "RUNNING",␊ + "healthy": "UNHEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "machineId": "54f56455-3b0c-4e79-882c-ff28b517d2b9",␊ + "status": "RUNNING",␊ + "healthy": "HEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "config": null,␊ + "status": null,␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "hash": null,␊ + "name": "Consul",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "machineId": "ff5dd3a0-7c12-4ea9-8a41-58b759b2c76d",␊ + "status": "RUNNING",␊ + "healthy": "UNHEALTHY",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": null,␊ + "__typename": "Service"␊ + }␊ + ],␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "hash": null,␊ + "name": "frontend",␊ + "slug": "frontend",␊ + "instances": [␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "machineId": "c5da7ba6-c544-4f78-9dcc-4ae418a08ed2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "machineId": "4be909bb-1ee1-4503-a5d0-62e3d460bb93",␊ + "status": "FAILED",␊ + "healthy": "UNAVAILABLE",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "aea06a05-830a-46d3-bdc1-9dcba97303de"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "hash": null,␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "machineId": "45d1ce78-900b-402d-9553-858e4ec55b87",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "machineId": "11d2c82a-6092-4cac-a97a-bec81bbaffdf",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "machineId": "4a58eab4-3bb6-49c6-aaeb-45a7a9310af0",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "machineId": "9f6c637f-0ef5-464c-b278-55c3cf2a76f5",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "machineId": "7dd8b110-dbea-43a4-9643-316ed2a053bd",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [],␊ + "branches": [␊ + {␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "machineId": "7dd8b110-dbea-43a4-9643-316ed2a053bd",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "machineId": "45d1ce78-900b-402d-9553-858e4ec55b87",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "machineId": "4a58eab4-3bb6-49c6-aaeb-45a7a9310af0",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "machineId": "11d2c82a-6092-4cac-a97a-bec81bbaffdf",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "machineId": "9f6c637f-0ef5-464c-b278-55c3cf2a76f5",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "hash": null,␊ + "name": "producer",␊ + "slug": "producer",␊ + "instances": [␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "machineId": "76d03576-787b-4ac9-85e7-3e6e5ea5b60c",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "hash": null,␊ + "name": "api",␊ + "slug": "api",␊ + "instances": [␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "machineId": "949c82eb-b6bf-47e0-a7e5-d3edbc7299be",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "hash": null,␊ + "name": "consul",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "machineId": "65b286a1-66f6-4c42-bdd5-0fdb986bfbf3",␊ + "status": "RUNNING",␊ + "healthy": "UNAVAILABLE",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + }␊ + ],␊ + "version": null,␊ + "history": null,␊ + "imported": true,␊ + "status": "ACTIVE",␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "hash": null,␊ + "name": "AccountService",␊ + "slug": "accountservice",␊ + "instances": [␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "machineId": "7a94462f-5174-42b2-9029-f7e74001fe1a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "machineId": "5ad2f3a8-8720-429b-90f1-c5f118a51f4e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "machineId": "7ce5d386-42b3-44be-a05d-04a17899e486",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "hash": null,␊ + "name": "AddressService",␊ + "slug": "addressservice",␊ + "instances": [␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "machineId": "b0913e4f-0fc6-4658-839e-400dc3e53cf0",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "machineId": "086d8974-b305-4c27-9ad8-f69aa02e1381",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "machineId": "eab404b3-2f19-455c-bc82-98b004110162",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "machineId": "f9f95eec-793c-4c08-9ec2-0c7082d51e27",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "machineId": "2769fdde-3a1c-4f8b-886f-f32b2d40f959",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "hash": null,␊ + "name": "BloomreachService",␊ + "slug": "bloomreachservice",␊ + "instances": [␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "machineId": "f98aa65b-3e60-4b86-a9e6-375bf61171e6",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "machineId": "0f079926-e47d-482c-aad5-88f4949f57e3",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "machineId": "c7b52e3d-ee71-4cf2-97ce-0da074015d20",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "machineId": "8336efdb-07d1-4341-98e9-9de9f5bd729b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "hash": null,␊ + "name": "CartService",␊ + "slug": "cartservice",␊ + "instances": [␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "machineId": "e09438d9-966f-4088-a56d-4a9deb9cf30a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "machineId": "e9b2346c-5c57-40ac-9b7a-b0789dabf3ec",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "machineId": "7fc260fa-3e62-43c8-beb2-4eb56e63b163",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "machineId": "df6355d5-2f1a-4d5e-bbb8-92a13fae0f2d",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "machineId": "86604767-e5de-46f0-8409-038ac87e7b4d",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "hash": null,␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "machineId": "c9a49cff-4438-460f-bc46-610bfecbddca",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "machineId": "4252ddb5-e9b4-4d1e-aa53-6e1bdcdeab30",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "machineId": "783c5eb2-2145-4fd2-a22f-274bec3b2ffc",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "machineId": "f8a54a11-93f4-4b0a-9c80-be6542393448",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "hash": null,␊ + "name": "CCTokenizationClientService",␊ + "slug": "cctokenizationclientservice",␊ + "instances": [␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "machineId": "ec5214d1-fff8-4a29-b05b-506e7f7de178",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "machineId": "6e28e57f-21c4-486e-bf19-c9171ad454e9",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "machineId": "9c4c6c41-bacd-4b2e-8bc8-c96c762d5ffc",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "hash": null,␊ + "name": "CheckoutService",␊ + "slug": "checkoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "machineId": "7eada63f-fd3c-47d8-84c7-7b2f100ece48",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "machineId": "2546f9cc-82bd-4efd-86a7-f1f9c161f553",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "machineId": "d5916d7b-9e2d-449e-a726-fd6eb679d8dc",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "hash": null,␊ + "name": "ColorSwatchService",␊ + "slug": "colorswatchservice",␊ + "instances": [␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "machineId": "fe1bd98d-fbc7-4ae9-bb88-1a08f14d3c3c",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "machineId": "019fbce4-48f3-4093-bb5b-cbc57129c6ce",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "machineId": "24fc33c1-aaaa-451e-b666-990e730b0e1e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "machineId": "d9a54997-106d-4618-add6-d40139b0d951",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "machineId": "2131357d-c850-4fdd-a3b6-8ac350abf59b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "hash": null,␊ + "name": "EmailMarketingService",␊ + "slug": "emailmarketingservice",␊ + "instances": [␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "machineId": "4d915c72-b436-49ba-a144-f0e98a017888",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "machineId": "efbc9404-aec8-4aab-a66a-8caef91a8d58",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "machineId": "5181e8a9-241e-401d-9504-669826345dd1",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "hash": null,␊ + "name": "FavoriteService",␊ + "slug": "favoriteservice",␊ + "instances": [␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "machineId": "fe775a4a-e081-42c4-a9b8-605f52a6cb69",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "machineId": "549ba710-03d2-4c7b-a26a-ae19b9684fc2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "machineId": "acd9fc0f-9e67-4926-88c9-f824844b67ce",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "machineId": "8d099a34-07da-4e06-87a0-44039f9cf59f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "machineId": "9b5674a0-2b22-4349-850a-fdfd2ca312c2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "hash": null,␊ + "name": "FindInStoreService",␊ + "slug": "findinstoreservice",␊ + "instances": [␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "machineId": "0ba01fce-6e3c-433c-b341-e9afee0bf252",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "machineId": "a61a0d3d-2cae-4ef0-954a-0f005c386eed",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "machineId": "4be8670e-2ea5-4fc5-80c3-29cc0fab5f8d",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "hash": null,␊ + "name": "FitpredictorService",␊ + "slug": "fitpredictorservice",␊ + "instances": [␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "machineId": "81b0904b-637e-4ead-8092-353f062ad614",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "machineId": "007d9c65-40c5-482d-8ee8-b9ec75d522a6",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "machineId": "49d90976-e8ec-467b-ae78-70bd5332f24d",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "machineId": "2f58f000-99a1-41fd-a6f3-23610c935eaa",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "hash": null,␊ + "name": "HidefromcatalogService",␊ + "slug": "hidefromcatalogservice",␊ + "instances": [␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "machineId": "37fb72ed-bb1c-405a-a01c-950b1d62fd44",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "machineId": "da0da055-9067-4159-bf2a-bbe7bca13dc2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "machineId": "1fc8dc72-aa74-490d-873a-121554f25109",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "machineId": "75de8a2f-bec8-4dab-b046-b1aa8ad3d2e4",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "hash": null,␊ + "name": "InternationalCheckoutService",␊ + "slug": "internationalcheckoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "machineId": "6242323a-f3c1-40f0-81b4-284ad1fa238f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "machineId": "ccef4c0d-3608-4bad-9127-fda2932ee78a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "machineId": "c9de38ac-22bc-40ed-9ff2-b8afc3175d47",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "machineId": "afdc3777-df66-4772-961a-34fe4910fec6",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "machineId": "51190835-8e73-45eb-a2c3-b349a45b1248",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "hash": null,␊ + "name": "InternationalPOService",␊ + "slug": "internationalposervice",␊ + "instances": [␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "machineId": "b2366748-e22e-4962-9808-0c00e76fe883",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "machineId": "dae58381-7f28-44c8-9b8e-0496f2dd6974",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "machineId": "d9a88b5c-9033-47a4-b729-75945c65af52",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "machineId": "c5b5eede-0062-4036-9b2a-e6668b742336",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "hash": null,␊ + "name": "InternationalShippingService",␊ + "slug": "internationalshippingservice",␊ + "instances": [␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "machineId": "d6db9222-bf82-4c80-8572-08c7bfc91077",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "machineId": "d9ebdf82-d73a-438b-9465-e82fc8bb575e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "machineId": "dc63df5d-7496-4585-a7f8-dcd1f2218c0f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "machineId": "dadbf32d-f51d-4f23-aedf-5e604b869958",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "hash": null,␊ + "name": "InventoryService",␊ + "slug": "inventoryservice",␊ + "instances": [␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "machineId": "a27e578a-9a20-4d76-9555-6e7acb2928af",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "machineId": "5a1b6519-8608-4579-8860-1798b1744413",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "machineId": "f35becf4-fa3c-4af3-9412-8250e0aa5381",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "machineId": "c09e4729-fee5-4c77-b589-014c85331987",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "hash": null,␊ + "name": "LocalizationService",␊ + "slug": "localizationservice",␊ + "instances": [␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "machineId": "328876ea-8774-4d87-b523-c6a3410dc5c5",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "machineId": "009cc3dc-a378-47ef-ab44-7c8f79e01007",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "machineId": "25959dc2-862c-46f7-b59d-06569585f3e8",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "machineId": "e7988ff9-2cf8-4d74-995f-4ace9e8d1971",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "hash": null,␊ + "name": "MoreAccountService",␊ + "slug": "moreaccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "machineId": "e20c9221-0ff5-498c-afa3-0828ee3c54c0",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "machineId": "d7dcdc8e-63c1-4d6b-8057-c5b43df376d3",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "machineId": "7ddee330-71be-4f15-b4d0-016ab587a90b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "machineId": "39db7636-8986-40f9-aa62-9d471afd8d2e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "machineId": "c0d0f9f3-933d-4e22-9b92-89db0068d9e4",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "hash": null,␊ + "name": "NavigationService",␊ + "slug": "navigationservice",␊ + "instances": [␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "machineId": "8317d214-2aa9-4061-be02-2d7e773ee778",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "machineId": "004bf8a2-22fe-4ac5-8875-f3f92241fcfa",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "machineId": "2734c9b8-5551-4d62-910b-d56c2e7702cf",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "machineId": "1eca43b9-2bb0-4b85-af65-70e6a3a93d98",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "machineId": "1036dd0a-2ac5-4c39-9678-442b41b5b66b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "hash": null,␊ + "name": "OrderCreationJob",␊ + "slug": "ordercreationjob",␊ + "instances": [␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "machineId": "0e0430e8-3c0b-49e8-ad21-cba0aa2aba3d",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "machineId": "983f5a54-d7a0-4976-923e-62e0fb4c560f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "machineId": "ec8b9feb-22ca-4e89-847f-0f0c3a464860",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "machineId": "fa34f03c-7d28-40ba-9bf9-95cbf21b25cf",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "machineId": "c0b1fdd2-8d6f-46f1-b359-214d7500d70e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "hash": null,␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "machineId": "03524b3f-f7de-4433-9b00-d2c1ca38cfb2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "machineId": "c09b7477-ee9a-42f0-aa60-4e5d092812b5",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "machineId": "ecca8837-37b7-458b-a05b-74a5752a2315",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "hash": null,␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "machineId": "510a8c12-e752-4f2c-9670-c03a15503796",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "machineId": "e313aa06-ac32-46da-9010-cee561578c59",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "machineId": "aa7d299c-a589-4cc4-8e39-42097e6dce17",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "machineId": "1f908042-c694-4e31-a678-acd1ec165644",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "hash": null,␊ + "name": "PaymentMethodService",␊ + "slug": "paymentmethodservice",␊ + "instances": [␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "machineId": "ac777422-423d-450a-acf0-2a42d4c1f157",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "machineId": "f2ba162f-9e11-4ceb-abdc-8d9fbbc135cb",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "machineId": "d1c99e98-8924-479c-832f-de15c316c05e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "machineId": "c5667348-c39e-41e9-91f9-b92cd307ff64",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "machineId": "9bf197fe-4d56-4347-ad34-85bcf8f05d77",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "hash": null,␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "machineId": "84a339a3-8b1f-42fe-9d71-5fc43af7efb9",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "machineId": "40044bd9-fa29-47be-acf7-aafa2e3abe71",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "machineId": "3d885b0c-79b7-44d2-b418-cbbe2025f0fa",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "machineId": "39ddada7-151f-4786-b81f-26dd8ff4cef8",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "hash": null,␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "machineId": "266048f5-3d0b-4955-a1d5-a63273bbff07",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "machineId": "0f8334e4-50ad-47a1-8fc8-00095798eb91",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "machineId": "97791e82-627a-46a6-998d-a70bff7ee278",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "machineId": "c7676607-ece9-474c-a620-ebfdea63e284",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "hash": null,␊ + "name": "PriceService",␊ + "slug": "priceservice",␊ + "instances": [␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "machineId": "5f78a2b3-eea8-4e0e-b41a-2de9ec2bbee3",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "machineId": "69c8da0e-dcc6-4a49-901f-1c26d78e1083",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "machineId": "684f61e1-e87a-4fcf-819b-97e8ab0d53b5",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "machineId": "bb776fb1-f554-4702-9389-b20672f1ba47",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "hash": null,␊ + "name": "PrivatesaleService",␊ + "slug": "privatesaleservice",␊ + "instances": [␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "machineId": "b5eef5e0-be43-40be-a0ff-5d2dee072d37",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "machineId": "62f71598-1db7-4a03-8f70-09c2fef48c51",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "machineId": "085ea830-c7cb-4956-a867-cc574526465a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "machineId": "07bddd94-bc76-40bb-a639-65f8f39ac4a6",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "hash": null,␊ + "name": "ProductArrayService",␊ + "slug": "productarrayservice",␊ + "instances": [␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "machineId": "9923fd69-69bf-450a-bb53-e34b9cda7951",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "machineId": "36296795-b50b-449c-b494-3d53f3aebde8",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "machineId": "f1b7ca63-4511-4fcf-974f-985e7b212ce3",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "machineId": "9ba3229c-d24e-45dc-ba8f-6b8f6942b887",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "machineId": "ac5028c0-d8e3-4550-ae38-0f40bec5133f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "hash": null,␊ + "name": "ProductDetailService",␊ + "slug": "productdetailservice",␊ + "instances": [␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "machineId": "495f234d-846a-45af-a9d1-a8c0b0010396",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "machineId": "01106446-1320-420f-a486-8195f4755b43",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "machineId": "1ae6f186-d9ee-487b-ba5f-35549395b2b8",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "machineId": "107e3f9a-c63f-4a78-999d-dce5932cc206",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "machineId": "2f8fc356-8d85-446c-848b-ae383388b6ab",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "hash": null,␊ + "name": "ProductService",␊ + "slug": "productservice",␊ + "instances": [␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "machineId": "94455b1b-6fb9-4442-b1d3-9e91cef30e2e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "machineId": "7abfe76d-7b8a-4a4d-9e75-e296ba7e0e25",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "machineId": "2e733d49-fb55-42b5-8117-699608dd1bf9",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "hash": null,␊ + "name": "ProfileService",␊ + "slug": "profileservice",␊ + "instances": [␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "machineId": "e27097a6-d7e6-4541-b9b2-22e7bcf9091f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "machineId": "73e64de6-0d37-4eb5-8c49-fa32311b4f7c",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "machineId": "be83bd3e-13fb-4a1b-98cc-0839ec80d11d",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "machineId": "f0683944-7392-4801-b474-fe78ca61a91b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "hash": null,␊ + "name": "PromoService",␊ + "slug": "promoservice",␊ + "instances": [␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "machineId": "06a5c1be-646c-480e-96a8-8620fd221b03",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "machineId": "5bf90ba8-c3e7-4fc2-a0aa-4b245367f70e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "machineId": "399e7051-8b61-4ef9-a7da-ed1e33ca0fa1",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "hash": null,␊ + "name": "PromotionService",␊ + "slug": "promotionservice",␊ + "instances": [␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "machineId": "c6def1eb-c4c5-4915-a664-1e54a4d27ab2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "machineId": "986aaa77-ebf4-4404-be8c-43850df29ae6",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "machineId": "7802a82e-d529-4c91-9961-510a4aa310a0",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "machineId": "abafc915-b56c-4d2e-8ed2-2d3770212a0a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "machineId": "a12f36bb-0939-493b-b59f-7c6b2c45b979",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "hash": null,␊ + "name": "QuestionanswerService",␊ + "slug": "questionanswerservice",␊ + "instances": [␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "machineId": "1e284cf3-e996-4487-b357-25db82a65938",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "machineId": "4dc23279-7bf0-48c2-8d09-ce15e41f7a50",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "machineId": "a4aa9d5b-5674-4796-bb33-0314c053facc",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "machineId": "db675533-f542-4bba-a977-c3a12d0609f4",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "hash": null,␊ + "name": "RedBaloonService",␊ + "slug": "redbaloonservice",␊ + "instances": [␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "machineId": "839d2461-cb78-4072-a81f-bba16a49fc89",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "machineId": "f07ea401-edb9-4140-a57c-6f21864895c6",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "machineId": "15451e87-4a2c-41de-ae45-5188ea3763e9",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "hash": null,␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "machineId": "20f5bf63-c7d7-4b80-bbe0-63dd744f1b72",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "machineId": "bf10d972-17e0-4267-908e-4a8184d7c164",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "machineId": "d7204a39-5005-4925-a2d5-02afbb2457db",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "machineId": "80dac6f7-e459-4f42-b824-5abdd6f13d41",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "machineId": "dbb819d5-9df2-48e1-8412-7cd48ca4c186",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "hash": null,␊ + "name": "ReviewsService",␊ + "slug": "reviewsservice",␊ + "instances": [␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "machineId": "708e3623-0cbf-4dff-89b5-8b4dc06e56bf",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "machineId": "2771dc39-4fa3-41ef-80bd-4522165ff428",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "machineId": "fcba67fb-5119-4fb0-9d2d-8cb877464d98",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "machineId": "85ff21d8-15a6-4e76-8b7d-656c53656ba4",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "machineId": "b8a3a53f-f1c3-4796-b2b8-85b96b6a96a4",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "hash": null,␊ + "name": "SearchFacetsService",␊ + "slug": "searchfacetsservice",␊ + "instances": [␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "machineId": "b9dbbeaa-c1f5-468f-89ac-f04b98a931ce",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "machineId": "683e9733-adb6-4e5f-bdce-eea7027b6173",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "machineId": "0215a196-9fea-4197-a478-1f0191fde5c2",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "hash": null,␊ + "name": "SearchIndexService",␊ + "slug": "searchindexservice",␊ + "instances": [␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "machineId": "dabb9629-7844-4e0b-ab9b-9657de583864",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "machineId": "7a52ffd7-460b-4e23-92a2-e405d3ac9c6c",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "machineId": "307f023d-519e-4cfc-845f-9fda283bc766",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "machineId": "01750ab3-f20c-4077-8453-3a99025f846e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "hash": null,␊ + "name": "ShopRunnerService",␊ + "slug": "shoprunnerservice",␊ + "instances": [␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "machineId": "51a1bdc0-e282-4e8f-b2aa-b3f663fe4e64",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "machineId": "5f66cadd-4d6e-497d-ac32-258b5e70d36c",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "machineId": "ec91237d-5052-49ad-be25-d55b8be15f75",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "machineId": "06e22fb5-e6c0-43cd-806c-32c308f54687",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "machineId": "aba0f29a-664b-4455-b51d-8d4f61c7f936",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "hash": null,␊ + "name": "TaxService",␊ + "slug": "taxservice",␊ + "instances": [␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "machineId": "b723da71-3441-4a0d-962f-13be9fc87f12",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "machineId": "3625f022-5b5e-4d46-b580-fcd3ca11f013",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "machineId": "291f11b6-141a-4416-8e41-a9eec2d70514",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "machineId": "d3b4eb5b-ff7b-44f7-ad5a-6d07e7d688c3",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "machineId": "790e4bb5-f089-42cd-8e86-b9645eed618a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "hash": null,␊ + "name": "ToggleService",␊ + "slug": "toggleservice",␊ + "instances": [␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "machineId": "4d4cb469-20d3-44d1-91d3-40d7805c84ac",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "machineId": "5fe7ceca-b886-4248-9808-7eb6ed46515f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "machineId": "d279a63f-9471-4078-90a0-9d59bbd374f5",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "machineId": "99185403-e804-443f-9ede-014d5f4006ac",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "hash": null,␊ + "name": "UserAccountService",␊ + "slug": "useraccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "machineId": "44b454b1-cc8b-4a8d-95d9-b5939a00a9bd",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "machineId": "f57ba43d-159b-4c61-91c3-1f5d29d74a7a",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "machineId": "fca15f53-b425-47f0-863d-e338982122e7",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "machineId": "22e70edc-1813-41ad-ab5e-1bef4eb5912e",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "hash": null,␊ + "name": "UserAuthenticationService",␊ + "slug": "userauthenticationservice",␊ + "instances": [␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "machineId": "23368713-1e27-42e9-a842-b6555ba2c7be",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "machineId": "f432cc77-91a8-42e5-baa3-4b64405dd83f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "machineId": "16e5550f-c09d-4bad-89bb-3628c5576bbe",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "machineId": "5760762c-eea2-4d96-abdb-eae263111d83",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "hash": null,␊ + "name": "WaitlistOverlayService",␊ + "slug": "waitlistoverlayservice",␊ + "instances": [␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "machineId": "51f541e1-4e82-4e16-907d-6aeb113f394c",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "machineId": "d9bac0ca-3e98-4afb-b426-3c17bab35d45",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "machineId": "600fada5-2369-477f-b22d-18a79653109f",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "5e527d47-7a19-439e-b6bb-32c456bd423c"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "hash": null,␊ + "name": "WaitlistService",␊ + "slug": "waitlistservice",␊ + "instances": [␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "machineId": "ece4ae8e-c5c4-40c2-8d28-594d7015fd36",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "machineId": "214b9f77-c6ec-446c-a20c-0b7e0e5bbf98",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "machineId": "f4a0a162-2093-4481-b6c6-f8728600cd03",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "machineId": "8319135d-3568-42f3-8df4-550615639ff1",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "machineId": "d178d330-b864-4985-b245-8dc1c1eb7d54",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "hash": null,␊ + "name": "Consul",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "machineId": "5581072a-bd07-4d44-bd9d-86f23e421e6b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "machineId": "4bf8e8b8-ea02-482f-b832-9e29428e96af",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "machineId": "d678775c-4921-4a58-80e7-d2c787db73f9",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "hash": null,␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "machineId": "7a2cc743-3dec-497d-a4e0-04a1238997cb",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": [␊ + "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "66babdef-4512-456c-8d16-b6223766da01",␊ + "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "25725be5-6880-438f-9590-7c8cd9606224",␊ + "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "2540f59b-5f81-4458-94a1-38e6eef5d78a"␊ + ],␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "hash": null,␊ + "name": "MongoDB",␊ + "slug": "mongodb",␊ + "instances": [␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "machineId": "290c2f89-4d03-46dd-a637-d9c4d3d64a7b",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "machineId": "b40d9796-ebfd-4926-972d-9a65ec03fda4",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "machineId": "a8137828-e1de-40ef-8714-b94c0bec24cb",␊ + "status": "RUNNING",␊ + "healthy": "UNKNOWN",␊ + "watches": null,␊ + "jobs": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "connections": null,␊ + "branches": [],␊ + "config": null,␊ + "status": "ACTIVE",␊ + "__typename": "Service"␊ + }␊ + ],␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": "ACTIVE",␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +## should return filtered DeploymentGroup's + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "status": null,␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "status": null,␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "status": null,␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "status": null,␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "status": null,␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "status": null,␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "status": null,␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "status": null,␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "status": null,␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "status": null,␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "status": null,␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "status": null,␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "status": "RUNNING",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ]␊ + }` + +## should return filtered instances + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "instances": [␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + }␊ + ]␊ + }` + +## should return filtered services + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +## should return instances + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "slug": "wordpress",␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "slug": "nfs",␊ + "instances": [␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "slug": "memcached",␊ + "instances": [␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "instances": [␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "instances": [␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "slug": "frontend",␊ + "instances": [␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "instances": [␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "instances": [␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "slug": "producer",␊ + "instances": [␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "slug": "api",␊ + "instances": [␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "slug": "accountservice",␊ + "instances": [␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "slug": "addressservice",␊ + "instances": [␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "slug": "bloomreachservice",␊ + "instances": [␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "slug": "cartservice",␊ + "instances": [␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "slug": "cctokenizationclientservice",␊ + "instances": [␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "slug": "checkoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "slug": "colorswatchservice",␊ + "instances": [␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "slug": "emailmarketingservice",␊ + "instances": [␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "slug": "favoriteservice",␊ + "instances": [␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "slug": "findinstoreservice",␊ + "instances": [␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "slug": "fitpredictorservice",␊ + "instances": [␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "slug": "hidefromcatalogservice",␊ + "instances": [␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "slug": "internationalcheckoutservice",␊ + "instances": [␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "slug": "internationalposervice",␊ + "instances": [␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "slug": "internationalshippingservice",␊ + "instances": [␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "slug": "inventoryservice",␊ + "instances": [␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "slug": "localizationservice",␊ + "instances": [␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "slug": "moreaccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "slug": "navigationservice",␊ + "instances": [␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "slug": "ordercreationjob",␊ + "instances": [␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "instances": [␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "slug": "paymentmethodservice",␊ + "instances": [␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "instances": [␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "slug": "priceservice",␊ + "instances": [␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "slug": "privatesaleservice",␊ + "instances": [␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "slug": "productarrayservice",␊ + "instances": [␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "slug": "productdetailservice",␊ + "instances": [␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "slug": "productservice",␊ + "instances": [␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "slug": "profileservice",␊ + "instances": [␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "slug": "promoservice",␊ + "instances": [␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "slug": "promotionservice",␊ + "instances": [␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "slug": "questionanswerservice",␊ + "instances": [␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "slug": "redbaloonservice",␊ + "instances": [␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "instances": [␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "slug": "reviewsservice",␊ + "instances": [␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "slug": "searchfacetsservice",␊ + "instances": [␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "slug": "searchindexservice",␊ + "instances": [␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "slug": "shoprunnerservice",␊ + "instances": [␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "slug": "taxservice",␊ + "instances": [␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "slug": "toggleservice",␊ + "instances": [␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "slug": "useraccountservice",␊ + "instances": [␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "slug": "userauthenticationservice",␊ + "instances": [␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "slug": "waitlistoverlayservice",␊ + "instances": [␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "slug": "waitlistservice",␊ + "instances": [␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "slug": "consul",␊ + "instances": [␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "instances": [␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "slug": "mongodb",␊ + "instances": [␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "instances": [␊ + {␊ + "id": "309ecd9f-ac03-474b-aff7-4bd2e743296c",␊ + "name": "wordpress_01",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "0db6db53-de6f-4378-839e-5d5b452fbaf2",␊ + "name": "nfs_01",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "250c8a6c-7d02-49a9-8abd-e1c22773041d",␊ + "name": "consul",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2c921f3a-8bc3-4f57-9cd7-789ebae72061",␊ + "name": "memcache_01",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "68d3046e-8e34-4f5d-a0e5-db3795a250fd",␊ + "name": "memcache_02",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ea99763-3b44-4179-8393-d66d94961051",␊ + "name": "memcache_03",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "25f6bc62-63b8-4959-908e-1f6d7ff6341d",␊ + "name": "memcache_04",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8be01042-0281-4a77-a357-25979e87bf3d",␊ + "name": "memcache_05",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3d652e9d-73e8-4a6f-8171-84fa83740662",␊ + "name": "nginx",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c3ec7633-a02b-4615-86a0-9e6faeaae94b",␊ + "name": "percona-primary",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c2b5fec2-31e2-41a7-b7fc-cd0bb1822e76",␊ + "name": "percona-secondary",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "f1fb3c1d-9e0e-4538-b2ad-1124bce2459e",␊ + "name": "frontend-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c5c7ae33-cfe1-43cc-9e9b-6f453de3888d",␊ + "name": "frontend-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "ec13cf3f-dcb4-47d4-9b87-38477a02ac9b",␊ + "name": "mysql-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6e460ff1-7bc3-4c9b-b093-f37b1134f37b",␊ + "name": "mysql-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ec9132f-9093-4644-a2fd-a9749d0011ca",␊ + "name": "mysql-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "991cbab5-b773-4651-b5b9-b95c299cf50f",␊ + "name": "mysql-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1188dfa0-efac-4142-8a6d-615841dc04e7",␊ + "name": "mysql-5",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "1e3dc868-8738-41b3-a70f-ea332823429c",␊ + "name": "producer-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "2ddf4ce0-0cc6-4df9-ac0e-7518e9fff19e",␊ + "name": "api-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c9698959-eaa2-4b32-9333-fc2591702cf7",␊ + "name": "consul-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "a356f557-67ad-402f-a6ba-f7c719fd853a",␊ + "name": "instance-AccountService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "dfb47048-0a5c-45e1-82ea-80dd62e2631f",␊ + "name": "instance-AccountService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "c700999c-7915-43ca-891e-17c7f9cf6b55",␊ + "name": "instance-AccountService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-0",␊ + "name": "instance-AddressService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-1",␊ + "name": "instance-AddressService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-2",␊ + "name": "instance-AddressService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-3",␊ + "name": "instance-AddressService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c60b44f3-388d-43dd-9ea8-6ed99a83d767-4",␊ + "name": "instance-AddressService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-0",␊ + "name": "instance-BloomreachService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-1",␊ + "name": "instance-BloomreachService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-2",␊ + "name": "instance-BloomreachService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-f5606d06-7f4d-45b2-85df-8f4688778f24-3",␊ + "name": "instance-BloomreachService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-0",␊ + "name": "instance-CartService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-1",␊ + "name": "instance-CartService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-2",␊ + "name": "instance-CartService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-3",␊ + "name": "instance-CartService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7043a0ca-dee6-42d4-856e-ff77c8902479-4",␊ + "name": "instance-CartService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-0",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-1",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-2",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-31663285-2b58-4f92-b6f5-3ef34591c3a3-3",␊ + "name": "instance-Extra service reported by ContainerPilot: CartService-HTTPS-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-0",␊ + "name": "instance-CCTokenizationClientService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-1",␊ + "name": "instance-CCTokenizationClientService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3b954132-49fc-405c-9d91-c59b8953d7b8-2",␊ + "name": "instance-CCTokenizationClientService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-0",␊ + "name": "instance-CheckoutService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-1",␊ + "name": "instance-CheckoutService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-0b50ef08-486c-4999-8638-80d8f6a3465c-2",␊ + "name": "instance-CheckoutService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-0",␊ + "name": "instance-ColorSwatchService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-1",␊ + "name": "instance-ColorSwatchService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-2",␊ + "name": "instance-ColorSwatchService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-3",␊ + "name": "instance-ColorSwatchService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-71564ea7-9a9d-4d00-9409-505ef03567fc-4",␊ + "name": "instance-ColorSwatchService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-0",␊ + "name": "instance-EmailMarketingService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-1",␊ + "name": "instance-EmailMarketingService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-66babdef-4512-456c-8d16-b6223766da01-2",␊ + "name": "instance-EmailMarketingService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-0",␊ + "name": "instance-FavoriteService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-1",␊ + "name": "instance-FavoriteService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-2",␊ + "name": "instance-FavoriteService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-3",␊ + "name": "instance-FavoriteService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-21b2b735-1706-49f6-a136-f2910c110e84-4",␊ + "name": "instance-FavoriteService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-0",␊ + "name": "instance-FindInStoreService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-1",␊ + "name": "instance-FindInStoreService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7e6b96d5-648c-44b2-9e5a-34423fc0a982-2",␊ + "name": "instance-FindInStoreService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-0",␊ + "name": "instance-FitpredictorService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-1",␊ + "name": "instance-FitpredictorService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-2",␊ + "name": "instance-FitpredictorService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ba9ca60e-8f67-49ae-a834-da244b1e3f80-3",␊ + "name": "instance-FitpredictorService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-0",␊ + "name": "instance-HidefromcatalogService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-1",␊ + "name": "instance-HidefromcatalogService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-2",␊ + "name": "instance-HidefromcatalogService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5fffbfde-7f65-46cb-b729-db9cdb1843e6-3",␊ + "name": "instance-HidefromcatalogService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-0",␊ + "name": "instance-InternationalCheckoutService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-1",␊ + "name": "instance-InternationalCheckoutService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-2",␊ + "name": "instance-InternationalCheckoutService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-3",␊ + "name": "instance-InternationalCheckoutService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-25725be5-6880-438f-9590-7c8cd9606224-4",␊ + "name": "instance-InternationalCheckoutService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-0",␊ + "name": "instance-InternationalPOService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-1",␊ + "name": "instance-InternationalPOService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-2",␊ + "name": "instance-InternationalPOService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b14f7f85-834b-41fe-866b-571d8a77ab83-3",␊ + "name": "instance-InternationalPOService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-0",␊ + "name": "instance-InternationalShippingService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-1",␊ + "name": "instance-InternationalShippingService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-2",␊ + "name": "instance-InternationalShippingService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-de943737-bf8f-4adb-979a-05b083e1b52d-3",␊ + "name": "instance-InternationalShippingService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-0",␊ + "name": "instance-InventoryService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-1",␊ + "name": "instance-InventoryService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-2",␊ + "name": "instance-InventoryService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-dc6e21d4-f0ce-4717-8415-93fd785c7167-3",␊ + "name": "instance-InventoryService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-0",␊ + "name": "instance-LocalizationService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-1",␊ + "name": "instance-LocalizationService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-2",␊ + "name": "instance-LocalizationService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7859b44c-0ba6-4bf9-b62c-3e438d0c8c81-3",␊ + "name": "instance-LocalizationService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-0",␊ + "name": "instance-MoreAccountService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-1",␊ + "name": "instance-MoreAccountService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-2",␊ + "name": "instance-MoreAccountService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-3",␊ + "name": "instance-MoreAccountService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d3b47ee2-1755-446d-88d9-3e44a4b404e2-4",␊ + "name": "instance-MoreAccountService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-0",␊ + "name": "instance-NavigationService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-1",␊ + "name": "instance-NavigationService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-2",␊ + "name": "instance-NavigationService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-3",␊ + "name": "instance-NavigationService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-339c1174-acd0-4740-a0af-3b0e87d2b2d1-4",␊ + "name": "instance-NavigationService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-0",␊ + "name": "instance-OrderCreationJob-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-1",␊ + "name": "instance-OrderCreationJob-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-2",␊ + "name": "instance-OrderCreationJob-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-3",␊ + "name": "instance-OrderCreationJob-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8871105e-ae08-4ebf-81ae-748d6e33941c-4",␊ + "name": "instance-OrderCreationJob-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-0",␊ + "name": "instance-OrderService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-1",␊ + "name": "instance-OrderService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-9f2b665b-31a7-49e6-b021-d1767e092aa6-2",␊ + "name": "instance-OrderService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-0",␊ + "name": "instance-OrderService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-1",␊ + "name": "instance-OrderService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-2",␊ + "name": "instance-OrderService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-bd9fdb62-39ac-4a58-9d83-6b955a938274-3",␊ + "name": "instance-OrderService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-0",␊ + "name": "instance-PaymentMethodService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-1",␊ + "name": "instance-PaymentMethodService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-2",␊ + "name": "instance-PaymentMethodService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-3",␊ + "name": "instance-PaymentMethodService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc-4",␊ + "name": "instance-PaymentMethodService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-0",␊ + "name": "instance-PaymentService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-1",␊ + "name": "instance-PaymentService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-2",␊ + "name": "instance-PaymentService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-076bbefa-b4a4-45d4-a01f-cf4edb0b252d-3",␊ + "name": "instance-PaymentService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-0",␊ + "name": "instance-PaymentService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-1",␊ + "name": "instance-PaymentService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-2",␊ + "name": "instance-PaymentService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-e6611ba6-3b21-46a0-88ec-cf53e6a6b408-3",␊ + "name": "instance-PaymentService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-0",␊ + "name": "instance-PriceService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-1",␊ + "name": "instance-PriceService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-2",␊ + "name": "instance-PriceService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-aeae1f3f-bfff-4a3a-b399-a22b6fef59e4-3",␊ + "name": "instance-PriceService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-0",␊ + "name": "instance-PrivatesaleService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-1",␊ + "name": "instance-PrivatesaleService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-2",␊ + "name": "instance-PrivatesaleService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-760cc6d2-e4c3-4781-923c-8edebe20fbc9-3",␊ + "name": "instance-PrivatesaleService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-0",␊ + "name": "instance-ProductArrayService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-1",␊ + "name": "instance-ProductArrayService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-2",␊ + "name": "instance-ProductArrayService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-3",␊ + "name": "instance-ProductArrayService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ae42ddba-24aa-4bc7-9972-cd0d8d841b7f-4",␊ + "name": "instance-ProductArrayService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-0",␊ + "name": "instance-ProductDetailService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-1",␊ + "name": "instance-ProductDetailService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-2",␊ + "name": "instance-ProductDetailService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-3",␊ + "name": "instance-ProductDetailService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1d2b1206-a025-4717-bc20-ddd0acf14fca-4",␊ + "name": "instance-ProductDetailService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-0",␊ + "name": "instance-ProductService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-1",␊ + "name": "instance-ProductService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6-2",␊ + "name": "instance-ProductService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-0",␊ + "name": "instance-ProfileService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-1",␊ + "name": "instance-ProfileService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-2",␊ + "name": "instance-ProfileService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-d1c93a27-bf91-4b68-bef1-6e1f7a53c14a-3",␊ + "name": "instance-ProfileService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-0",␊ + "name": "instance-PromoService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-1",␊ + "name": "instance-PromoService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-693659a1-0d46-49aa-925c-2fcf16c07fc1-2",␊ + "name": "instance-PromoService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-0",␊ + "name": "instance-PromotionService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-1",␊ + "name": "instance-PromotionService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-2",␊ + "name": "instance-PromotionService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-3",␊ + "name": "instance-PromotionService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-77c8c92e-452e-4e8e-bbd8-bd7405b88c31-4",␊ + "name": "instance-PromotionService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-0",␊ + "name": "instance-QuestionanswerService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-1",␊ + "name": "instance-QuestionanswerService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-2",␊ + "name": "instance-QuestionanswerService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-ecf54138-7d5f-4e5b-9246-7762550e1082-3",␊ + "name": "instance-QuestionanswerService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-0",␊ + "name": "instance-RedBaloonService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-1",␊ + "name": "instance-RedBaloonService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8b8a8506-fc87-4464-acac-f98b934ed755-2",␊ + "name": "instance-RedBaloonService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-0",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-1",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-2",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-3",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4-4",␊ + "name": "instance-Extra service reported by ContainerPilot: RedBaloonService-HTTPS-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-0",␊ + "name": "instance-ReviewsService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-1",␊ + "name": "instance-ReviewsService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-2",␊ + "name": "instance-ReviewsService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-3",␊ + "name": "instance-ReviewsService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-709971c3-794d-42b5-b2dc-42c51db75c41-4",␊ + "name": "instance-ReviewsService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-0",␊ + "name": "instance-SearchFacetsService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-1",␊ + "name": "instance-SearchFacetsService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-825f73d0-cbf0-4c9e-ab12-0f53128d2444-2",␊ + "name": "instance-SearchFacetsService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-0",␊ + "name": "instance-SearchIndexService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-1",␊ + "name": "instance-SearchIndexService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-2",␊ + "name": "instance-SearchIndexService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6-3",␊ + "name": "instance-SearchIndexService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-0",␊ + "name": "instance-ShopRunnerService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-1",␊ + "name": "instance-ShopRunnerService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-2",␊ + "name": "instance-ShopRunnerService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-3",␊ + "name": "instance-ShopRunnerService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2089dfef-01c3-4ff8-8a5d-712edfa6b1c6-4",␊ + "name": "instance-ShopRunnerService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-0",␊ + "name": "instance-TaxService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-1",␊ + "name": "instance-TaxService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-2",␊ + "name": "instance-TaxService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-3",␊ + "name": "instance-TaxService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-c62413d0-7eb0-4151-9da5-3b331ffafce0-4",␊ + "name": "instance-TaxService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-0",␊ + "name": "instance-ToggleService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-1",␊ + "name": "instance-ToggleService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-2",␊ + "name": "instance-ToggleService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-8d1e1795-0baa-48da-a173-ca9d145dcffa-3",␊ + "name": "instance-ToggleService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-0",␊ + "name": "instance-UserAccountService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-1",␊ + "name": "instance-UserAccountService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-2",␊ + "name": "instance-UserAccountService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-7728f1ff-ad43-416a-acd5-6d4f506a3f48-3",␊ + "name": "instance-UserAccountService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-0",␊ + "name": "instance-UserAuthenticationService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-1",␊ + "name": "instance-UserAuthenticationService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-2",␊ + "name": "instance-UserAuthenticationService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-6126b9a2-0402-4b1d-b7af-6e4486e0973c-3",␊ + "name": "instance-UserAuthenticationService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-0",␊ + "name": "instance-WaitlistOverlayService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-1",␊ + "name": "instance-WaitlistOverlayService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-3aba83bf-5f64-4a7f-9232-8c72b1ce43e5-2",␊ + "name": "instance-WaitlistOverlayService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-0",␊ + "name": "instance-WaitlistService-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-1",␊ + "name": "instance-WaitlistService-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-2",␊ + "name": "instance-WaitlistService-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-3",␊ + "name": "instance-WaitlistService-3",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4e3f4ead-a110-4e21-b2d4-da3f50d7aab4-4",␊ + "name": "instance-WaitlistService-4",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-0",␊ + "name": "instance-Consul-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-1",␊ + "name": "instance-Consul-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-2540f59b-5f81-4458-94a1-38e6eef5d78a-2",␊ + "name": "instance-Consul-2",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-4c2166aa-9eed-4582-a5c6-9f79d1477bb0-0",␊ + "name": "instance-Nginx-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-0",␊ + "name": "instance-MongoDB-0",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-1",␊ + "name": "instance-MongoDB-1",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "instance-5e527d47-7a19-439e-b6bb-32c456bd423c-2",␊ + "name": "instance-MongoDB-2",␊ + "__typename": "Instance"␊ + }␊ + ]␊ + }` + +## should return only Portal + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "__typename": "Portal"␊ + }␊ + }` + +## should return services + +> Snapshot 1 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "e0ea0c02-55cc-45fe-8064-3e5176a59401",␊ + "name": "Wordpress Blog Example",␊ + "slug": "wordpress-blog-example",␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "slug": "wordpress",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "slug": "nfs",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "slug": "memcached",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "slug": "consul",␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "24b16df5-7553-45d9-ab7f-62d541764b67",␊ + "name": "cpexample",␊ + "slug": "cpexample",␊ + "services": [␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "slug": "frontend",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "slug": "producer",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "slug": "api",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "slug": "consul",␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + },␊ + {␊ + "id": "ba217234-9b1b-41a7-8079-08f9a4aadb0f",␊ + "name": "Complex Microservices",␊ + "slug": "complex-microservices",␊ + "services": [␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "slug": "accountservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "slug": "addressservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "slug": "bloomreachservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "slug": "cartservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "slug": "cctokenizationclientservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "slug": "checkoutservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "slug": "colorswatchservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "slug": "emailmarketingservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "slug": "favoriteservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "slug": "findinstoreservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "slug": "fitpredictorservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "slug": "hidefromcatalogservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "slug": "internationalcheckoutservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "slug": "internationalposervice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "slug": "internationalshippingservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "slug": "inventoryservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "slug": "localizationservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "slug": "moreaccountservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "slug": "navigationservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "slug": "ordercreationjob",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "slug": "paymentmethodservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "slug": "priceservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "slug": "privatesaleservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "slug": "productarrayservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "slug": "productdetailservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "slug": "productservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "slug": "profileservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "slug": "promoservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "slug": "promotionservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "slug": "questionanswerservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "slug": "redbaloonservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "slug": "reviewsservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "slug": "searchfacetsservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "slug": "searchindexservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "slug": "shoprunnerservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "slug": "taxservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "slug": "toggleservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "slug": "useraccountservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "slug": "userauthenticationservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "slug": "waitlistoverlayservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "slug": "waitlistservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "slug": "consul",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "slug": "mongodb",␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "services": [␊ + {␊ + "id": "081a792c-47e0-4439-924b-2efa9788ae9e",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "be227788-74f1-4e5b-a85f-b5c71cbae8d8",␊ + "name": "Wordpress",␊ + "slug": "wordpress",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6a0eee76-c019-413b-9d5f-44712b55b993",␊ + "name": "NFS",␊ + "slug": "nfs",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6d31aff4-de1e-4042-a983-fbd23d5c530c",␊ + "name": "Memcached",␊ + "slug": "memcached",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4ee4103e-1a52-4099-a48e-01588f597c70",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "branches": [␊ + {␊ + "id": "a2605ecce77308da7a18aabd49f95eb05e8cff5b6eddc92d709e617a9a6e18b59b970d3d9eb7ceca4eff1f3cee951319ababb3fe63d25eabd340c237e7140c28",␊ + "name": "Percona",␊ + "slug": "percona",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "64a46313cfaef6d66f6a53544ed434b0b0191f9143fb30908f26684d5156a999bfa39d6b2c6864251dd208679eb72fbb9969c1912d077ad74885c6f2e2f1e09b",␊ + "name": "percona-primary",␊ + "slug": "percona-primary",␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "97c68055-db88-45c9-ad49-f26da4264777",␊ + "name": "Consul",␊ + "slug": "consul",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "af6a5cd2-291f-490b-bf3b-141b010635db",␊ + "name": "frontend",␊ + "slug": "frontend",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2c872d69-25d1-46e9-84d8-dcc89ea0d5a1",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "branches": [␊ + {␊ + "id": "61eaa840fffdf9d3681710ae65862551b9d975bdd790fcd650aa66e4ccd94bd380a06284dbe1fd9013e2876fb45bfa47e4aff185142fbb54cd369ffa45530f70",␊ + "name": "mysql-primary",␊ + "slug": "mysql-primary",␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f606110c5057af7f55a940ab7f4a53f9b4a07a37ee0ee5c9dc98626d71a3b62dd9cf95d93f0478f712ab73bc5ea602674cee640ebf51c694740f29f10fb4d717",␊ + "name": "mysql",␊ + "slug": "mysql",␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "908b64d9-070b-4c9a-b7d8-757ec3c9c7f4",␊ + "name": "producer",␊ + "slug": "producer",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aea06a05-830a-46d3-bdc1-9dcba97303de",␊ + "name": "api",␊ + "slug": "api",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e30c9c43-5af6-4adb-b3cd-8c383d911a0a",␊ + "name": "consul",␊ + "slug": "consul",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e0e3eb8f-2045-4c1a-8f74-8c61660fc987",␊ + "name": "AccountService",␊ + "slug": "accountservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c60b44f3-388d-43dd-9ea8-6ed99a83d767",␊ + "name": "AddressService",␊ + "slug": "addressservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "f5606d06-7f4d-45b2-85df-8f4688778f24",␊ + "name": "BloomreachService",␊ + "slug": "bloomreachservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7043a0ca-dee6-42d4-856e-ff77c8902479",␊ + "name": "CartService",␊ + "slug": "cartservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "31663285-2b58-4f92-b6f5-3ef34591c3a3",␊ + "name": "Extra service reported by ContainerPilot: CartService-HTTPS",␊ + "slug": "extra service reported by containerpilot: cartservice-https",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3b954132-49fc-405c-9d91-c59b8953d7b8",␊ + "name": "CCTokenizationClientService",␊ + "slug": "cctokenizationclientservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "0b50ef08-486c-4999-8638-80d8f6a3465c",␊ + "name": "CheckoutService",␊ + "slug": "checkoutservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "71564ea7-9a9d-4d00-9409-505ef03567fc",␊ + "name": "ColorSwatchService",␊ + "slug": "colorswatchservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "66babdef-4512-456c-8d16-b6223766da01",␊ + "name": "EmailMarketingService",␊ + "slug": "emailmarketingservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "21b2b735-1706-49f6-a136-f2910c110e84",␊ + "name": "FavoriteService",␊ + "slug": "favoriteservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7e6b96d5-648c-44b2-9e5a-34423fc0a982",␊ + "name": "FindInStoreService",␊ + "slug": "findinstoreservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ba9ca60e-8f67-49ae-a834-da244b1e3f80",␊ + "name": "FitpredictorService",␊ + "slug": "fitpredictorservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5fffbfde-7f65-46cb-b729-db9cdb1843e6",␊ + "name": "HidefromcatalogService",␊ + "slug": "hidefromcatalogservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "25725be5-6880-438f-9590-7c8cd9606224",␊ + "name": "InternationalCheckoutService",␊ + "slug": "internationalcheckoutservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b14f7f85-834b-41fe-866b-571d8a77ab83",␊ + "name": "InternationalPOService",␊ + "slug": "internationalposervice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "de943737-bf8f-4adb-979a-05b083e1b52d",␊ + "name": "InternationalShippingService",␊ + "slug": "internationalshippingservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "dc6e21d4-f0ce-4717-8415-93fd785c7167",␊ + "name": "InventoryService",␊ + "slug": "inventoryservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7859b44c-0ba6-4bf9-b62c-3e438d0c8c81",␊ + "name": "LocalizationService",␊ + "slug": "localizationservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d3b47ee2-1755-446d-88d9-3e44a4b404e2",␊ + "name": "MoreAccountService",␊ + "slug": "moreaccountservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "339c1174-acd0-4740-a0af-3b0e87d2b2d1",␊ + "name": "NavigationService",␊ + "slug": "navigationservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8871105e-ae08-4ebf-81ae-748d6e33941c",␊ + "name": "OrderCreationJob",␊ + "slug": "ordercreationjob",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "9f2b665b-31a7-49e6-b021-d1767e092aa6",␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "bd9fdb62-39ac-4a58-9d83-6b955a938274",␊ + "name": "OrderService",␊ + "slug": "orderservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8a20e29f-bd19-47e8-84aa-38ed9eb3e7fc",␊ + "name": "PaymentMethodService",␊ + "slug": "paymentmethodservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "076bbefa-b4a4-45d4-a01f-cf4edb0b252d",␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "e6611ba6-3b21-46a0-88ec-cf53e6a6b408",␊ + "name": "PaymentService",␊ + "slug": "paymentservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "aeae1f3f-bfff-4a3a-b399-a22b6fef59e4",␊ + "name": "PriceService",␊ + "slug": "priceservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "760cc6d2-e4c3-4781-923c-8edebe20fbc9",␊ + "name": "PrivatesaleService",␊ + "slug": "privatesaleservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ae42ddba-24aa-4bc7-9972-cd0d8d841b7f",␊ + "name": "ProductArrayService",␊ + "slug": "productarrayservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1d2b1206-a025-4717-bc20-ddd0acf14fca",␊ + "name": "ProductDetailService",␊ + "slug": "productdetailservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "b4c83f1e-1d1a-487d-8b38-ff06c3a0f0c6",␊ + "name": "ProductService",␊ + "slug": "productservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "d1c93a27-bf91-4b68-bef1-6e1f7a53c14a",␊ + "name": "ProfileService",␊ + "slug": "profileservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "693659a1-0d46-49aa-925c-2fcf16c07fc1",␊ + "name": "PromoService",␊ + "slug": "promoservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "77c8c92e-452e-4e8e-bbd8-bd7405b88c31",␊ + "name": "PromotionService",␊ + "slug": "promotionservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "ecf54138-7d5f-4e5b-9246-7762550e1082",␊ + "name": "QuestionanswerService",␊ + "slug": "questionanswerservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8b8a8506-fc87-4464-acac-f98b934ed755",␊ + "name": "RedBaloonService",␊ + "slug": "redbaloonservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "1ad6dd4e-15bd-4ea5-a0db-bf071d7958c4",␊ + "name": "Extra service reported by ContainerPilot: RedBaloonService-HTTPS",␊ + "slug": "extra service reported by containerpilot: redbaloonservice-https",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "709971c3-794d-42b5-b2dc-42c51db75c41",␊ + "name": "ReviewsService",␊ + "slug": "reviewsservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "825f73d0-cbf0-4c9e-ab12-0f53128d2444",␊ + "name": "SearchFacetsService",␊ + "slug": "searchfacetsservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5cbfce23-aa82-4aa9-90cd-2f4cb1ff03b6",␊ + "name": "SearchIndexService",␊ + "slug": "searchindexservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2089dfef-01c3-4ff8-8a5d-712edfa6b1c6",␊ + "name": "ShopRunnerService",␊ + "slug": "shoprunnerservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "c62413d0-7eb0-4151-9da5-3b331ffafce0",␊ + "name": "TaxService",␊ + "slug": "taxservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "8d1e1795-0baa-48da-a173-ca9d145dcffa",␊ + "name": "ToggleService",␊ + "slug": "toggleservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "7728f1ff-ad43-416a-acd5-6d4f506a3f48",␊ + "name": "UserAccountService",␊ + "slug": "useraccountservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "6126b9a2-0402-4b1d-b7af-6e4486e0973c",␊ + "name": "UserAuthenticationService",␊ + "slug": "userauthenticationservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "3aba83bf-5f64-4a7f-9232-8c72b1ce43e5",␊ + "name": "WaitlistOverlayService",␊ + "slug": "waitlistoverlayservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4e3f4ead-a110-4e21-b2d4-da3f50d7aab4",␊ + "name": "WaitlistService",␊ + "slug": "waitlistservice",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "2540f59b-5f81-4458-94a1-38e6eef5d78a",␊ + "name": "Consul",␊ + "slug": "consul",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "4c2166aa-9eed-4582-a5c6-9f79d1477bb0",␊ + "name": "Nginx",␊ + "slug": "nginx",␊ + "branches": [],␊ + "__typename": "Service"␊ + },␊ + {␊ + "id": "5e527d47-7a19-439e-b6bb-32c456bd423c",␊ + "name": "MongoDB",␊ + "slug": "mongodb",␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ]␊ + }` + +## should scale down + +> Snapshot 1 + + `{␊ + "createDeploymentGroup": {␊ + "id": "a159172633fc8678215f9e7976f810e5c41ea55b218a271dbed9a5766a30a4d06a4dffcd5b8e7cbfb2f698026d3b5a74b3116ab657ecca797ada9faf20b26a84",␊ + "name": "test4",␊ + "slug": "test4",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "provisionManifest": {␊ + "id": "b484ccaa04323d19897529a328e27c269e431a8da3dcf6addbd6052ac35eb95d87f9154260be20433ca75fd467d1a21536bac564fea51c5d0224b6dda4e3c23f",␊ + "__typename": "Version"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "a159172633fc8678215f9e7976f810e5c41ea55b218a271dbed9a5766a30a4d06a4dffcd5b8e7cbfb2f698026d3b5a74b3116ab657ecca797ada9faf20b26a84",␊ + "name": "test4",␊ + "slug": "test4",␊ + "services": [␊ + {␊ + "id": "b1a78d664cc2dc9caf045737c6a00d2a2f110c4a9bc7cd7ef328555667fd34861431bf382b98dccb0a49272ce6332768d431aa1b625ca7ae024fd509aecf602e",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "d7581608787eca7dd3d4516b17637294ca885265d1d642ef74c95605848f6bf31eb181a1d77e6fe393ea804fcbbd12a06b5b3c1d2a68cbeee0453bddda68209a",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 4 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "a159172633fc8678215f9e7976f810e5c41ea55b218a271dbed9a5766a30a4d06a4dffcd5b8e7cbfb2f698026d3b5a74b3116ab657ecca797ada9faf20b26a84",␊ + "name": "test4",␊ + "slug": "test4",␊ + "services": [␊ + {␊ + "id": "b1a78d664cc2dc9caf045737c6a00d2a2f110c4a9bc7cd7ef328555667fd34861431bf382b98dccb0a49272ce6332768d431aa1b625ca7ae024fd509aecf602e",␊ + "name": "redis",␊ + "status": "ACTIVE",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "d7581608787eca7dd3d4516b17637294ca885265d1d642ef74c95605848f6bf31eb181a1d77e6fe393ea804fcbbd12a06b5b3c1d2a68cbeee0453bddda68209a",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "8c26f01aea189b210c6e0e9788f4721e1f92e43ab7278c4dc7611d1cfe7dd71e1c7467ab5ea6f5937310c3254e1c2a61f14e4e616d7fdca650a1b421fa2a6708",␊ + "name": "redis_1",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "7ddadac24f91eb83c7edfc6ea9b828d7b2c70d3ba13c5e93b804093aa2368fbdb7e1e2a0965f0b988815bb8bd08e3d7f15f88672ec2eaec8b2c4a15364601294",␊ + "name": "redis_2",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "051752bf5bd282e9e256a35621096e39d5ebbfd3803e564850f118213017bb4fd959fc50e3ab10b18ac0b0441e036b3bea02207bacba93b7561a3a538566a392",␊ + "name": "redis_3",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "5c2e2fe2d5c7e5db30f34a1352c9de1c2ff9f8fe92948af8b03eab7ac14958f529aa7528fa6a5bded3ae6c54b63a472385da1c7a03fa5bc5083e94c4d37e6abf",␊ + "name": "redis_4",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "bdef6a0a8e82fb7785e1274c65ab4c59a103ce1942025b434e93e9db1aff19d98ff705a380149e68806416606c444932029c16d8bea279b4b5b68a76f4d5729e",␊ + "name": "redis_5",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "4a5bf5d54634b0c69f8c0744473e4066fda87fe45c9b9df701b4c80f6b4691577932ab12f6a74de89c33a6eb149fba7e80aeb45e35759be0d6db8fb86a9e526e",␊ + "name": "redis_6",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "ae7a855b4d6c773fec3365a1bbdf345c0b75742058a2af5771f84bb58645485a7492a1179996a5afe6c0c87f8beeba2981b4d56bb33a71f6086fff2def5dfdb7",␊ + "name": "redis_7",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "92dc52623ce2522268c9ae884d860e4c4a79ace1a002d7c2851ce8766865e13150b486cd2ed9e8430bdd5f16edbb873fb0d6c779e387c446cbbb2f986b2442ed",␊ + "name": "redis_8",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6d376bed3ad1e3b7f8732d377fde6926ea24b936c97e0fac4ea31683e4fc762fc75db21f399bf990473e028287366fc2609d2d3a378a22575013d1f51a8351c5",␊ + "name": "redis_9",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 5 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "a159172633fc8678215f9e7976f810e5c41ea55b218a271dbed9a5766a30a4d06a4dffcd5b8e7cbfb2f698026d3b5a74b3116ab657ecca797ada9faf20b26a84",␊ + "name": "test4",␊ + "slug": "test4",␊ + "services": [␊ + {␊ + "id": "b1a78d664cc2dc9caf045737c6a00d2a2f110c4a9bc7cd7ef328555667fd34861431bf382b98dccb0a49272ce6332768d431aa1b625ca7ae024fd509aecf602e",␊ + "name": "redis",␊ + "status": "ACTIVE",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "051752bf5bd282e9e256a35621096e39d5ebbfd3803e564850f118213017bb4fd959fc50e3ab10b18ac0b0441e036b3bea02207bacba93b7561a3a538566a392",␊ + "name": "redis_3",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "5c2e2fe2d5c7e5db30f34a1352c9de1c2ff9f8fe92948af8b03eab7ac14958f529aa7528fa6a5bded3ae6c54b63a472385da1c7a03fa5bc5083e94c4d37e6abf",␊ + "name": "redis_4",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "bdef6a0a8e82fb7785e1274c65ab4c59a103ce1942025b434e93e9db1aff19d98ff705a380149e68806416606c444932029c16d8bea279b4b5b68a76f4d5729e",␊ + "name": "redis_5",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "4a5bf5d54634b0c69f8c0744473e4066fda87fe45c9b9df701b4c80f6b4691577932ab12f6a74de89c33a6eb149fba7e80aeb45e35759be0d6db8fb86a9e526e",␊ + "name": "redis_6",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "ae7a855b4d6c773fec3365a1bbdf345c0b75742058a2af5771f84bb58645485a7492a1179996a5afe6c0c87f8beeba2981b4d56bb33a71f6086fff2def5dfdb7",␊ + "name": "redis_7",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "92dc52623ce2522268c9ae884d860e4c4a79ace1a002d7c2851ce8766865e13150b486cd2ed9e8430bdd5f16edbb873fb0d6c779e387c446cbbb2f986b2442ed",␊ + "name": "redis_8",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "6d376bed3ad1e3b7f8732d377fde6926ea24b936c97e0fac4ea31683e4fc762fc75db21f399bf990473e028287366fc2609d2d3a378a22575013d1f51a8351c5",␊ + "name": "redis_9",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +## should scale up + +> Snapshot 1 + + `{␊ + "createDeploymentGroup": {␊ + "id": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ + "name": "test3",␊ + "slug": "test3",␊ + "services": null,␊ + "version": null,␊ + "history": null,␊ + "imported": null,␊ + "status": null,␊ + "__typename": "DeploymentGroup"␊ + }␊ + }` + +> Snapshot 2 + + `{␊ + "provisionManifest": {␊ + "id": "be6839205911ccb2df2151058798cb71254023bdda2838db4051bb093e9115aff0e0d15652487e0d21e1f300b47fd1842cb7f99616815bd26b25c76552e38dbd",␊ + "__typename": "Version"␊ + }␊ + }` + +> Snapshot 3 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ + "name": "test3",␊ + "slug": "test3",␊ + "services": [␊ + {␊ + "id": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ + "name": "redis",␊ + "status": null,␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "11e8afceeed343d05933aaeb6b36f62952e121aab568c9b95e760889d9c5fa387df154317a753a25aa39c065c54ca9ef32cb5d66f00d5d896b99119c43b408d1",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` + +> Snapshot 4 + + `{␊ + "portal": {␊ + "id": "296a92bf-65cd-4787-b5a7-444489a31e04",␊ + "deploymentGroups": [␊ + {␊ + "id": "b1755bacffa36771ba14441da3d4dd8bb5f9f13986993c8b97625a333e8ec9aff1ab20fe1713a32edd5a5d775145fac2caa8075e4d74471e5020d3f199d67238",␊ + "name": "test3",␊ + "slug": "test3",␊ + "services": [␊ + {␊ + "id": "fc255f7d58344da498f5089440fcc4e4b723b5958e6e3963acff7787564583d411c0b74a4df2d99c182ddb51c7e6e3b9579c27396e224fa36618dd95cd5f33f1",␊ + "name": "redis",␊ + "status": "ACTIVE",␊ + "slug": "redis",␊ + "instances": [␊ + {␊ + "id": "11e8afceeed343d05933aaeb6b36f62952e121aab568c9b95e760889d9c5fa387df154317a753a25aa39c065c54ca9ef32cb5d66f00d5d896b99119c43b408d1",␊ + "name": "redis_01",␊ + "status": null,␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "7b99652b94394236ea77dcaea7e753ba8b8e45bb6b92edfc050603ee7365502c40034c0ddfc47db9e6dcd23fe73ef4e290fb04112bdcbfd91006b7fa78dc6b22",␊ + "name": "redis_1",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "a1b6e075ee839ef74e135fbb3e51cf34d3ff72e68650f947ccdb88415c973ccb92d81c4ac031d9ed6a5d90886cca6445691a771b93865a1b1adbf67163355160",␊ + "name": "redis_2",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "0fd2e6d2132485d75e42c9b61058b6145efca8edda5a4b33ce86ad2e57c7ba036c05157490adef720785be825be0f41adecfd21a5bf12ecdabaaa668fd4ac1f7",␊ + "name": "redis_3",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "376a05ae3db3762dde96d7fd1884a8acb6900b423f0adafc7858af617cb12f0513c4c8791ddd35a5872428b7ee9639a4adda20371867deb2e36923b485207931",␊ + "name": "redis_4",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "093ae91c9f8211c7c77ef21f0445c714abcedcfa897071cb4c6b7ee3b8a3bf0d394fd490fc41b70a899847be8fb35b2054aa3a78ffa6abb4c4fb4645814562c6",␊ + "name": "redis_5",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "3ebb36172a1776f6988fceab280230683ddb774add852432788777afcd883a1f616e65c25b0b9eafd91afdb4ec1962e97ec6497045badf44e97a302336c00013",␊ + "name": "redis_6",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "ec89671b19990ca5fbd91df64185329c07ff777d4a4b5cf5f6b35bd95c0e4a9813d809ecf970ca39795465e0550459c4d65ab7fc4e1a8935a49f503719fbdddd",␊ + "name": "redis_7",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "f604bb8c9ce8782ec354de96498f275d74c75d80577fcb880799e7ca21c4607d87441602d8a64af400f6e8635bc82cbbf49bc061bd70701b22c27e7c9fb3514b",␊ + "name": "redis_8",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + },␊ + {␊ + "id": "9be06060df1559987516e8aa452fabb75961883268ccd464599752c9032510ebc3d9b3089cf8e3b5f7ffda1283c32281bfc12887ef0de0e838f0b7a5f9443aef",␊ + "name": "redis_9",␊ + "status": "ACTIVE",␊ + "__typename": "Instance"␊ + }␊ + ],␊ + "branches": [],␊ + "__typename": "Service"␊ + }␊ + ],␊ + "__typename": "DeploymentGroup"␊ + }␊ + ],␊ + "__typename": "Portal"␊ + }␊ + }` \ No newline at end of file diff --git a/packages/cp-gql-mock-server/test/snapshots/index.js.snap b/packages/cp-gql-mock-server/test/snapshots/index.js.snap new file mode 100644 index 0000000000000000000000000000000000000000..8e6be51c0ff3cf05ab4144ca791fca3cb38ded70 GIT binary patch literal 56131 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 literal 0 HcmV?d00001 diff --git a/packages/cp-gql-mock-server/test/tags/all.gql b/packages/cp-gql-mock-server/test/tags/all.gql new file mode 100644 index 00000000..5650d2cf --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/all.gql @@ -0,0 +1,129 @@ +query { + portal { + id + user { + id + firstName + lastName + email + login + } + datacenter { + id + name + region + } + deploymentGroups { + id + name + slug + services { + id + hash + name + slug + instances { + id + name + machineId + status + healthy + watches + jobs + } + connections + branches { + name + slug + instances { + id + name + machineId + status + healthy + watches + jobs + } + } + config { + id + environment { + id + name + value + } + image + labels { + id + name + value + } + ports + } + status + } + version { + id + manifest { + id + type + format + environment + files { + id + name + value + } + raw + } + scale { + id + serviceName + replicas + } + plan { + id + type + service + toProcess + processed + machines + } + hasPlan + error + } + history { + id + manifest { + id + type + format + environment + files { + id + name + value + } + raw + } + scale { + id + serviceName + replicas + } + plan { + id + type + service + toProcess + processed + machines + } + hasPlan + error + } + imported + status + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/create-deployment-group.gql b/packages/cp-gql-mock-server/test/tags/create-deployment-group.gql new file mode 100644 index 00000000..fb8f0c2a --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/create-deployment-group.gql @@ -0,0 +1,114 @@ +mutation createDeploymentGroup($name: String!) { + createDeploymentGroup(name: $name) { + id + name + slug + services { + id + hash + name + slug + instances { + id + name + machineId + status + healthy + watches + jobs + } + connections + branches { + name + slug + instances { + id + name + machineId + status + healthy + watches + jobs + } + } + config { + id + environment { + id + name + value + } + image + labels { + id + name + value + } + ports + } + status + } + version { + id + manifest { + id + type + format + environment + files { + id + name + value + } + raw + } + scale { + id + serviceName + replicas + } + plan { + id + type + service + toProcess + processed + machines + } + hasPlan + error + } + history { + id + manifest { + id + type + format + environment + files { + id + name + value + } + raw + } + scale { + id + serviceName + replicas + } + plan { + id + type + service + toProcess + processed + machines + } + hasPlan + error + } + imported + status + } +} diff --git a/packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql b/packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql new file mode 100644 index 00000000..fd95bea9 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/delete-deployment-group.gql @@ -0,0 +1,5 @@ +mutation deleteDeploymentGroup($id: ID!) { + deleteDeploymentGroup(id: $id) { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/delete-services.gql b/packages/cp-gql-mock-server/test/tags/delete-services.gql new file mode 100644 index 00000000..ace5221b --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/delete-services.gql @@ -0,0 +1,5 @@ +mutation deleteServices($ids: [ID]!) { + deleteServices(ids: $ids) { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql new file mode 100644 index 00000000..16ce2d88 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/deployment-groups-direct-filtered.gql @@ -0,0 +1,27 @@ +query DeploymentGroups($slug: String!) { + deploymentGroups(slug: $slug) { + id + name + slug + services { + id + name + status + slug + instances { + id + name + status + } + branches { + id + name + slug + instances { + id + name + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql new file mode 100644 index 00000000..38f18fb4 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/deployment-groups-direct.gql @@ -0,0 +1,27 @@ +query { + deploymentGroups { + id + name + slug + services { + id + name + status + slug + instances { + id + name + status + } + branches { + id + name + slug + instances { + id + name + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql new file mode 100644 index 00000000..497bbbbb --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/deployment-groups-filtered.gql @@ -0,0 +1,30 @@ +query DeploymentGroups($slug: String!) { + portal { + id + deploymentGroups(slug: $slug) { + id + name + slug + services { + id + name + status + slug + instances { + id + name + status + } + branches { + id + name + slug + instances { + id + name + } + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/deployment-groups.gql b/packages/cp-gql-mock-server/test/tags/deployment-groups.gql new file mode 100644 index 00000000..02160f2c --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/deployment-groups.gql @@ -0,0 +1,9 @@ +query { + portal { + id + deploymentGroups { + id + slug + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql new file mode 100644 index 00000000..3f37ec49 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/instances-direct-filtered.gql @@ -0,0 +1,6 @@ +query DeploymentGroups($iName: String!) { + instances(name: $iName) { + id + name + } +} diff --git a/packages/cp-gql-mock-server/test/tags/instances-direct.gql b/packages/cp-gql-mock-server/test/tags/instances-direct.gql new file mode 100644 index 00000000..14dc63a2 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/instances-direct.gql @@ -0,0 +1,6 @@ +query { + instances { + id + name + } +} diff --git a/packages/cp-gql-mock-server/test/tags/instances-filtered.gql b/packages/cp-gql-mock-server/test/tags/instances-filtered.gql new file mode 100644 index 00000000..6c8450b8 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/instances-filtered.gql @@ -0,0 +1,32 @@ +query DeploymentGroups( + $dgSlug: String! + $sSlug: String! + $iName: String! + $biName: String! +) { + portal { + id + deploymentGroups(slug: $dgSlug) { + id + name + slug + services(slug: $sSlug) { + id + name + slug + instances(name: $iName) { + id + name + } + branches { + name + slug + instances(name: $biName) { + id + name + } + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/instances.gql b/packages/cp-gql-mock-server/test/tags/instances.gql new file mode 100644 index 00000000..4c23cdc9 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/instances.gql @@ -0,0 +1,28 @@ +query { + portal { + id + deploymentGroups { + id + name + slug + services { + id + name + slug + instances { + id + name + } + branches { + id + name + slug + instances { + id + name + } + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/portal-only.gql b/packages/cp-gql-mock-server/test/tags/portal-only.gql new file mode 100644 index 00000000..ead70a99 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/portal-only.gql @@ -0,0 +1,5 @@ +query { + portal { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/provision-manifest.gql b/packages/cp-gql-mock-server/test/tags/provision-manifest.gql new file mode 100644 index 00000000..08ae0a8b --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/provision-manifest.gql @@ -0,0 +1,19 @@ +mutation provisionManifest( + $deploymentGroupId: ID! + $type: ManifestType! + $format: ManifestFormat! + $environment: String! + $files: [KeyValueInput]! + $raw: String! +) { + provisionManifest( + deploymentGroupId: $deploymentGroupId + type: $type + format: $format + environment: $environment + files: $files + raw: $raw + ) { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/restart-services.gql b/packages/cp-gql-mock-server/test/tags/restart-services.gql new file mode 100644 index 00000000..33eb2125 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/restart-services.gql @@ -0,0 +1,5 @@ +mutation restartServices($ids: [ID]!) { + restartServices(ids: $ids) { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/scale.gql b/packages/cp-gql-mock-server/test/tags/scale.gql new file mode 100644 index 00000000..a09dd1f7 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/scale.gql @@ -0,0 +1,11 @@ +mutation scale( + $serviceId: ID! + $replicas: Int! +) { + scale( + serviceId: $serviceId + replicas: $replicas + ) { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql b/packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql new file mode 100644 index 00000000..fd226db5 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/services-direct-filtered.gql @@ -0,0 +1,12 @@ +query DeploymentGroups($sSlug: String!) { + services(slug: $sSlug) { + id + name + slug + branches { + id + name + slug + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/services-direct.gql b/packages/cp-gql-mock-server/test/tags/services-direct.gql new file mode 100644 index 00000000..607e457e --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/services-direct.gql @@ -0,0 +1,12 @@ +query { + services { + id + name + slug + branches { + id + name + slug + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/services-filtered.gql b/packages/cp-gql-mock-server/test/tags/services-filtered.gql new file mode 100644 index 00000000..80f6df1a --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/services-filtered.gql @@ -0,0 +1,19 @@ +query DeploymentGroups($dgSlug: String!, $sSlug: String!) { + portal { + id + deploymentGroups(slug: $dgSlug) { + id + name + slug + services(slug: $sSlug) { + id + name + slug + branches { + name + slug + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/services.gql b/packages/cp-gql-mock-server/test/tags/services.gql new file mode 100644 index 00000000..bd9a66dd --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/services.gql @@ -0,0 +1,20 @@ +query { + portal { + id + deploymentGroups { + id + name + slug + services { + id + name + slug + branches { + id + name + slug + } + } + } + } +} diff --git a/packages/cp-gql-mock-server/test/tags/start-services.gql b/packages/cp-gql-mock-server/test/tags/start-services.gql new file mode 100644 index 00000000..cfd09bb6 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/start-services.gql @@ -0,0 +1,5 @@ +mutation startServices($ids: [ID]!) { + startServices(ids: $ids) { + id + } +} diff --git a/packages/cp-gql-mock-server/test/tags/stop-services.gql b/packages/cp-gql-mock-server/test/tags/stop-services.gql new file mode 100644 index 00000000..91eefe08 --- /dev/null +++ b/packages/cp-gql-mock-server/test/tags/stop-services.gql @@ -0,0 +1,5 @@ +mutation stopServices($ids: [ID]!) { + stopServices(ids: $ids) { + id + } +} diff --git a/packages/cp-gql-schema/schema.gql b/packages/cp-gql-schema/schema.gql index e48742be..3b35259e 100644 --- a/packages/cp-gql-schema/schema.gql +++ b/packages/cp-gql-schema/schema.gql @@ -51,8 +51,8 @@ type ConvergenceAction { id: ID! type: ConvergenceActionType! service: String! # service name - toProcess: Int, # merely used for book keeping - processed: [String], # merely used for book keeping + toProcess: Int # merely used for book keeping + processed: [String] # merely used for book keeping machines: [String]! # current instance machine ids } @@ -122,7 +122,7 @@ type Service { id: ID! # unique id for db row hash: String # unique id for version of service name: String! # human readable name - slug: String! + slug: String! instances(name: String, machineId: ID, status: InstanceStatus): [Instance]! connections: [String] # list of serviceIds branches: [Service] @@ -171,7 +171,7 @@ type Instance { id: ID! name: String! machineId: ID! - status: InstanceStatus! + status: InstanceStatus healthy: HealthyStatus watches: [String] jobs: [String] @@ -179,7 +179,6 @@ type Instance { type Datacenter { id: ID! - url: String! name: String! region: String! } @@ -193,22 +192,56 @@ type Query { deploymentGroup(id: ID, name: String, slug: String): DeploymentGroup serviceScales(serviceName: String, versionId: ID): [ServiceScale] serviceScale(id: ID!): ServiceScale - convergenceActions(type: ConvergenceActionType, service: String, versionId: ID): [ConvergenceAction] + convergenceActions( + type: ConvergenceActionType + service: String + versionId: ID + ): [ConvergenceAction] convergenceAction(id: ID!): ConvergenceAction versions(manifestId: ID, deploymentGroupId: ID): [Version] version(id: ID, manifestId: ID): Version manifests(type: String, deploymentGroupId: ID): [Manifest] manifest(id: ID!): Manifest - services(name: String, slug: String, parentId: ID, deploymentGroupId: ID, deploymentGroupSlug: String): [Service] + services( + name: String + slug: String + parentId: ID + deploymentGroupId: ID + deploymentGroupSlug: String + ): [Service] service(id: ID, hash: ID): Service - packages(name: String, type: String, memory: Int, disk: Int, swap: Int, lwps: Int, vcpus: Int, version: String, group: String): [Package] + packages( + name: String + type: String + memory: Int + disk: Int + swap: Int + lwps: Int + vcpus: Int + version: String + group: String + ): [Package] package(id: ID!): Package - instances(name: String!, machineId: ID, status: InstanceStatus, serviceId: ID, serviceSlug: String, deploymentGroupId: ID, deploymentGroupSlug: String): [Instance] + instances( + name: String + machineId: ID + status: InstanceStatus + serviceId: ID + serviceSlug: String + deploymentGroupId: ID + deploymentGroupSlug: String + ): [Instance] instance(id: ID!): Instance datacenter(id: ID, region: String): Datacenter datacenters: [Datacenter] - - config(deploymentGroupName: String!, type: ManifestType!, format: ManifestFormat!, environment: String!, files: [KeyValueInput]!, raw: String!): [Service] + config( + deploymentGroupName: String! + type: ManifestType! + format: ManifestFormat! + environment: String! + files: [KeyValueInput]! + raw: String! + ): [Service] importableDeploymentGroups: [DeploymentGroup] } @@ -216,19 +249,22 @@ type Mutation { createDeploymentGroup(name: String!): DeploymentGroup updateDeploymentGroup(id: ID!, name: String!): DeploymentGroup deleteDeploymentGroup(id: ID!): DeploymentGroup - - provisionManifest(deploymentGroupId: ID!, type: ManifestType!, format: ManifestFormat!, environment: String!, files: [KeyValueInput]!, raw: String!): Version + provisionManifest( + deploymentGroupId: ID! + type: ManifestType! + format: ManifestFormat! + environment: String! + files: [KeyValueInput]! + raw: String! + ): Version scale(serviceId: ID!, replicas: Int!): Version - stopServices(ids: [ID]!): [Service] startServices(ids: [ID]!): [Service] restartServices(ids: [ID]!): [Service] deleteServices(ids: [ID]!): [Service] - stopInstances(ids: [ID]!): [Instance] startInstances(ids: [ID]!): [Instance] restartInstances(ids: [ID]!): [Instance] - importDeploymentGroup(deploymentGroupSlug: String!): DeploymentGroup deleteDeploymentGroup(id: ID!): DeploymentGroup } diff --git a/packages/pseudo-json-ast/package.json b/packages/pseudo-json-ast/package.json index 2e92e194..e56781a9 100644 --- a/packages/pseudo-json-ast/package.json +++ b/packages/pseudo-json-ast/package.json @@ -38,7 +38,7 @@ "lodash.isundefined": "^3.0.1" }, "devDependencies": { - "ava": "0.19.1", + "ava": "^0.21.0", "babel-plugin-istanbul": "^4.1.4", "babel-preset-env": "^1.5.2", "babel-register": "^6.24.1", @@ -46,7 +46,7 @@ "cross-env": "^5.0.1", "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", - "nyc": "^11.0.2", + "nyc": "^11.0.3", "redrun": "^5.9.15", "tap-xunit": "^1.7.0" }, diff --git a/packages/pseudo-yaml-ast/package.json b/packages/pseudo-yaml-ast/package.json index 34f12e4e..6194e05e 100644 --- a/packages/pseudo-yaml-ast/package.json +++ b/packages/pseudo-yaml-ast/package.json @@ -40,7 +40,7 @@ "yaml-ast-parser": "0.0.33" }, "devDependencies": { - "ava": "0.19.1", + "ava": "^0.21.0", "babel-plugin-istanbul": "^4.1.4", "babel-preset-env": "^1.5.2", "babel-register": "^6.24.1", @@ -48,7 +48,7 @@ "cross-env": "^5.0.1", "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", - "nyc": "^11.0.2", + "nyc": "^11.0.3", "redrun": "^5.9.15", "tap-xunit": "^1.7.0" }, diff --git a/packages/remcalc/package.json b/packages/remcalc/package.json index 6e6911d2..52a87850 100644 --- a/packages/remcalc/package.json +++ b/packages/remcalc/package.json @@ -28,7 +28,7 @@ "lodash.flatten": "^4.4.0" }, "devDependencies": { - "ava": "0.19.1", + "ava": "^0.21.0", "babel-plugin-istanbul": "^4.1.4", "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", "babel-plugin-transform-es2015-parameters": "^6.24.1", @@ -39,7 +39,7 @@ "cross-env": "^5.0.1", "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", - "nyc": "^11.0.2", + "nyc": "^11.0.3", "tap-xunit": "^1.7.0" }, "nyc": { diff --git a/packages/rnd-id/package.json b/packages/rnd-id/package.json index ea2a437d..09f975e8 100644 --- a/packages/rnd-id/package.json +++ b/packages/rnd-id/package.json @@ -24,7 +24,7 @@ "random-natural": "^1.0.3" }, "devDependencies": { - "ava": "0.19.1", + "ava": "^0.21.0", "babel-plugin-istanbul": "^4.1.4", "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", "babel-plugin-transform-es2015-template-literals": "^6.22.0", @@ -34,7 +34,7 @@ "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", "lodash.uniq": "^4.5.0", - "nyc": "^11.0.2", + "nyc": "^11.0.3", "tap-xunit": "^1.7.0" }, "nyc": { diff --git a/packages/styled-is/package.json b/packages/styled-is/package.json index 17ab0f5b..22dfbf62 100644 --- a/packages/styled-is/package.json +++ b/packages/styled-is/package.json @@ -27,7 +27,7 @@ "prepublish": "redrun build" }, "devDependencies": { - "ava": "0.19.1", + "ava": "^0.21.0", "babel-plugin-istanbul": "^4.1.4", "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", "babel-plugin-transform-es2015-parameters": "^6.24.1", @@ -38,7 +38,7 @@ "cross-env": "^5.0.1", "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", - "nyc": "^11.0.2", + "nyc": "^11.0.3", "react": "^15.6.1", "redrun": "^5.9.15", "styled-components": "^2.1.0", diff --git a/packages/unitcalc/package.json b/packages/unitcalc/package.json index 4408a652..2ae79c7e 100644 --- a/packages/unitcalc/package.json +++ b/packages/unitcalc/package.json @@ -31,7 +31,7 @@ "remcalc": "^1.0.8" }, "devDependencies": { - "ava": "0.19.1", + "ava": "^0.21.0", "babel-plugin-istanbul": "^4.1.4", "babel-plugin-transform-es2015-arrow-functions": "^6.22.0", "babel-plugin-transform-es2015-parameters": "^6.24.1", @@ -41,7 +41,7 @@ "cross-env": "^5.0.1", "eslint": "^3.19.0", "eslint-config-joyent-portal": "2.0.0", - "nyc": "^11.0.2", + "nyc": "^11.0.3", "tap-xunit": "^1.7.0" }, "nyc": { diff --git a/yarn.lock b/yarn.lock index 425ee125..37a5848b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6,7 +6,7 @@ version "2.0.0" resolved "https://registry.yarnpkg.com/@ava/babel-plugin-throws-helper/-/babel-plugin-throws-helper-2.0.0.tgz#2fc1fe3c211a71071a4eca7b8f7af5842cd1ae7c" -"@ava/babel-preset-stage-4@^1.0.0": +"@ava/babel-preset-stage-4@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@ava/babel-preset-stage-4/-/babel-preset-stage-4-1.1.0.tgz#ae60be881a0babf7d35f52aba770d1f6194f76bd" dependencies: @@ -30,18 +30,25 @@ "@ava/babel-plugin-throws-helper" "^2.0.0" babel-plugin-espower "^2.3.2" -"@ava/pretty-format@^1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@ava/pretty-format/-/pretty-format-1.1.0.tgz#d0a57d25eb9aeab9643bdd1a030642b91c123e28" +"@ava/write-file-atomic@^2.2.0": + version "2.2.0" + resolved "https://registry.yarnpkg.com/@ava/write-file-atomic/-/write-file-atomic-2.2.0.tgz#d625046f3495f1f5e372135f473909684b429247" dependencies: - ansi-styles "^2.2.1" - esutils "^2.0.2" + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + slide "^1.1.5" + +"@concordance/react@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@concordance/react/-/react-1.0.0.tgz#fcf3cad020e5121bfd1c61d05bc3516aac25f734" + dependencies: + arrify "^1.0.1" "@types/async@^2.0.31": version "2.0.40" resolved "https://registry.yarnpkg.com/@types/async/-/async-2.0.40.tgz#ac02de68e66c004a61b7cb16df8b1db3a254cca9" -"@types/graphql@^0.9.0": +"@types/graphql@^0.9.0", "@types/graphql@^0.9.4": version "0.9.4" resolved "https://registry.yarnpkg.com/@types/graphql/-/graphql-0.9.4.tgz#cdeb6bcbef9b6c584374b81aa7f48ecf3da404fa" @@ -49,6 +56,10 @@ version "0.0.34" resolved "https://registry.yarnpkg.com/@types/isomorphic-fetch/-/isomorphic-fetch-0.0.34.tgz#3c3483e606c041378438e951464f00e4e60706d6" +"@types/zen-observable@^0.5.1": + version "0.5.1" + resolved "https://registry.yarnpkg.com/@types/zen-observable/-/zen-observable-0.5.1.tgz#c0eab942b4d52934f396de0cd8e2e63fc92a3307" + JSONStream@0.10.0: version "0.10.0" resolved "https://registry.yarnpkg.com/JSONStream/-/JSONStream-0.10.0.tgz#74349d0d89522b71f30f0a03ff9bd20ca6f12ac0" @@ -199,10 +210,10 @@ ansi-styles@^2.2.1: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" ansi-styles@^3.0.0, ansi-styles@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.1.0.tgz#09c202d5c917ec23188caa5c9cb9179cd9547750" + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88" dependencies: - color-convert "^1.0.0" + color-convert "^1.9.0" ansi-styles@~1.0.0: version "1.0.0" @@ -234,6 +245,40 @@ apollo-client@^1.4.0: "@types/graphql" "^0.9.0" "@types/isomorphic-fetch" "0.0.34" +apollo-client@^1.9.0-1: + version "1.9.0-1" + resolved "https://registry.yarnpkg.com/apollo-client/-/apollo-client-1.9.0-1.tgz#4f5dccb95e0413b884af91b68552618be8a7411c" + dependencies: + apollo-link "^0.0.3" + graphql "^0.10.0" + graphql-anywhere "^3.0.1" + graphql-tag "^2.0.0" + redux "^3.4.0" + symbol-observable "^1.0.2" + whatwg-fetch "^2.0.0" + optionalDependencies: + "@types/async" "^2.0.31" + "@types/graphql" "^0.9.0" + "@types/isomorphic-fetch" "0.0.34" + +apollo-fetch@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/apollo-fetch/-/apollo-fetch-0.3.0.tgz#30a88346252e9bb4b969f93f3b23ecd748f84e68" + dependencies: + isomorphic-fetch "^2.2.1" + +apollo-link@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/apollo-link/-/apollo-link-0.0.3.tgz#9b02db8def792688e14f8be8b30f716f7789acb9" + dependencies: + apollo-fetch "^0.3.0" + graphql "^0.10.3" + graphql-tag "^2.4.2" + zen-observable "git+https://github.com/evanshauser/zen-observable.git" + optionalDependencies: + "@types/graphql" "^0.9.4" + "@types/zen-observable" "^0.5.1" + apollo@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/apollo/-/apollo-0.2.2.tgz#e409f53765bbf98efa3d127a2789c63bccd025d6" @@ -497,9 +542,9 @@ ast-types@0.9.0: version "0.9.0" resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.0.tgz#c8721c8747ae4d5b29b929e99c5317b4e8745623" -ast-types@0.9.6: - version "0.9.6" - resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9" +ast-types@0.9.11: + version "0.9.11" + resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.11.tgz#371177bb59232ff5ceaa1d09ee5cad705b1a5aa9" async-each@^1.0.0: version "1.0.1" @@ -552,24 +597,26 @@ ava-init@^0.2.0: read-pkg-up "^2.0.0" write-pkg "^3.1.0" -ava@0.19.1: - version "0.19.1" - resolved "https://registry.yarnpkg.com/ava/-/ava-0.19.1.tgz#43dd82435ad19b3980ffca2488f05daab940b273" +ava@^0.21.0: + version "0.21.0" + resolved "https://registry.yarnpkg.com/ava/-/ava-0.21.0.tgz#cd8d8ea3546f57150dea38548b9f72f8ca583d29" dependencies: - "@ava/babel-preset-stage-4" "^1.0.0" + "@ava/babel-preset-stage-4" "^1.1.0" "@ava/babel-preset-transform-test-files" "^3.0.0" - "@ava/pretty-format" "^1.1.0" + "@ava/write-file-atomic" "^2.2.0" + "@concordance/react" "^1.0.0" + ansi-escapes "^2.0.0" + ansi-styles "^3.1.0" arr-flatten "^1.0.1" array-union "^1.0.1" array-uniq "^1.0.2" arrify "^1.0.0" auto-bind "^1.1.0" ava-init "^0.2.0" - babel-code-frame "^6.16.0" babel-core "^6.17.0" bluebird "^3.0.0" caching-transform "^1.0.0" - chalk "^1.0.0" + chalk "^2.0.1" chokidar "^1.4.2" clean-stack "^1.1.1" clean-yaml-object "^0.1.0" @@ -579,59 +626,59 @@ ava@0.19.1: co-with-promise "^4.6.0" code-excerpt "^2.1.0" common-path-prefix "^1.0.0" + concordance "^3.0.0" convert-source-map "^1.2.0" core-assert "^0.2.0" currently-unhandled "^0.4.1" debug "^2.2.0" - diff "^3.0.1" - diff-match-patch "^1.0.0" dot-prop "^4.1.0" empower-core "^0.6.1" equal-length "^1.0.0" figures "^2.0.0" - find-cache-dir "^0.1.1" + find-cache-dir "^1.0.0" fn-name "^2.0.0" get-port "^3.0.0" globby "^6.0.0" has-flag "^2.0.0" - hullabaloo-config-manager "^1.0.0" + hullabaloo-config-manager "^1.1.0" ignore-by-default "^1.0.0" + import-local "^0.1.1" indent-string "^3.0.0" is-ci "^1.0.7" is-generator-fn "^1.0.0" is-obj "^1.0.0" is-observable "^0.2.0" is-promise "^2.1.0" - jest-diff "19.0.0" - jest-snapshot "19.0.2" js-yaml "^3.8.2" last-line-stream "^1.0.0" + lodash.clonedeepwith "^4.5.0" lodash.debounce "^4.0.3" lodash.difference "^4.3.0" lodash.flatten "^4.2.0" - lodash.isequal "^4.5.0" loud-rejection "^1.2.0" - matcher "^0.1.1" + make-dir "^1.0.0" + matcher "^1.0.0" md5-hex "^2.0.0" meow "^3.7.0" - mkdirp "^0.5.1" - ms "^0.7.1" + ms "^2.0.0" multimatch "^2.1.0" observable-to-promise "^0.5.0" - option-chain "^0.1.0" + option-chain "^1.0.0" package-hash "^2.0.0" pkg-conf "^2.0.0" plur "^2.0.0" pretty-ms "^2.0.0" require-precompiled "^0.1.0" - resolve-cwd "^1.0.0" + resolve-cwd "^2.0.0" + safe-buffer "^5.1.1" slash "^1.0.0" source-map-support "^0.4.0" stack-utils "^1.0.0" - strip-ansi "^3.0.1" + strip-ansi "^4.0.0" strip-bom-buf "^1.0.0" - supports-color "^3.2.3" + supports-color "^4.0.0" time-require "^0.1.2" + trim-off-newlines "^1.0.1" unique-temp-dir "^1.0.0" update-notifier "^2.1.0" @@ -1431,8 +1478,8 @@ bigspinner@3.1.0: resolved "https://registry.yarnpkg.com/bigspinner/-/bigspinner-3.1.0.tgz#dd3a862b2fedf66fee8471320069428d0d84427a" binary-extensions@^1.0.0: - version "1.8.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.8.0.tgz#48ec8d16df4377eae5fa5884682480af4d95c774" + version "1.9.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.9.0.tgz#66506c16ce6f4d6928a5b3cd6a33ca41e941e37b" bindings@~1.2.1: version "1.2.1" @@ -1503,8 +1550,8 @@ bossy@3.x.x: joi "10.x.x" boxen@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.0.tgz#03478d84be7fe02189b80904d81d6a80384368f1" + version "1.2.1" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.2.1.tgz#0f11e7fe344edb9397977fc13ede7f64d956481d" dependencies: ansi-align "^2.0.0" camelcase "^4.0.0" @@ -1610,11 +1657,11 @@ browserslist@^1.1.1, browserslist@^1.1.3, browserslist@^1.7.6: electron-to-chromium "^1.2.7" browserslist@^2.1.2: - version "2.2.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.2.0.tgz#5e35ec993e467c6464b8cb708447386891de9f50" + version "2.2.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-2.2.2.tgz#e9b4618b8a01c193f9786beea09f6fd10dbe31c3" dependencies: - caniuse-lite "^1.0.30000701" - electron-to-chromium "^1.3.15" + caniuse-lite "^1.0.30000704" + electron-to-chromium "^1.3.16" brule@^2.0.0: version "2.0.0" @@ -1776,12 +1823,12 @@ camelcase@^4.0.0, camelcase@^4.1.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" caniuse-db@^1.0.30000187, caniuse-db@^1.0.30000634, caniuse-db@^1.0.30000639: - version "1.0.30000704" - resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000704.tgz#8c5aa6fed8058e65c70f2c1f5d63f7088650705c" + version "1.0.30000706" + resolved "https://registry.yarnpkg.com/caniuse-db/-/caniuse-db-1.0.30000706.tgz#e2b5f0460573cbcc88a0985f5cced08f1617c6f5" -caniuse-lite@^1.0.30000701: - version "1.0.30000704" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000704.tgz#adb6ea01134515663682db93abab291d4c02946b" +caniuse-lite@^1.0.30000704: + version "1.0.30000706" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000706.tgz#bc59abc41ba7d4a3634dda95befded6114e1f24e" capture-stack-trace@^1.0.0: version "1.0.0" @@ -1907,8 +1954,8 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: safe-buffer "^5.0.1" circular-json@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.1.tgz#be8b36aefccde8b3ca7aa2d6afc07a37242c0d2d" + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" clamp@^1.0.1: version "1.0.1" @@ -1953,10 +2000,10 @@ cli-spinners@^1.0.0: resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.0.0.tgz#ef987ed3d48391ac3dab9180b406a742180d6e6a" cli-truncate@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.0.0.tgz#21eb91f47b3f6560f004db77a769b4668d9c5518" + version "1.1.0" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-1.1.0.tgz#2b2dfd83c53cfd3572b87fc4d430a808afb04086" dependencies: - slice-ansi "0.0.4" + slice-ansi "^1.0.0" string-width "^2.0.0" cli-width@^2.0.0: @@ -2055,7 +2102,7 @@ collapse-white-space@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.3.tgz#4b906f670e5a963a87b76b0e1689643341b6023c" -color-convert@^1.0.0: +color-convert@^1.9.0: version "1.9.0" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.0.tgz#1accf97dd739b983bf994d56fec8f95853641b7a" dependencies: @@ -2144,6 +2191,22 @@ concat-stream@~1.5.1: readable-stream "~2.0.0" typedarray "~0.0.5" +concordance@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/concordance/-/concordance-3.0.0.tgz#b2286af54405fc995fc7345b0b106d8dd073cb29" + dependencies: + date-time "^2.1.0" + esutils "^2.0.2" + fast-diff "^1.1.1" + function-name-support "^0.2.0" + js-string-escape "^1.0.1" + lodash.clonedeep "^4.5.0" + lodash.flattendeep "^4.4.0" + lodash.merge "^4.6.0" + md5-hex "^2.0.0" + semver "^5.3.0" + well-known-symbols "^1.0.0" + configstore@^1.0.0: version "1.4.0" resolved "https://registry.yarnpkg.com/configstore/-/configstore-1.4.0.tgz#c35781d0501d268c25c54b8b17f6240e8a4fb021" @@ -2439,7 +2502,7 @@ core-js@^1.0.0: version "1.2.7" resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636" -core-js@^2.0.0, core-js@^2.4.0: +core-js@^2.0.0, core-js@^2.4.0, core-js@^2.4.1: version "2.4.1" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e" @@ -2454,8 +2517,8 @@ cors@2.8.1: vary "^1" cosmiconfig@^2.1.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.1.tgz#7fbdc6fb47597d5f88175de1df696b66d36e5944" + version "2.2.2" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-2.2.2.tgz#6173cebd56fac042c1f4390edf7af6c07c7cb892" dependencies: is-directory "^0.3.1" js-yaml "^3.4.3" @@ -2513,7 +2576,7 @@ cross-env@^5.0.1: cross-spawn "^5.1.0" is-windows "^1.0.0" -cross-spawn@^4, cross-spawn@^4.0.0: +cross-spawn@^4: version "4.0.2" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-4.0.2.tgz#7b9247621c23adfdd3856004a823cbe397424d41" dependencies: @@ -2875,6 +2938,12 @@ date-time@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/date-time/-/date-time-0.1.1.tgz#ed2f6d93d9790ce2fd66d5b5ff3edd5bbcbf3b07" +date-time@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/date-time/-/date-time-2.1.0.tgz#0286d1b4c769633b3ca13e1e62558d2dbdc2eba2" + dependencies: + time-zone "^1.0.0" + dateformat@^1.0.11, dateformat@^1.0.12: version "1.0.12" resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9" @@ -2969,6 +3038,12 @@ del@^2.0.2: pinkie-promise "^2.0.0" rimraf "^2.2.8" +delay@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/delay/-/delay-2.0.0.tgz#9112eadc03e4ec7e00297337896f273bbd91fae5" + dependencies: + p-defer "^1.0.0" + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -3013,11 +3088,7 @@ dictionary-en-us@^1.0.2: version "1.2.1" resolved "https://registry.yarnpkg.com/dictionary-en-us/-/dictionary-en-us-1.2.1.tgz#d21009edaccab49fae8eefdc483da83438526b5f" -diff-match-patch@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/diff-match-patch/-/diff-match-patch-1.0.0.tgz#1cc3c83a490d67f95d91e39f6ad1f2e086b63048" - -diff@3.x.x, diff@^3.0.0, diff@^3.0.1, diff@^3.2.0: +diff@3.x.x, diff@^3.0.0, diff@^3.2.0: version "3.3.0" resolved "https://registry.yarnpkg.com/diff/-/diff-3.3.0.tgz#056695150d7aa93237ca7e378ac3b1682b7963b9" @@ -3092,8 +3163,8 @@ dot-prop@^3.0.0: is-obj "^1.0.0" dot-prop@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.1.1.tgz#a8493f0b7b5eeec82525b5c7587fa7de7ca859c1" + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" dependencies: is-obj "^1.0.0" @@ -3158,7 +3229,7 @@ ee-first@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" -electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.15: +electron-to-chromium@^1.2.7, electron-to-chromium@^1.3.16: version "1.3.16" resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.16.tgz#d0e026735754770901ae301a21664cba45d92f7d" @@ -3212,13 +3283,13 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: once "^1.4.0" enhanced-resolve@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.3.0.tgz#950964ecc7f0332a42321b673b38dc8ff15535b3" + version "3.4.1" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz#0421e339fd71419b3da13d129b3979040230476e" dependencies: graceful-fs "^4.1.2" memory-fs "^0.4.0" object-assign "^4.0.1" - tapable "^0.2.5" + tapable "^0.2.7" equal-length@^1.0.0: version "1.0.1" @@ -3530,14 +3601,10 @@ esprima@^2.6.0, esprima@~2.7.1: version "2.7.3" resolved "https://registry.yarnpkg.com/esprima/-/esprima-2.7.3.tgz#96e3b70d5779f6ad49cd032673d1c312767ba581" -esprima@^4.0.0: +esprima@^4.0.0, esprima@~4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.0.tgz#4499eddcd1110e0b218bacf2fa7f7f59f55ca804" -esprima@~3.1.0: - version "3.1.3" - resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" - espurify@^1.6.0: version "1.7.0" resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.7.0.tgz#1c5cf6cbccc32e6f639380bd4f991fab9ba9d226" @@ -3606,18 +3673,6 @@ evp_bytestokey@^1.0.0: dependencies: create-hash "^1.1.1" -execa@^0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-0.5.1.tgz#de3fb85cb8d6e91c85bcbceb164581785cb57b36" - dependencies: - cross-spawn "^4.0.0" - get-stream "^2.2.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - execa@^0.6.3: version "0.6.3" resolved "https://registry.yarnpkg.com/execa/-/execa-0.6.3.tgz#57b69a594f081759c69e5370f0d17b9cb11658fe" @@ -3754,6 +3809,10 @@ falafel@^1.2.0: isarray "0.0.1" object-keys "^1.0.6" +fast-diff@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.1.1.tgz#0aea0e4e605b6a2189f0e936d4b7fbaf1b7cfd9b" + fast-levenshtein@~2.0.4: version "2.0.6" resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" @@ -3767,8 +3826,8 @@ fast-safe-stringify@^1.1.3: resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-1.2.0.tgz#ebd42666fd18fe4f2ba4f0d295065f3f85cade96" fbjs@^0.8.5, fbjs@^0.8.9: - version "0.8.12" - resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.12.tgz#10b5d92f76d45575fd63a217d4ea02bea2f8ed04" + version "0.8.14" + resolved "https://registry.yarnpkg.com/fbjs/-/fbjs-0.8.14.tgz#d1dbe2be254c35a91e09f31f9cd50a40b2a0ed1c" dependencies: core-js "^1.0.0" isomorphic-fetch "^2.1.1" @@ -3836,6 +3895,14 @@ find-cache-dir@^0.1.1: mkdirp "^0.5.1" pkg-dir "^1.0.0" +find-cache-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^2.0.0" + find-parent-dir@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" @@ -3983,6 +4050,10 @@ function-bind@^1.0.2, function-bind@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.0.tgz#16176714c801798e4e8f2cf7f7529467bb4a5771" +function-name-support@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/function-name-support/-/function-name-support-0.2.0.tgz#55d3bfaa6eafd505a50f9bc81fdf57564a0bb071" + fuzzyset.js@^0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/fuzzyset.js/-/fuzzyset.js-0.0.1.tgz#979e22f9451b4b38f051f7937c919dbacc692958" @@ -4054,13 +4125,6 @@ get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" -get-stream@^2.2.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de" - dependencies: - object-assign "^4.0.1" - pinkie-promise "^2.0.0" - get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" @@ -4284,11 +4348,11 @@ graphql-anywhere@^3.0.0, graphql-anywhere@^3.0.1: version "3.1.0" resolved "https://registry.yarnpkg.com/graphql-anywhere/-/graphql-anywhere-3.1.0.tgz#3ea0d8e8646b5cee68035016a9a7557c15c21e96" -graphql-tag@^2.0.0, graphql-tag@^2.4.0: +graphql-tag@^2.0.0, graphql-tag@^2.4.0, graphql-tag@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/graphql-tag/-/graphql-tag-2.4.2.tgz#6a63297d8522d03a2b72d26f1b239aab343840cd" -graphql@^0.10.0, graphql@^0.10.1: +graphql@^0.10.0, graphql@^0.10.1, graphql@^0.10.3: version "0.10.5" resolved "https://registry.yarnpkg.com/graphql/-/graphql-0.10.5.tgz#c9be17ca2bdfdbd134077ffd9bbaa48b8becd298" dependencies: @@ -4431,6 +4495,12 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.0" +hasha@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/hasha/-/hasha-3.0.0.tgz#52a32fab8569d41ca69a61ff1a214f8eb7c8bd39" + dependencies: + is-stream "^1.0.1" + hawk@~3.1.3: version "3.1.3" resolved "https://registry.yarnpkg.com/hawk/-/hawk-3.1.3.tgz#078444bd7c1640b0fe540d2c9b73d59678e8e1c4" @@ -4482,9 +4552,9 @@ hoist-non-react-statics@^1.0.3, hoist-non-react-statics@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-1.2.0.tgz#aa448cf0986d55cc40773b17174b7dd066cb7cfb" -hoist-non-react-statics@^2.0.0, hoist-non-react-statics@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.2.0.tgz#b099ca82f3640b1244309c8a526a2bd60ad9d7d9" +hoist-non-react-statics@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/hoist-non-react-statics/-/hoist-non-react-statics-2.2.1.tgz#a7e41c760121d0abfc7a2339b331d29a26389e52" home-or-tmp@^2.0.0: version "2.0.0" @@ -4534,7 +4604,7 @@ https-browserify@0.0.1: version "0.0.1" resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-0.0.1.tgz#3f91365cabe60b77ed0ebba24b454e3e09d95a82" -hullabaloo-config-manager@^1.0.0: +hullabaloo-config-manager@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/hullabaloo-config-manager/-/hullabaloo-config-manager-1.1.1.tgz#1d9117813129ad035fd9e8477eaf066911269fe3" dependencies: @@ -4590,6 +4660,13 @@ import-lazy@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" +import-local@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-0.1.1.tgz#b1179572aacdc11c6a91009fb430dbcab5f668a8" + dependencies: + pkg-dir "^2.0.0" + resolve-cwd "^2.0.0" + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -4601,8 +4678,8 @@ indent-string@^2.1.0: repeating "^2.0.0" indent-string@^3.0.0, indent-string@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.1.0.tgz#08ff4334603388399b329e6b9538dc7a3cf5de7d" + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" indexes-of@^1.0.1: version "1.0.1" @@ -4613,15 +4690,15 @@ indexof@0.0.1: resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" inert@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/inert/-/inert-4.2.0.tgz#6aa5da8ce19982eb72aabef4bdda64fd6750b005" + version "4.2.1" + resolved "https://registry.yarnpkg.com/inert/-/inert-4.2.1.tgz#da743c478a18a8378032f80ada128a28cd2bba93" dependencies: ammo "2.x.x" - boom "4.x.x" + boom "5.x.x" hoek "4.x.x" items "2.x.x" joi "10.x.x" - lru-cache "4.0.x" + lru-cache "4.1.x" infinity-agent@^2.0.0: version "2.0.3" @@ -4665,8 +4742,8 @@ inquirer@^0.12.0: through "^2.3.6" inquirer@^3.0.2, inquirer@^3.0.6, inquirer@^3.1.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.0.tgz#45b44c2160c729d7578c54060b3eed94487bb42b" + version "3.2.1" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.2.1.tgz#06ceb0f540f45ca548c17d6840959878265fa175" dependencies: ansi-escapes "^2.0.0" chalk "^2.0.0" @@ -4705,9 +4782,9 @@ ip@^1.0.2: version "1.1.5" resolved "https://registry.yarnpkg.com/ip/-/ip-1.1.5.tgz#bdded70114290828c0a039e72ef25f5aaec4354a" -ipaddr.js@1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.3.0.tgz#1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec" +ipaddr.js@1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.4.0.tgz#296aca878a821816e5b85d0a285a99bcff4582f0" iron@4.x.x: version "4.0.5" @@ -5033,7 +5110,7 @@ isobject@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" -isomorphic-fetch@^2.1.1: +isomorphic-fetch@^2.1.1, isomorphic-fetch@^2.2.1: version "2.2.1" resolved "https://registry.yarnpkg.com/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz#611ae1acf14f5e81f729507472819fe9733558a9" dependencies: @@ -5130,15 +5207,6 @@ jest-diff@18.1.0, jest-diff@^18.1.0: jest-matcher-utils "^18.1.0" pretty-format "^18.1.0" -jest-diff@19.0.0, jest-diff@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-19.0.0.tgz#d1563cfc56c8b60232988fbc05d4d16ed90f063c" - dependencies: - chalk "^1.1.3" - diff "^3.0.0" - jest-matcher-utils "^19.0.0" - pretty-format "^19.0.0" - jest-diff@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-20.0.3.tgz#81f288fd9e675f0fb23c75f1c2b19445fe586617" @@ -5152,10 +5220,6 @@ jest-file-exists@^17.0.0: version "17.0.0" resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-17.0.0.tgz#7f63eb73a1c43a13f461be261768b45af2cdd169" -jest-file-exists@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jest-file-exists/-/jest-file-exists-19.0.0.tgz#cca2e587a11ec92e24cfeab3f8a94d657f3fceb8" - jest-junit@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/jest-junit/-/jest-junit-1.5.1.tgz#f6e48203e691f827530f21fb509f8c0da75ca15b" @@ -5170,13 +5234,6 @@ jest-matcher-utils@^18.1.0: chalk "^1.1.3" pretty-format "^18.1.0" -jest-matcher-utils@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-19.0.0.tgz#5ecd9b63565d2b001f61fbf7ec4c7f537964564d" - dependencies: - chalk "^1.1.3" - pretty-format "^19.0.0" - jest-matcher-utils@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-20.0.3.tgz#b3a6b8e37ca577803b0832a98b164f44b7815612" @@ -5184,13 +5241,6 @@ jest-matcher-utils@^20.0.3: chalk "^1.1.3" pretty-format "^20.0.3" -jest-message-util@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-19.0.0.tgz#721796b89c0e4d761606f9ba8cb828a3b6246416" - dependencies: - chalk "^1.1.1" - micromatch "^2.3.11" - jest-message-util@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-20.0.3.tgz#6aec2844306fcb0e6e74d5796c1006d96fdd831c" @@ -5203,10 +5253,6 @@ jest-mock@^18.0.0: version "18.0.0" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-18.0.0.tgz#5c248846ea33fa558b526f5312ab4a6765e489b3" -jest-mock@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-19.0.0.tgz#67038641e9607ab2ce08ec4a8cb83aabbc899d01" - jest-mock@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-20.0.3.tgz#8bc070e90414aa155c11a8d64c869a0d5c71da59" @@ -5222,18 +5268,6 @@ jest-snapshot@18.1.0: natural-compare "^1.4.0" pretty-format "^18.1.0" -jest-snapshot@19.0.2: - version "19.0.2" - resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-19.0.2.tgz#9c1b216214f7187c38bfd5c70b1efab16b0ff50b" - dependencies: - chalk "^1.1.3" - jest-diff "^19.0.0" - jest-file-exists "^19.0.0" - jest-matcher-utils "^19.0.0" - jest-util "^19.0.2" - natural-compare "^1.4.0" - pretty-format "^19.0.0" - jest-snapshot@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-20.0.3.tgz#5b847e1adb1a4d90852a7f9f125086e187c76566" @@ -5262,19 +5296,6 @@ jest-util@^18.1.0: jest-mock "^18.0.0" mkdirp "^0.5.1" -jest-util@^19.0.2: - version "19.0.2" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-19.0.2.tgz#e0a0232a2ab9e6b2b53668bdb3534c2b5977ed41" - dependencies: - chalk "^1.1.1" - graceful-fs "^4.1.6" - jest-file-exists "^19.0.0" - jest-message-util "^19.0.0" - jest-mock "^19.0.0" - jest-validate "^19.0.2" - leven "^2.0.0" - mkdirp "^0.5.1" - jest-util@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-20.0.3.tgz#0c07f7d80d82f4e5a67c6f8b9c3fe7f65cfd32ad" @@ -5287,15 +5308,6 @@ jest-util@^20.0.3: leven "^2.1.0" mkdirp "^0.5.1" -jest-validate@^19.0.2: - version "19.0.2" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-19.0.2.tgz#dc534df5f1278d5b63df32b14241d4dbf7244c0c" - dependencies: - chalk "^1.1.1" - jest-matcher-utils "^19.0.0" - leven "^2.0.0" - pretty-format "^19.0.0" - jest-validate@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-20.0.3.tgz#d0cfd1de4f579f298484925c280f8f1d94ec3cab" @@ -5350,6 +5362,10 @@ js-base64@^2.1.9: version "2.1.9" resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.1.9.tgz#f0e80ae039a4bd654b5f281fc93f04a914a7fcce" +js-string-escape@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" + js-tokens@^3.0.0: version "3.0.2" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" @@ -5385,8 +5401,8 @@ jsesc@~0.5.0: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" json-loader@^0.5.4: - version "0.5.4" - resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.4.tgz#8baa1365a632f58a3c46d20175fc6002c96e37de" + version "0.5.7" + resolved "https://registry.yarnpkg.com/json-loader/-/json-loader-0.5.7.tgz#dca14a70235ff82f0ac9a3abeb60d337a365185d" json-parse-helpfulerror@^1.0.2: version "1.0.3" @@ -5614,7 +5630,7 @@ lerna@^2.0.0-rc.5: write-pkg "^3.0.1" yargs "^8.0.1" -leven@^2.0.0, leven@^2.1.0: +leven@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" @@ -5951,14 +5967,7 @@ lowercase-keys@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306" -lru-cache@4.0.x: - version "4.0.2" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.0.2.tgz#1d17679c069cda5d040991a09dbc2c0db377e55e" - dependencies: - pseudomap "^1.0.1" - yallist "^2.0.0" - -lru-cache@^4.0.1: +lru-cache@4.1.x, lru-cache@^4.0.1: version "4.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.1.tgz#622e32e82488b49279114a4f9ecf45e7cd6bba55" dependencies: @@ -5997,9 +6006,9 @@ markdown-table@^1.1.0: version "1.1.1" resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-1.1.1.tgz#4b3dd3a133d1518b8ef0dbc709bf2a1b4824bc8c" -matcher@^0.1.1: - version "0.1.2" - resolved "https://registry.yarnpkg.com/matcher/-/matcher-0.1.2.tgz#ef20cbde64c24c50cc61af5b83ee0b1b8ff00101" +matcher@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.0.0.tgz#aaf0c4816eb69b92094674175625f3466b0e3e19" dependencies: escape-string-regexp "^1.0.4" @@ -6118,19 +6127,15 @@ miller-rabin@^4.0.0: bn.js "^4.0.0" brorand "^1.0.1" -mime-db@1.x.x: +mime-db@1.x.x, mime-db@~1.29.0: version "1.29.0" resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.29.0.tgz#48d26d235589651704ac5916ca06001914266878" -mime-db@~1.27.0: - version "1.27.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.27.0.tgz#820f572296bbd20ec25ed55e5b5de869e5436eb1" - mime-types@^2.1.12, mime-types@~2.1.11, mime-types@~2.1.15, mime-types@~2.1.7: - version "2.1.15" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.15.tgz#a4ebf5064094569237b8cf70046776d09fc92aed" + version "2.1.16" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.16.tgz#2b858a52e5ecd516db897ac2be87487830698e23" dependencies: - mime-db "~1.27.0" + mime-db "~1.29.0" mime@1.3.4: version "1.3.4" @@ -6215,14 +6220,10 @@ ms@0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.1.tgz#9cd13c03adbff25b65effde7ce864ee952017098" -ms@2.0.0: +ms@2.0.0, ms@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" -ms@^0.7.1: - version "0.7.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-0.7.3.tgz#708155a5e44e33f5fd0fc53e81d0d40a91be1fff" - msgpack@1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/msgpack/-/msgpack-1.0.2.tgz#923e2c5cffa65c8418e9b228d1124793969c429c" @@ -6312,8 +6313,8 @@ nlcst-normalize@^2.0.0, nlcst-normalize@^2.1.0: nlcst-to-string "^2.0.0" nlcst-search@^1.0.0, nlcst-search@^1.1.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/nlcst-search/-/nlcst-search-1.4.1.tgz#64616ee45632704c7f1112462f88f63c204226f6" + version "1.4.2" + resolved "https://registry.yarnpkg.com/nlcst-search/-/nlcst-search-1.4.2.tgz#bee19348e918014b9f682cc6a5c6ad9f08f117cd" dependencies: nlcst-is-literal "^1.1.0" nlcst-normalize "^2.1.0" @@ -6487,7 +6488,7 @@ number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" -nyc@^11.0.2: +nyc@^11.0.3: version "11.1.0" resolved "https://registry.yarnpkg.com/nyc/-/nyc-11.1.0.tgz#d6b3c5e16892a25af63138ba484676aa8a22eda7" dependencies: @@ -6615,11 +6616,9 @@ optimist@~0.3.5: dependencies: wordwrap "~0.0.2" -option-chain@^0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-0.1.1.tgz#e9b811e006f1c0f54802f28295bfc8970f8dcfbd" - dependencies: - object-assign "^4.0.1" +option-chain@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/option-chain/-/option-chain-1.0.0.tgz#938d73bd4e1783f948d34023644ada23669e30f2" optionator@^0.8.2: version "0.8.2" @@ -6651,10 +6650,10 @@ os-locale@^1.4.0: lcid "^1.0.0" os-locale@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.0.0.tgz#15918ded510522b81ee7ae5a309d54f639fc39a4" + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" dependencies: - execa "^0.5.0" + execa "^0.7.0" lcid "^1.0.0" mem "^1.1.0" @@ -6681,6 +6680,10 @@ p-cancelable@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa" +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + p-finally@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" @@ -6783,8 +6786,8 @@ parse-json@^2.2.0: error-ex "^1.2.0" parse-latin@^4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/parse-latin/-/parse-latin-4.0.2.tgz#e22f99fc1f7c0486b3b904bdf10f13b72a06f08c" + version "4.0.3" + resolved "https://registry.yarnpkg.com/parse-latin/-/parse-latin-4.0.3.tgz#b84d9715b72f8a95428a0e3ddce4fb31fef313bd" dependencies: nlcst-to-string "^2.0.0" unist-util-modify-children "^1.0.0" @@ -7084,12 +7087,6 @@ pretty-format@^18.1.0: dependencies: ansi-styles "^2.2.1" -pretty-format@^19.0.0: - version "19.0.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-19.0.0.tgz#56530d32acb98a3fa4851c4e2b9d37b420684c84" - dependencies: - ansi-styles "^3.0.0" - pretty-format@^20.0.3: version "20.0.3" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-20.0.3.tgz#020e350a560a1fe1a98dc3beb6ccffb386de8b14" @@ -7111,15 +7108,15 @@ pretty-ms@^2.0.0: parse-ms "^1.0.0" plur "^1.0.0" -primer-support@^4.0.7: - version "4.0.7" - resolved "https://registry.yarnpkg.com/primer-support/-/primer-support-4.0.7.tgz#c9c433c5a597a78226870ea3d18c4bf0e96eeab4" +primer-support@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/primer-support/-/primer-support-4.1.1.tgz#2e4fb29f6640e156e5db065232a476dd7279b87b" primer-utilities@^4.3.5: - version "4.3.5" - resolved "https://registry.yarnpkg.com/primer-utilities/-/primer-utilities-4.3.5.tgz#42c58e681459493fe99f2956c4b3bf7c04005d67" + version "4.4.1" + resolved "https://registry.yarnpkg.com/primer-utilities/-/primer-utilities-4.4.1.tgz#3a00cd5e08ea97cb0f49657d1bc687b12fedf8c2" dependencies: - primer-support "^4.0.7" + primer-support "^4.1.1" private@^0.1.6, private@~0.1.5: version "0.1.7" @@ -7155,11 +7152,11 @@ prop-types@^15.5.10, prop-types@^15.5.4, prop-types@^15.5.8, prop-types@^15.5.9: loose-envify "^1.3.1" proxy-addr@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.4.tgz#27e545f6960a44a627d9b44467e35c1b6b4ce2f3" + version "1.1.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-1.1.5.tgz#71c0ee3b102de3f202f3b64f608d173fcba1a918" dependencies: forwarded "~0.1.0" - ipaddr.js "1.3.0" + ipaddr.js "1.4.0" prr@~0.0.0: version "0.0.0" @@ -7171,7 +7168,7 @@ ps-tree@^1.0.1: dependencies: event-stream "~3.3.0" -pseudomap@^1.0.1, pseudomap@^1.0.2: +pseudomap@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" @@ -7353,7 +7350,7 @@ react-broadcast@^0.1.2: dependencies: invariant "^2.2.1" -react-bundle@^1.0.3: +react-bundle@^1.0.4: version "1.0.4" resolved "https://registry.yarnpkg.com/react-bundle/-/react-bundle-1.0.4.tgz#ea03cae97be357ff8e290e785f4e30d0e065b920" dependencies: @@ -7378,8 +7375,8 @@ react-docgen-displayname-handler@^1.0.0: recast "0.11.12" react-docgen@^2.16.0: - version "2.16.0" - resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-2.16.0.tgz#03c9eba935de8031d791ab62657b7b6606ec5da6" + version "2.17.0" + resolved "https://registry.yarnpkg.com/react-docgen/-/react-docgen-2.17.0.tgz#b0f3e85af955714e1067593c1043cb82611a93d1" dependencies: async "^2.1.4" babel-runtime "^6.9.2" @@ -7387,7 +7384,7 @@ react-docgen@^2.16.0: commander "^2.9.0" doctrine "^2.0.0" node-dir "^0.1.10" - recast "^0.11.5" + recast "^0.12.6" react-dom@^15.6.1: version "15.6.1" @@ -7624,12 +7621,13 @@ recast@0.11.12: private "~0.1.5" source-map "~0.5.0" -recast@^0.11.5: - version "0.11.23" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3" +recast@^0.12.6: + version "0.12.6" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.12.6.tgz#4b0fb82feb1d10b3bd62d34943426d9b3ed30d4c" dependencies: - ast-types "0.9.6" - esprima "~3.1.0" + ast-types "0.9.11" + core-js "^2.4.1" + esprima "~4.0.0" private "~0.1.5" source-map "~0.5.0" @@ -7686,12 +7684,12 @@ redux-batched-actions@^0.2.0: resolved "https://registry.yarnpkg.com/redux-batched-actions/-/redux-batched-actions-0.2.0.tgz#da0000c882b0e6c861a96d5823bd36adf5d9c0dd" redux-form@^7.0.0: - version "7.0.1" - resolved "https://registry.yarnpkg.com/redux-form/-/redux-form-7.0.1.tgz#2754a4fbd343b90ae336e3f3637d060127429e92" + version "7.0.2" + resolved "https://registry.yarnpkg.com/redux-form/-/redux-form-7.0.2.tgz#6fcc3e847ee95e1eca6af46da34c949458c6e950" dependencies: deep-equal "^1.0.1" es6-error "^4.0.0" - hoist-non-react-statics "^2.0.0" + hoist-non-react-statics "^2.2.0" invariant "^2.2.2" is-promise "^2.1.0" lodash "^4.17.3" @@ -7918,11 +7916,11 @@ reselect@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/reselect/-/reselect-3.0.1.tgz#efdaa98ea7451324d092b2b2163a6a1d7a9a2147" -resolve-cwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-1.0.0.tgz#4eaeea41ed040d1702457df64a42b2b07d246f9f" +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" dependencies: - resolve-from "^2.0.0" + resolve-from "^3.0.0" resolve-from@^1.0.0: version "1.0.1" @@ -8175,7 +8173,7 @@ rx-lite@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-3.1.2.tgz#19ce502ca572665f3b647b10939f97fd1615f102" -safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@~5.1.0, safe-buffer@~5.1.1: +safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853" @@ -8198,8 +8196,8 @@ semver-diff@^2.0.0: semver "^5.0.3" "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" + version "5.4.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.4.1.tgz#e059c09d8571f0540823733433505d3a2f00b18e" semver@5.1.0: version "5.1.0" @@ -8303,6 +8301,12 @@ slice-ansi@0.0.4: version "0.0.4" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" +slice-ansi@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" + dependencies: + is-fullwidth-code-point "^2.0.0" + slide@^1.1.5, slide@~1.1.3: version "1.1.6" resolved "https://registry.yarnpkg.com/slide/-/slide-1.1.6.tgz#56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707" @@ -8831,8 +8835,8 @@ stylelint@^7.0.0, stylelint@^7.0.3, stylelint@^7.11.1: table "^4.0.1" stylis@^3.2.1: - version "3.2.6" - resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.2.6.tgz#6291df64aae62e9f537ab24b7d8a62b2428a34e9" + version "3.2.8" + resolved "https://registry.yarnpkg.com/stylis/-/stylis-3.2.8.tgz#9b23a3e06597f7944a3d9ae880d5796248b8784f" subtext@5.x.x: version "5.0.0" @@ -8865,8 +8869,8 @@ supports-color@^3.1.0, supports-color@^3.1.2, supports-color@^3.2.3: has-flag "^1.0.0" supports-color@^4.0.0, supports-color@^4.1.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.0.tgz#ad986dc7eb2315d009b4d77c8169c2231a684037" + version "4.2.1" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.2.1.tgz#65a4bb2631e90e02420dba5554c375a4754bb836" dependencies: has-flag "^2.0.0" @@ -8980,7 +8984,7 @@ tap-xunit@^1.7.0: xmlbuilder "~4.1.0" xtend "~4.0.0" -tapable@^0.2.5, tapable@~0.2.5: +tapable@^0.2.7, tapable@~0.2.5: version "0.2.7" resolved "https://registry.yarnpkg.com/tapable/-/tapable-0.2.7.tgz#e46c0daacbb2b8a98b9b0cea0f4052105817ed5c" @@ -9131,6 +9135,10 @@ time-require@^0.1.2: pretty-ms "^0.2.1" text-table "^0.2.0" +time-zone@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d" + timed-out@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-2.0.0.tgz#f38b0ae81d3747d628001f41dafc652ace671c0a" @@ -9233,7 +9241,7 @@ trim-newlines@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" -trim-off-newlines@^1.0.0: +trim-off-newlines@^1.0.0, trim-off-newlines@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3" @@ -9722,6 +9730,10 @@ webpack@^2.6.1: webpack-sources "^1.0.1" yargs "^6.0.0" +well-known-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/well-known-symbols/-/well-known-symbols-1.0.0.tgz#73c78ae81a7726a8fa598e2880801c8b16225518" + whatwg-fetch@>=0.10.0, whatwg-fetch@^2.0.0: version "2.0.3" resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz#9c84ec2dcf68187ff00bc64e1274b442176e1c84" @@ -9892,7 +9904,7 @@ y18n@^3.2.0, y18n@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" -yallist@^2.0.0, yallist@^2.1.2: +yallist@^2.1.2: version "2.1.2" resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" @@ -10000,6 +10012,10 @@ z-schema@^3.16.1, z-schema@^3.17.0: optionalDependencies: commander "^2.7.1" +"zen-observable@git+https://github.com/evanshauser/zen-observable.git": + version "0.5.2" + resolved "git+https://github.com/evanshauser/zen-observable.git#a11ee4bd848f381898b6cd93c769eb1dcc0febf6" + zerorpc@^0.9.7: version "0.9.7" resolved "https://registry.yarnpkg.com/zerorpc/-/zerorpc-0.9.7.tgz#64ddb32ce8c934bea5434ec81ca22e971045a860"