diff --git a/distributed_static_ybus_service.py b/distributed_static_ybus_service.py index 831bc0b..2f244ab 100644 --- a/distributed_static_ybus_service.py +++ b/distributed_static_ybus_service.py @@ -46,17 +46,15 @@ from typing import Dict, Optional from cimgraph.data_profile import CIM_PROFILE -import gridappsd.field_interface.agents.agents as agents_mod -from gridappsd.field_interface.agents import FeederAgent, SwitchAreaAgent, SecondaryAreaAgent -from gridappsd.field_interface.interfaces import FieldMessageBus, MessageBusDefinition +import gridappsd_field_bus.field_interface.agents.agents as agents_mod +from gridappsd_field_bus.field_interface.agents import FeederAgent, SwitchAreaAgent, SecondaryAreaAgent +from gridappsd_field_bus.field_interface.interfaces import FieldMessageBus, MessageBusDefinition import ybus_utils as utils #TODO: query gridappsd-python for correct cim_profile instead of hardcoding it. -cim_profile = CIM_PROFILE.RC4_2021.value -agents_mod.set_cim_profile(cim_profile, iec61970_301=7) -# cim_profile = CIM_PROFILE.CIMHUB_2023.value -# agents_mod.set_cim_profile(cim_profile, iec61970_301=8) +cim_profile = CIM_PROFILE.CIMHUB_2023.value +agents_mod.set_cim_profile(cim_profile, iec61970_301=8) cim = agents_mod.cim logging.basicConfig(format='%(asctime)s::%(levelname)s::%(name)s::%(filename)s::%(lineno)d::%(message)s', filename='DistributedYBus.log', @@ -189,10 +187,11 @@ def getMessageBusDefinition(areaId: str) -> MessageBusDefinition: "GRIDAPPSD_PASSWORD": os.environ.get('GRIDAPPSD_PASSWORD'), "GRIDAPPSD_APPLICATION_ID": os.environ.get('GRIDAPPSD_APPLICATION_ID') } - bus = MessageBusDefinition(id=areaId, - is_ot_bus=True, - connection_type="GRIDAPPSD_TYPE_GRIDAPPSD", - conneciton_args=connectionArgs) + bus = MessageBusDefinition( + id=areaId, + is_ot_bus=True, + connection_type="gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus", + connection_args=connectionArgs) return bus @@ -288,8 +287,8 @@ def main(): logger.info(f"Creating Secondary Area Ybus Service for area id: {secondaryAreaMessageBusDef.id}") secondaryAreaService = SecondaryAreaAgentLevelStaticYbusService(switchAreaMessageBusDef, secondaryAreaMessageBusDef, serviceMetadata) - if len(secondaryAreaService.agent_area_dict['addressable_equipment']) == 0 and \ - len(secondaryAreaService.agent_area_dict['unaddressable_equipment']) == 0: + if len(secondaryAreaService.agent_area_dict['AddressableEquipment']) == 0 and \ + len(secondaryAreaService.agent_area_dict['UnaddressableEquipment']) == 0: secondaryAreaService.disconnect() else: runningYbusServiceInfo.append(f"{type(secondaryAreaService).__name__}:" @@ -300,32 +299,32 @@ def main(): feederMessageBusDef = getMessageBusDefinition(modelMrid) logger.info(f"Creating Feeder Area Ybus Service for area id: {feederMessageBusDef.id}") feederYbusService = FeederAgentLevelStaticYbusService(systemMessageBusDef, feederMessageBusDef, serviceMetadata) - #feederYbusService.updateYbusService() + feederYbusService.updateYbusService() runningYbusServiceInfo.append(f"{type(feederYbusService).__name__}:{feederMessageBusDef.id}") runningServiceInstances.append(feederYbusService) - for switchArea in feederYbusService.agent_area_dict.get('switch_areas', []): - switchAreaId = switchArea.get('message_bus_id') + for switchArea in feederYbusService.agent_area_dict.get('SwitchAreas', []): + switchAreaId = switchArea.get('@id') if switchAreaId is not None: switchAreaMessageBusDef = getMessageBusDefinition(switchAreaId) logger.info(f"Creating Switch Area Ybus Service for area id: {switchAreaMessageBusDef.id}") switchAreaService = SwitchAreaAgentLevelStaticYbusService(feederMessageBusDef, switchAreaMessageBusDef, serviceMetadata) - #switchAreaService.updateYbusService() + switchAreaService.updateYbusService() runningYbusServiceInfo.append(f"{type(switchAreaService).__name__}:{switchAreaMessageBusDef.id}") runningServiceInstances.append(switchAreaService) - for secondaryArea in switchArea.get('secondary_areas', []): - secondaryAreaId = secondaryArea.get('message_bus_id') + for secondaryArea in switchArea.get('SecondaryAreas', []): + secondaryAreaId = secondaryArea.get('@id') if secondaryAreaId is not None: secondaryAreaMessageBusDef = getMessageBusDefinition(secondaryAreaId) logger.info( f"Creating Secondary Area Ybus Service for area id: {secondaryAreaMessageBusDef.id}") secondaryAreaService = SecondaryAreaAgentLevelStaticYbusService( switchAreaMessageBusDef, secondaryAreaMessageBusDef, serviceMetadata) - if len(secondaryAreaService.agent_area_dict['addressable_equipment']) == 0 and \ - len(secondaryAreaService.agent_area_dict['unaddressable_equipment']) == 0: + if len(secondaryAreaService.agent_area_dict['AddressableEquipment']) == 0 and \ + len(secondaryAreaService.agent_area_dict['UnaddressableEquipment']) == 0: secondaryAreaService.disconnect() else: - #secondaryAreaService.updateYbusService() + secondaryAreaService.updateYbusService() runningYbusServiceInfo.append(f"{type(secondaryAreaService).__name__}:" f"{secondaryAreaMessageBusDef.id}") runningServiceInstances.append(secondaryAreaService) diff --git a/pyproject.toml b/pyproject.toml index eee0feb..0af6a66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ packages = [] [tool.poetry.dependencies] python = "^3.10" numpy = "^1.24.3" -gridappsd-field-bus = {version = "^2024", allow-prereleases = true} +gridappsd-field-bus = {version = "^2025.3.1", allow-prereleases = true} [tool.poetry.group.dev.dependencies] pre-commit = "^3.6.0" diff --git a/scripts/gridappsd_model_field_bus_file_generator.py b/scripts/gridappsd_model_field_bus_file_generator.py index 4e52420..a831ef8 100644 --- a/scripts/gridappsd_model_field_bus_file_generator.py +++ b/scripts/gridappsd_model_field_bus_file_generator.py @@ -7,7 +7,7 @@ "connections": { "id": "otbus", "is_ot_bus": True, - "connection_type": "CONNECTION_TYPE_GRIDAPPSD", + "connection_type": "gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus", "connection_args": { "GRIDAPPSD_ADDRESS": "tcp://gridappsd:61613", "GRIDAPPSD_USER": "system", @@ -17,35 +17,69 @@ } modelInfo = { "ieee13nodecktassets": { - "id": "_5B816B93-7A5F-B64C-8460-47C17D6E4B0F", - "switchAreas": 1 + "id": "5B816B93-7A5F-B64C-8460-47C17D6E4B0F", + "switchAreas": ['b8eec813-dad8-43a2-a955-46beef5e784f'] }, "ieee13nodeckt": { - "id": "_49AD8E07-3BF9-A4E2-CB8F-C3722F837B62", - "switchAreas": 5, - "secondaryAreas": { - "1": 1, - "4": 1, - } + "id": "49AD8E07-3BF9-A4E2-CB8F-C3722F837B62", + "switchAreas": ['1f39b37f-2a84-4f56-b557-3a72cb840434', '2cff1e26-8f8f-42b5-b054-87f28523d303', + '30c3c4ce-a7b6-4f7b-b2bc-3d771ed09b2b', '4021f7cf-340c-45e3-841f-e7b5fe8b93be'], + "secondaryAreas": ['91aac04c-8d87-4385-a3a2-b768aeaddfd2', '4396f6fc-5231-4af1-a2a6-d5b9e0836983'] }, "ieee123": { - "id": "_C1C3E687-6FFD-C753-582B-632A27E28507", - "switchAreas": 6, - "secondaryAreas": { - "0": 1 - } + "id": "C1C3E687-6FFD-C753-582B-632A27E28507", + "switchAreas": ['87182da3-243f-4f83-8962-e555238affd0', 'b2274e97-3d3c-4268-b7e1-12b2f5481565', + 'f4630006-2ffd-42eb-bb4d-246abe009c5b', '0ac9247d-0778-4dc4-9148-2bb66816eda3', + '5b1beeaa-4bf3-4621-9894-c9b0ea55e65a', '79d5a293-17fe-40d4-9eb8-fcfd2ae90457'], + "secondaryAreas": ['d6c70d77-17e2-49d2-b33e-552341b20941'] }, "ieee123pv": { - "id": "_E407CBB6-8C8D-9BC9-589C-AB83FBF0826D", - "switchAreas": 8, - "secondaryAreas": { - "2": 25, - "3": 10, - "4": 23, - "5": 1, - "6": 11, - "7": 11 - } + "id": "E407CBB6-8C8D-9BC9-589C-AB83FBF0826D", + "switchAreas": ['cfe72655-2adf-4910-a106-5c74bf6eeeda', 'd2a49a04-7ac9-49d5-8b33-9757e075053d', + '099fff25-3a67-45e4-a09f-03f5737ee681', '3fc6bce4-af26-4e4c-ba56-cb795137dfd6', + '549112bd-1d79-4f20-b38c-829bb04b17aa', '56147bbc-5139-47a9-aeb2-5c92a2180800', + '667ec684-e4d1-42a6-a56d-4ffc768e3081', '78ff7d1c-2e4b-42e2-a37b-908a20a43b63'], + "secondaryAreas": ['92b002cb-c6a4-4492-80fc-6d98e5c2a085', 'a38623d4-18e6-4fdb-8c08-2a3e5b115257', + 'd68f12c2-256c-4b0e-a9ee-accba9dd0e58', 'e99e77c6-3c9f-43f7-85b4-6b13e393bbb4', + 'ea8bf8ae-586d-4970-ae79-430a6922f8d6', 'f4fdffc7-c1fb-4df9-9bb7-2d03d4567895', + 'fd453761-794e-483e-ba54-b876b7cf3503', '06a87652-5c85-4a4c-abaf-d674d608b239', + '425f6787-1f1e-4c7d-8a48-4a18fa1ed0e6', '5063f680-b0c4-4566-864b-e1b1284c3256', + '510f5531-61ab-4bb1-8910-41f686b3de2a', '654f7407-0804-43b2-9feb-e5e4063a6fa6', + '65868b62-17ce-48cd-9a0e-78f966f701c0', '39034e1a-132d-49b0-9a20-a05d42352cbc', + '8eb86ce1-8de2-4b5f-8bf2-37ecfb5e2ebe', 'a4dc6287-b11c-47df-b290-5cc2098df862', + 'c4722d84-060b-47c6-aed5-a37df291a056', 'ca33c117-349d-45f3-8a0d-740ab8b6a98b', + 'd31fb149-abcf-407b-ae05-00d2178f5932', 'dfdf9496-97ad-4caa-8208-25aa23546241', + 'ee2e966b-e897-44f1-a91f-3a3f24d92655', 'ef6b9afa-122e-4c02-8e09-6b03e9b2ebed', + 'f26fbea0-30e6-433e-b89b-5d6945225e60', '0c3e20d7-21c6-4e1a-9008-ace67b2dcf9e', + '1e3bad10-ae30-42b4-b0d2-62954a9a5a8b', '1f8c1709-a97e-4c63-b007-aa78e0acaa2c', + '2ad86e8c-a4e8-4a8b-b647-b3325a84828c', '30bc7e23-fbc2-459b-8bfb-a1be1fb7fe93', + '467d9d54-c883-4bc1-9e6c-c8564bec7bb7', '4d90eb7d-ea37-4e8a-a137-18d250b2717e', + '55030ee1-a753-4c91-a81e-0801661b681c', '58d1232a-ad91-4f2d-a0c4-b0152b2d4013', + '5fe40c35-8144-4862-b44e-6b645630ef21', '65012c83-ef87-43ee-9c59-51ddd8fffc09', + '6e5c768d-0e5e-41a2-a646-0ea4d13bf66b', '7a0031aa-9d54-4673-bd7e-fef375a35af7', + 'a877ed04-6f28-4d1f-9669-fcaa20005a21', 'aa77a7a3-db92-401b-afb0-37d713dafbbf', + 'f08d573b-500c-486e-90a9-50e079cf43d0', 'f8569761-abcb-4484-b392-5003f6d1c611', + '2147d1b6-90ef-4f1e-aa6d-5d7816cebaee', '2851b843-c1eb-4da2-b582-37552ae865f4', + '2f380d3e-108b-4ec0-93c2-ec3c3de2b979', '458c5c7c-579e-4cf0-82db-1bd41e360097', + '5b029e6f-dbfa-4f07-8ae9-6b181c9b32aa', '6c9e3bda-7e71-4caf-8b98-463c3b81dff6', + '70c12af0-238a-42ec-835e-414d3b0684a9', '619339fe-cafa-4ad6-bb50-1fba1a4de5ef', + '696d07ca-f019-4f1c-bb02-9144ffcc2e6a', '69a9e814-7a00-4738-a8fd-f5d89c910681', + '8becb29a-cc2a-4208-8af0-170f4d87addf', '9943fac6-a14e-4313-9d22-69fc8962d6a8', + 'a5e81405-d73c-4e6b-bd49-2804eaf89732', 'afea7fac-e9b7-4df9-93c6-152e1e2f1972', + 'b3b3c576-5106-4668-bfd8-5065508bc0e1', 'c12a8894-c47a-46ad-9937-ca5406210a16', + 'cf6dbefd-4eb3-460f-ac53-2a5df360d3af', 'ddeedebf-09ba-463b-99d1-ebd42411593c', + '036f7580-5849-459e-9422-18052e296d4c', '04af00eb-3346-4406-936d-7159b685238e', + '0ae9716c-c066-45e9-ba81-f104527da389', '0d5b2746-8ad2-4179-b68f-8324e12e5a41', + '0d7d47b0-fabd-4655-935d-11fd7449f603', '2672e4cc-0a99-4544-8595-c60d762273ef', + '460584e8-4261-45a6-9d2e-b852cc8975fc', '4847493c-4e6f-4983-a172-78d0bc49a730', + '49e95d31-c15e-4af8-9f55-f820eac418f0', '4f253ca3-5d17-49e2-a7f0-29ef9a448a83', + '539507a4-309f-414f-928d-7f1e41b1c9c8', '5575d113-c2cc-444e-ad41-69580edba193', + '71500756-4a76-4bcb-b4d2-d4728d8fdb9f', '7476c8ff-311d-47d3-a53e-d4af537987a3', + '860fe1f3-df24-4b70-917e-22524ce09300', 'bce63d78-b8c4-44cb-b5d6-16a260bab8a1', + 'd762ff9f-9acf-46a9-8af6-060cf56b4112', 'df4a052a-20b5-4038-bf5d-6a01d8177664', + '0bcb2438-4856-4cdd-97a1-0a9adca5d735', '248b3cd9-1842-4789-b895-a4eb8670f79b', + '366b26db-7d73-42f2-bd86-505b3587ca1c', '3b20f571-5d81-4991-adc9-3645238ffd05', + '5863c659-08c3-4a50-b6e6-f654cd739898', '59f34aa9-711d-42ff-84b7-e6632edc2c6c'] } } rootDir = (Path(__file__).parent).parent.resolve() @@ -69,21 +103,20 @@ switchConfigDir = rootDir / "service_config_files" / mod / "switch_level" if not switchConfigDir.is_dir(): switchConfigDir.mkdir(parents=True) - for i in range(switchAreas): - switchConfigFile = switchConfigDir / f"switch_area_message_bus_{i}.yml" + for sid in switchAreas: + switchConfigFile = switchConfigDir / f"switch_area_message_bus_{sid}.yml" with switchConfigFile.open(mode="w", encoding="utf-8") as scf: switchConfig = deepcopy(fieldBusConfigBoilerPlate) - switchConfig["connections"]["id"] = f"{modelInfo[mod]['id']}.{i}" + switchConfig["connections"]["id"] = f"{sid}" yaml.safe_dump(switchConfig, scf) secondaryAreas = modelInfo[mod].get("secondaryAreas") if secondaryAreas is not None: secondaryConfigDir = rootDir / "service_config_files" / mod / "secondary_level" if not secondaryConfigDir.is_dir(): secondaryConfigDir.mkdir(parents=True) - for sw in secondaryAreas.keys(): - for i in range(secondaryAreas[sw]): - secondaryConfigFile = secondaryConfigDir / f"secondary_area_message_bus_{sw}_{i}.yml" - with secondaryConfigFile.open(mode="w", encoding="utf-8") as scf: - secondaryConfig = deepcopy(fieldBusConfigBoilerPlate) - secondaryConfig["connections"]["id"] = f"{modelInfo[mod]['id']}.{sw}.{i}" - yaml.safe_dump(secondaryConfig, scf) + for sid in secondaryAreas: + secondaryConfigFile = secondaryConfigDir / f"secondary_area_message_bus_{sid}.yml" + with secondaryConfigFile.open(mode="w", encoding="utf-8") as scf: + secondaryConfig = deepcopy(fieldBusConfigBoilerPlate) + secondaryConfig["connections"]["id"] = f"{sid}" + yaml.safe_dump(secondaryConfig, scf) diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_1.yml b/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_1.yml deleted file mode 100644 index 496c4b3..0000000 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.1 - is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_2.yml b/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_2.yml deleted file mode 100644 index 15cb358..0000000 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.2 - is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_3.yml b/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_3.yml deleted file mode 100644 index 49c8f94..0000000 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.3 - is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_4.yml b/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_4.yml deleted file mode 100644 index 2a410c7..0000000 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.4 - is_ot_bus: true diff --git a/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/switch_level/switch_area_message_bus_0.yml b/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/switch_level/switch_area_message_bus_0.yml deleted file mode 100644 index 2c75cea..0000000 --- a/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/switch_level/switch_area_message_bus_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _5B816B93-7A5F-B64C-8460-47C17D6E4B0F.0 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/secondary_level/secondary_area_message_bus_0_0.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/secondary_level/secondary_area_message_bus_0_0.yml deleted file mode 100644 index 21f23ed..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/secondary_level/secondary_area_message_bus_0_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.0.0 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_0.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_0.yml deleted file mode 100644 index 30ba65d..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.0 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_1.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_1.yml deleted file mode 100644 index 5a8e317..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.1 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_2.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_2.yml deleted file mode 100644 index 910a53e..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.2 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_3.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_3.yml deleted file mode 100644 index 15ce783..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.3 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_4.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_4.yml deleted file mode 100644 index 595c4f2..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.4 - is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_5.yml b/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_5.yml deleted file mode 100644 index 93e416f..0000000 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/switch_level/switch_area_message_bus_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_0.yml deleted file mode 100644 index 69b241b..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_1.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_1.yml deleted file mode 100644 index cd34cae..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.1 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_10.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_10.yml deleted file mode 100644 index 8bd316b..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.10 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_11.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_11.yml deleted file mode 100644 index 6e9943b..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.11 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_12.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_12.yml deleted file mode 100644 index d00545f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.12 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_13.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_13.yml deleted file mode 100644 index 25b263e..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_13.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.13 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_14.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_14.yml deleted file mode 100644 index 206ca51..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.14 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_15.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_15.yml deleted file mode 100644 index ce20685..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_15.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.15 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_16.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_16.yml deleted file mode 100644 index 4e75120..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.16 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_17.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_17.yml deleted file mode 100644 index 12bad57..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_17.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.17 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_18.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_18.yml deleted file mode 100644 index fff6e48..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_18.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.18 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_19.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_19.yml deleted file mode 100644 index 5a7520f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_19.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.19 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_2.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_2.yml deleted file mode 100644 index 5915c49..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.2 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_20.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_20.yml deleted file mode 100644 index a46d0fd..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_20.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.20 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_21.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_21.yml deleted file mode 100644 index 38f9de1..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_21.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.21 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_22.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_22.yml deleted file mode 100644 index 7e3ebfb..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_22.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.22 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_23.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_23.yml deleted file mode 100644 index 8228a7d..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_23.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.23 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_24.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_24.yml deleted file mode 100644 index e95102c..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_24.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.24 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_3.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_3.yml deleted file mode 100644 index feadc4e..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.3 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_4.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_4.yml deleted file mode 100644 index 158bf50..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.4 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_5.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_5.yml deleted file mode 100644 index 27a1713..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_6.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_6.yml deleted file mode 100644 index fba91cc..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.6 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_7.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_7.yml deleted file mode 100644 index 5459e78..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.7 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_8.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_8.yml deleted file mode 100644 index 481640f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.8 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_9.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_9.yml deleted file mode 100644 index 2ac2d6f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_2_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2.9 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_0.yml deleted file mode 100644 index 0410967..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_1.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_1.yml deleted file mode 100644 index bfa89ba..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.1 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_2.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_2.yml deleted file mode 100644 index 438e075..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.2 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_3.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_3.yml deleted file mode 100644 index 808e40e..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.3 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_4.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_4.yml deleted file mode 100644 index 65cc88c..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.4 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_5.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_5.yml deleted file mode 100644 index 4cdfbdc..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_6.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_6.yml deleted file mode 100644 index 2fb8988..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.6 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_7.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_7.yml deleted file mode 100644 index 475eb66..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.7 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_8.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_8.yml deleted file mode 100644 index bff16ae..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.8 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_9.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_9.yml deleted file mode 100644 index 32b41a8..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_3_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3.9 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_0.yml deleted file mode 100644 index 4fe1d66..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_1.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_1.yml deleted file mode 100644 index cc838e8..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.1 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_10.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_10.yml deleted file mode 100644 index 76b3df6..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.10 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_11.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_11.yml deleted file mode 100644 index 20d3159..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_11.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.11 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_12.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_12.yml deleted file mode 100644 index 68e3944..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_12.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.12 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_13.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_13.yml deleted file mode 100644 index 2898de3..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_13.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.13 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_14.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_14.yml deleted file mode 100644 index 587c07b..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_14.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.14 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_15.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_15.yml deleted file mode 100644 index 09b832b..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_15.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.15 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_16.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_16.yml deleted file mode 100644 index 178c7d4..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_16.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.16 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_17.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_17.yml deleted file mode 100644 index c06cf2f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_17.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.17 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_18.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_18.yml deleted file mode 100644 index acbff0d..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_18.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.18 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_19.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_19.yml deleted file mode 100644 index 8f9ded4..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_19.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.19 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_2.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_2.yml deleted file mode 100644 index 31a6d7f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.2 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_20.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_20.yml deleted file mode 100644 index 315ba46..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_20.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.20 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_21.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_21.yml deleted file mode 100644 index c496d0c..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_21.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.21 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_22.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_22.yml deleted file mode 100644 index 33bb1e9..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_22.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.22 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_3.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_3.yml deleted file mode 100644 index 3bf1482..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.3 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_4.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_4.yml deleted file mode 100644 index 2680516..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.4 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_5.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_5.yml deleted file mode 100644 index c6be3af..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_6.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_6.yml deleted file mode 100644 index dbb4927..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.6 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_7.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_7.yml deleted file mode 100644 index 8499d28..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.7 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_8.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_8.yml deleted file mode 100644 index 6b742a4..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.8 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_9.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_9.yml deleted file mode 100644 index f38f0fa..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_4_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4.9 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_5_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_5_0.yml deleted file mode 100644 index e4e88ef..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_5_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.5.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_0.yml deleted file mode 100644 index 9040de2..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_1.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_1.yml deleted file mode 100644 index 9e81d55..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.1 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_10.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_10.yml deleted file mode 100644 index a487370..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.10 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_2.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_2.yml deleted file mode 100644 index d0ff6af..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.2 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_3.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_3.yml deleted file mode 100644 index e464b5f..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.3 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_4.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_4.yml deleted file mode 100644 index 154a996..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.4 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_5.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_5.yml deleted file mode 100644 index f4f2b08..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_6.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_6.yml deleted file mode 100644 index c2c0d95..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.6 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_7.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_7.yml deleted file mode 100644 index f3c8000..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.7 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_8.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_8.yml deleted file mode 100644 index ac7ea75..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.8 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_9.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_9.yml deleted file mode 100644 index 0d45a94..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_6_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6.9 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_0.yml deleted file mode 100644 index 8f19ae4..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_1.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_1.yml deleted file mode 100644 index 7ca97d1..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.1 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_10.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_10.yml deleted file mode 100644 index 16acc13..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_10.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.10 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_2.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_2.yml deleted file mode 100644 index 82df980..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.2 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_3.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_3.yml deleted file mode 100644 index 379ba30..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.3 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_4.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_4.yml deleted file mode 100644 index fd6eea1..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.4 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_5.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_5.yml deleted file mode 100644 index f9b07d2..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_6.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_6.yml deleted file mode 100644 index 3790c1e..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.6 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_7.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_7.yml deleted file mode 100644 index 05b9395..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.7 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_8.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_8.yml deleted file mode 100644 index 72cb9be..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_8.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.8 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_9.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_9.yml deleted file mode 100644 index 1cef5a2..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/secondary_level/secondary_area_message_bus_7_9.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7.9 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_0.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_0.yml deleted file mode 100644 index a1c84ea..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_0.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.0 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_1.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_1.yml deleted file mode 100644 index 4d7aa3a..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_1.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.1 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_2.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_2.yml deleted file mode 100644 index a57e66a..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_2.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.2 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_3.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_3.yml deleted file mode 100644 index 5323183..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_3.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.3 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_4.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_4.yml deleted file mode 100644 index 278b206..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_4.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.4 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_5.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_5.yml deleted file mode 100644 index d859aed..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_5.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.5 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_6.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_6.yml deleted file mode 100644 index b69ecf2..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_6.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.6 - is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_7.yml b/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_7.yml deleted file mode 100644 index f2e3a3b..0000000 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/switch_level/switch_area_message_bus_7.yml +++ /dev/null @@ -1,8 +0,0 @@ -connections: - connection_args: - GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 - GRIDAPPSD_PASSWORD: manager - GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D.7 - is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/feeder_level/feeder-message-bus.yml b/service_config_files/ieee123/feeder_level/feeder-message-bus.yml similarity index 52% rename from service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/feeder_level/feeder-message-bus.yml rename to service_config_files/ieee123/feeder_level/feeder-message-bus.yml index 0d32163..36ac44f 100644 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/feeder_level/feeder-message-bus.yml +++ b/service_config_files/ieee123/feeder_level/feeder-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62 + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: C1C3E687-6FFD-C753-582B-632A27E28507 is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/secondary_level/secondary_area_message_bus_1_0.yml b/service_config_files/ieee123/secondary_level/secondary_area_message_bus_d6c70d77-17e2-49d2-b33e-552341b20941.yml similarity index 52% rename from service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/secondary_level/secondary_area_message_bus_1_0.yml rename to service_config_files/ieee123/secondary_level/secondary_area_message_bus_d6c70d77-17e2-49d2-b33e-552341b20941.yml index 97bb0ef..5d5fd61 100644 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/secondary_level/secondary_area_message_bus_1_0.yml +++ b/service_config_files/ieee123/secondary_level/secondary_area_message_bus_d6c70d77-17e2-49d2-b33e-552341b20941.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.1.0 + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: d6c70d77-17e2-49d2-b33e-552341b20941 is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/secondary_level/secondary_area_message_bus_4_0.yml b/service_config_files/ieee123/switch_level/switch_area_message_bus_0ac9247d-0778-4dc4-9148-2bb66816eda3.yml similarity index 52% rename from service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/secondary_level/secondary_area_message_bus_4_0.yml rename to service_config_files/ieee123/switch_level/switch_area_message_bus_0ac9247d-0778-4dc4-9148-2bb66816eda3.yml index 9239f9f..a5848ee 100644 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/secondary_level/secondary_area_message_bus_4_0.yml +++ b/service_config_files/ieee123/switch_level/switch_area_message_bus_0ac9247d-0778-4dc4-9148-2bb66816eda3.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.4.0 + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 0ac9247d-0778-4dc4-9148-2bb66816eda3 is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_0.yml b/service_config_files/ieee123/switch_level/switch_area_message_bus_5b1beeaa-4bf3-4621-9894-c9b0ea55e65a.yml similarity index 52% rename from service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_0.yml rename to service_config_files/ieee123/switch_level/switch_area_message_bus_5b1beeaa-4bf3-4621-9894-c9b0ea55e65a.yml index e95c0b6..af69ca1 100644 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/switch_level/switch_area_message_bus_0.yml +++ b/service_config_files/ieee123/switch_level/switch_area_message_bus_5b1beeaa-4bf3-4621-9894-c9b0ea55e65a.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _49AD8E07-3BF9-A4E2-CB8F-C3722F837B62.0 + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5b1beeaa-4bf3-4621-9894-c9b0ea55e65a is_ot_bus: true diff --git a/service_config_files/ieee123/switch_level/switch_area_message_bus_79d5a293-17fe-40d4-9eb8-fcfd2ae90457.yml b/service_config_files/ieee123/switch_level/switch_area_message_bus_79d5a293-17fe-40d4-9eb8-fcfd2ae90457.yml new file mode 100644 index 0000000..4de4375 --- /dev/null +++ b/service_config_files/ieee123/switch_level/switch_area_message_bus_79d5a293-17fe-40d4-9eb8-fcfd2ae90457.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 79d5a293-17fe-40d4-9eb8-fcfd2ae90457 + is_ot_bus: true diff --git a/service_config_files/ieee123/switch_level/switch_area_message_bus_87182da3-243f-4f83-8962-e555238affd0.yml b/service_config_files/ieee123/switch_level/switch_area_message_bus_87182da3-243f-4f83-8962-e555238affd0.yml new file mode 100644 index 0000000..7013120 --- /dev/null +++ b/service_config_files/ieee123/switch_level/switch_area_message_bus_87182da3-243f-4f83-8962-e555238affd0.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 87182da3-243f-4f83-8962-e555238affd0 + is_ot_bus: true diff --git a/service_config_files/ieee123/switch_level/switch_area_message_bus_b2274e97-3d3c-4268-b7e1-12b2f5481565.yml b/service_config_files/ieee123/switch_level/switch_area_message_bus_b2274e97-3d3c-4268-b7e1-12b2f5481565.yml new file mode 100644 index 0000000..f008cca --- /dev/null +++ b/service_config_files/ieee123/switch_level/switch_area_message_bus_b2274e97-3d3c-4268-b7e1-12b2f5481565.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: b2274e97-3d3c-4268-b7e1-12b2f5481565 + is_ot_bus: true diff --git a/service_config_files/ieee123/switch_level/switch_area_message_bus_f4630006-2ffd-42eb-bb4d-246abe009c5b.yml b/service_config_files/ieee123/switch_level/switch_area_message_bus_f4630006-2ffd-42eb-bb4d-246abe009c5b.yml new file mode 100644 index 0000000..bd99ee6 --- /dev/null +++ b/service_config_files/ieee123/switch_level/switch_area_message_bus_f4630006-2ffd-42eb-bb4d-246abe009c5b.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: f4630006-2ffd-42eb-bb4d-246abe009c5b + is_ot_bus: true diff --git a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/system_level/system-message-bus.yml b/service_config_files/ieee123/system_level/system-message-bus.yml similarity index 63% rename from service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/system_level/system-message-bus.yml rename to service_config_files/ieee123/system_level/system-message-bus.yml index e62da92..5267f9f 100644 --- a/service_config_files/49AD8E07-3BF9-A4E2-CB8F-C3722F837B62/system_level/system-message-bus.yml +++ b/service_config_files/ieee123/system_level/system-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus id: otbus is_ot_bus: true diff --git a/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/feeder_level/feeder-message-bus.yml b/service_config_files/ieee123pv/feeder_level/feeder-message-bus.yml similarity index 52% rename from service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/feeder_level/feeder-message-bus.yml rename to service_config_files/ieee123pv/feeder_level/feeder-message-bus.yml index 0858ff5..bec7a39 100644 --- a/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/feeder_level/feeder-message-bus.yml +++ b/service_config_files/ieee123pv/feeder_level/feeder-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _5B816B93-7A5F-B64C-8460-47C17D6E4B0F + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: E407CBB6-8C8D-9BC9-589C-AB83FBF0826D is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_036f7580-5849-459e-9422-18052e296d4c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_036f7580-5849-459e-9422-18052e296d4c.yml new file mode 100644 index 0000000..e1b6c08 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_036f7580-5849-459e-9422-18052e296d4c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 036f7580-5849-459e-9422-18052e296d4c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_04af00eb-3346-4406-936d-7159b685238e.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_04af00eb-3346-4406-936d-7159b685238e.yml new file mode 100644 index 0000000..ffc2b14 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_04af00eb-3346-4406-936d-7159b685238e.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 04af00eb-3346-4406-936d-7159b685238e + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_06a87652-5c85-4a4c-abaf-d674d608b239.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_06a87652-5c85-4a4c-abaf-d674d608b239.yml new file mode 100644 index 0000000..3266c9e --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_06a87652-5c85-4a4c-abaf-d674d608b239.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 06a87652-5c85-4a4c-abaf-d674d608b239 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0ae9716c-c066-45e9-ba81-f104527da389.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0ae9716c-c066-45e9-ba81-f104527da389.yml new file mode 100644 index 0000000..7f966ed --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0ae9716c-c066-45e9-ba81-f104527da389.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 0ae9716c-c066-45e9-ba81-f104527da389 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0bcb2438-4856-4cdd-97a1-0a9adca5d735.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0bcb2438-4856-4cdd-97a1-0a9adca5d735.yml new file mode 100644 index 0000000..cda1a0a --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0bcb2438-4856-4cdd-97a1-0a9adca5d735.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 0bcb2438-4856-4cdd-97a1-0a9adca5d735 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0c3e20d7-21c6-4e1a-9008-ace67b2dcf9e.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0c3e20d7-21c6-4e1a-9008-ace67b2dcf9e.yml new file mode 100644 index 0000000..cfdbdd8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0c3e20d7-21c6-4e1a-9008-ace67b2dcf9e.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 0c3e20d7-21c6-4e1a-9008-ace67b2dcf9e + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0d5b2746-8ad2-4179-b68f-8324e12e5a41.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0d5b2746-8ad2-4179-b68f-8324e12e5a41.yml new file mode 100644 index 0000000..d7c68a8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0d5b2746-8ad2-4179-b68f-8324e12e5a41.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 0d5b2746-8ad2-4179-b68f-8324e12e5a41 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0d7d47b0-fabd-4655-935d-11fd7449f603.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0d7d47b0-fabd-4655-935d-11fd7449f603.yml new file mode 100644 index 0000000..d5adde4 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_0d7d47b0-fabd-4655-935d-11fd7449f603.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 0d7d47b0-fabd-4655-935d-11fd7449f603 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_1e3bad10-ae30-42b4-b0d2-62954a9a5a8b.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_1e3bad10-ae30-42b4-b0d2-62954a9a5a8b.yml new file mode 100644 index 0000000..f36b2a6 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_1e3bad10-ae30-42b4-b0d2-62954a9a5a8b.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 1e3bad10-ae30-42b4-b0d2-62954a9a5a8b + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_1f8c1709-a97e-4c63-b007-aa78e0acaa2c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_1f8c1709-a97e-4c63-b007-aa78e0acaa2c.yml new file mode 100644 index 0000000..417b7c2 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_1f8c1709-a97e-4c63-b007-aa78e0acaa2c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 1f8c1709-a97e-4c63-b007-aa78e0acaa2c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2147d1b6-90ef-4f1e-aa6d-5d7816cebaee.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2147d1b6-90ef-4f1e-aa6d-5d7816cebaee.yml new file mode 100644 index 0000000..20bc9e7 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2147d1b6-90ef-4f1e-aa6d-5d7816cebaee.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 2147d1b6-90ef-4f1e-aa6d-5d7816cebaee + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_248b3cd9-1842-4789-b895-a4eb8670f79b.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_248b3cd9-1842-4789-b895-a4eb8670f79b.yml new file mode 100644 index 0000000..fd6c81e --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_248b3cd9-1842-4789-b895-a4eb8670f79b.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 248b3cd9-1842-4789-b895-a4eb8670f79b + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2672e4cc-0a99-4544-8595-c60d762273ef.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2672e4cc-0a99-4544-8595-c60d762273ef.yml new file mode 100644 index 0000000..bf5cd1c --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2672e4cc-0a99-4544-8595-c60d762273ef.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 2672e4cc-0a99-4544-8595-c60d762273ef + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2851b843-c1eb-4da2-b582-37552ae865f4.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2851b843-c1eb-4da2-b582-37552ae865f4.yml new file mode 100644 index 0000000..486185d --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2851b843-c1eb-4da2-b582-37552ae865f4.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 2851b843-c1eb-4da2-b582-37552ae865f4 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2ad86e8c-a4e8-4a8b-b647-b3325a84828c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2ad86e8c-a4e8-4a8b-b647-b3325a84828c.yml new file mode 100644 index 0000000..dfacbd4 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2ad86e8c-a4e8-4a8b-b647-b3325a84828c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 2ad86e8c-a4e8-4a8b-b647-b3325a84828c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2f380d3e-108b-4ec0-93c2-ec3c3de2b979.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2f380d3e-108b-4ec0-93c2-ec3c3de2b979.yml new file mode 100644 index 0000000..496c77a --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_2f380d3e-108b-4ec0-93c2-ec3c3de2b979.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 2f380d3e-108b-4ec0-93c2-ec3c3de2b979 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_30bc7e23-fbc2-459b-8bfb-a1be1fb7fe93.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_30bc7e23-fbc2-459b-8bfb-a1be1fb7fe93.yml new file mode 100644 index 0000000..f201b41 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_30bc7e23-fbc2-459b-8bfb-a1be1fb7fe93.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 30bc7e23-fbc2-459b-8bfb-a1be1fb7fe93 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_366b26db-7d73-42f2-bd86-505b3587ca1c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_366b26db-7d73-42f2-bd86-505b3587ca1c.yml new file mode 100644 index 0000000..fe6324e --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_366b26db-7d73-42f2-bd86-505b3587ca1c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 366b26db-7d73-42f2-bd86-505b3587ca1c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_39034e1a-132d-49b0-9a20-a05d42352cbc.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_39034e1a-132d-49b0-9a20-a05d42352cbc.yml new file mode 100644 index 0000000..1ec68ce --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_39034e1a-132d-49b0-9a20-a05d42352cbc.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 39034e1a-132d-49b0-9a20-a05d42352cbc + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_3b20f571-5d81-4991-adc9-3645238ffd05.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_3b20f571-5d81-4991-adc9-3645238ffd05.yml new file mode 100644 index 0000000..3cad94c --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_3b20f571-5d81-4991-adc9-3645238ffd05.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 3b20f571-5d81-4991-adc9-3645238ffd05 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_425f6787-1f1e-4c7d-8a48-4a18fa1ed0e6.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_425f6787-1f1e-4c7d-8a48-4a18fa1ed0e6.yml new file mode 100644 index 0000000..8b98bba --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_425f6787-1f1e-4c7d-8a48-4a18fa1ed0e6.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 425f6787-1f1e-4c7d-8a48-4a18fa1ed0e6 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_458c5c7c-579e-4cf0-82db-1bd41e360097.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_458c5c7c-579e-4cf0-82db-1bd41e360097.yml new file mode 100644 index 0000000..f86e3b8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_458c5c7c-579e-4cf0-82db-1bd41e360097.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 458c5c7c-579e-4cf0-82db-1bd41e360097 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_460584e8-4261-45a6-9d2e-b852cc8975fc.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_460584e8-4261-45a6-9d2e-b852cc8975fc.yml new file mode 100644 index 0000000..f4815a2 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_460584e8-4261-45a6-9d2e-b852cc8975fc.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 460584e8-4261-45a6-9d2e-b852cc8975fc + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_467d9d54-c883-4bc1-9e6c-c8564bec7bb7.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_467d9d54-c883-4bc1-9e6c-c8564bec7bb7.yml new file mode 100644 index 0000000..e5b8175 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_467d9d54-c883-4bc1-9e6c-c8564bec7bb7.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 467d9d54-c883-4bc1-9e6c-c8564bec7bb7 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4847493c-4e6f-4983-a172-78d0bc49a730.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4847493c-4e6f-4983-a172-78d0bc49a730.yml new file mode 100644 index 0000000..5a3dcd4 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4847493c-4e6f-4983-a172-78d0bc49a730.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 4847493c-4e6f-4983-a172-78d0bc49a730 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_49e95d31-c15e-4af8-9f55-f820eac418f0.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_49e95d31-c15e-4af8-9f55-f820eac418f0.yml new file mode 100644 index 0000000..c2b5411 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_49e95d31-c15e-4af8-9f55-f820eac418f0.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 49e95d31-c15e-4af8-9f55-f820eac418f0 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4d90eb7d-ea37-4e8a-a137-18d250b2717e.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4d90eb7d-ea37-4e8a-a137-18d250b2717e.yml new file mode 100644 index 0000000..e9f564f --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4d90eb7d-ea37-4e8a-a137-18d250b2717e.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 4d90eb7d-ea37-4e8a-a137-18d250b2717e + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4f253ca3-5d17-49e2-a7f0-29ef9a448a83.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4f253ca3-5d17-49e2-a7f0-29ef9a448a83.yml new file mode 100644 index 0000000..f2b5b43 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_4f253ca3-5d17-49e2-a7f0-29ef9a448a83.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 4f253ca3-5d17-49e2-a7f0-29ef9a448a83 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5063f680-b0c4-4566-864b-e1b1284c3256.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5063f680-b0c4-4566-864b-e1b1284c3256.yml new file mode 100644 index 0000000..8a81460 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5063f680-b0c4-4566-864b-e1b1284c3256.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5063f680-b0c4-4566-864b-e1b1284c3256 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_510f5531-61ab-4bb1-8910-41f686b3de2a.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_510f5531-61ab-4bb1-8910-41f686b3de2a.yml new file mode 100644 index 0000000..dc130ca --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_510f5531-61ab-4bb1-8910-41f686b3de2a.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 510f5531-61ab-4bb1-8910-41f686b3de2a + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_539507a4-309f-414f-928d-7f1e41b1c9c8.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_539507a4-309f-414f-928d-7f1e41b1c9c8.yml new file mode 100644 index 0000000..a9f5f51 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_539507a4-309f-414f-928d-7f1e41b1c9c8.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 539507a4-309f-414f-928d-7f1e41b1c9c8 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_55030ee1-a753-4c91-a81e-0801661b681c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_55030ee1-a753-4c91-a81e-0801661b681c.yml new file mode 100644 index 0000000..4829010 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_55030ee1-a753-4c91-a81e-0801661b681c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 55030ee1-a753-4c91-a81e-0801661b681c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5575d113-c2cc-444e-ad41-69580edba193.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5575d113-c2cc-444e-ad41-69580edba193.yml new file mode 100644 index 0000000..4d8d2d4 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5575d113-c2cc-444e-ad41-69580edba193.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5575d113-c2cc-444e-ad41-69580edba193 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5863c659-08c3-4a50-b6e6-f654cd739898.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5863c659-08c3-4a50-b6e6-f654cd739898.yml new file mode 100644 index 0000000..08736c3 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5863c659-08c3-4a50-b6e6-f654cd739898.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5863c659-08c3-4a50-b6e6-f654cd739898 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_58d1232a-ad91-4f2d-a0c4-b0152b2d4013.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_58d1232a-ad91-4f2d-a0c4-b0152b2d4013.yml new file mode 100644 index 0000000..1508309 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_58d1232a-ad91-4f2d-a0c4-b0152b2d4013.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 58d1232a-ad91-4f2d-a0c4-b0152b2d4013 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_59f34aa9-711d-42ff-84b7-e6632edc2c6c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_59f34aa9-711d-42ff-84b7-e6632edc2c6c.yml new file mode 100644 index 0000000..e6ca7d9 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_59f34aa9-711d-42ff-84b7-e6632edc2c6c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 59f34aa9-711d-42ff-84b7-e6632edc2c6c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5b029e6f-dbfa-4f07-8ae9-6b181c9b32aa.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5b029e6f-dbfa-4f07-8ae9-6b181c9b32aa.yml new file mode 100644 index 0000000..1a7f3f7 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5b029e6f-dbfa-4f07-8ae9-6b181c9b32aa.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5b029e6f-dbfa-4f07-8ae9-6b181c9b32aa + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5fe40c35-8144-4862-b44e-6b645630ef21.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5fe40c35-8144-4862-b44e-6b645630ef21.yml new file mode 100644 index 0000000..6ebd7b6 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_5fe40c35-8144-4862-b44e-6b645630ef21.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5fe40c35-8144-4862-b44e-6b645630ef21 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_619339fe-cafa-4ad6-bb50-1fba1a4de5ef.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_619339fe-cafa-4ad6-bb50-1fba1a4de5ef.yml new file mode 100644 index 0000000..67302ea --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_619339fe-cafa-4ad6-bb50-1fba1a4de5ef.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 619339fe-cafa-4ad6-bb50-1fba1a4de5ef + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_65012c83-ef87-43ee-9c59-51ddd8fffc09.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_65012c83-ef87-43ee-9c59-51ddd8fffc09.yml new file mode 100644 index 0000000..f2e6446 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_65012c83-ef87-43ee-9c59-51ddd8fffc09.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 65012c83-ef87-43ee-9c59-51ddd8fffc09 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_654f7407-0804-43b2-9feb-e5e4063a6fa6.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_654f7407-0804-43b2-9feb-e5e4063a6fa6.yml new file mode 100644 index 0000000..80827b8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_654f7407-0804-43b2-9feb-e5e4063a6fa6.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 654f7407-0804-43b2-9feb-e5e4063a6fa6 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_65868b62-17ce-48cd-9a0e-78f966f701c0.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_65868b62-17ce-48cd-9a0e-78f966f701c0.yml new file mode 100644 index 0000000..4db570b --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_65868b62-17ce-48cd-9a0e-78f966f701c0.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 65868b62-17ce-48cd-9a0e-78f966f701c0 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_696d07ca-f019-4f1c-bb02-9144ffcc2e6a.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_696d07ca-f019-4f1c-bb02-9144ffcc2e6a.yml new file mode 100644 index 0000000..d7ccf41 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_696d07ca-f019-4f1c-bb02-9144ffcc2e6a.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 696d07ca-f019-4f1c-bb02-9144ffcc2e6a + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_69a9e814-7a00-4738-a8fd-f5d89c910681.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_69a9e814-7a00-4738-a8fd-f5d89c910681.yml new file mode 100644 index 0000000..b222635 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_69a9e814-7a00-4738-a8fd-f5d89c910681.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 69a9e814-7a00-4738-a8fd-f5d89c910681 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_6c9e3bda-7e71-4caf-8b98-463c3b81dff6.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_6c9e3bda-7e71-4caf-8b98-463c3b81dff6.yml new file mode 100644 index 0000000..bb109bc --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_6c9e3bda-7e71-4caf-8b98-463c3b81dff6.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 6c9e3bda-7e71-4caf-8b98-463c3b81dff6 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_6e5c768d-0e5e-41a2-a646-0ea4d13bf66b.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_6e5c768d-0e5e-41a2-a646-0ea4d13bf66b.yml new file mode 100644 index 0000000..9deebc9 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_6e5c768d-0e5e-41a2-a646-0ea4d13bf66b.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 6e5c768d-0e5e-41a2-a646-0ea4d13bf66b + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_70c12af0-238a-42ec-835e-414d3b0684a9.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_70c12af0-238a-42ec-835e-414d3b0684a9.yml new file mode 100644 index 0000000..dc9e25f --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_70c12af0-238a-42ec-835e-414d3b0684a9.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 70c12af0-238a-42ec-835e-414d3b0684a9 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_71500756-4a76-4bcb-b4d2-d4728d8fdb9f.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_71500756-4a76-4bcb-b4d2-d4728d8fdb9f.yml new file mode 100644 index 0000000..b6a1680 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_71500756-4a76-4bcb-b4d2-d4728d8fdb9f.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 71500756-4a76-4bcb-b4d2-d4728d8fdb9f + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_7476c8ff-311d-47d3-a53e-d4af537987a3.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_7476c8ff-311d-47d3-a53e-d4af537987a3.yml new file mode 100644 index 0000000..c330808 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_7476c8ff-311d-47d3-a53e-d4af537987a3.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 7476c8ff-311d-47d3-a53e-d4af537987a3 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_7a0031aa-9d54-4673-bd7e-fef375a35af7.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_7a0031aa-9d54-4673-bd7e-fef375a35af7.yml new file mode 100644 index 0000000..03c1882 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_7a0031aa-9d54-4673-bd7e-fef375a35af7.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 7a0031aa-9d54-4673-bd7e-fef375a35af7 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_860fe1f3-df24-4b70-917e-22524ce09300.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_860fe1f3-df24-4b70-917e-22524ce09300.yml new file mode 100644 index 0000000..ea6c249 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_860fe1f3-df24-4b70-917e-22524ce09300.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 860fe1f3-df24-4b70-917e-22524ce09300 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_8becb29a-cc2a-4208-8af0-170f4d87addf.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_8becb29a-cc2a-4208-8af0-170f4d87addf.yml new file mode 100644 index 0000000..d9560f8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_8becb29a-cc2a-4208-8af0-170f4d87addf.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 8becb29a-cc2a-4208-8af0-170f4d87addf + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_8eb86ce1-8de2-4b5f-8bf2-37ecfb5e2ebe.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_8eb86ce1-8de2-4b5f-8bf2-37ecfb5e2ebe.yml new file mode 100644 index 0000000..4b76901 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_8eb86ce1-8de2-4b5f-8bf2-37ecfb5e2ebe.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 8eb86ce1-8de2-4b5f-8bf2-37ecfb5e2ebe + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_92b002cb-c6a4-4492-80fc-6d98e5c2a085.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_92b002cb-c6a4-4492-80fc-6d98e5c2a085.yml new file mode 100644 index 0000000..2791832 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_92b002cb-c6a4-4492-80fc-6d98e5c2a085.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 92b002cb-c6a4-4492-80fc-6d98e5c2a085 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_9943fac6-a14e-4313-9d22-69fc8962d6a8.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_9943fac6-a14e-4313-9d22-69fc8962d6a8.yml new file mode 100644 index 0000000..9f00687 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_9943fac6-a14e-4313-9d22-69fc8962d6a8.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 9943fac6-a14e-4313-9d22-69fc8962d6a8 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a38623d4-18e6-4fdb-8c08-2a3e5b115257.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a38623d4-18e6-4fdb-8c08-2a3e5b115257.yml new file mode 100644 index 0000000..3e342c0 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a38623d4-18e6-4fdb-8c08-2a3e5b115257.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: a38623d4-18e6-4fdb-8c08-2a3e5b115257 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a4dc6287-b11c-47df-b290-5cc2098df862.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a4dc6287-b11c-47df-b290-5cc2098df862.yml new file mode 100644 index 0000000..af14ba2 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a4dc6287-b11c-47df-b290-5cc2098df862.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: a4dc6287-b11c-47df-b290-5cc2098df862 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a5e81405-d73c-4e6b-bd49-2804eaf89732.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a5e81405-d73c-4e6b-bd49-2804eaf89732.yml new file mode 100644 index 0000000..8e256f0 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a5e81405-d73c-4e6b-bd49-2804eaf89732.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: a5e81405-d73c-4e6b-bd49-2804eaf89732 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a877ed04-6f28-4d1f-9669-fcaa20005a21.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a877ed04-6f28-4d1f-9669-fcaa20005a21.yml new file mode 100644 index 0000000..c798004 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_a877ed04-6f28-4d1f-9669-fcaa20005a21.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: a877ed04-6f28-4d1f-9669-fcaa20005a21 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_aa77a7a3-db92-401b-afb0-37d713dafbbf.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_aa77a7a3-db92-401b-afb0-37d713dafbbf.yml new file mode 100644 index 0000000..c5c1e2a --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_aa77a7a3-db92-401b-afb0-37d713dafbbf.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: aa77a7a3-db92-401b-afb0-37d713dafbbf + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_afea7fac-e9b7-4df9-93c6-152e1e2f1972.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_afea7fac-e9b7-4df9-93c6-152e1e2f1972.yml new file mode 100644 index 0000000..5bccaa8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_afea7fac-e9b7-4df9-93c6-152e1e2f1972.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: afea7fac-e9b7-4df9-93c6-152e1e2f1972 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_b3b3c576-5106-4668-bfd8-5065508bc0e1.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_b3b3c576-5106-4668-bfd8-5065508bc0e1.yml new file mode 100644 index 0000000..d17ad6a --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_b3b3c576-5106-4668-bfd8-5065508bc0e1.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: b3b3c576-5106-4668-bfd8-5065508bc0e1 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_bce63d78-b8c4-44cb-b5d6-16a260bab8a1.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_bce63d78-b8c4-44cb-b5d6-16a260bab8a1.yml new file mode 100644 index 0000000..fd3d7f9 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_bce63d78-b8c4-44cb-b5d6-16a260bab8a1.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: bce63d78-b8c4-44cb-b5d6-16a260bab8a1 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_c12a8894-c47a-46ad-9937-ca5406210a16.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_c12a8894-c47a-46ad-9937-ca5406210a16.yml new file mode 100644 index 0000000..7b62285 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_c12a8894-c47a-46ad-9937-ca5406210a16.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: c12a8894-c47a-46ad-9937-ca5406210a16 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_c4722d84-060b-47c6-aed5-a37df291a056.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_c4722d84-060b-47c6-aed5-a37df291a056.yml new file mode 100644 index 0000000..233e0ed --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_c4722d84-060b-47c6-aed5-a37df291a056.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: c4722d84-060b-47c6-aed5-a37df291a056 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ca33c117-349d-45f3-8a0d-740ab8b6a98b.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ca33c117-349d-45f3-8a0d-740ab8b6a98b.yml new file mode 100644 index 0000000..ee16c21 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ca33c117-349d-45f3-8a0d-740ab8b6a98b.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: ca33c117-349d-45f3-8a0d-740ab8b6a98b + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_cf6dbefd-4eb3-460f-ac53-2a5df360d3af.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_cf6dbefd-4eb3-460f-ac53-2a5df360d3af.yml new file mode 100644 index 0000000..721ccf8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_cf6dbefd-4eb3-460f-ac53-2a5df360d3af.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: cf6dbefd-4eb3-460f-ac53-2a5df360d3af + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d31fb149-abcf-407b-ae05-00d2178f5932.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d31fb149-abcf-407b-ae05-00d2178f5932.yml new file mode 100644 index 0000000..a322945 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d31fb149-abcf-407b-ae05-00d2178f5932.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: d31fb149-abcf-407b-ae05-00d2178f5932 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d68f12c2-256c-4b0e-a9ee-accba9dd0e58.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d68f12c2-256c-4b0e-a9ee-accba9dd0e58.yml new file mode 100644 index 0000000..2b832a8 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d68f12c2-256c-4b0e-a9ee-accba9dd0e58.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: d68f12c2-256c-4b0e-a9ee-accba9dd0e58 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d762ff9f-9acf-46a9-8af6-060cf56b4112.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d762ff9f-9acf-46a9-8af6-060cf56b4112.yml new file mode 100644 index 0000000..c24ffcc --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_d762ff9f-9acf-46a9-8af6-060cf56b4112.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: d762ff9f-9acf-46a9-8af6-060cf56b4112 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ddeedebf-09ba-463b-99d1-ebd42411593c.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ddeedebf-09ba-463b-99d1-ebd42411593c.yml new file mode 100644 index 0000000..38cdb57 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ddeedebf-09ba-463b-99d1-ebd42411593c.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: ddeedebf-09ba-463b-99d1-ebd42411593c + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_df4a052a-20b5-4038-bf5d-6a01d8177664.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_df4a052a-20b5-4038-bf5d-6a01d8177664.yml new file mode 100644 index 0000000..ea1ce22 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_df4a052a-20b5-4038-bf5d-6a01d8177664.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: df4a052a-20b5-4038-bf5d-6a01d8177664 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_dfdf9496-97ad-4caa-8208-25aa23546241.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_dfdf9496-97ad-4caa-8208-25aa23546241.yml new file mode 100644 index 0000000..ba0c170 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_dfdf9496-97ad-4caa-8208-25aa23546241.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: dfdf9496-97ad-4caa-8208-25aa23546241 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_e99e77c6-3c9f-43f7-85b4-6b13e393bbb4.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_e99e77c6-3c9f-43f7-85b4-6b13e393bbb4.yml new file mode 100644 index 0000000..ed2a599 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_e99e77c6-3c9f-43f7-85b4-6b13e393bbb4.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: e99e77c6-3c9f-43f7-85b4-6b13e393bbb4 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ea8bf8ae-586d-4970-ae79-430a6922f8d6.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ea8bf8ae-586d-4970-ae79-430a6922f8d6.yml new file mode 100644 index 0000000..210f1de --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ea8bf8ae-586d-4970-ae79-430a6922f8d6.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: ea8bf8ae-586d-4970-ae79-430a6922f8d6 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ee2e966b-e897-44f1-a91f-3a3f24d92655.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ee2e966b-e897-44f1-a91f-3a3f24d92655.yml new file mode 100644 index 0000000..10fc1fc --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ee2e966b-e897-44f1-a91f-3a3f24d92655.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: ee2e966b-e897-44f1-a91f-3a3f24d92655 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ef6b9afa-122e-4c02-8e09-6b03e9b2ebed.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ef6b9afa-122e-4c02-8e09-6b03e9b2ebed.yml new file mode 100644 index 0000000..3843168 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_ef6b9afa-122e-4c02-8e09-6b03e9b2ebed.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: ef6b9afa-122e-4c02-8e09-6b03e9b2ebed + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f08d573b-500c-486e-90a9-50e079cf43d0.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f08d573b-500c-486e-90a9-50e079cf43d0.yml new file mode 100644 index 0000000..aba63e1 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f08d573b-500c-486e-90a9-50e079cf43d0.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: f08d573b-500c-486e-90a9-50e079cf43d0 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f26fbea0-30e6-433e-b89b-5d6945225e60.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f26fbea0-30e6-433e-b89b-5d6945225e60.yml new file mode 100644 index 0000000..cf49823 --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f26fbea0-30e6-433e-b89b-5d6945225e60.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: f26fbea0-30e6-433e-b89b-5d6945225e60 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f4fdffc7-c1fb-4df9-9bb7-2d03d4567895.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f4fdffc7-c1fb-4df9-9bb7-2d03d4567895.yml new file mode 100644 index 0000000..52bf3ae --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f4fdffc7-c1fb-4df9-9bb7-2d03d4567895.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: f4fdffc7-c1fb-4df9-9bb7-2d03d4567895 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f8569761-abcb-4484-b392-5003f6d1c611.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f8569761-abcb-4484-b392-5003f6d1c611.yml new file mode 100644 index 0000000..d1f242a --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_f8569761-abcb-4484-b392-5003f6d1c611.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: f8569761-abcb-4484-b392-5003f6d1c611 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_fd453761-794e-483e-ba54-b876b7cf3503.yml b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_fd453761-794e-483e-ba54-b876b7cf3503.yml new file mode 100644 index 0000000..07e006b --- /dev/null +++ b/service_config_files/ieee123pv/secondary_level/secondary_area_message_bus_fd453761-794e-483e-ba54-b876b7cf3503.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: fd453761-794e-483e-ba54-b876b7cf3503 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_099fff25-3a67-45e4-a09f-03f5737ee681.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_099fff25-3a67-45e4-a09f-03f5737ee681.yml new file mode 100644 index 0000000..3515b6f --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_099fff25-3a67-45e4-a09f-03f5737ee681.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 099fff25-3a67-45e4-a09f-03f5737ee681 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_3fc6bce4-af26-4e4c-ba56-cb795137dfd6.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_3fc6bce4-af26-4e4c-ba56-cb795137dfd6.yml new file mode 100644 index 0000000..a32af03 --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_3fc6bce4-af26-4e4c-ba56-cb795137dfd6.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 3fc6bce4-af26-4e4c-ba56-cb795137dfd6 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_549112bd-1d79-4f20-b38c-829bb04b17aa.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_549112bd-1d79-4f20-b38c-829bb04b17aa.yml new file mode 100644 index 0000000..b9140ff --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_549112bd-1d79-4f20-b38c-829bb04b17aa.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 549112bd-1d79-4f20-b38c-829bb04b17aa + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_56147bbc-5139-47a9-aeb2-5c92a2180800.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_56147bbc-5139-47a9-aeb2-5c92a2180800.yml new file mode 100644 index 0000000..3600294 --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_56147bbc-5139-47a9-aeb2-5c92a2180800.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 56147bbc-5139-47a9-aeb2-5c92a2180800 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_667ec684-e4d1-42a6-a56d-4ffc768e3081.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_667ec684-e4d1-42a6-a56d-4ffc768e3081.yml new file mode 100644 index 0000000..dad8604 --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_667ec684-e4d1-42a6-a56d-4ffc768e3081.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 667ec684-e4d1-42a6-a56d-4ffc768e3081 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_78ff7d1c-2e4b-42e2-a37b-908a20a43b63.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_78ff7d1c-2e4b-42e2-a37b-908a20a43b63.yml new file mode 100644 index 0000000..9ed9bce --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_78ff7d1c-2e4b-42e2-a37b-908a20a43b63.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 78ff7d1c-2e4b-42e2-a37b-908a20a43b63 + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_cfe72655-2adf-4910-a106-5c74bf6eeeda.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_cfe72655-2adf-4910-a106-5c74bf6eeeda.yml new file mode 100644 index 0000000..b19ea1d --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_cfe72655-2adf-4910-a106-5c74bf6eeeda.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: cfe72655-2adf-4910-a106-5c74bf6eeeda + is_ot_bus: true diff --git a/service_config_files/ieee123pv/switch_level/switch_area_message_bus_d2a49a04-7ac9-49d5-8b33-9757e075053d.yml b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_d2a49a04-7ac9-49d5-8b33-9757e075053d.yml new file mode 100644 index 0000000..0772a04 --- /dev/null +++ b/service_config_files/ieee123pv/switch_level/switch_area_message_bus_d2a49a04-7ac9-49d5-8b33-9757e075053d.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: d2a49a04-7ac9-49d5-8b33-9757e075053d + is_ot_bus: true diff --git a/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/system_level/system-message-bus.yml b/service_config_files/ieee123pv/system_level/system-message-bus.yml similarity index 63% rename from service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/system_level/system-message-bus.yml rename to service_config_files/ieee123pv/system_level/system-message-bus.yml index e62da92..5267f9f 100644 --- a/service_config_files/5B816B93-7A5F-B64C-8460-47C17D6E4B0F/system_level/system-message-bus.yml +++ b/service_config_files/ieee123pv/system_level/system-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus id: otbus is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/feeder_level/feeder-message-bus.yml b/service_config_files/ieee13nodeckt/feeder_level/feeder-message-bus.yml similarity index 52% rename from service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/feeder_level/feeder-message-bus.yml rename to service_config_files/ieee13nodeckt/feeder_level/feeder-message-bus.yml index f2353c6..e64d598 100644 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/feeder_level/feeder-message-bus.yml +++ b/service_config_files/ieee13nodeckt/feeder_level/feeder-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _C1C3E687-6FFD-C753-582B-632A27E28507 + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 49AD8E07-3BF9-A4E2-CB8F-C3722F837B62 is_ot_bus: true diff --git a/service_config_files/ieee13nodeckt/secondary_level/secondary_area_message_bus_4396f6fc-5231-4af1-a2a6-d5b9e0836983.yml b/service_config_files/ieee13nodeckt/secondary_level/secondary_area_message_bus_4396f6fc-5231-4af1-a2a6-d5b9e0836983.yml new file mode 100644 index 0000000..c5636f5 --- /dev/null +++ b/service_config_files/ieee13nodeckt/secondary_level/secondary_area_message_bus_4396f6fc-5231-4af1-a2a6-d5b9e0836983.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 4396f6fc-5231-4af1-a2a6-d5b9e0836983 + is_ot_bus: true diff --git a/service_config_files/ieee13nodeckt/secondary_level/secondary_area_message_bus_91aac04c-8d87-4385-a3a2-b768aeaddfd2.yml b/service_config_files/ieee13nodeckt/secondary_level/secondary_area_message_bus_91aac04c-8d87-4385-a3a2-b768aeaddfd2.yml new file mode 100644 index 0000000..b02a712 --- /dev/null +++ b/service_config_files/ieee13nodeckt/secondary_level/secondary_area_message_bus_91aac04c-8d87-4385-a3a2-b768aeaddfd2.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 91aac04c-8d87-4385-a3a2-b768aeaddfd2 + is_ot_bus: true diff --git a/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_1f39b37f-2a84-4f56-b557-3a72cb840434.yml b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_1f39b37f-2a84-4f56-b557-3a72cb840434.yml new file mode 100644 index 0000000..c430f3a --- /dev/null +++ b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_1f39b37f-2a84-4f56-b557-3a72cb840434.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 1f39b37f-2a84-4f56-b557-3a72cb840434 + is_ot_bus: true diff --git a/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_2cff1e26-8f8f-42b5-b054-87f28523d303.yml b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_2cff1e26-8f8f-42b5-b054-87f28523d303.yml new file mode 100644 index 0000000..6a8ef2b --- /dev/null +++ b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_2cff1e26-8f8f-42b5-b054-87f28523d303.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 2cff1e26-8f8f-42b5-b054-87f28523d303 + is_ot_bus: true diff --git a/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_30c3c4ce-a7b6-4f7b-b2bc-3d771ed09b2b.yml b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_30c3c4ce-a7b6-4f7b-b2bc-3d771ed09b2b.yml new file mode 100644 index 0000000..2c0ea2c --- /dev/null +++ b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_30c3c4ce-a7b6-4f7b-b2bc-3d771ed09b2b.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 30c3c4ce-a7b6-4f7b-b2bc-3d771ed09b2b + is_ot_bus: true diff --git a/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_4021f7cf-340c-45e3-841f-e7b5fe8b93be.yml b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_4021f7cf-340c-45e3-841f-e7b5fe8b93be.yml new file mode 100644 index 0000000..9715692 --- /dev/null +++ b/service_config_files/ieee13nodeckt/switch_level/switch_area_message_bus_4021f7cf-340c-45e3-841f-e7b5fe8b93be.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 4021f7cf-340c-45e3-841f-e7b5fe8b93be + is_ot_bus: true diff --git a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/system_level/system-message-bus.yml b/service_config_files/ieee13nodeckt/system_level/system-message-bus.yml similarity index 63% rename from service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/system_level/system-message-bus.yml rename to service_config_files/ieee13nodeckt/system_level/system-message-bus.yml index e62da92..5267f9f 100644 --- a/service_config_files/C1C3E687-6FFD-C753-582B-632A27E28507/system_level/system-message-bus.yml +++ b/service_config_files/ieee13nodeckt/system_level/system-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus id: otbus is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/feeder_level/feeder-message-bus.yml b/service_config_files/ieee13nodecktassets/feeder_level/feeder-message-bus.yml similarity index 52% rename from service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/feeder_level/feeder-message-bus.yml rename to service_config_files/ieee13nodecktassets/feeder_level/feeder-message-bus.yml index 6dc6d15..9227cee 100644 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/feeder_level/feeder-message-bus.yml +++ b/service_config_files/ieee13nodecktassets/feeder_level/feeder-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD - id: _E407CBB6-8C8D-9BC9-589C-AB83FBF0826D + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: 5B816B93-7A5F-B64C-8460-47C17D6E4B0F is_ot_bus: true diff --git a/service_config_files/ieee13nodecktassets/switch_level/switch_area_message_bus_b8eec813-dad8-43a2-a955-46beef5e784f.yml b/service_config_files/ieee13nodecktassets/switch_level/switch_area_message_bus_b8eec813-dad8-43a2-a955-46beef5e784f.yml new file mode 100644 index 0000000..980105d --- /dev/null +++ b/service_config_files/ieee13nodecktassets/switch_level/switch_area_message_bus_b8eec813-dad8-43a2-a955-46beef5e784f.yml @@ -0,0 +1,8 @@ +connections: + connection_args: + GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 + GRIDAPPSD_PASSWORD: manager + GRIDAPPSD_USER: system + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus + id: b8eec813-dad8-43a2-a955-46beef5e784f + is_ot_bus: true diff --git a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/system_level/system-message-bus.yml b/service_config_files/ieee13nodecktassets/system_level/system-message-bus.yml similarity index 63% rename from service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/system_level/system-message-bus.yml rename to service_config_files/ieee13nodecktassets/system_level/system-message-bus.yml index e62da92..5267f9f 100644 --- a/service_config_files/E407CBB6-8C8D-9BC9-589C-AB83FBF0826D/system_level/system-message-bus.yml +++ b/service_config_files/ieee13nodecktassets/system_level/system-message-bus.yml @@ -3,6 +3,6 @@ connections: GRIDAPPSD_ADDRESS: tcp://gridappsd:61613 GRIDAPPSD_PASSWORD: manager GRIDAPPSD_USER: system - connection_type: CONNECTION_TYPE_GRIDAPPSD + connection_type: gridappsd_field_bus.field_interface.gridappsd_field_bus.GridAPPSDMessageBus id: otbus is_ot_bus: true diff --git a/ybus_utils.py b/ybus_utils.py index b138d60..ef92cbd 100644 --- a/ybus_utils.py +++ b/ybus_utils.py @@ -46,12 +46,12 @@ from cimgraph.data_profile import CIM_PROFILE from cimgraph.models import DistributedArea import cimgraph.utils as cimUtils -import gridappsd.field_interface.agents.agents as agents_mod +import gridappsd_field_bus.field_interface.agents.agents as agents_mod import numpy as np # TODO: query gridappsd-python for correct cim_profile instead of hardcoding it. -cim_profile = CIM_PROFILE.RC4_2021.value -agents_mod.set_cim_profile(cim_profile, iec61970_301=7) +cim_profile = CIM_PROFILE.CIMHUB_2023.value +agents_mod.set_cim_profile(cim_profile, iec61970_301=8) cim = agents_mod.cim logger = logging.getLogger(__name__) @@ -760,7 +760,7 @@ def transformerTankXfmrNames(distributedArea: DistributedArea) -> List[Dict]: desiredInfo["enum"] = {"value": transformerTankEnd.endNumber} desiredInfo["bus"] = {"value": transformerTankEnd.Terminal.ConnectivityNode.name} desiredInfo["baseV"] = {"value": transformerTankEnd.BaseVoltage.nominalVoltage} - desiredInfo["phase"] = {"value": transformerTankEnd.phases.value} + desiredInfo["phase"] = {"value": transformerTankEnd.orderedPhases.value} dictContainsNone = False nullAttributes = [] for i, v in desiredInfo.items(): @@ -1370,7 +1370,7 @@ def fillYbusWireInfoAndWireSpacingInfoLines(distributedArea: DistributedArea, Yb YCoord = {} for obj in bindings: wire_spacing_info = obj['wire_spacing_info']['value'] - cableFlag = obj['cable']['value'].upper() == 'TRUE' # don't depend on lowercase + cableFlag = obj['cable']['value'] seq = int(obj['seq']['value']) if wire_spacing_info not in XCoord.keys(): XCoord[wire_spacing_info] = {} @@ -2080,7 +2080,7 @@ def fillYbusSwitchingEquipmentSwitches(distributedArea: DistributedArea, Ybus: D ybusPhaseIdx = {'A': '.1', 'B': '.2', 'C': '.3'} for obj in bindings: sw_name = obj['sw_name']['value'] - is_Open = obj['is_Open']['value'].upper() == 'TRUE' + is_Open = obj['is_Open']['value'] bus1 = obj['bus1']['value'].upper() bus2 = obj['bus2']['value'].upper() phases_side1 = obj['phases_side1']['value']