pyegeria 0.8.4.9__py3-none-any.whl → 0.8.4.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.
- examples/widgets/ops/README.md +24 -0
- examples/widgets/ops/__init__.py +19 -0
- examples/widgets/ops/engine_actions.py +83 -0
- examples/widgets/ops/integration_daemon_actions.py +139 -0
- examples/widgets/ops/list_catalog_targets.py +157 -0
- examples/widgets/ops/load_archive.py +62 -0
- examples/widgets/ops/monitor_asset_events.py +102 -0
- examples/widgets/ops/monitor_coco_status.py +103 -0
- examples/widgets/ops/monitor_engine_activity.py +236 -0
- examples/widgets/ops/monitor_engine_activity_c.py +253 -0
- examples/widgets/ops/monitor_gov_eng_status.py +188 -0
- examples/widgets/ops/monitor_integ_daemon_status.py +256 -0
- examples/widgets/ops/monitor_platform_status.py +176 -0
- examples/widgets/ops/monitor_server_list.py +140 -0
- examples/widgets/ops/monitor_server_status.py +109 -0
- examples/widgets/ops/refresh_integration_daemon.py +73 -0
- examples/widgets/ops/restart_integration_daemon.py +73 -0
- pyegeria/classification_manager_omvs.py +396 -1
- pyegeria/runtime_manager_omvs.py +120 -0
- {pyegeria-0.8.4.9.dist-info → pyegeria-0.8.4.11.dist-info}/METADATA +1 -1
- {pyegeria-0.8.4.9.dist-info → pyegeria-0.8.4.11.dist-info}/RECORD +24 -7
- {pyegeria-0.8.4.9.dist-info → pyegeria-0.8.4.11.dist-info}/LICENSE +0 -0
- {pyegeria-0.8.4.9.dist-info → pyegeria-0.8.4.11.dist-info}/WHEEL +0 -0
- {pyegeria-0.8.4.9.dist-info → pyegeria-0.8.4.11.dist-info}/entry_points.txt +0 -0
@@ -431,6 +431,401 @@ class ClassificationManager(Client):
|
|
431
431
|
)
|
432
432
|
return response
|
433
433
|
|
434
|
+
async def _async_get_element_by_guid(
|
435
|
+
self,
|
436
|
+
element_guid: str,
|
437
|
+
effective_time: str = None,
|
438
|
+
for_lineage: bool = None,
|
439
|
+
for_duplicate_processing: bool = None,
|
440
|
+
server_name: str = None,
|
441
|
+
time_out: int = default_time_out,
|
442
|
+
) -> dict | str:
|
443
|
+
"""
|
444
|
+
Retrieve element by its unique identifier. Async version.
|
445
|
+
|
446
|
+
https://egeria-project.org/types/
|
447
|
+
|
448
|
+
Parameters
|
449
|
+
----------
|
450
|
+
element_guid: str
|
451
|
+
- unique identifier for the element
|
452
|
+
effective_time: str, default = None
|
453
|
+
- Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
454
|
+
for_lineage: bool, default is set by server
|
455
|
+
- determines if elements classified as Memento should be returned - normally false
|
456
|
+
for_duplicate_processing: bool, default is set by server
|
457
|
+
- Normally false. Set true when the caller is part of a deduplication function
|
458
|
+
server_name: str, default = None
|
459
|
+
- name of the server instances for this request.
|
460
|
+
time_out: int, default = default_time_out
|
461
|
+
- http request timeout for this request
|
462
|
+
|
463
|
+
Returns
|
464
|
+
-------
|
465
|
+
dict | str
|
466
|
+
Returns a string if no elements found; otherwise a dict of the element.
|
467
|
+
|
468
|
+
Raises
|
469
|
+
------
|
470
|
+
InvalidParameterException
|
471
|
+
one of the parameters is null or invalid or
|
472
|
+
PropertyServerException
|
473
|
+
There is a problem adding the element properties to the metadata repository or
|
474
|
+
UserNotAuthorizedException
|
475
|
+
the requesting user is not authorized to issue this request.
|
476
|
+
"""
|
477
|
+
if server_name is None:
|
478
|
+
server_name = self.server_name
|
479
|
+
|
480
|
+
possible_query_params = query_string(
|
481
|
+
[
|
482
|
+
("forLineage", for_lineage),
|
483
|
+
("forDuplicateProcessing", for_duplicate_processing),
|
484
|
+
]
|
485
|
+
)
|
486
|
+
|
487
|
+
body = {
|
488
|
+
"class": "EffectiveTimeQueryRequestBody",
|
489
|
+
"effectiveTime": effective_time,
|
490
|
+
}
|
491
|
+
|
492
|
+
url = f"{base_path(self, server_name)}/elements/{element_guid}{possible_query_params}"
|
493
|
+
|
494
|
+
response: Response = await self._async_make_request(
|
495
|
+
"POST", url, body_slimmer(body), time_out=time_out
|
496
|
+
)
|
497
|
+
|
498
|
+
elements = response.json().get("elements", "No elements found")
|
499
|
+
if type(elements) is list:
|
500
|
+
if len(elements) == 0:
|
501
|
+
return "No elements found"
|
502
|
+
return elements
|
503
|
+
|
504
|
+
def get_element_by_guid(
|
505
|
+
self,
|
506
|
+
element_guid: str,
|
507
|
+
effective_time: str = None,
|
508
|
+
for_lineage: bool = None,
|
509
|
+
for_duplicate_processing: bool = None,
|
510
|
+
server_name: str = None,
|
511
|
+
time_out: int = default_time_out,
|
512
|
+
) -> dict | str:
|
513
|
+
"""
|
514
|
+
Retrieve element by its unique identifier.
|
515
|
+
|
516
|
+
https://egeria-project.org/types/
|
517
|
+
|
518
|
+
Parameters
|
519
|
+
----------
|
520
|
+
element_guid: str
|
521
|
+
- unique identifier for the element
|
522
|
+
effective_time: str, default = None
|
523
|
+
- Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
524
|
+
for_lineage: bool, default is set by server
|
525
|
+
- determines if elements classified as Memento should be returned - normally false
|
526
|
+
for_duplicate_processing: bool, default is set by server
|
527
|
+
- Normally false. Set true when the caller is part of a deduplication function
|
528
|
+
server_name: str, default = None
|
529
|
+
- name of the server instances for this request.
|
530
|
+
time_out: int, default = default_time_out
|
531
|
+
- http request timeout for this request
|
532
|
+
|
533
|
+
Returns
|
534
|
+
-------
|
535
|
+
dict | str
|
536
|
+
Returns a string if no elements found; otherwise a dict of the element.
|
537
|
+
|
538
|
+
Raises
|
539
|
+
------
|
540
|
+
InvalidParameterException
|
541
|
+
one of the parameters is null or invalid or
|
542
|
+
PropertyServerException
|
543
|
+
There is a problem adding the element properties to the metadata repository or
|
544
|
+
UserNotAuthorizedException
|
545
|
+
the requesting user is not authorized to issue this request.
|
546
|
+
"""
|
547
|
+
|
548
|
+
loop = asyncio.get_event_loop()
|
549
|
+
response = loop.run_until_complete(
|
550
|
+
self._async_get_element_by_guid(
|
551
|
+
element_guid,
|
552
|
+
effective_time,
|
553
|
+
for_lineage,
|
554
|
+
for_duplicate_processing,
|
555
|
+
server_name,
|
556
|
+
time_out,
|
557
|
+
)
|
558
|
+
)
|
559
|
+
return response
|
560
|
+
|
561
|
+
async def _async_get_element_by_unique_name(
|
562
|
+
self,
|
563
|
+
name: str,
|
564
|
+
property_name: str = None,
|
565
|
+
for_lineage: bool = False,
|
566
|
+
for_duplicate_processing: bool = False,
|
567
|
+
effective_time: str = None,
|
568
|
+
server_name: str = None,
|
569
|
+
time_out: int = default_time_out,
|
570
|
+
) -> list | str:
|
571
|
+
"""
|
572
|
+
Retrieve the metadata element using the supplied unique element name (typically the qualifiedName,
|
573
|
+
but it is possible to specify a different property name in the request body as long as its unique.
|
574
|
+
If more than one element returned, an exception is thrown. Async version.
|
575
|
+
|
576
|
+
Parameters
|
577
|
+
----------
|
578
|
+
name: str
|
579
|
+
- element name to be searched.
|
580
|
+
property_name: str, optional
|
581
|
+
- optional name of property to search. If not specified, defaults to qualifiedName
|
582
|
+
for_lineage: bool, default is set by server
|
583
|
+
- determines if elements classified as Memento should be returned - normally false
|
584
|
+
for_duplicate_processing: bool, default is set by server
|
585
|
+
- Normally false. Set true when the caller is part of a deduplication function
|
586
|
+
effective_time: str, default = None
|
587
|
+
- Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
588
|
+
server_name: str, default = None
|
589
|
+
- name of the server instances for this request.
|
590
|
+
time_out: int, default = default_time_out
|
591
|
+
- http request timeout for this request
|
592
|
+
|
593
|
+
Returns
|
594
|
+
-------
|
595
|
+
str
|
596
|
+
Returns the guid of the element.
|
597
|
+
|
598
|
+
Raises
|
599
|
+
------
|
600
|
+
InvalidParameterException
|
601
|
+
one of the parameters is null or invalid or
|
602
|
+
PropertyServerException
|
603
|
+
There is a problem adding the element properties to the metadata repository or
|
604
|
+
UserNotAuthorizedException
|
605
|
+
the requesting user is not authorized to issue this request.
|
606
|
+
"""
|
607
|
+
if server_name is None:
|
608
|
+
server_name = self.server_name
|
609
|
+
property_name = "qualifiedName" if property_name is None else property_name
|
610
|
+
|
611
|
+
possible_query_params = query_string(
|
612
|
+
[
|
613
|
+
("forLineage", for_lineage),
|
614
|
+
("forDuplicateProcessing", for_duplicate_processing),
|
615
|
+
]
|
616
|
+
)
|
617
|
+
|
618
|
+
body = {
|
619
|
+
"class": "NameRequestBody",
|
620
|
+
"name": name,
|
621
|
+
"namePropertyName": property_name,
|
622
|
+
"forLineage": for_lineage,
|
623
|
+
"forDuplicateProcessing": for_duplicate_processing,
|
624
|
+
"effectiveTime": effective_time,
|
625
|
+
}
|
626
|
+
|
627
|
+
url = f"{base_path(self, server_name)}/elements/by-unique-name{possible_query_params}"
|
628
|
+
|
629
|
+
response: Response = await self._async_make_request(
|
630
|
+
"POST", url, body_slimmer(body), time_out=time_out
|
631
|
+
)
|
632
|
+
|
633
|
+
return response.json().get("element", "No elements found")
|
634
|
+
|
635
|
+
def get_element_by_unique_name(
|
636
|
+
self,
|
637
|
+
name: str,
|
638
|
+
property_name: str = None,
|
639
|
+
for_lineage: bool = None,
|
640
|
+
for_duplicate_processing: bool = None,
|
641
|
+
effective_time: str = None,
|
642
|
+
server_name: str = None,
|
643
|
+
time_out: int = default_time_out,
|
644
|
+
) -> list | str:
|
645
|
+
"""
|
646
|
+
Retrieve the metadata element using the supplied unique element name (typically the qualifiedName,
|
647
|
+
but it is possible to specify a different property name in the request body as long as its unique.
|
648
|
+
If more than one element returned, an exception is thrown.
|
649
|
+
|
650
|
+
Parameters
|
651
|
+
----------
|
652
|
+
name: str
|
653
|
+
- element name to be searched.
|
654
|
+
property_name: str, optional
|
655
|
+
- optional name of property to search. If not specified, defaults to qualifiedName
|
656
|
+
for_lineage: bool, default is set by server
|
657
|
+
- determines if elements classified as Memento should be returned - normally false
|
658
|
+
for_duplicate_processing: bool, default is set by server
|
659
|
+
- Normally false. Set true when the caller is part of a deduplication function
|
660
|
+
effective_time: str, default = None
|
661
|
+
- Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
662
|
+
server_name: str, default = None
|
663
|
+
- name of the server instances for this request.
|
664
|
+
time_out: int, default = default_time_out
|
665
|
+
- http request timeout for this request
|
666
|
+
|
667
|
+
Returns
|
668
|
+
-------
|
669
|
+
str
|
670
|
+
Returns the guid of the element.
|
671
|
+
|
672
|
+
Raises
|
673
|
+
------
|
674
|
+
InvalidParameterException
|
675
|
+
one of the parameters is null or invalid or
|
676
|
+
PropertyServerException
|
677
|
+
There is a problem adding the element properties to the metadata repository or
|
678
|
+
UserNotAuthorizedException
|
679
|
+
the requesting user is not authorized to issue this request.
|
680
|
+
"""
|
681
|
+
|
682
|
+
loop = asyncio.get_event_loop()
|
683
|
+
response = loop.run_until_complete(
|
684
|
+
self._async_get_element_by_unique_name(
|
685
|
+
name,
|
686
|
+
property_name,
|
687
|
+
for_lineage,
|
688
|
+
for_duplicate_processing,
|
689
|
+
effective_time,
|
690
|
+
server_name,
|
691
|
+
time_out,
|
692
|
+
)
|
693
|
+
)
|
694
|
+
return response
|
695
|
+
|
696
|
+
async def _async_get_element_guid_by_unique_name(
|
697
|
+
self,
|
698
|
+
name: str,
|
699
|
+
property_name: str = None,
|
700
|
+
for_lineage: bool = False,
|
701
|
+
for_duplicate_processing: bool = False,
|
702
|
+
effective_time: str = None,
|
703
|
+
server_name: str = None,
|
704
|
+
time_out: int = default_time_out,
|
705
|
+
) -> list | str:
|
706
|
+
"""
|
707
|
+
Retrieve the guid associated with the supplied unique element name.
|
708
|
+
If more than one element returned, an exception is thrown. Async version.
|
709
|
+
|
710
|
+
Parameters
|
711
|
+
----------
|
712
|
+
name: str
|
713
|
+
- element name to be searched.
|
714
|
+
property_name: str, optional
|
715
|
+
- optional name of property to search. If not specified, defaults to qualifiedName
|
716
|
+
for_lineage: bool, default is set by server
|
717
|
+
- determines if elements classified as Memento should be returned - normally false
|
718
|
+
for_duplicate_processing: bool, default is set by server
|
719
|
+
- Normally false. Set true when the caller is part of a deduplication function
|
720
|
+
effective_time: str, default = None
|
721
|
+
- Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
722
|
+
server_name: str, default = None
|
723
|
+
- name of the server instances for this request.
|
724
|
+
time_out: int, default = default_time_out
|
725
|
+
- http request timeout for this request
|
726
|
+
|
727
|
+
Returns
|
728
|
+
-------
|
729
|
+
str
|
730
|
+
Returns the guid of the element.
|
731
|
+
|
732
|
+
Raises
|
733
|
+
------
|
734
|
+
InvalidParameterException
|
735
|
+
one of the parameters is null or invalid or
|
736
|
+
PropertyServerException
|
737
|
+
There is a problem adding the element properties to the metadata repository or
|
738
|
+
UserNotAuthorizedException
|
739
|
+
the requesting user is not authorized to issue this request.
|
740
|
+
"""
|
741
|
+
if server_name is None:
|
742
|
+
server_name = self.server_name
|
743
|
+
property_name = "qualifiedName" if property_name is None else property_name
|
744
|
+
|
745
|
+
possible_query_params = query_string(
|
746
|
+
[
|
747
|
+
("forLineage", for_lineage),
|
748
|
+
("forDuplicateProcessing", for_duplicate_processing),
|
749
|
+
]
|
750
|
+
)
|
751
|
+
|
752
|
+
body = {
|
753
|
+
"class": "NameRequestBody",
|
754
|
+
"name": name,
|
755
|
+
"namePropertyName": property_name,
|
756
|
+
"forLineage": for_lineage,
|
757
|
+
"forDuplicateProcessing": for_duplicate_processing,
|
758
|
+
"effectiveTime": effective_time,
|
759
|
+
}
|
760
|
+
|
761
|
+
url = f"{base_path(self, server_name)}/elements/guid-by-unique-name{possible_query_params}"
|
762
|
+
|
763
|
+
response: Response = await self._async_make_request(
|
764
|
+
"POST", url, body_slimmer(body), time_out=time_out
|
765
|
+
)
|
766
|
+
|
767
|
+
return response.json().get("guid", "No elements found")
|
768
|
+
|
769
|
+
def get_element_guid_by_unique_name(
|
770
|
+
self,
|
771
|
+
name: str,
|
772
|
+
property_name: str = None,
|
773
|
+
for_lineage: bool = None,
|
774
|
+
for_duplicate_processing: bool = None,
|
775
|
+
effective_time: str = None,
|
776
|
+
server_name: str = None,
|
777
|
+
time_out: int = default_time_out,
|
778
|
+
) -> list | str:
|
779
|
+
"""
|
780
|
+
Retrieve the guid associated with the supplied unique element name.
|
781
|
+
If more than one element returned, an exception is thrown.
|
782
|
+
|
783
|
+
Parameters
|
784
|
+
----------
|
785
|
+
name: str
|
786
|
+
- element name to be searched.
|
787
|
+
property_name: str, optional
|
788
|
+
- optional name of property to search. If not specified, defaults to qualifiedName
|
789
|
+
for_lineage: bool, default is set by server
|
790
|
+
- determines if elements classified as Memento should be returned - normally false
|
791
|
+
for_duplicate_processing: bool, default is set by server
|
792
|
+
- Normally false. Set true when the caller is part of a deduplication function
|
793
|
+
effective_time: str, default = None
|
794
|
+
- Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601)
|
795
|
+
server_name: str, default = None
|
796
|
+
- name of the server instances for this request.
|
797
|
+
time_out: int, default = default_time_out
|
798
|
+
- http request timeout for this request
|
799
|
+
|
800
|
+
Returns
|
801
|
+
-------
|
802
|
+
str
|
803
|
+
Returns the guid of the element.
|
804
|
+
|
805
|
+
Raises
|
806
|
+
------
|
807
|
+
InvalidParameterException
|
808
|
+
one of the parameters is null or invalid or
|
809
|
+
PropertyServerException
|
810
|
+
There is a problem adding the element properties to the metadata repository or
|
811
|
+
UserNotAuthorizedException
|
812
|
+
the requesting user is not authorized to issue this request.
|
813
|
+
"""
|
814
|
+
|
815
|
+
loop = asyncio.get_event_loop()
|
816
|
+
response = loop.run_until_complete(
|
817
|
+
self._async_get_element_guid_by_unique_name(
|
818
|
+
name,
|
819
|
+
property_name,
|
820
|
+
for_lineage,
|
821
|
+
for_duplicate_processing,
|
822
|
+
effective_time,
|
823
|
+
server_name,
|
824
|
+
time_out,
|
825
|
+
)
|
826
|
+
)
|
827
|
+
return response
|
828
|
+
|
434
829
|
async def _async_get_guid_for_name(
|
435
830
|
self, name: str, server_name: str = None, time_out: int = default_time_out
|
436
831
|
) -> list | str:
|
@@ -4199,7 +4594,7 @@ class ClassificationManager(Client):
|
|
4199
4594
|
time_out: int = default_time_out,
|
4200
4595
|
) -> None:
|
4201
4596
|
"""
|
4202
|
-
Add or replace the security tags for an element. Async
|
4597
|
+
Add or replace the security tags for an element. Async version,
|
4203
4598
|
|
4204
4599
|
Security Tags: https://egeria-project.org/types/4/0423-Security-Definitions/
|
4205
4600
|
|
pyegeria/runtime_manager_omvs.py
CHANGED
@@ -1043,9 +1043,102 @@ class RuntimeManager(Client):
|
|
1043
1043
|
)
|
1044
1044
|
return response
|
1045
1045
|
|
1046
|
+
async def _async_add_archive_file(
|
1047
|
+
self,
|
1048
|
+
archive_file: str,
|
1049
|
+
server_guid: str,
|
1050
|
+
view_server: str = None,
|
1051
|
+
time_out: int = 60,
|
1052
|
+
) -> None:
|
1053
|
+
"""Add a new open metadata archive to running OMAG Server's repository.
|
1054
|
+
An open metadata archive contains metadata types and instances. This operation loads an open metadata archive
|
1055
|
+
that is stored in the named file. It can be used with OMAG servers that are of type Open Metadata Store.
|
1056
|
+
Async version.
|
1057
|
+
|
1058
|
+
https://egeria-project.org/concepts/open-metadata-archives/
|
1059
|
+
|
1060
|
+
Parameters
|
1061
|
+
----------
|
1062
|
+
archive_file: str
|
1063
|
+
Open metadata archive file to load.
|
1064
|
+
server_guid: str
|
1065
|
+
GUID of the server to load the file into.
|
1066
|
+
server : str, optional
|
1067
|
+
The name of the view server to work with. If not provided, the default server name
|
1068
|
+
will be used.
|
1069
|
+
time_out: int, optional
|
1070
|
+
Time out for the rest call.
|
1071
|
+
|
1072
|
+
Returns
|
1073
|
+
-------
|
1074
|
+
Response
|
1075
|
+
None
|
1076
|
+
|
1077
|
+
Raises
|
1078
|
+
------
|
1079
|
+
InvalidParameterException
|
1080
|
+
PropertyServerException
|
1081
|
+
UserNotAuthorizedException
|
1082
|
+
|
1083
|
+
"""
|
1084
|
+
if view_server is None:
|
1085
|
+
server = self.server_name
|
1086
|
+
|
1087
|
+
url = f"{self.platform_url}/servers/{server}/api/open-metadata/runtime-manager/omag-servers/{server_guid}/instance/load/open-metadata-archives/file"
|
1088
|
+
|
1089
|
+
await self._async_make_request(
|
1090
|
+
"POST-DATA", url, archive_file, time_out=time_out
|
1091
|
+
)
|
1092
|
+
return
|
1093
|
+
|
1094
|
+
def add_archive_file(
|
1095
|
+
self,
|
1096
|
+
archive_file: str,
|
1097
|
+
server_guid: str,
|
1098
|
+
view_server: str = None,
|
1099
|
+
time_out: int = 60,
|
1100
|
+
) -> None:
|
1101
|
+
"""Add a new open metadata archive to running OMAG Server's repository.
|
1102
|
+
An open metadata archive contains metadata types and instances. This operation loads an open metadata archive
|
1103
|
+
that is stored in the named file. It can be used with OMAG servers that are of type Open Metadata Store.
|
1104
|
+
|
1105
|
+
https://egeria-project.org/concepts/open-metadata-archives/
|
1106
|
+
|
1107
|
+
Parameters
|
1108
|
+
----------
|
1109
|
+
archive_file: str
|
1110
|
+
Open metadata archive file to load.
|
1111
|
+
server_guid: str
|
1112
|
+
GUID of the server to load the file into.
|
1113
|
+
server : str, optional
|
1114
|
+
The name of the view server to work with. If not provided, the default server name
|
1115
|
+
will be used.
|
1116
|
+
|
1117
|
+
Returns
|
1118
|
+
-------
|
1119
|
+
Response
|
1120
|
+
None
|
1121
|
+
|
1122
|
+
Raises
|
1123
|
+
------
|
1124
|
+
InvalidParameterException
|
1125
|
+
PropertyServerException
|
1126
|
+
UserNotAuthorizedException
|
1127
|
+
|
1128
|
+
"""
|
1129
|
+
|
1130
|
+
loop = asyncio.get_event_loop()
|
1131
|
+
loop.run_until_complete(
|
1132
|
+
self._async_add_archive_file(
|
1133
|
+
archive_file, server_guid, view_server, time_out
|
1134
|
+
)
|
1135
|
+
)
|
1136
|
+
return
|
1137
|
+
|
1046
1138
|
#
|
1047
1139
|
# Activate
|
1048
1140
|
#
|
1141
|
+
|
1049
1142
|
async def _async_activate_with_stored_config(
|
1050
1143
|
self, server_guid: str, server: str = None
|
1051
1144
|
) -> None:
|
@@ -1066,6 +1159,33 @@ class RuntimeManager(Client):
|
|
1066
1159
|
None
|
1067
1160
|
|
1068
1161
|
|
1162
|
+
Raises
|
1163
|
+
------
|
1164
|
+
InvalidParameterException
|
1165
|
+
PropertyServerException
|
1166
|
+
UserNotAuthorizedException
|
1167
|
+
|
1168
|
+
"""
|
1169
|
+
pass
|
1170
|
+
|
1171
|
+
def activate_with_stored_config(self, server_guid: str, server: str = None) -> None:
|
1172
|
+
"""Activate the Open Metadata and Governance (OMAG) server using the configuration document stored for this
|
1173
|
+
server. Async Version
|
1174
|
+
|
1175
|
+
Parameters
|
1176
|
+
----------
|
1177
|
+
server_guid: str
|
1178
|
+
Identity of the server to activate.
|
1179
|
+
|
1180
|
+
server : str, optional
|
1181
|
+
The name of the server to get governance engine summaries from. If not provided, the default server name
|
1182
|
+
will be used.
|
1183
|
+
|
1184
|
+
Returns
|
1185
|
+
-------
|
1186
|
+
None
|
1187
|
+
|
1188
|
+
|
1069
1189
|
Raises
|
1070
1190
|
------
|
1071
1191
|
InvalidParameterException
|
@@ -30,6 +30,23 @@ examples/widgets/my/monitor_my_todos.py,sha256=YiwyQgtA7YsfW4-Ps-1ymvFjRqp-Egubv
|
|
30
30
|
examples/widgets/my/monitor_open_todos.py,sha256=KDrAjdLPP3j0K9Y3G95BIgr51ktTx3mMlKydLFDF2YQ,5466
|
31
31
|
examples/widgets/my/my_profile_actions.py,sha256=ytPBLw7_UgYCv1ljxxHtaDCNG65djKZdfMYF6wFpEtU,4138
|
32
32
|
examples/widgets/my/todo_actions.py,sha256=uihltirrAPtwYNygnNBAVWgfS0W7acoETz1_h3XW_4o,8369
|
33
|
+
examples/widgets/ops/README.md,sha256=PJsSDcvMv6E6og6y-cwvxFX5lhCII0UCwgKiM1T17MQ,1595
|
34
|
+
examples/widgets/ops/__init__.py,sha256=SCfzF3-aMx8EpqLWmH7JQf13gTmMAtHRbg69oseLvi8,480
|
35
|
+
examples/widgets/ops/engine_actions.py,sha256=rxtCacBTdu6qHAXIvv7KfKZIpfj9-B3Uap1Qy-x7hF4,3013
|
36
|
+
examples/widgets/ops/integration_daemon_actions.py,sha256=Xib8HXh1rM3Wznn1Db3qbEjQ8QvkJyCx-jXoSfruIt8,4140
|
37
|
+
examples/widgets/ops/list_catalog_targets.py,sha256=0FIZqZu7DSh7tnrme6EOhNiVvK8wyvN1iTZKEDuwTmw,6620
|
38
|
+
examples/widgets/ops/load_archive.py,sha256=duf3wq2ANRBiOj9KTFsw8TseEkJLKdzITAeTCjsMvI0,2453
|
39
|
+
examples/widgets/ops/monitor_asset_events.py,sha256=cjdlVqE0XYnoRW3aorNbsVkjByDXefPBnllaZLelGls,3838
|
40
|
+
examples/widgets/ops/monitor_coco_status.py,sha256=ERz3OJ0TXImNKHGD4gJvgT3pl2gS23ewAdUuYVLUhEE,3299
|
41
|
+
examples/widgets/ops/monitor_engine_activity.py,sha256=m18OSnRoo5ut0WKKOWNoFGXJW_npjp6hzHK3RUQG8T0,8479
|
42
|
+
examples/widgets/ops/monitor_engine_activity_c.py,sha256=rSEUD3elhsiYdUhQRn613OM_R4VecFb0uq39MhYhltQ,9371
|
43
|
+
examples/widgets/ops/monitor_gov_eng_status.py,sha256=77B9KgFmFkFhthtgqIqNRAxylfWhkbIVFd8Q0rOEAnU,6640
|
44
|
+
examples/widgets/ops/monitor_integ_daemon_status.py,sha256=u15-tvGveO7_yV7JJmYkxiEDnq5KBk8J4hkw0id_LFA,9224
|
45
|
+
examples/widgets/ops/monitor_platform_status.py,sha256=hn96QuOjCndSDWl1-DAzk9O8D68YoRP1ALOlVfWVQgo,6400
|
46
|
+
examples/widgets/ops/monitor_server_list.py,sha256=Uhtn8lv7QVXJBi9DSR3Nelmz8TB0vOsat10nFS6Nu20,4637
|
47
|
+
examples/widgets/ops/monitor_server_status.py,sha256=A-8hMDfbscdcq-b1OD4wKn0tphumX8WIK-Hz8uPoFkc,3974
|
48
|
+
examples/widgets/ops/refresh_integration_daemon.py,sha256=QDB3dpAlLY8PhrGhAZG4tWKzx_1R0bOOM048N68RQ4w,2712
|
49
|
+
examples/widgets/ops/restart_integration_daemon.py,sha256=fID7qGFL5RD6rfn9PgXf5kwI4MU0Ho_IGXnDVbKT5nU,2710
|
33
50
|
examples/widgets/tech/README.md,sha256=nxDnfr3BCiGgW5G1VxWxiwUWJXIe5wreNuUeRyIt_hY,1343
|
34
51
|
examples/widgets/tech/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
52
|
examples/widgets/tech/get_element_info.py,sha256=Rauespy7ZfyKtLh_H8XWgYTpPijsqlUGm-zeb7KrG7k,4749
|
@@ -53,7 +70,7 @@ pyegeria/_validators.py,sha256=DQuMsATRGxGSBtOrVtXlCgWXGhj6Nh-uqPtCsrUGLxk,12703
|
|
53
70
|
pyegeria/action_author_omvs.py,sha256=LbJ8dTHrjy2OHvP1sHCCIRgRU2AD3IV-49kB1UCoQPc,6451
|
54
71
|
pyegeria/asset_catalog_omvs.py,sha256=GzTYJjeXh3rY5Ykok0ZcJ3H1bGyQcubI0ZWjFF78iCU,24335
|
55
72
|
pyegeria/automated_curation_omvs.py,sha256=DhSrDX_uS0SfmzRRNi1Th0jmdQa9N4S42mIunxrih9s,150418
|
56
|
-
pyegeria/classification_manager_omvs.py,sha256=
|
73
|
+
pyegeria/classification_manager_omvs.py,sha256=hOKYqNWfAFqwwVgvkUok8kzD4g0pOaNI7QxrkjPZDMI,200796
|
57
74
|
pyegeria/collection_manager_omvs.py,sha256=C8cfgGsx6MpG1Nds3JahyqXel8zpb-9iwXsXCAuzmg0,109717
|
58
75
|
pyegeria/core_omag_server_config.py,sha256=_GstDYb6XYNCt59l1mMxTR8EoUvwlBi3RK93wKvrcWk,93730
|
59
76
|
pyegeria/create_tech_guid_lists.py,sha256=RYRWdXm2bhCMkbUlOdMJ8cKZnamJvSkY5XMK2RjLX4M,4631
|
@@ -71,12 +88,12 @@ pyegeria/my_profile_omvs.py,sha256=vxi0Dr0qwHV4auqKCjYvWYpF-BAUbLQt58fXGYcqEu4,4
|
|
71
88
|
pyegeria/platform_services.py,sha256=4BfyGdQwGwi2cd9mJdNoUB3LNFNbiyC2_ZQhGtpcxTA,41624
|
72
89
|
pyegeria/project_manager_omvs.py,sha256=f8ahjdPxFv90JEE0fc2AV7Kc0hd9jazGQbx5KVe7gQM,74521
|
73
90
|
pyegeria/registered_info.py,sha256=WWWxkQJbHnu6KItVpMjOqLerq5thP35qih7rFgW8v9w,6356
|
74
|
-
pyegeria/runtime_manager_omvs.py,sha256=
|
91
|
+
pyegeria/runtime_manager_omvs.py,sha256=ER4oTdbUNFLrO9Gihzd_wcnAIBdlry450NxezMYcl70,39488
|
75
92
|
pyegeria/server_operations.py,sha256=ciH890hYT85YQ6OpByn4w7s3a7TtvWZpIG5rkRqbcI0,16766
|
76
93
|
pyegeria/utils.py,sha256=1h6bwveadd6GpbnGLTmqPBmBk68QvxdjGTI9RfbrgKY,5415
|
77
94
|
pyegeria/valid_metadata_omvs.py,sha256=6Hc4g9BOS8w1ILfTG3_A1tfIX3HLtpgZZvcC-z9GePU,36185
|
78
|
-
pyegeria-0.8.4.
|
79
|
-
pyegeria-0.8.4.
|
80
|
-
pyegeria-0.8.4.
|
81
|
-
pyegeria-0.8.4.
|
82
|
-
pyegeria-0.8.4.
|
95
|
+
pyegeria-0.8.4.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
96
|
+
pyegeria-0.8.4.11.dist-info/METADATA,sha256=JgfmTJbjUQi2aSvJHpQ3NmTSh-eX6Vq0gt76Y2wBs9Y,2820
|
97
|
+
pyegeria-0.8.4.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
98
|
+
pyegeria-0.8.4.11.dist-info/entry_points.txt,sha256=5Q9bDxIqPgdhd3lDnzdRSCYy9hZtNm_BL49bcmbBpGQ,3808
|
99
|
+
pyegeria-0.8.4.11.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|