pyegeria 1.5.1.1.10__py3-none-any.whl → 1.5.1.1.11__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pyegeria/runtime_manager_omvs.py +22 -8
- {pyegeria-1.5.1.1.10.dist-info → pyegeria-1.5.1.1.11.dist-info}/METADATA +1 -1
- {pyegeria-1.5.1.1.10.dist-info → pyegeria-1.5.1.1.11.dist-info}/RECORD +6 -6
- {pyegeria-1.5.1.1.10.dist-info → pyegeria-1.5.1.1.11.dist-info}/LICENSE +0 -0
- {pyegeria-1.5.1.1.10.dist-info → pyegeria-1.5.1.1.11.dist-info}/WHEEL +0 -0
- {pyegeria-1.5.1.1.10.dist-info → pyegeria-1.5.1.1.11.dist-info}/entry_points.txt +0 -0
pyegeria/runtime_manager_omvs.py
CHANGED
@@ -478,7 +478,7 @@ class RuntimeManager(Client):
|
|
478
478
|
|
479
479
|
"""
|
480
480
|
server_guid = self.__get_guid__(
|
481
|
-
server_guid, server_name, "
|
481
|
+
server_guid, server_name, "qualifiedName", "Integration Daemon"
|
482
482
|
)
|
483
483
|
url = (
|
484
484
|
f"{self.runtime_command_root}/integration-daemons/"
|
@@ -561,7 +561,9 @@ class RuntimeManager(Client):
|
|
561
561
|
UserNotAuthorizedException
|
562
562
|
|
563
563
|
"""
|
564
|
-
server_guid = self.__get_guid__(
|
564
|
+
server_guid = self.__get_guid__(
|
565
|
+
server_guid, server_name, "qualifiedName", "Connection"
|
566
|
+
)
|
565
567
|
url = (
|
566
568
|
f"{self.runtime_command_root}/integration-daemons/"
|
567
569
|
f"{server_guid}/integration-connectors/{connector_name}/configuration-properties"
|
@@ -661,7 +663,9 @@ class RuntimeManager(Client):
|
|
661
663
|
UserNotAuthorizedException
|
662
664
|
|
663
665
|
"""
|
664
|
-
server_guid = self.__get_guid__(
|
666
|
+
server_guid = self.__get_guid__(
|
667
|
+
server_guid, server_name, "qualifiedName", "Connection"
|
668
|
+
)
|
665
669
|
url = (
|
666
670
|
f"{self.runtime_command_root}/integration-daemons/"
|
667
671
|
f"{server_guid}/integration-connectors/{connector_name}/endpoint-network-address"
|
@@ -748,7 +752,9 @@ class RuntimeManager(Client):
|
|
748
752
|
UserNotAuthorizedException
|
749
753
|
|
750
754
|
"""
|
751
|
-
server_guid = self.__get_guid__(
|
755
|
+
server_guid = self.__get_guid__(
|
756
|
+
server_guid, server_name, "qualifiedName", "Integration Daemon"
|
757
|
+
)
|
752
758
|
url = (
|
753
759
|
f"{self.runtime_command_root}/integration-daemons/"
|
754
760
|
f"{server_guid}/integration-connectors/refresh"
|
@@ -831,7 +837,9 @@ class RuntimeManager(Client):
|
|
831
837
|
UserNotAuthorizedException
|
832
838
|
|
833
839
|
"""
|
834
|
-
server_guid = self.__get_guid__(
|
840
|
+
server_guid = self.__get_guid__(
|
841
|
+
server_guid, server_name, "qualifiedName", "Integration Daemon"
|
842
|
+
)
|
835
843
|
url = (
|
836
844
|
f"{self.runtime_command_root}/integration-daemons/"
|
837
845
|
f"{server_guid}/integration-connectors/restart"
|
@@ -916,7 +924,9 @@ class RuntimeManager(Client):
|
|
916
924
|
UserNotAuthorizedException
|
917
925
|
|
918
926
|
"""
|
919
|
-
server_guid = self.__get_guid__(
|
927
|
+
server_guid = self.__get_guid__(
|
928
|
+
server_guid, server_name, "qualifiedName", "Integration Daemon"
|
929
|
+
)
|
920
930
|
url = (
|
921
931
|
f"{self.runtime_command_root}/integration-daemons/"
|
922
932
|
f"{server_guid}/integration-groups/{integ_group_name}/refresh-config"
|
@@ -1081,7 +1091,9 @@ class RuntimeManager(Client):
|
|
1081
1091
|
UserNotAuthorizedException
|
1082
1092
|
|
1083
1093
|
"""
|
1084
|
-
server_guid = self.__get_guid__(
|
1094
|
+
server_guid = self.__get_guid__(
|
1095
|
+
server_guid, server_name, "qualifiedName", "Metadata Access Store"
|
1096
|
+
)
|
1085
1097
|
url = (
|
1086
1098
|
f"{self.runtime_command_root}/metadata-access-stores/{server_guid}/instance/load/open-metadata-archives/"
|
1087
1099
|
f"archive-content"
|
@@ -1172,7 +1184,9 @@ class RuntimeManager(Client):
|
|
1172
1184
|
|
1173
1185
|
"""
|
1174
1186
|
server_name = f"Metadata Access Server:{server_name}"
|
1175
|
-
server_guid = self.__get_guid__(
|
1187
|
+
server_guid = self.__get_guid__(
|
1188
|
+
server_guid, server_name, "qualifiedName", "Metadata Access Store"
|
1189
|
+
)
|
1176
1190
|
url = f"{self.runtime_command_root}/metadata-access-stores/{server_guid}/instance/load/open-metadata-archives/file"
|
1177
1191
|
|
1178
1192
|
await self._async_make_request(
|
@@ -98,14 +98,14 @@ pyegeria/my_profile_omvs.py,sha256=DyECbUFEcgokrIbzdMMNljC3bqfqKGXAF2wZEpzvRYs,3
|
|
98
98
|
pyegeria/platform_services.py,sha256=CJIOYIFEbcIGwdWlApAQcXxZTsdrhFtpJcm4O3p7dG0,41646
|
99
99
|
pyegeria/project_manager_omvs.py,sha256=Y7Lyqh4jIujJrr_Ub7feo904FN_uz4R10T4hKhqE1Uw,67499
|
100
100
|
pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
|
101
|
-
pyegeria/runtime_manager_omvs.py,sha256=
|
101
|
+
pyegeria/runtime_manager_omvs.py,sha256=En4Y2oBPXX477NRT3mEp4bdpPCYKx-HCihcKdaPlb0M,76222
|
102
102
|
pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
|
103
103
|
pyegeria/template_manager_omvs.py,sha256=heqbKeum5hPCHap4r1RUZU8YB3QaQlxVNbq4GZimJtE,42450
|
104
104
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
105
105
|
pyegeria/valid_metadata_omvs.py,sha256=tfCGXed5LLt59YA8uZNNtd9UJ-lRZfPU_uZxK31Yux0,65069
|
106
106
|
pyegeria/x_action_author_omvs.py,sha256=xu1IQ0YbhIKi17C5a7Aq9u1Az2czwahNPpX9czmyVxE,6454
|
107
|
-
pyegeria-1.5.1.1.
|
108
|
-
pyegeria-1.5.1.1.
|
109
|
-
pyegeria-1.5.1.1.
|
110
|
-
pyegeria-1.5.1.1.
|
111
|
-
pyegeria-1.5.1.1.
|
107
|
+
pyegeria-1.5.1.1.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
108
|
+
pyegeria-1.5.1.1.11.dist-info/METADATA,sha256=1gGEbsh_40wIn2PEdk8fEwwQQg5UufTbuZjRBN3MUgQ,2998
|
109
|
+
pyegeria-1.5.1.1.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
110
|
+
pyegeria-1.5.1.1.11.dist-info/entry_points.txt,sha256=aSpiaOuOEL1QBfuIGOaATzDCihpVOyvIK1XCQHK3uRc,4186
|
111
|
+
pyegeria-1.5.1.1.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|