pyegeria 5.4.4.2__py3-none-any.whl → 5.4.4.3__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.
- commands/cat/list_format_set.py +6 -2
- md_processing/.obsidian/plugins/obsidian-sample-plugin/.git/index +0 -0
- md_processing/md_commands/data_designer_commands.py +17 -11
- md_processing/md_commands/ext_ref_commands.py +9 -6
- md_processing/md_commands/glossary_commands.py +6 -2
- md_processing/md_commands/governance_officer_commands.py +4 -2
- md_processing/md_commands/product_manager_commands.py +9 -6
- md_processing/md_commands/project_commands.py +5 -2
- pyegeria/__init__.py +1 -1
- pyegeria/_client_new.py +469 -44
- pyegeria/_output_formats.py +1338 -141
- pyegeria/external_references.py +100 -209
- pyegeria/glossary_manager.py +2 -1
- pyegeria/output_formatter.py +4 -0
- pyegeria/utils.py +5 -64
- {pyegeria-5.4.4.2.dist-info → pyegeria-5.4.4.3.dist-info}/METADATA +1 -1
- {pyegeria-5.4.4.2.dist-info → pyegeria-5.4.4.3.dist-info}/RECORD +20 -23
- commands/cat/debug_log.2025-09-10_13-48-37_153090.log.zip +0 -0
- md_processing/dr-egeria-outbox/Business-Imperative-DrE-2025-09-11-21-21-15.md +0 -33
- md_processing/md_commands/old_solution_architect_commands.py +0 -1139
- {pyegeria-5.4.4.2.dist-info → pyegeria-5.4.4.3.dist-info}/LICENSE +0 -0
- {pyegeria-5.4.4.2.dist-info → pyegeria-5.4.4.3.dist-info}/WHEEL +0 -0
- {pyegeria-5.4.4.2.dist-info → pyegeria-5.4.4.3.dist-info}/entry_points.txt +0 -0
pyegeria/_output_formats.py
CHANGED
@@ -68,11 +68,12 @@ output_format_sets["Example"] = format_set
|
|
68
68
|
|
69
69
|
import os
|
70
70
|
from pathlib import Path
|
71
|
-
from typing import
|
71
|
+
from typing import List, Union
|
72
|
+
|
72
73
|
from loguru import logger
|
73
74
|
|
74
|
-
from pyegeria._output_format_models import (Column, Format, ActionParameter, FormatSet, FormatSetDict
|
75
|
-
|
75
|
+
from pyegeria._output_format_models import (Column, Format, ActionParameter, FormatSet, FormatSetDict)
|
76
|
+
|
76
77
|
|
77
78
|
# from pyegeria.config import settings
|
78
79
|
|
@@ -103,7 +104,6 @@ def combine_format_set_dicts(dict1: dict, dict2: dict) -> dict:
|
|
103
104
|
return combined
|
104
105
|
|
105
106
|
|
106
|
-
|
107
107
|
# Get the configured value for the user format sets directory
|
108
108
|
|
109
109
|
# USER_FORMAT_SETS_DIR = os.path.expanduser(settings.Environment.pyegeria_user_format_sets_dir)
|
@@ -140,14 +140,12 @@ COMMON_HEADER_COLUMNS = [
|
|
140
140
|
Column(name="Effective To", key='effective_to'),
|
141
141
|
Column(name="Version", key='version'),
|
142
142
|
Column(name="Open Metadata Type Name", key='type_name'),
|
143
|
-
|
144
|
-
|
143
|
+
]
|
145
144
|
|
146
145
|
REFERNCEABLE_COLUMNS = COMMON_COLUMNS + [
|
147
146
|
Column(name='Version Identifier', key='version_identifier'),
|
148
147
|
Column(name='Additional Properties', key='additional_properties')
|
149
|
-
|
150
|
-
|
148
|
+
]
|
151
149
|
|
152
150
|
COMMON_FORMATS_ALL = Format(
|
153
151
|
types=["ALL"],
|
@@ -166,7 +164,7 @@ EXT_REF_COLUMNS = COMMON_COLUMNS + [
|
|
166
164
|
Column(name='Attribution', key='attribution'),
|
167
165
|
]
|
168
166
|
|
169
|
-
PROJECT_COLUMNS = COMMON_COLUMNS
|
167
|
+
PROJECT_COLUMNS = COMMON_COLUMNS + [
|
170
168
|
Column(name="Classifications", key='classifications'),
|
171
169
|
Column(name='Priority', key='priority'),
|
172
170
|
Column(name='Project Status', key='project_status'),
|
@@ -176,13 +174,13 @@ PROJECT_COLUMNS = COMMON_COLUMNS +[
|
|
176
174
|
Column(name='Resources', key='resource_list'),
|
177
175
|
Column(name="Project Roles", key='project_roles'),
|
178
176
|
Column(name="Managed Projects", key='managed_projects'),
|
179
|
-
|
177
|
+
]
|
180
178
|
|
181
179
|
GLOSSARY_COLUMNS = COMMON_COLUMNS + [
|
182
180
|
Column(name="Language", key='language'),
|
183
181
|
Column(name='Usage', key='usage'),
|
184
182
|
Column(name='Folders', key='collection_members'),
|
185
|
-
|
183
|
+
]
|
186
184
|
|
187
185
|
COLLECTIONS_COLUMNS = COMMON_COLUMNS + [
|
188
186
|
Column(name='Type Name', key='type_name'),
|
@@ -196,13 +194,13 @@ COLLECTIONS_COLUMNS = COMMON_COLUMNS + [
|
|
196
194
|
COLLECTIONS_MEMBERS_COLUMNS = COLLECTIONS_COLUMNS + [
|
197
195
|
Column(name="Containing Members", key='collection_members'),
|
198
196
|
Column(name="Member Of", key='member_of_collections')
|
199
|
-
|
197
|
+
]
|
200
198
|
|
201
199
|
COLLECTION_DICT = Format(
|
202
200
|
types=["DICT"],
|
203
201
|
columns=COLLECTIONS_MEMBERS_COLUMNS + [
|
204
202
|
Column(name="GUID", key='GUID'),
|
205
|
-
|
203
|
+
],
|
206
204
|
)
|
207
205
|
|
208
206
|
BASIC_COLLECTIONS_COLUMNS = [
|
@@ -218,7 +216,7 @@ COLLECTION_REPORT = Format(
|
|
218
216
|
columns=COLLECTIONS_MEMBERS_COLUMNS + [
|
219
217
|
Column(name="GUID", key='GUID'),
|
220
218
|
Column(name="Mermaid", key='mermaid'),
|
221
|
-
|
219
|
+
],
|
222
220
|
)
|
223
221
|
|
224
222
|
COLLECTION_TABLE = Format(
|
@@ -232,13 +230,13 @@ GOVERNANCE_DEFINITIONS_COLUMNS = COMMON_COLUMNS + [
|
|
232
230
|
Column(name="Importance", key='importance'),
|
233
231
|
Column(name="Scope", key='scope'),
|
234
232
|
Column(name="Type", key='type_name'),
|
235
|
-
|
236
|
-
GOVERNANCE_DEFINITIONS_BASIC =
|
233
|
+
]
|
234
|
+
GOVERNANCE_DEFINITIONS_BASIC = [
|
237
235
|
Column(name="Type", key='type_name'),
|
238
236
|
Column(name="Summary", key='summary'),
|
239
237
|
Column(name='Qualified Name', key='qualified_name', format=True),
|
240
238
|
Column(name="GUID", key='guid', format=True),
|
241
|
-
|
239
|
+
]
|
242
240
|
COMMON_ANNOTATIONS = {
|
243
241
|
"wikilinks": ["[[Commons]]"]
|
244
242
|
}
|
@@ -401,8 +399,8 @@ base_output_format_sets = FormatSetDict({
|
|
401
399
|
optional_params=OPTIONAL_PARAMS,
|
402
400
|
required_params=["search_string"],
|
403
401
|
spec_params={},
|
404
|
-
|
405
|
-
|
402
|
+
)
|
403
|
+
),
|
406
404
|
"Terms": FormatSet(
|
407
405
|
target_type="Term",
|
408
406
|
heading="Basic Glossary Term Attributes",
|
@@ -427,14 +425,14 @@ base_output_format_sets = FormatSetDict({
|
|
427
425
|
Column(name="Subject Area", key='subject_area'),
|
428
426
|
],
|
429
427
|
)
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
428
|
+
],
|
429
|
+
action=ActionParameter(
|
430
|
+
function="GlossaryManager.find_glossary_terms",
|
431
|
+
required_params=["search_string"],
|
432
|
+
optional_params=OPTIONAL_PARAMS,
|
433
|
+
spec_params={},
|
434
|
+
)
|
435
|
+
),
|
438
436
|
"Help-Terms": FormatSet(
|
439
437
|
target_type="Term",
|
440
438
|
heading="Display Help for Dr.Egeria Commands",
|
@@ -443,31 +441,30 @@ base_output_format_sets = FormatSetDict({
|
|
443
441
|
formats=[
|
444
442
|
Format(
|
445
443
|
|
446
|
-
types=["DICT", "FORM", "REPORT","LIST", "TABLE"],
|
447
|
-
columns=
|
444
|
+
types=["DICT", "FORM", "REPORT", "LIST", "TABLE"],
|
445
|
+
columns=[
|
448
446
|
Column(name='Term Name', key='display_name'),
|
449
447
|
Column(name='Description', key='description'),
|
450
448
|
Column(name="Usage", key='usage', format=True),
|
451
449
|
Column(name="Update Time", key='update_time')
|
452
450
|
|
453
|
-
|
454
451
|
],
|
455
452
|
)
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
453
|
+
],
|
454
|
+
action=ActionParameter(
|
455
|
+
function="GlossaryManager.find_glossary_terms",
|
456
|
+
required_params=["search_string"],
|
457
|
+
optional_params=OPTIONAL_PARAMS,
|
458
|
+
spec_params={},
|
459
|
+
)
|
460
|
+
),
|
464
461
|
|
465
462
|
"Collections": FormatSet(
|
466
463
|
target_type="Collection",
|
467
464
|
heading="Common Collection Information",
|
468
465
|
description="Attributes generic to all Collections.",
|
469
466
|
aliases=["Collection", "RootCollection", "Folder", "ReferenceList", "HomeCollection",
|
470
|
-
|
467
|
+
"ResultSet", "RecentAccess", "WorkItemList", "Namespace"],
|
471
468
|
annotations=COMMON_ANNOTATIONS,
|
472
469
|
formats=[COLLECTION_DICT, COLLECTION_TABLE, COLLECTION_REPORT, COMMON_FORMATS_ALL], # Reusing common formats
|
473
470
|
action=ActionParameter(
|
@@ -486,14 +483,14 @@ base_output_format_sets = FormatSetDict({
|
|
486
483
|
formats=[Format(
|
487
484
|
types=["ALL"],
|
488
485
|
columns=BASIC_COLLECTIONS_COLUMNS,
|
489
|
-
|
486
|
+
)], # Reusing common formats
|
490
487
|
action=ActionParameter(
|
491
488
|
function="CollectionManager.find_collections",
|
492
489
|
required_params=["search_string"],
|
493
490
|
optional_params=OPTIONAL_PARAMS,
|
494
491
|
spec_params={},
|
495
|
-
|
496
|
-
|
492
|
+
)
|
493
|
+
),
|
497
494
|
"Folders": FormatSet(
|
498
495
|
target_type="Folder",
|
499
496
|
heading="Common Folder Information",
|
@@ -503,29 +500,29 @@ base_output_format_sets = FormatSetDict({
|
|
503
500
|
formats=[Format(
|
504
501
|
types=["ALL"],
|
505
502
|
columns=BASIC_COLLECTIONS_COLUMNS,
|
506
|
-
|
503
|
+
)], # Reusing common formats
|
507
504
|
action=ActionParameter(
|
508
505
|
function="CollectionManager.find_collections",
|
509
506
|
required_params=["search_string"],
|
510
507
|
optional_params=OPTIONAL_PARAMS,
|
511
508
|
spec_params={"classification_names": ["Folder"]},
|
512
|
-
|
513
|
-
|
509
|
+
)
|
510
|
+
),
|
514
511
|
|
515
512
|
"Collection Members": FormatSet(
|
516
513
|
target_type="Collection",
|
517
514
|
heading="Collection Membership Information",
|
518
515
|
description="Attributes about all CollectionMembers.",
|
519
516
|
aliases=["CollectionMember", "Member", "Members"],
|
520
|
-
annotations=
|
521
|
-
formats
|
517
|
+
annotations={"wikilinks": ["[[CollectionMembers]]"]},
|
518
|
+
formats=[COLLECTION_DICT, COLLECTION_TABLE],
|
522
519
|
action=ActionParameter(
|
523
520
|
function="CollectionManager.get_collection_members",
|
524
521
|
required_params=["collection_guid"],
|
525
522
|
optional_params=OPTIONAL_PARAMS,
|
526
523
|
spec_params={"output_format": "DICT"},
|
527
|
-
|
528
|
-
|
524
|
+
)
|
525
|
+
),
|
529
526
|
"Digital Products": FormatSet(
|
530
527
|
target_type="DigitalProduct",
|
531
528
|
heading="Digital Product Information",
|
@@ -559,7 +556,7 @@ base_output_format_sets = FormatSetDict({
|
|
559
556
|
function="CollectionManager._extract_digital_product_properties",
|
560
557
|
required_params=[],
|
561
558
|
spec_params={},
|
562
|
-
|
559
|
+
)
|
563
560
|
),
|
564
561
|
|
565
562
|
"Agreements": FormatSet(
|
@@ -577,23 +574,22 @@ base_output_format_sets = FormatSetDict({
|
|
577
574
|
Column(name='service Levels', key='service_levels'),
|
578
575
|
Column(name='Agreement Items', key='agreement_items', format=True),
|
579
576
|
Column(name='Members', key='members', format=True),
|
580
|
-
|
581
|
-
|
582
|
-
|
577
|
+
]
|
578
|
+
)
|
579
|
+
],
|
583
580
|
action=ActionParameter(
|
584
581
|
function="CollectionManager.find_collections",
|
585
582
|
required_params=["search_string"],
|
586
583
|
spec_params={"metadata_element_types": ["Agreement"]},
|
587
584
|
# spec_params={},
|
588
|
-
|
585
|
+
),
|
589
586
|
get_additional_props=ActionParameter(
|
590
587
|
function="CollectionManager._extract_agreement_properties",
|
591
588
|
required_params=[],
|
592
589
|
spec_params={},
|
593
|
-
|
590
|
+
),
|
594
591
|
),
|
595
592
|
|
596
|
-
|
597
593
|
"Data Dictionary": FormatSet(
|
598
594
|
target_type="Data Dictionary",
|
599
595
|
heading="Data Dictionary Information",
|
@@ -615,11 +611,11 @@ base_output_format_sets = FormatSetDict({
|
|
615
611
|
aliases=["Data Spec", "DataSpec", "DataSpecification"],
|
616
612
|
annotations={"wikilinks": ["[[Data Specification]]"]},
|
617
613
|
formats=[
|
618
|
-
Format(types=["REPORT", "HTML"],columns=COMMON_COLUMNS + [Column(name="Mermaid", key='mermaid'),]),
|
614
|
+
Format(types=["REPORT", "HTML"], columns=COMMON_COLUMNS + [Column(name="Mermaid", key='mermaid'), ]),
|
619
615
|
Format(types=["MERMAID"], columns=[
|
620
616
|
Column(name="Display Name", key='display_name'),
|
621
617
|
Column(name="Mermaid", key='mermaid'),
|
622
|
-
|
618
|
+
]),
|
623
619
|
Format(types=["ALL"], columns=COMMON_COLUMNS)], # Reusing common formats and columns
|
624
620
|
action=ActionParameter(
|
625
621
|
function="CollectionManager.find_collections",
|
@@ -635,10 +631,10 @@ base_output_format_sets = FormatSetDict({
|
|
635
631
|
aliases=["Data Structure", "DataStructures", "Data Structures", "Data Struct", "DataStructure"],
|
636
632
|
annotations={"wikilinks": ["[[Data Structure]]"]},
|
637
633
|
formats=[Format(types=["ALL"], columns=COMMON_COLUMNS +
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
634
|
+
[
|
635
|
+
Column(name="Member Of", key='member_of_collections')
|
636
|
+
]
|
637
|
+
)], # Reusing common formats and columns
|
642
638
|
action=ActionParameter(
|
643
639
|
function="DataDesigner.find_data_structures",
|
644
640
|
required_params=["search_string"],
|
@@ -659,6 +655,65 @@ base_output_format_sets = FormatSetDict({
|
|
659
655
|
spec_params={},
|
660
656
|
)
|
661
657
|
),
|
658
|
+
'External-Reference': FormatSet(target_type='External-Reference',
|
659
|
+
heading='External-Reference Attributes',
|
660
|
+
description='External References', formats=[
|
661
|
+
Format(types=['MD', 'FORM', 'DICT'], columns=[Column(name='Display Name', key='display_name'),
|
662
|
+
Column(name='Description', key='description'),
|
663
|
+
Column(name='Category', key='category'),
|
664
|
+
Column(name='Reference Title', key='reference_title'),
|
665
|
+
Column(name='Reference Abstract', key='reference_abstract'),
|
666
|
+
Column(name='Authors', key='authors'),
|
667
|
+
Column(name='Organization', key='organization'),
|
668
|
+
Column(name='URL', key='reference_url'),
|
669
|
+
Column(name='Sources', key='reference_sources'),
|
670
|
+
Column(name='License', key='license'),
|
671
|
+
Column(name='Copyright', key='copyright'),
|
672
|
+
Column(name='Number of Pages', key='number_of_pages'),
|
673
|
+
Column(name='Page Range', key='page_range'),
|
674
|
+
Column(name='Publication Series', key='publication_series'),
|
675
|
+
Column(name='Publication Series Volume',
|
676
|
+
key='pub_series_volume'),
|
677
|
+
Column(name='Publisher', key='publisher'),
|
678
|
+
Column(name='First Publication Date', key='first_pub_date'),
|
679
|
+
Column(name='Publication Date', key='pub_date'),
|
680
|
+
Column(name='Publication City', key='pub_city'),
|
681
|
+
Column(name='Publication Year', key='pub_year'),
|
682
|
+
Column(name='Publication Numbers', key='pub_numbers'),
|
683
|
+
Column(name='Version Identifier', key='current_version'),
|
684
|
+
Column(name='Classifications', key='classifications'),
|
685
|
+
Column(name='Qualified Name', key='qualified_name'),
|
686
|
+
Column(name='GUID', key='guid')]),
|
687
|
+
Format(types=['TABLE'], columns=[Column(name='Display Name', key='display_name'),
|
688
|
+
|
689
|
+
Column(name='Category', key='category'),
|
690
|
+
Column(name='Reference Title', key='reference_title'),
|
691
|
+
|
692
|
+
Column(name='Sources', key='reference_sources'),
|
693
|
+
Column(name='License', key='license'),
|
694
|
+
Column(name='Qualified Name', key='qualified_name'),
|
695
|
+
]),
|
696
|
+
Format(types=["REPORT"], columns=[Column(name='Display Name', key='display_name'),
|
697
|
+
Column(name='Description', key='description'),
|
698
|
+
Column(name='Category', key='category'),
|
699
|
+
Column(name='Reference Title', key='reference_title'),
|
700
|
+
Column(name='Reference Abstract', key='reference_abstract'),
|
701
|
+
Column(name='Organization', key='organization'),
|
702
|
+
Column(name='URL', key='reference_url'),
|
703
|
+
Column(name='Sources', key='reference_sources'),
|
704
|
+
Column(name='License', key='license'),
|
705
|
+
Column(name='Qualified Name', key='qualified_name'),
|
706
|
+
Column(name='Mermaid', key='mermaid'),
|
707
|
+
]),
|
708
|
+
|
709
|
+
Format(types=["MERMAID"], columns=[Column(name='Mermaid', key='mermaid')]),
|
710
|
+
],
|
711
|
+
action=ActionParameter(function='ExternalReference.find_external_references',
|
712
|
+
required_params=['search_string'],
|
713
|
+
optional_params=['page_size', 'start_from',
|
714
|
+
'starts_with', 'ends_with',
|
715
|
+
'ignore_case'], spec_params={
|
716
|
+
'metadata_element_types': ['ExternalReference']})),
|
662
717
|
|
663
718
|
"Mandy-DataStruct": FormatSet(
|
664
719
|
target_type="Data Structure",
|
@@ -668,14 +723,14 @@ base_output_format_sets = FormatSetDict({
|
|
668
723
|
annotations={"wikilinks": ["[[Data Structure]]"]},
|
669
724
|
formats=[
|
670
725
|
Format(types=["TABLE"], columns=COMMON_COLUMNS + [Column(name='GUID', key='GUID')]),
|
671
|
-
Format(types=[
|
672
|
-
Format(types=["REPORT","MERMAID", "HTML"], columns=[Column(name='Display Name', key='display_name'),
|
673
|
-
|
726
|
+
Format(types=["DICT", "LIST", ], columns=COMMON_COLUMNS + [Column(name='GUID', key='GUID')]),
|
727
|
+
Format(types=["REPORT", "MERMAID", "HTML"], columns=[Column(name='Display Name', key='display_name'),
|
728
|
+
Column(name='Mermaid', key='mermaid'), ]),
|
674
729
|
],
|
675
730
|
action=ActionParameter(
|
676
731
|
function="DataDesigner.find_data_structures",
|
677
732
|
required_params=["search_string"],
|
678
|
-
spec_params={"output_format":"DICT"},
|
733
|
+
spec_params={"output_format": "DICT"},
|
679
734
|
)
|
680
735
|
),
|
681
736
|
"DataStruct-DrE": FormatSet(
|
@@ -690,7 +745,7 @@ base_output_format_sets = FormatSetDict({
|
|
690
745
|
Column(name='In Data Specifications', key='member_of_data_spec_qnames'),
|
691
746
|
Column(name='In Data Dictionary', key='member_of_data_dicts_qnames'),
|
692
747
|
Column(name='Glossary Term', key='glossary_term'),
|
693
|
-
|
748
|
+
]),
|
694
749
|
Format(types=["DICT", "MD"], columns=COMMON_COLUMNS + [
|
695
750
|
Column(name='Namespace', key='namespace'),
|
696
751
|
Column(name='In Data Specifications', key='member_of_data_spec_qnames'),
|
@@ -722,7 +777,7 @@ base_output_format_sets = FormatSetDict({
|
|
722
777
|
function="GovernanceOfficer.find_governance_definitions",
|
723
778
|
required_params=["search_string"],
|
724
779
|
spec_params={},
|
725
|
-
|
780
|
+
)
|
726
781
|
),
|
727
782
|
"Governance Definitions": FormatSet(
|
728
783
|
target_type="Governance Definition",
|
@@ -735,7 +790,7 @@ base_output_format_sets = FormatSetDict({
|
|
735
790
|
function="GovernanceOfficer.find_governance_definitions",
|
736
791
|
required_params=["search_string"],
|
737
792
|
spec_params={},
|
738
|
-
|
793
|
+
)
|
739
794
|
),
|
740
795
|
"Governance Def": FormatSet(
|
741
796
|
target_type="Governance Definition",
|
@@ -747,11 +802,11 @@ base_output_format_sets = FormatSetDict({
|
|
747
802
|
action=ActionParameter(
|
748
803
|
function="GovernanceOfficer.find_governance_definitions",
|
749
804
|
required_params=["search_string"],
|
750
|
-
spec_params={"metadata_element_types": ["GovernancePrinciple", "GovernanceStrategy","GovernanceResponse"]},
|
751
|
-
|
805
|
+
spec_params={"metadata_element_types": ["GovernancePrinciple", "GovernanceStrategy", "GovernanceResponse"]},
|
806
|
+
)
|
752
807
|
),
|
753
808
|
'Governance Control': FormatSet(target_type='Control', heading='Control Attributes',
|
754
|
-
|
809
|
+
description='Auto-generated format for Governance Control (Create).', formats=[
|
755
810
|
Format(types=['ALL'],
|
756
811
|
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
757
812
|
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
@@ -766,13 +821,13 @@ base_output_format_sets = FormatSetDict({
|
|
766
821
|
Column(name='User Defined Status', key='user_defined_status'),
|
767
822
|
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')
|
768
823
|
])],
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
824
|
+
action=ActionParameter(
|
825
|
+
function="GovernanceOfficer.find_governance_definitions",
|
826
|
+
required_params=["search_string"],
|
827
|
+
optional_params=OPTIONAL_PARAMS,
|
828
|
+
spec_params={"metadata_element_types": ["GovernanceControl"]},
|
829
|
+
)
|
830
|
+
),
|
776
831
|
|
777
832
|
"Governance Policies": FormatSet(
|
778
833
|
target_type="GovernancePolicy",
|
@@ -782,10 +837,10 @@ base_output_format_sets = FormatSetDict({
|
|
782
837
|
annotations={"wikilinks": ["[[Governance]]"]},
|
783
838
|
formats=[Format(types=["ALL"], columns=GOVERNANCE_DEFINITIONS_COLUMNS)],
|
784
839
|
action=ActionParameter(
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
840
|
+
function="GovernanceOfficer.find_governance_definitions",
|
841
|
+
required_params=["search_string"],
|
842
|
+
optional_params=OPTIONAL_PARAMS,
|
843
|
+
spec_params={"metadata_element_types": ["GovernancePolicy"]},
|
789
844
|
)
|
790
845
|
)
|
791
846
|
|
@@ -793,59 +848,1192 @@ base_output_format_sets = FormatSetDict({
|
|
793
848
|
)
|
794
849
|
|
795
850
|
generated_format_sets = FormatSetDict({
|
796
|
-
'Agreement-DrE': FormatSet(target_type='Agreement-DrE', heading='Agreement-DrE Attributes',
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
'
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
851
|
+
'Agreement-DrE': FormatSet(target_type='Agreement-DrE', heading='Agreement-DrE Attributes',
|
852
|
+
description='Auto-generated format for Agreement (Create).', formats=[
|
853
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
854
|
+
Column(name='Description', key='description'),
|
855
|
+
Column(name='Identifier', key='agreement_identifier'),
|
856
|
+
Column(name='Category', key='category'),
|
857
|
+
Column(name='Status', key='element_status'),
|
858
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
859
|
+
Column(name='Version Identifier', key='version_identifier'),
|
860
|
+
Column(name='Agreement Actors', key='agreement_actors'),
|
861
|
+
Column(name='Qualified Name', key='qualified_name'),
|
862
|
+
Column(name='GUID', key='guid')])],
|
863
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
864
|
+
required_params=['search_string'],
|
865
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
866
|
+
'ends_with', 'ignore_case'],
|
867
|
+
spec_params={'metadata_element_types': ['Agreement']})),
|
868
|
+
'Business-Imperative-DrE': FormatSet(target_type='Business-Imperative-DrE',
|
869
|
+
heading='Business-Imperative-DrE Attributes',
|
870
|
+
description='Auto-generated format for Business Imperative (Create).',
|
871
|
+
formats=[Format(types=['ALL'],
|
872
|
+
columns=[Column(name='Display Name', key='display_name'),
|
873
|
+
Column(name='Summary', key='summary'),
|
874
|
+
Column(name='Description', key='description'),
|
875
|
+
Column(name='Category', key='category'),
|
876
|
+
Column(name='Domain Identifier',
|
877
|
+
key='domain_identifier'),
|
878
|
+
Column(name='Identifier', key='identifier'),
|
879
|
+
Column(name='Version Identifier',
|
880
|
+
key='version_identifier'),
|
881
|
+
Column(name='Usage', key='usage'),
|
882
|
+
Column(name='Scope', key='scope'),
|
883
|
+
Column(name='Importance', key='importance'),
|
884
|
+
Column(name='Implications', key='implications'),
|
885
|
+
Column(name='Outcomes', key='outcomes'),
|
886
|
+
Column(name='Results', key='results'),
|
887
|
+
Column(name='Status', key='element_status'),
|
888
|
+
Column(name='User Defined Status',
|
889
|
+
key='user_defined_status'),
|
890
|
+
Column(name='Qualified Name', key='qualified_name'),
|
891
|
+
Column(name='GUID', key='guid')])],
|
892
|
+
action=ActionParameter(
|
893
|
+
function='GovernanceOfficer.find_governance_definitions',
|
894
|
+
required_params=['search_string'],
|
895
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
896
|
+
'ignore_case'],
|
897
|
+
spec_params={'metadata_element_types': ['GovernanceDriver']})),
|
898
|
+
'Campaign-DrE': FormatSet(target_type='Campaign-DrE', heading='Campaign-DrE Attributes',
|
899
|
+
description='Auto-generated format for Campaign (Create).',
|
900
|
+
formats=[Format(types=['ALL'],
|
901
|
+
columns=[
|
902
|
+
Column(
|
903
|
+
name='Display Name',
|
904
|
+
key='display_name'),
|
905
|
+
Column(
|
906
|
+
name='Description',
|
907
|
+
key='description'),
|
908
|
+
Column(
|
909
|
+
name='Project Type',
|
910
|
+
key='project_type'),
|
911
|
+
Column(
|
912
|
+
name='Category',
|
913
|
+
key='category'),
|
914
|
+
Column(
|
915
|
+
name='Identifier',
|
916
|
+
key='project_identifier'),
|
917
|
+
Column(
|
918
|
+
name='Mission',
|
919
|
+
key='mission'),
|
920
|
+
Column(
|
921
|
+
name='Purposes',
|
922
|
+
key='purposes'),
|
923
|
+
Column(
|
924
|
+
name='Start Date',
|
925
|
+
key='start_date'),
|
926
|
+
Column(
|
927
|
+
name='Planned End Date',
|
928
|
+
key='end_date'),
|
929
|
+
Column(
|
930
|
+
name='Priority',
|
931
|
+
key='priority'),
|
932
|
+
Column(
|
933
|
+
name='Project Phase',
|
934
|
+
key='project_phase'),
|
935
|
+
Column(
|
936
|
+
name='Project Status',
|
937
|
+
key='project_status'),
|
938
|
+
Column(
|
939
|
+
name='Project Health',
|
940
|
+
key='project_health'),
|
941
|
+
Column(
|
942
|
+
name='Qualified Name',
|
943
|
+
key='qualified_name'),
|
944
|
+
Column(
|
945
|
+
name='GUID',
|
946
|
+
key='guid')])],
|
947
|
+
action=ActionParameter(function='ProjectManager.find_projects',
|
948
|
+
required_params=['search_string'],
|
949
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
950
|
+
'ends_with', 'ignore_case'],
|
951
|
+
spec_params={'classification_names': ['Campaign']})),
|
952
|
+
'Certification-Type-DrE': FormatSet(target_type='Certification-Type-DrE',
|
953
|
+
heading='Certification-Type-DrE Attributes',
|
954
|
+
description='Auto-generated format for Certification Type (Create).', formats=[
|
955
|
+
Format(types=['ALL'],
|
956
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
957
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
958
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
959
|
+
Column(name='Document Identifier', key='document_identifier'),
|
960
|
+
Column(name='Version Identifier', key='version_identifier'),
|
961
|
+
Column(name='Scope', key='scope'), Column(name='Importance', key='importance'),
|
962
|
+
Column(name='Details', key='details'), Column(name='Implications', key='implications'),
|
963
|
+
Column(name='Outcomes', key='outcomes'), Column(name='Results', key='results'),
|
964
|
+
Column(name='Status', key='element_status'),
|
965
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
966
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
967
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
968
|
+
required_params=['search_string'],
|
969
|
+
optional_params=['page_size', 'start_from',
|
970
|
+
'starts_with', 'ends_with',
|
971
|
+
'ignore_case'], spec_params={
|
972
|
+
'metadata_element_types': ['CertificationTYpe']})),
|
973
|
+
'Collection-DrE': FormatSet(target_type='Collection-DrE', heading='Collection-DrE Attributes',
|
974
|
+
description='Auto-generated format for Collection (Create).', formats=[
|
975
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
976
|
+
Column(name='Description', key='description'),
|
977
|
+
Column(name='Classifications', key='classifications'),
|
978
|
+
Column(name='Category', key='category'),
|
979
|
+
Column(name='Version Identifier', key='current_version'),
|
980
|
+
Column(name='Qualified Name', key='qualified_name'),
|
981
|
+
Column(name='GUID', key='guid')])],
|
982
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
983
|
+
required_params=['search_string'],
|
984
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
985
|
+
'ends_with', 'ignore_case'])),
|
986
|
+
'Data-Class-DrE': FormatSet(target_type='Data-Class-DrE', heading='Data-Class-DrE Attributes',
|
987
|
+
description='Auto-generated format for Data Class (Create).', formats=[
|
988
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
989
|
+
Column(name='Description', key='description'),
|
990
|
+
Column(name='Category', key='category'),
|
991
|
+
Column(name='Status', key='element_status'),
|
992
|
+
Column(name='Namespace', key='namespace'),
|
993
|
+
Column(name='Match Property Names', key='match_property_names'),
|
994
|
+
Column(name='Match Threshold', key='match_threshold'),
|
995
|
+
Column(name='IsCaseSensitive', key='is_case_sensitive'),
|
996
|
+
Column(name='Data Type', key='data_type'),
|
997
|
+
Column(name='Allow Duplicate Values', key='duplicates_allowed'),
|
998
|
+
Column(name='isNullable', key='is_nullable'),
|
999
|
+
Column(name='Default Value', key='default_value'),
|
1000
|
+
Column(name='Average Value', key='avg_value'),
|
1001
|
+
Column(name='Value List', key='value_list'),
|
1002
|
+
Column(name='Value Range From', key='value_range_from'),
|
1003
|
+
Column(name='Value Range To', key='value_range_to'),
|
1004
|
+
Column(name='Sample Values', key='sample_values'),
|
1005
|
+
Column(name='Data Patterns', key='data_patterns'),
|
1006
|
+
Column(name='In Data Dictionary', key='in_data_dictionary'),
|
1007
|
+
Column(name='Containing Data Class', key='containing_data_class'),
|
1008
|
+
Column(name='Specializes Data Class', key='specializes_data_class'),
|
1009
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1010
|
+
Column(name='GUID', key='guid')])],
|
1011
|
+
action=ActionParameter(function='DataDesigner.find_data_classes',
|
1012
|
+
required_params=['search_string'],
|
1013
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1014
|
+
'ends_with', 'ignore_case'])),
|
1015
|
+
'Data-Dictionary-DrE': FormatSet(target_type='Data-Dictionary-DrE', heading='Data-Dictionary-DrE Attributes',
|
1016
|
+
description='Auto-generated format for Data Dictionary (Create).', formats=[
|
1017
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1018
|
+
Column(name='Description', key='description'),
|
1019
|
+
Column(name='Category', key='category'),
|
1020
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1021
|
+
Column(name='GUID', key='guid')])],
|
1022
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
1023
|
+
required_params=['search_string'],
|
1024
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1025
|
+
'ends_with', 'ignore_case'], spec_params={
|
1026
|
+
'metadata_element_types': ['DataDictionary']})),
|
1027
|
+
'Data-Field-DrE': FormatSet(target_type='Data-Field-DrE', heading='Data-Field-DrE Attributes',
|
1028
|
+
description='Auto-generated format for Data Field (Create).', formats=[
|
1029
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1030
|
+
Column(name='Description', key='description'),
|
1031
|
+
Column(name='Category', key='category'),
|
1032
|
+
Column(name='Status', key='element_status'),
|
1033
|
+
Column(name='Data Type', key='data_type'),
|
1034
|
+
Column(name='Position', key='position'),
|
1035
|
+
Column(name='Minimum Cardinality', key='min_cardinality'),
|
1036
|
+
Column(name='Maximum Cardinality', key='max_cardinality'),
|
1037
|
+
Column(name='In Data Structure', key='in_data_structure'),
|
1038
|
+
Column(name='Data Class', key='data_class'),
|
1039
|
+
Column(name='Glossary Term', key='glossary_term'),
|
1040
|
+
Column(name='isNullable', key='is_nullable'),
|
1041
|
+
Column(name='Minimum Length', key='min_length'),
|
1042
|
+
Column(name='Length', key='length'),
|
1043
|
+
Column(name='Precision', key='precision'),
|
1044
|
+
Column(name='Ordered Values', key='ordered_values'),
|
1045
|
+
Column(name='Units', key='units'),
|
1046
|
+
Column(name='Default Value', key='default_value'),
|
1047
|
+
Column(name='Version Identifier', key='version_id'),
|
1048
|
+
Column(name='In Data Dictionary', key='in_data_dictionary'),
|
1049
|
+
Column(name='Parent Data Field', key='parent_data_field'),
|
1050
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1051
|
+
Column(name='GUID', key='guid')])],
|
1052
|
+
action=ActionParameter(function='DataDesigner.find_data_fields',
|
1053
|
+
required_params=['search_string'],
|
1054
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1055
|
+
'ends_with', 'ignore_case'])),
|
1056
|
+
'Data-Processing-Purpose-DrE': FormatSet(target_type='Data-Processing-Purpose-DrE',
|
1057
|
+
heading='Data-Processing-Purpose-DrE Attributes',
|
1058
|
+
description='Auto-generated format for Data Processing Purpose (Create).',
|
1059
|
+
formats=[Format(types=['ALL'],
|
1060
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1061
|
+
Column(name='Summary', key='summary'),
|
1062
|
+
Column(name='Description', key='description'),
|
1063
|
+
Column(name='Category', key='category'),
|
1064
|
+
Column(name='Domain Identifier',
|
1065
|
+
key='domain_identifier'),
|
1066
|
+
Column(name='Identifier', key='identifier'),
|
1067
|
+
Column(name='Version Identifier',
|
1068
|
+
key='version_identifier'),
|
1069
|
+
Column(name='Usage', key='usage'),
|
1070
|
+
Column(name='Scope', key='scope'),
|
1071
|
+
Column(name='Importance', key='importance'),
|
1072
|
+
Column(name='Implications', key='implications'),
|
1073
|
+
Column(name='Outcomes', key='outcomes'),
|
1074
|
+
Column(name='Results', key='results'),
|
1075
|
+
Column(name='Status', key='element_status'),
|
1076
|
+
Column(name='User Defined Status',
|
1077
|
+
key='user_defined_status'),
|
1078
|
+
Column(name='Qualified Name',
|
1079
|
+
key='qualified_name'),
|
1080
|
+
Column(name='GUID', key='guid')])],
|
1081
|
+
action=ActionParameter(
|
1082
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1083
|
+
required_params=['search_string'],
|
1084
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1085
|
+
'ignore_case'],
|
1086
|
+
spec_params={'metadata_element_types': ['DataProcessingPurpose']})),
|
1087
|
+
'Data-Sharing-Agreement-DrE': FormatSet(target_type='Data-Sharing-Agreement-DrE',
|
1088
|
+
heading='Data-Sharing-Agreement-DrE Attributes',
|
1089
|
+
description='Auto-generated format for Data Sharing Agreement (Create).',
|
1090
|
+
formats=[Format(types=['ALL'],
|
1091
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1092
|
+
Column(name='Description', key='description'),
|
1093
|
+
Column(name='Category', key='category'),
|
1094
|
+
Column(name='Identifier', key='identifier'),
|
1095
|
+
Column(name='Status', key='element_status'),
|
1096
|
+
Column(name='User_Defined_Status',
|
1097
|
+
key='user_defined_status'),
|
1098
|
+
Column(name='Version Identifier',
|
1099
|
+
key='version_identifier'),
|
1100
|
+
Column(name='Product Manager',
|
1101
|
+
key='product_manager'),
|
1102
|
+
Column(name='Qualified Name',
|
1103
|
+
key='qualified_name'),
|
1104
|
+
Column(name='GUID', key='guid')])],
|
1105
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
1106
|
+
required_params=['search_string'],
|
1107
|
+
optional_params=['page_size', 'start_from',
|
1108
|
+
'starts_with', 'ends_with',
|
1109
|
+
'ignore_case'], spec_params={
|
1110
|
+
'classification_names': ['DataSharingAgreement']})),
|
1111
|
+
'Data-Specification-DrE': FormatSet(target_type='Data-Specification-DrE',
|
1112
|
+
heading='Data-Specification-DrE Attributes',
|
1113
|
+
description='Auto-generated format for Data Specification (Create).', formats=[
|
1114
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1115
|
+
Column(name='Description', key='description'),
|
1116
|
+
Column(name='Category', key='category'),
|
1117
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1118
|
+
Column(name='GUID', key='guid')])],
|
1119
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
1120
|
+
required_params=['search_string'],
|
1121
|
+
optional_params=['page_size', 'start_from',
|
1122
|
+
'starts_with', 'ends_with',
|
1123
|
+
'ignore_case'],
|
1124
|
+
spec_params={'metadata_element_types': ['DataSpec']})),
|
1125
|
+
'Data-Structure-DrE': FormatSet(target_type='Data-Structure-DrE', heading='Data-Structure-DrE Attributes',
|
1126
|
+
description='Auto-generated format for Data Structure (Create).', formats=[
|
1127
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1128
|
+
Column(name='Description', key='description'),
|
1129
|
+
Column(name='Category', key='category'),
|
1130
|
+
Column(name='Status', key='element_status'),
|
1131
|
+
Column(name='In Data Specification', key='in_data_spec'),
|
1132
|
+
Column(name='In Data Dictionary', key='in_data_dictionary'),
|
1133
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1134
|
+
Column(name='GUID', key='guid')])],
|
1135
|
+
action=ActionParameter(function='DataDesigner.find_data_structures',
|
1136
|
+
required_params=['search_string'],
|
1137
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1138
|
+
'ends_with', 'ignore_case'])),
|
1139
|
+
'Digital-Product-DrE': FormatSet(target_type='Digital-Product-DrE', heading='Digital-Product-DrE Attributes',
|
1140
|
+
description='Auto-generated format for Digital Product (Create).', formats=[
|
1141
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1142
|
+
Column(name='Description', key='description'),
|
1143
|
+
Column(name='Product Name', key='product_name'),
|
1144
|
+
Column(name='Status', key='element_status'),
|
1145
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1146
|
+
Column(name='Category', key='category'),
|
1147
|
+
Column(name='Identifier', key='identifier'),
|
1148
|
+
Column(name='Maturity', key='maturity'),
|
1149
|
+
Column(name='Service Life', key='service_life'),
|
1150
|
+
Column(name='Introduction Date', key='introduction_date'),
|
1151
|
+
Column(name='Next Version Date', key='next_version_date'),
|
1152
|
+
Column(name='Withdrawal Date', key='withdrawal_date'),
|
1153
|
+
Column(name='Version Identifier', key='current_version'),
|
1154
|
+
Column(name='Product Manager', key='product_manager'),
|
1155
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1156
|
+
Column(name='GUID', key='guid')])],
|
1157
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
1158
|
+
required_params=['search_string'],
|
1159
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1160
|
+
'ends_with', 'ignore_case'], spec_params={
|
1161
|
+
'metadata_element_types': ['DigitalProduct']})),
|
1162
|
+
'Digital-Subscription-DrE': FormatSet(target_type='Digital-Subscription-DrE',
|
1163
|
+
heading='Digital-Subscription-DrE Attributes',
|
1164
|
+
description='Auto-generated format for Digital Subscription (Create).',
|
1165
|
+
formats=[Format(types=['ALL'],
|
1166
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1167
|
+
Column(name='Description', key='description'),
|
1168
|
+
Column(name='Identifier', key='identifier'),
|
1169
|
+
Column(name='Category', key='category'),
|
1170
|
+
Column(name='Status', key='element_status'),
|
1171
|
+
Column(name='User_Defined_Status',
|
1172
|
+
key='user_defined_status'),
|
1173
|
+
Column(name='Support Level', key='support_level'),
|
1174
|
+
Column(name='Service Levels', key='service_levels'),
|
1175
|
+
Column(name='Version Identifier',
|
1176
|
+
key='version_identifier'),
|
1177
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1178
|
+
Column(name='GUID', key='guid')])],
|
1179
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
1180
|
+
required_params=['search_string'],
|
1181
|
+
optional_params=['page_size', 'start_from',
|
1182
|
+
'starts_with', 'ends_with',
|
1183
|
+
'ignore_case'], spec_params={
|
1184
|
+
'metadata_element_types': ['DigitalSubscription']})),
|
1185
|
+
'External-Data-Source-DrE': FormatSet(target_type='External-Data-Source-DrE',
|
1186
|
+
heading='External-Data-Source-DrE Attributes',
|
1187
|
+
description='Auto-generated format for External Data Source (Create).',
|
1188
|
+
formats=[Format(types=['ALL'],
|
1189
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1190
|
+
Column(name='Description', key='description'),
|
1191
|
+
Column(name='Category', key='category'),
|
1192
|
+
Column(name='Reference Title',
|
1193
|
+
key='reference_title'),
|
1194
|
+
Column(name='Reference Abstract',
|
1195
|
+
key='reference_abstract'),
|
1196
|
+
Column(name='Authors', key='authors'),
|
1197
|
+
Column(name='Organization', key='organization'),
|
1198
|
+
Column(name='URL', key='reference_url'),
|
1199
|
+
Column(name='Sources', key='reference_sources'),
|
1200
|
+
Column(name='License', key='license'),
|
1201
|
+
Column(name='Copyright', key='copyright'),
|
1202
|
+
Column(name='Version Identifier',
|
1203
|
+
key='current_version'),
|
1204
|
+
Column(name='Classifications',
|
1205
|
+
key='classifications'),
|
1206
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1207
|
+
Column(name='GUID', key='guid')])],
|
1208
|
+
action=ActionParameter(function='ExternalReference.find_external_references',
|
1209
|
+
required_params=['search_string'],
|
1210
|
+
optional_params=['page_size', 'start_from',
|
1211
|
+
'starts_with', 'ends_with',
|
1212
|
+
'ignore_case'], spec_params={
|
1213
|
+
'metadata_element_types': ['ExternalDataSource']})),
|
1214
|
+
'External-Reference-DrE': FormatSet(target_type='External-Reference-DrE',
|
1215
|
+
heading='External-Reference-DrE Attributes',
|
1216
|
+
description='Auto-generated format for External Reference (Create).', formats=[
|
1217
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1218
|
+
Column(name='Description', key='description'),
|
1219
|
+
Column(name='Category', key='category'),
|
1220
|
+
Column(name='Reference Title', key='reference_title'),
|
1221
|
+
Column(name='Reference Abstract', key='reference_abstract'),
|
1222
|
+
Column(name='Authors', key='authors'),
|
1223
|
+
Column(name='Organization', key='organization'),
|
1224
|
+
Column(name='URL', key='reference_url'),
|
1225
|
+
Column(name='Sources', key='reference_sources'),
|
1226
|
+
Column(name='License', key='license'),
|
1227
|
+
Column(name='Copyright', key='copyright'),
|
1228
|
+
Column(name='Number of Pages', key='number_of_pages'),
|
1229
|
+
Column(name='Page Range', key='page_range'),
|
1230
|
+
Column(name='Publication Series', key='publication_series'),
|
1231
|
+
Column(name='Publication Series Volume', key='pub_series_volume'),
|
1232
|
+
Column(name='Publisher', key='publisher'),
|
1233
|
+
Column(name='First Publication Date', key='first_pub_date'),
|
1234
|
+
Column(name='Publication Date', key='pub_date'),
|
1235
|
+
Column(name='Publication City', key='pub_city'),
|
1236
|
+
Column(name='Publication Year', key='pub_year'),
|
1237
|
+
Column(name='Publication Numbers', key='pub_numbers'),
|
1238
|
+
Column(name='Version Identifier', key='current_version'),
|
1239
|
+
Column(name='Classifications', key='classifications'),
|
1240
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1241
|
+
Column(name='GUID', key='guid')])],
|
1242
|
+
action=ActionParameter(function='ExternalReference.find_external_references',
|
1243
|
+
required_params=['search_string'],
|
1244
|
+
optional_params=['page_size', 'start_from',
|
1245
|
+
'starts_with', 'ends_with',
|
1246
|
+
'ignore_case'], spec_params={
|
1247
|
+
'metadata_element_types': ['ExternalReference']})),
|
1248
|
+
|
1249
|
+
'Glossary-DrE': FormatSet(target_type='Glossary-DrE', heading='Glossary-DrE Attributes',
|
1250
|
+
description='Auto-generated format for Glossary (Create).', formats=[Format(types=['ALL'],
|
1251
|
+
columns=[
|
1252
|
+
Column(
|
1253
|
+
name='Display Name',
|
1254
|
+
key='display_name'),
|
1255
|
+
Column(
|
1256
|
+
name='Description',
|
1257
|
+
key='description'),
|
1258
|
+
Column(
|
1259
|
+
name='Category',
|
1260
|
+
key='category'),
|
1261
|
+
Column(
|
1262
|
+
name='Language',
|
1263
|
+
key='language'),
|
1264
|
+
Column(
|
1265
|
+
name='Qualified Name',
|
1266
|
+
key='qualified_name'),
|
1267
|
+
Column(
|
1268
|
+
name='GUID',
|
1269
|
+
key='guid')])],
|
1270
|
+
action=ActionParameter(function='CollectionManager.find_collections',
|
1271
|
+
required_params=['search_string'],
|
1272
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1273
|
+
'ends_with', 'ignore_case'],
|
1274
|
+
spec_params={'metadata_element_types': ['Glossary']})),
|
1275
|
+
'Glossary-Term-DrE': FormatSet(target_type='Glossary-Term-DrE', heading='Glossary-Term-DrE Attributes',
|
1276
|
+
description='Auto-generated format for Glossary Term (Create).', formats=[
|
1277
|
+
Format(types=['ALL'],
|
1278
|
+
columns=[Column(name='Display Name', key='term_name'), Column(name='Glossary', key='glossary_name'),
|
1279
|
+
Column(name='Summary', key='summary'), Column(name='Description', key='description'),
|
1280
|
+
Column(name='Abbreviation', key='abbreviation'), Column(name='Example', key='example'),
|
1281
|
+
Column(name='Usage', key='usage'), Column(name='Status', key='element_status'),
|
1282
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1283
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1284
|
+
action=ActionParameter(function='GlossaryManager.find_glossary_terms',
|
1285
|
+
required_params=['search_string'],
|
1286
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1287
|
+
'ends_with', 'ignore_case'])),
|
1288
|
+
'Governance-Action-DrE': FormatSet(target_type='Governance-Action-DrE', heading='Governance-Action-DrE Attributes',
|
1289
|
+
description='Auto-generated format for Governance Action (Create).', formats=[
|
1290
|
+
Format(types=['ALL'],
|
1291
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1292
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1293
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1294
|
+
Column(name='Identifier', key='identifier'),
|
1295
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1296
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1297
|
+
Column(name='Importance', key='importance'),
|
1298
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1299
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1300
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1301
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1302
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1303
|
+
required_params=['search_string'],
|
1304
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1305
|
+
'ends_with', 'ignore_case'],
|
1306
|
+
spec_params={
|
1307
|
+
'metadata_element_types': ['GovernanceAction']})),
|
1308
|
+
'Governance-Approach-DrE': FormatSet(target_type='Governance-Approach-DrE',
|
1309
|
+
heading='Governance-Approach-DrE Attributes',
|
1310
|
+
description='Auto-generated format for Governance Approach (Create).',
|
1311
|
+
formats=[Format(types=['ALL'],
|
1312
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1313
|
+
Column(name='Summary', key='summary'),
|
1314
|
+
Column(name='Description', key='description'),
|
1315
|
+
Column(name='Category', key='category'),
|
1316
|
+
Column(name='Domain Identifier',
|
1317
|
+
key='domain_identifier'),
|
1318
|
+
Column(name='Identifier', key='identifier'),
|
1319
|
+
Column(name='Version Identifier',
|
1320
|
+
key='version_identifier'),
|
1321
|
+
Column(name='Usage', key='usage'),
|
1322
|
+
Column(name='Scope', key='scope'),
|
1323
|
+
Column(name='Importance', key='importance'),
|
1324
|
+
Column(name='Implications', key='implications'),
|
1325
|
+
Column(name='Outcomes', key='outcomes'),
|
1326
|
+
Column(name='Results', key='results'),
|
1327
|
+
Column(name='Status', key='element_status'),
|
1328
|
+
Column(name='User Defined Status',
|
1329
|
+
key='user_defined_status'),
|
1330
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1331
|
+
Column(name='GUID', key='guid')])],
|
1332
|
+
action=ActionParameter(
|
1333
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1334
|
+
required_params=['search_string'],
|
1335
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1336
|
+
'ignore_case'],
|
1337
|
+
spec_params={'metadata_element_types': ['GovernanceApproach']})),
|
1338
|
+
'Governance-Control-DrE': FormatSet(target_type='Governance-Control-DrE',
|
1339
|
+
heading='Governance-Control-DrE Attributes',
|
1340
|
+
description='Auto-generated format for Governance Control (Create).', formats=[
|
1341
|
+
Format(types=['ALL'],
|
1342
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1343
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1344
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1345
|
+
Column(name='Identifier', key='identifier'),
|
1346
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1347
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1348
|
+
Column(name='Importance', key='importance'), Column(name='measurement', key='measurement'),
|
1349
|
+
Column(name='target', key='target'), Column(name='Implications', key='implications'),
|
1350
|
+
Column(name='Outcomes', key='outcomes'), Column(name='Results', key='results'),
|
1351
|
+
Column(name='Status', key='element_status'),
|
1352
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1353
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1354
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1355
|
+
required_params=['search_string'],
|
1356
|
+
optional_params=['page_size', 'start_from',
|
1357
|
+
'starts_with', 'ends_with',
|
1358
|
+
'ignore_case'], spec_params={
|
1359
|
+
'metadata_element_types': ['GovernanceMetric']})),
|
1360
|
+
'Governance-Driver-DrE': FormatSet(target_type='Governance-Driver-DrE', heading='Governance-Driver-DrE Attributes',
|
1361
|
+
description='Auto-generated format for Governance Driver (Create).', formats=[
|
1362
|
+
Format(types=['ALL'],
|
1363
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1364
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1365
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1366
|
+
Column(name='Identifier', key='identifier'),
|
1367
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1368
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1369
|
+
Column(name='Importance', key='importance'),
|
1370
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1371
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1372
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1373
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1374
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1375
|
+
required_params=['search_string'],
|
1376
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1377
|
+
'ends_with', 'ignore_case'],
|
1378
|
+
spec_params={
|
1379
|
+
'metadata_element_types': ['GovernanceDriver']})),
|
1380
|
+
'Governance-Obligation-DrE': FormatSet(target_type='Governance-Obligation-DrE',
|
1381
|
+
heading='Governance-Obligation-DrE Attributes',
|
1382
|
+
description='Auto-generated format for Governance Obligation (Create).',
|
1383
|
+
formats=[Format(types=['ALL'],
|
1384
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1385
|
+
Column(name='Summary', key='summary'),
|
1386
|
+
Column(name='Description', key='description'),
|
1387
|
+
Column(name='Category', key='category'),
|
1388
|
+
Column(name='Domain Identifier',
|
1389
|
+
key='domain_identifier'),
|
1390
|
+
Column(name='Identifier', key='identifier'),
|
1391
|
+
Column(name='Version Identifier',
|
1392
|
+
key='version_identifier'),
|
1393
|
+
Column(name='Usage', key='usage'),
|
1394
|
+
Column(name='Scope', key='scope'),
|
1395
|
+
Column(name='Importance', key='importance'),
|
1396
|
+
Column(name='Implications', key='implications'),
|
1397
|
+
Column(name='Outcomes', key='outcomes'),
|
1398
|
+
Column(name='Results', key='results'),
|
1399
|
+
Column(name='Status', key='element_status'),
|
1400
|
+
Column(name='User Defined Status',
|
1401
|
+
key='user_defined_status'),
|
1402
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1403
|
+
Column(name='GUID', key='guid')])],
|
1404
|
+
action=ActionParameter(
|
1405
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1406
|
+
required_params=['search_string'],
|
1407
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1408
|
+
'ignore_case'],
|
1409
|
+
spec_params={'metadata_element_types': ['GovernanceObligation']})),
|
1410
|
+
'Governance-Policy-DrE': FormatSet(target_type='Governance-Policy-DrE', heading='Governance-Policy-DrE Attributes',
|
1411
|
+
description='Auto-generated format for Governance Policy (Create).', formats=[
|
1412
|
+
Format(types=['ALL'],
|
1413
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1414
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1415
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1416
|
+
Column(name='Identifier', key='identifier'),
|
1417
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1418
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1419
|
+
Column(name='Importance', key='importance'),
|
1420
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1421
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1422
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1423
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1424
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1425
|
+
required_params=['search_string'],
|
1426
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1427
|
+
'ends_with', 'ignore_case'],
|
1428
|
+
spec_params={
|
1429
|
+
'metadata_element_types': ['GovernancePolicy']})),
|
1430
|
+
'Governance-Principle-DrE': FormatSet(target_type='Governance-Principle-DrE',
|
1431
|
+
heading='Governance-Principle-DrE Attributes',
|
1432
|
+
description='Auto-generated format for Governance Principle (Create).',
|
1433
|
+
formats=[Format(types=['ALL'],
|
1434
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1435
|
+
Column(name='Summary', key='summary'),
|
1436
|
+
Column(name='Description', key='description'),
|
1437
|
+
Column(name='Category', key='category'),
|
1438
|
+
Column(name='Domain Identifier',
|
1439
|
+
key='domain_identifier'),
|
1440
|
+
Column(name='Identifier', key='identifier'),
|
1441
|
+
Column(name='Version Identifier',
|
1442
|
+
key='version_identifier'),
|
1443
|
+
Column(name='Usage', key='usage'),
|
1444
|
+
Column(name='Scope', key='scope'),
|
1445
|
+
Column(name='Importance', key='importance'),
|
1446
|
+
Column(name='Implications', key='implications'),
|
1447
|
+
Column(name='Outcomes', key='outcomes'),
|
1448
|
+
Column(name='Results', key='results'),
|
1449
|
+
Column(name='Status', key='element_status'),
|
1450
|
+
Column(name='User Defined Status',
|
1451
|
+
key='user_defined_status'),
|
1452
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1453
|
+
Column(name='GUID', key='guid')])],
|
1454
|
+
action=ActionParameter(
|
1455
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1456
|
+
required_params=['search_string'],
|
1457
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1458
|
+
'ignore_case'],
|
1459
|
+
spec_params={'metadata_element_types': ['GovernancePrinciple']})),
|
1460
|
+
'Governance-Procedure-DrE': FormatSet(target_type='Governance-Procedure-DrE',
|
1461
|
+
heading='Governance-Procedure-DrE Attributes',
|
1462
|
+
description='Auto-generated format for Governance Procedure (Create).',
|
1463
|
+
formats=[Format(types=['ALL'],
|
1464
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1465
|
+
Column(name='Summary', key='summary'),
|
1466
|
+
Column(name='Description', key='description'),
|
1467
|
+
Column(name='Category', key='category'),
|
1468
|
+
Column(name='Domain Identifier',
|
1469
|
+
key='domain_identifier'),
|
1470
|
+
Column(name='Document Identifier',
|
1471
|
+
key='document_identifier'),
|
1472
|
+
Column(name='Version Identifier',
|
1473
|
+
key='version_identifier'),
|
1474
|
+
Column(name='Scope', key='scope'),
|
1475
|
+
Column(name='Importance', key='importance'),
|
1476
|
+
Column(name='Implementation Description',
|
1477
|
+
key='implementation_description'),
|
1478
|
+
Column(name='Supports Policies',
|
1479
|
+
key='supports_policies'),
|
1480
|
+
Column(name='Implications', key='implications'),
|
1481
|
+
Column(name='Outcomes', key='outcomes'),
|
1482
|
+
Column(name='Results', key='results'),
|
1483
|
+
Column(name='Status', key='element_status'),
|
1484
|
+
Column(name='User Defined Status',
|
1485
|
+
key='user_defined_status'),
|
1486
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1487
|
+
Column(name='GUID', key='guid')])],
|
1488
|
+
action=ActionParameter(
|
1489
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1490
|
+
required_params=['search_string'],
|
1491
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1492
|
+
'ignore_case'],
|
1493
|
+
spec_params={'metadata_element_types': ['GovernanceProcedure']})),
|
1494
|
+
'Governance-Responsibility-DrE': FormatSet(target_type='Governance-Responsibility-DrE',
|
1495
|
+
heading='Governance-Responsibility-DrE Attributes',
|
1496
|
+
description='Auto-generated format for Governance Responsibility (Create).',
|
1497
|
+
formats=[Format(types=['ALL'],
|
1498
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1499
|
+
Column(name='Summary', key='summary'),
|
1500
|
+
Column(name='Description', key='description'),
|
1501
|
+
Column(name='Category', key='category'),
|
1502
|
+
Column(name='Domain Identifier',
|
1503
|
+
key='domain_identifier'),
|
1504
|
+
Column(name='Document Identifier',
|
1505
|
+
key='document_identifier'),
|
1506
|
+
Column(name='Version Identifier',
|
1507
|
+
key='version_identifier'),
|
1508
|
+
Column(name='Scope', key='scope'),
|
1509
|
+
Column(name='Importance', key='importance'),
|
1510
|
+
Column(name='Implementation Description',
|
1511
|
+
key='implementation_description'),
|
1512
|
+
Column(name='Supports Policies',
|
1513
|
+
key='supports_policies'),
|
1514
|
+
Column(name='Implications', key='implications'),
|
1515
|
+
Column(name='Outcomes', key='outcomes'),
|
1516
|
+
Column(name='Results', key='results'),
|
1517
|
+
Column(name='Status', key='element_status'),
|
1518
|
+
Column(name='User Defined Status',
|
1519
|
+
key='user_defined_status'),
|
1520
|
+
Column(name='Qualified Name',
|
1521
|
+
key='qualified_name'),
|
1522
|
+
Column(name='GUID', key='guid')])],
|
1523
|
+
action=ActionParameter(
|
1524
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1525
|
+
required_params=['search_string'],
|
1526
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1527
|
+
'ends_with', 'ignore_case'], spec_params={
|
1528
|
+
'metadata_element_types': ['GovernanceResponsibility']})),
|
1529
|
+
'Governance-Rule-DrE': FormatSet(target_type='Governance-Rule-DrE', heading='Governance-Rule-DrE Attributes',
|
1530
|
+
description='Auto-generated format for Governance Rule (Create).', formats=[
|
1531
|
+
Format(types=['ALL'],
|
1532
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1533
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1534
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1535
|
+
Column(name='Document Identifier', key='document_identifier'),
|
1536
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1537
|
+
Column(name='Scope', key='scope'), Column(name='Importance', key='importance'),
|
1538
|
+
Column(name='Implementation Description', key='implementation_description'),
|
1539
|
+
Column(name='Supports Policies', key='supports_policies'),
|
1540
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1541
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1542
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1543
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1544
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1545
|
+
required_params=['search_string'],
|
1546
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1547
|
+
'ends_with', 'ignore_case'], spec_params={
|
1548
|
+
'metadata_element_types': ['GovernanceRule']})),
|
1549
|
+
'Governance-Strategy-DrE': FormatSet(target_type='Governance-Strategy-DrE',
|
1550
|
+
heading='Governance-Strategy-DrE Attributes',
|
1551
|
+
description='Auto-generated format for Governance Strategy (Create).',
|
1552
|
+
formats=[Format(types=['ALL'],
|
1553
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1554
|
+
Column(name='Summary', key='summary'),
|
1555
|
+
Column(name='Description', key='description'),
|
1556
|
+
Column(name='Category', key='category'),
|
1557
|
+
Column(name='Domain Identifier',
|
1558
|
+
key='domain_identifier'),
|
1559
|
+
Column(name='Identifier', key='identifier'),
|
1560
|
+
Column(name='Version Identifier',
|
1561
|
+
key='version_identifier'),
|
1562
|
+
Column(name='Usage', key='usage'),
|
1563
|
+
Column(name='Scope', key='scope'),
|
1564
|
+
Column(name='Importance', key='importance'),
|
1565
|
+
Column(name='Implications', key='implications'),
|
1566
|
+
Column(name='Outcomes', key='outcomes'),
|
1567
|
+
Column(name='Results', key='results'),
|
1568
|
+
Column(name='Status', key='element_status'),
|
1569
|
+
Column(name='User Defined Status',
|
1570
|
+
key='user_defined_status'),
|
1571
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1572
|
+
Column(name='GUID', key='guid')])],
|
1573
|
+
action=ActionParameter(
|
1574
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1575
|
+
required_params=['search_string'],
|
1576
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1577
|
+
'ignore_case'],
|
1578
|
+
spec_params={'metadata_element_types': ['GovernanceStrategy']})),
|
1579
|
+
'Information-Supply-Chain-DrE': FormatSet(target_type='Information-Supply-Chain-DrE',
|
1580
|
+
heading='Information-Supply-Chain-DrE Attributes',
|
1581
|
+
description='Auto-generated format for Information Supply Chain (Create).',
|
1582
|
+
formats=[Format(types=['ALL'],
|
1583
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1584
|
+
Column(name='Description', key='description'),
|
1585
|
+
Column(name='Category', key='category'),
|
1586
|
+
Column(name='Scope', key='scope'),
|
1587
|
+
Column(name='Purposes', key='purposes'),
|
1588
|
+
Column(name='Nested Information Supply Chains',
|
1589
|
+
key='nested_info_supply_chains'),
|
1590
|
+
Column(name='In Information Supply Chain',
|
1591
|
+
key='in_supply_chain'),
|
1592
|
+
Column(name='Qualified Name',
|
1593
|
+
key='qualified_name'),
|
1594
|
+
Column(name='GUID', key='guid'),
|
1595
|
+
Column(name='Merge Update',
|
1596
|
+
key='merge_update')])],
|
1597
|
+
action=ActionParameter(
|
1598
|
+
function='SolutionArchitect.find_information_supply_chains',
|
1599
|
+
required_params=['search_string'],
|
1600
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1601
|
+
'ends_with', 'ignore_case'])),
|
1602
|
+
'License-Type-DrE': FormatSet(target_type='License-Type-DrE', heading='License-Type-DrE Attributes',
|
1603
|
+
description='Auto-generated format for License Type (Create).', formats=[
|
1604
|
+
Format(types=['ALL'],
|
1605
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1606
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1607
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1608
|
+
Column(name='Document Identifier', key='document_identifier'),
|
1609
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1610
|
+
Column(name='Scope', key='scope'), Column(name='Importance', key='importance'),
|
1611
|
+
Column(name='Details', key='details'), Column(name='Implications', key='implications'),
|
1612
|
+
Column(name='Outcomes', key='outcomes'), Column(name='Results', key='results'),
|
1613
|
+
Column(name='Status', key='element_status'),
|
1614
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1615
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1616
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1617
|
+
required_params=['search_string'],
|
1618
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1619
|
+
'ends_with', 'ignore_case'],
|
1620
|
+
spec_params={'metadata_element_types': ['LicenseType']})),
|
1621
|
+
'Naming-Standard-Rule-DrE': FormatSet(target_type='Naming-Standard-Rule-DrE',
|
1622
|
+
heading='Naming-Standard-Rule-DrE Attributes',
|
1623
|
+
description='Auto-generated format for Naming Standard Rule (Create).',
|
1624
|
+
formats=[Format(types=['ALL'],
|
1625
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1626
|
+
Column(name='Summary', key='summary'),
|
1627
|
+
Column(name='Description', key='description'),
|
1628
|
+
Column(name='Category', key='category'),
|
1629
|
+
Column(name='Domain Identifier',
|
1630
|
+
key='domain_identifier'),
|
1631
|
+
Column(name='Document Identifier',
|
1632
|
+
key='document_identifier'),
|
1633
|
+
Column(name='Version Identifier',
|
1634
|
+
key='version_identifier'),
|
1635
|
+
Column(name='Scope', key='scope'),
|
1636
|
+
Column(name='Importance', key='importance'),
|
1637
|
+
Column(name='Implementation Description',
|
1638
|
+
key='implementation_description'),
|
1639
|
+
Column(name='Supports Policies',
|
1640
|
+
key='supports_policies'),
|
1641
|
+
Column(name='Name Patterns', key='implications'),
|
1642
|
+
Column(name='Outcomes', key='outcomes'),
|
1643
|
+
Column(name='Results', key='results'),
|
1644
|
+
Column(name='Status', key='element_status'),
|
1645
|
+
Column(name='User Defined Status',
|
1646
|
+
key='user_defined_status'),
|
1647
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1648
|
+
Column(name='GUID', key='guid')])],
|
1649
|
+
action=ActionParameter(
|
1650
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1651
|
+
required_params=['search_string'],
|
1652
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1653
|
+
'ignore_case'],
|
1654
|
+
spec_params={'metadata_element_types': ['NamingStandardRule']})),
|
1655
|
+
'Personal-Project-DrE': FormatSet(target_type='Personal-Project-DrE', heading='Personal-Project-DrE Attributes',
|
1656
|
+
description='Auto-generated format for Personal Project (Create).', formats=[
|
1657
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1658
|
+
Column(name='Description', key='description'),
|
1659
|
+
Column(name='Project Type', key='project_type'),
|
1660
|
+
Column(name='Category', key='category'),
|
1661
|
+
Column(name='Identifier', key='project_identifier'),
|
1662
|
+
Column(name='Mission', key='mission'),
|
1663
|
+
Column(name='Purposes', key='purposes'),
|
1664
|
+
Column(name='Start Date', key='start_date'),
|
1665
|
+
Column(name='Planned End Date', key='end_date'),
|
1666
|
+
Column(name='Priority', key='priority'),
|
1667
|
+
Column(name='Project Phase', key='project_phase'),
|
1668
|
+
Column(name='Project Status', key='project_status'),
|
1669
|
+
Column(name='Project Health', key='project_health'),
|
1670
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1671
|
+
Column(name='GUID', key='guid')])],
|
1672
|
+
action=ActionParameter(function='ProjectManager.find_projects',
|
1673
|
+
required_params=['search_string'],
|
1674
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1675
|
+
'ends_with', 'ignore_case'], spec_params={
|
1676
|
+
'classification_names': ['PersonalProject']})),
|
1677
|
+
'Project-DrE': FormatSet(target_type='Project-DrE', heading='Project-DrE Attributes',
|
1678
|
+
description='Auto-generated format for Project (Create).', formats=[Format(types=['ALL'],
|
1679
|
+
columns=[Column(
|
1680
|
+
name='Display Name',
|
1681
|
+
key='display_name'),
|
1682
|
+
Column(
|
1683
|
+
name='Description',
|
1684
|
+
key='description'),
|
1685
|
+
Column(
|
1686
|
+
name='Project Type',
|
1687
|
+
key='project_type'),
|
1688
|
+
Column(
|
1689
|
+
name='Category',
|
1690
|
+
key='category'),
|
1691
|
+
Column(
|
1692
|
+
name='Identifier',
|
1693
|
+
key='project_identifier'),
|
1694
|
+
Column(
|
1695
|
+
name='Mission',
|
1696
|
+
key='mission'),
|
1697
|
+
Column(
|
1698
|
+
name='Purposes',
|
1699
|
+
key='purposes'),
|
1700
|
+
Column(
|
1701
|
+
name='Start Date',
|
1702
|
+
key='start_date'),
|
1703
|
+
Column(
|
1704
|
+
name='Planned End Date',
|
1705
|
+
key='end_date'),
|
1706
|
+
Column(
|
1707
|
+
name='Priority',
|
1708
|
+
key='priority'),
|
1709
|
+
Column(
|
1710
|
+
name='Project Phase',
|
1711
|
+
key='project_phase'),
|
1712
|
+
Column(
|
1713
|
+
name='Project Status',
|
1714
|
+
key='project_status'),
|
1715
|
+
Column(
|
1716
|
+
name='Project Health',
|
1717
|
+
key='project_health'),
|
1718
|
+
Column(
|
1719
|
+
name='Qualified Name',
|
1720
|
+
key='qualified_name'),
|
1721
|
+
Column(
|
1722
|
+
name='GUID',
|
1723
|
+
key='guid')])],
|
1724
|
+
action=ActionParameter(function='ProjectManager.find_projects',
|
1725
|
+
required_params=['search_string'],
|
1726
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1727
|
+
'ends_with', 'ignore_case'])),
|
1728
|
+
'Regulation-Article-DrE': FormatSet(target_type='Regulation-Article-DrE',
|
1729
|
+
heading='Regulation-Article-DrE Attributes',
|
1730
|
+
description='Auto-generated format for Regulation Article (Create).', formats=[
|
1731
|
+
Format(types=['ALL'],
|
1732
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1733
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1734
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1735
|
+
Column(name='Identifier', key='identifier'),
|
1736
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1737
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1738
|
+
Column(name='Importance', key='importance'),
|
1739
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1740
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1741
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1742
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1743
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1744
|
+
required_params=['search_string'],
|
1745
|
+
optional_params=['page_size', 'start_from',
|
1746
|
+
'starts_with', 'ends_with',
|
1747
|
+
'ignore_case'], spec_params={
|
1748
|
+
'metadata_element_types': ['RegulationArticle']})),
|
1749
|
+
'Regulation-DrE': FormatSet(target_type='Regulation-DrE', heading='Regulation-DrE Attributes',
|
1750
|
+
description='Auto-generated format for Regulation (Create).', formats=[
|
1751
|
+
Format(types=['ALL'],
|
1752
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1753
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1754
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1755
|
+
Column(name='Identifier', key='identifier'),
|
1756
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1757
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1758
|
+
Column(name='Importance', key='importance'),
|
1759
|
+
Column(name='Regulation Source', key='regulation_source'),
|
1760
|
+
Column(name='Regulators', key='regulators'),
|
1761
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1762
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1763
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1764
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1765
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1766
|
+
required_params=['search_string'],
|
1767
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1768
|
+
'ends_with', 'ignore_case'],
|
1769
|
+
spec_params={'metadata_element_types': ['Regulation']})),
|
1770
|
+
'Security-Access-Control-DrE': FormatSet(target_type='Security-Access-Control-DrE',
|
1771
|
+
heading='Security-Access-Control-DrE Attributes',
|
1772
|
+
description='Auto-generated format for Security Access Control (Create).',
|
1773
|
+
formats=[Format(types=['ALL'],
|
1774
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1775
|
+
Column(name='Summary', key='summary'),
|
1776
|
+
Column(name='Description', key='description'),
|
1777
|
+
Column(name='Category', key='category'),
|
1778
|
+
Column(name='Domain Identifier',
|
1779
|
+
key='domain_identifier'),
|
1780
|
+
Column(name='Identifier', key='identifier'),
|
1781
|
+
Column(name='Version Identifier',
|
1782
|
+
key='version_identifier'),
|
1783
|
+
Column(name='Usage', key='usage'),
|
1784
|
+
Column(name='Scope', key='scope'),
|
1785
|
+
Column(name='Importance', key='importance'),
|
1786
|
+
Column(name='Implications', key='implications'),
|
1787
|
+
Column(name='Outcomes', key='outcomes'),
|
1788
|
+
Column(name='Results', key='results'),
|
1789
|
+
Column(name='Status', key='element_status'),
|
1790
|
+
Column(name='User Defined Status',
|
1791
|
+
key='user_defined_status'),
|
1792
|
+
Column(name='Qualified Name',
|
1793
|
+
key='qualified_name'),
|
1794
|
+
Column(name='GUID', key='guid')])],
|
1795
|
+
action=ActionParameter(
|
1796
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1797
|
+
required_params=['search_string'],
|
1798
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1799
|
+
'ignore_case'],
|
1800
|
+
spec_params={'metadata_element_types': ['SecurityAccessControl']})),
|
1801
|
+
'Security-Group-DrE': FormatSet(target_type='Security-Group-DrE', heading='Security-Group-DrE Attributes',
|
1802
|
+
description='Auto-generated format for Security Group (Create).', formats=[
|
1803
|
+
Format(types=['ALL'],
|
1804
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
1805
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
1806
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1807
|
+
Column(name='Identifier', key='identifier'),
|
1808
|
+
Column(name='Version Identifier', key='version_identifier'),
|
1809
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
1810
|
+
Column(name='Importance', key='importance'),
|
1811
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
1812
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
1813
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
1814
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1815
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
1816
|
+
required_params=['search_string'],
|
1817
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1818
|
+
'ends_with', 'ignore_case'],
|
1819
|
+
spec_params={'metadata_element_types': ['SEcurityGroup']})),
|
1820
|
+
'security_access_control-DrE': FormatSet(target_type='security_access_control-DrE',
|
1821
|
+
heading='security_access_control-DrE Attributes',
|
1822
|
+
description='Auto-generated format for security_access_control (Create).',
|
1823
|
+
formats=[Format(types=['ALL'],
|
1824
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1825
|
+
Column(name='Summary', key='summary'),
|
1826
|
+
Column(name='Description', key='description'),
|
1827
|
+
Column(name='Category', key='category'),
|
1828
|
+
Column(name='Domain Identifier',
|
1829
|
+
key='domain_identifier'),
|
1830
|
+
Column(name='Identifier', key='identifier'),
|
1831
|
+
Column(name='Version Identifier',
|
1832
|
+
key='version_identifier'),
|
1833
|
+
Column(name='Usage', key='usage'),
|
1834
|
+
Column(name='Scope', key='scope'),
|
1835
|
+
Column(name='Importance', key='importance'),
|
1836
|
+
Column(name='criteria', key='criteria'),
|
1837
|
+
Column(name='Implications', key='implications'),
|
1838
|
+
Column(name='Outcomes', key='outcomes'),
|
1839
|
+
Column(name='Results', key='results'),
|
1840
|
+
Column(name='Status', key='element_status'),
|
1841
|
+
Column(name='User Defined Status',
|
1842
|
+
key='user_defined_status'),
|
1843
|
+
Column(name='Qualified Name',
|
1844
|
+
key='qualified_name'),
|
1845
|
+
Column(name='GUID', key='guid')])],
|
1846
|
+
action=ActionParameter(
|
1847
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1848
|
+
required_params=['search_string'],
|
1849
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
1850
|
+
'ignore_case'],
|
1851
|
+
spec_params={'metadata_element_types': ['GovernanceZone']})),
|
1852
|
+
'Service-Level-Objectives-DrE': FormatSet(target_type='Service-Level-Objectives-DrE',
|
1853
|
+
heading='Service-Level-Objectives-DrE Attributes',
|
1854
|
+
description='Auto-generated format for Service Level Objectives (Create).',
|
1855
|
+
formats=[Format(types=['ALL'],
|
1856
|
+
columns=[Column(name='Display Name', key='display_name'),
|
1857
|
+
Column(name='Summary', key='summary'),
|
1858
|
+
Column(name='Description', key='description'),
|
1859
|
+
Column(name='Category', key='category'),
|
1860
|
+
Column(name='Domain Identifier',
|
1861
|
+
key='domain_identifier'),
|
1862
|
+
Column(name='Document Identifier',
|
1863
|
+
key='document_identifier'),
|
1864
|
+
Column(name='Version Identifier',
|
1865
|
+
key='version_identifier'),
|
1866
|
+
Column(name='Scope', key='scope'),
|
1867
|
+
Column(name='Importance', key='importance'),
|
1868
|
+
Column(name='Implementation Description',
|
1869
|
+
key='implementation_description'),
|
1870
|
+
Column(name='Supports Policies',
|
1871
|
+
key='supports_policies'),
|
1872
|
+
Column(name='Implications', key='implications'),
|
1873
|
+
Column(name='Outcomes', key='outcomes'),
|
1874
|
+
Column(name='Results', key='results'),
|
1875
|
+
Column(name='Status', key='element_status'),
|
1876
|
+
Column(name='User Defined Status',
|
1877
|
+
key='user_defined_status'),
|
1878
|
+
Column(name='Qualified Name',
|
1879
|
+
key='qualified_name'),
|
1880
|
+
Column(name='GUID', key='guid')])],
|
1881
|
+
action=ActionParameter(
|
1882
|
+
function='GovernanceOfficer.find_governance_definitions',
|
1883
|
+
required_params=['search_string'],
|
1884
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1885
|
+
'ends_with', 'ignore_case'],
|
1886
|
+
spec_params={'metadata_element_types': ['ServiceLevelObjectives']})),
|
1887
|
+
'Solution-Blueprint-DrE': FormatSet(target_type='Solution-Blueprint-DrE',
|
1888
|
+
heading='Solution-Blueprint-DrE Attributes',
|
1889
|
+
description='Auto-generated format for Solution Blueprint (Create).', formats=[
|
1890
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1891
|
+
Column(name='Description', key='description'),
|
1892
|
+
Column(name='Category', key='category'),
|
1893
|
+
Column(name='Status', key='element_status'),
|
1894
|
+
Column(name='Version Identifier', key='version_id'),
|
1895
|
+
Column(name='Solution Components', key='solution_components'),
|
1896
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1897
|
+
Column(name='GUID', key='guid')])],
|
1898
|
+
action=ActionParameter(function='SolutionArchitect.find_solution_blueprints',
|
1899
|
+
required_params=['search_string'],
|
1900
|
+
optional_params=['page_size', 'start_from',
|
1901
|
+
'starts_with', 'ends_with',
|
1902
|
+
'ignore_case'])),
|
1903
|
+
'Solution-Component-DrE': FormatSet(target_type='Solution-Component-DrE',
|
1904
|
+
heading='Solution-Component-DrE Attributes',
|
1905
|
+
description='Auto-generated format for Solution Component (Create).', formats=[
|
1906
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1907
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1908
|
+
Column(name='Category', key='category'),
|
1909
|
+
Column(name='Description', key='description'),
|
1910
|
+
Column(name='Status', key='element_status'),
|
1911
|
+
Column(name='Solution Component Type', key='soln_comp_type'),
|
1912
|
+
Column(name='Planned Deployed Implementation Type',
|
1913
|
+
key='planned_deployed_impl_type'),
|
1914
|
+
Column(name='Initial Status', key='initial_status'),
|
1915
|
+
Column(name='In Solution Components', key='in_components'),
|
1916
|
+
Column(name='In Solution Blueprints', key='solution_blueprints'),
|
1917
|
+
Column(name='In Information Supply Chains', key='in_supply_chains'),
|
1918
|
+
Column(name='Actors', key='actors'), Column(name='GUID', key='guid'),
|
1919
|
+
Column(name='Merge Update', key='merge_update')])],
|
1920
|
+
action=ActionParameter(function='SolutionArchitect.find_solution_components',
|
1921
|
+
required_params=['search_string'],
|
1922
|
+
optional_params=['page_size', 'start_from',
|
1923
|
+
'starts_with', 'ends_with',
|
1924
|
+
'ignore_case'])),
|
1925
|
+
'Solution-Role-DrE': FormatSet(target_type='Solution-Role-DrE', heading='Solution-Role-DrE Attributes',
|
1926
|
+
description='Auto-generated format for Solution Role (Create).', formats=[
|
1927
|
+
Format(types=['ALL'],
|
1928
|
+
columns=[Column(name='Name', key='name'), Column(name='Description', key='description'),
|
1929
|
+
Column(name='Title', key='title'), Column(name='Scope', key='scope'),
|
1930
|
+
Column(name='identifier', key='identifier'),
|
1931
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
1932
|
+
Column(name='Category', key='category'),
|
1933
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
1934
|
+
action=ActionParameter(function='SolutionArchitect.find_solution_roles',
|
1935
|
+
required_params=['search_string'],
|
1936
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1937
|
+
'ends_with', 'ignore_case'])),
|
1938
|
+
'Study-Project-DrE': FormatSet(target_type='Study-Project-DrE', heading='Study-Project-DrE Attributes',
|
1939
|
+
description='Auto-generated format for Study Project (Create).', formats=[
|
1940
|
+
Format(types=['ALL'], columns=[Column(name='Display Name', key='display_name'),
|
1941
|
+
Column(name='Description', key='description'),
|
1942
|
+
Column(name='Project Type', key='project_type'),
|
1943
|
+
Column(name='Category', key='category'),
|
1944
|
+
Column(name='Identifier', key='project_identifier'),
|
1945
|
+
Column(name='Mission', key='mission'),
|
1946
|
+
Column(name='Purposes', key='purposes'),
|
1947
|
+
Column(name='Start Date', key='start_date'),
|
1948
|
+
Column(name='Planned End Date', key='end_date'),
|
1949
|
+
Column(name='Priority', key='priority'),
|
1950
|
+
Column(name='Project Phase', key='project_phase'),
|
1951
|
+
Column(name='Project Status', key='project_status'),
|
1952
|
+
Column(name='Project Health', key='project_health'),
|
1953
|
+
Column(name='Qualified Name', key='qualified_name'),
|
1954
|
+
Column(name='GUID', key='guid')])],
|
1955
|
+
action=ActionParameter(function='ProjectManager.find_projects',
|
1956
|
+
required_params=['search_string'],
|
1957
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
1958
|
+
'ends_with', 'ignore_case'],
|
1959
|
+
spec_params={'classification_names': ['StudyProject']})),
|
1960
|
+
'Task-DrE': FormatSet(target_type='Task-DrE', heading='Task-DrE Attributes',
|
1961
|
+
description='Auto-generated format for Task (Create).', formats=[Format(types=['ALL'],
|
1962
|
+
columns=[Column(
|
1963
|
+
name='Display Name',
|
1964
|
+
key='display_name'),
|
1965
|
+
Column(
|
1966
|
+
name='Description',
|
1967
|
+
key='description'),
|
1968
|
+
Column(
|
1969
|
+
name='Project Type',
|
1970
|
+
key='project_type'),
|
1971
|
+
Column(
|
1972
|
+
name='Category',
|
1973
|
+
key='category'),
|
1974
|
+
Column(
|
1975
|
+
name='Identifier',
|
1976
|
+
key='project_identifier'),
|
1977
|
+
Column(
|
1978
|
+
name='Mission',
|
1979
|
+
key='mission'),
|
1980
|
+
Column(
|
1981
|
+
name='Purposes',
|
1982
|
+
key='purposes'),
|
1983
|
+
Column(
|
1984
|
+
name='Start Date',
|
1985
|
+
key='start_date'),
|
1986
|
+
Column(
|
1987
|
+
name='Planned End Date',
|
1988
|
+
key='end_date'),
|
1989
|
+
Column(
|
1990
|
+
name='Priority',
|
1991
|
+
key='priority'),
|
1992
|
+
Column(
|
1993
|
+
name='Project Phase',
|
1994
|
+
key='project_phase'),
|
1995
|
+
Column(
|
1996
|
+
name='Project Status',
|
1997
|
+
key='project_status'),
|
1998
|
+
Column(
|
1999
|
+
name='Project Health',
|
2000
|
+
key='project_health'),
|
2001
|
+
Column(
|
2002
|
+
name='Qualified Name',
|
2003
|
+
key='qualified_name'),
|
2004
|
+
Column(
|
2005
|
+
name='GUID',
|
2006
|
+
key='guid')])],
|
2007
|
+
action=ActionParameter(function='ProjectManager.find_projects',
|
2008
|
+
required_params=['search_string'],
|
2009
|
+
optional_params=['page_size', 'start_from', 'starts_with', 'ends_with',
|
2010
|
+
'ignore_case'],
|
2011
|
+
spec_params={'classification_names': ['Task']})),
|
2012
|
+
'Threat-Definition-DrE': FormatSet(target_type='Threat-Definition-DrE', heading='Threat-Definition-DrE Attributes',
|
2013
|
+
description='Auto-generated format for Threat Definition (Create).', formats=[
|
2014
|
+
Format(types=['ALL'],
|
2015
|
+
columns=[Column(name='Display Name', key='display_name'), Column(name='Summary', key='summary'),
|
2016
|
+
Column(name='Description', key='description'), Column(name='Category', key='category'),
|
2017
|
+
Column(name='Domain Identifier', key='domain_identifier'),
|
2018
|
+
Column(name='Identifier', key='identifier'),
|
2019
|
+
Column(name='Version Identifier', key='version_identifier'),
|
2020
|
+
Column(name='Usage', key='usage'), Column(name='Scope', key='scope'),
|
2021
|
+
Column(name='Importance', key='importance'),
|
2022
|
+
Column(name='Implications', key='implications'), Column(name='Outcomes', key='outcomes'),
|
2023
|
+
Column(name='Results', key='results'), Column(name='Status', key='element_status'),
|
2024
|
+
Column(name='User Defined Status', key='user_defined_status'),
|
2025
|
+
Column(name='Qualified Name', key='qualified_name'), Column(name='GUID', key='guid')])],
|
2026
|
+
action=ActionParameter(function='GovernanceOfficer.find_governance_definitions',
|
2027
|
+
required_params=['search_string'],
|
2028
|
+
optional_params=['page_size', 'start_from', 'starts_with',
|
2029
|
+
'ends_with', 'ignore_case'],
|
2030
|
+
spec_params={
|
2031
|
+
'metadata_element_types': ['ThreatDefinition']}))
|
842
2032
|
})
|
843
2033
|
|
844
|
-
|
845
2034
|
output_format_sets = combine_format_set_dicts(base_output_format_sets, generated_format_sets)
|
846
2035
|
|
847
2036
|
|
848
|
-
|
849
2037
|
def select_output_format_set(kind: str, output_type: str) -> dict | None:
|
850
2038
|
"""
|
851
2039
|
This function retrieves the appropriate output set configuration dictionary based on the `kind` and `output_type`.
|
@@ -914,6 +2102,7 @@ def select_output_format_set(kind: str, output_type: str) -> dict | None:
|
|
914
2102
|
logger.error(f"No matching format found for kind='{kind}' with output type='{output_type}'.")
|
915
2103
|
return None
|
916
2104
|
|
2105
|
+
|
917
2106
|
def output_format_set_list() -> list[str]:
|
918
2107
|
"""
|
919
2108
|
Returns a list of all available format set names.
|
@@ -923,6 +2112,7 @@ def output_format_set_list() -> list[str]:
|
|
923
2112
|
"""
|
924
2113
|
return list(output_format_sets.keys())
|
925
2114
|
|
2115
|
+
|
926
2116
|
def get_output_format_set_heading(format_set: str) -> str:
|
927
2117
|
"""
|
928
2118
|
Gets the heading of a format set.
|
@@ -935,6 +2125,7 @@ def get_output_format_set_heading(format_set: str) -> str:
|
|
935
2125
|
"""
|
936
2126
|
return output_format_sets[format_set].heading
|
937
2127
|
|
2128
|
+
|
938
2129
|
def get_output_format_set_description(format_set: str) -> str:
|
939
2130
|
"""
|
940
2131
|
Gets the description of a format set.
|
@@ -947,6 +2138,7 @@ def get_output_format_set_description(format_set: str) -> str:
|
|
947
2138
|
"""
|
948
2139
|
return output_format_sets[format_set].description
|
949
2140
|
|
2141
|
+
|
950
2142
|
def get_output_format_type_match(format_set: Union[dict, FormatSet], output_format: str) -> dict:
|
951
2143
|
"""
|
952
2144
|
Matches a format set with a specific output format.
|
@@ -963,7 +2155,7 @@ def get_output_format_type_match(format_set: Union[dict, FormatSet], output_form
|
|
963
2155
|
format_set_dict = format_set.dict()
|
964
2156
|
else:
|
965
2157
|
format_set_dict = format_set
|
966
|
-
|
2158
|
+
|
967
2159
|
# Handle the case where format_set is a list (legacy code)
|
968
2160
|
if isinstance(format_set_dict, list):
|
969
2161
|
for format in format_set_dict.get("formats", []):
|
@@ -985,7 +2177,7 @@ def get_output_format_type_match(format_set: Union[dict, FormatSet], output_form
|
|
985
2177
|
if output_format in format.get("types", []):
|
986
2178
|
format_set_dict["formats"] = format
|
987
2179
|
return format_set_dict
|
988
|
-
|
2180
|
+
|
989
2181
|
# Handle the fallback case of "ALL"
|
990
2182
|
for format in formats:
|
991
2183
|
if "ALL" in format.get("types", []):
|
@@ -997,7 +2189,8 @@ def get_output_format_type_match(format_set: Union[dict, FormatSet], output_form
|
|
997
2189
|
if "heading" in format_set_dict and "description" in format_set_dict:
|
998
2190
|
# Try to find the format set by heading
|
999
2191
|
for key, value in output_format_sets.items():
|
1000
|
-
if value.heading == format_set_dict["heading"] and value.description == format_set_dict[
|
2192
|
+
if value.heading == format_set_dict["heading"] and value.description == format_set_dict[
|
2193
|
+
"description"]:
|
1001
2194
|
# Found the format set, now find the matching format
|
1002
2195
|
for format in value.formats:
|
1003
2196
|
if output_format in format.types:
|
@@ -1005,7 +2198,7 @@ def get_output_format_type_match(format_set: Union[dict, FormatSet], output_form
|
|
1005
2198
|
# Ensure target_type is included when reconstructing dict
|
1006
2199
|
format_set_dict["target_type"] = value.target_type
|
1007
2200
|
return format_set_dict
|
1008
|
-
|
2201
|
+
|
1009
2202
|
# Handle the fallback case of "ALL"
|
1010
2203
|
for format in value.formats:
|
1011
2204
|
if "ALL" in format.types:
|
@@ -1013,10 +2206,11 @@ def get_output_format_type_match(format_set: Union[dict, FormatSet], output_form
|
|
1013
2206
|
# Ensure target_type is included when reconstructing dict
|
1014
2207
|
format_set_dict["target_type"] = value.target_type
|
1015
2208
|
return format_set_dict
|
1016
|
-
|
2209
|
+
|
1017
2210
|
# If no match is found, return the original format set
|
1018
2211
|
return format_set_dict
|
1019
2212
|
|
2213
|
+
|
1020
2214
|
def save_output_format_sets(file_path: str, format_set_names: List[str] = None) -> None:
|
1021
2215
|
"""
|
1022
2216
|
Save output format sets to a JSON file.
|
@@ -1041,13 +2235,14 @@ def save_output_format_sets(file_path: str, format_set_names: List[str] = None)
|
|
1041
2235
|
subset[name] = format_set
|
1042
2236
|
else:
|
1043
2237
|
logger.warning(f"Format set '{name}' not found, skipping")
|
1044
|
-
|
2238
|
+
|
1045
2239
|
if subset:
|
1046
2240
|
subset.save_to_json(file_path)
|
1047
2241
|
logger.info(f"Selected format sets saved to {file_path}")
|
1048
2242
|
else:
|
1049
2243
|
logger.warning(f"No valid format sets to save, file not created")
|
1050
2244
|
|
2245
|
+
|
1051
2246
|
def load_output_format_sets(file_path: str, merge: bool = True) -> None:
|
1052
2247
|
"""
|
1053
2248
|
Load output format sets from a JSON file.
|
@@ -1062,7 +2257,7 @@ def load_output_format_sets(file_path: str, merge: bool = True) -> None:
|
|
1062
2257
|
global output_format_sets
|
1063
2258
|
try:
|
1064
2259
|
loaded_sets = FormatSetDict.load_from_json(file_path)
|
1065
|
-
|
2260
|
+
|
1066
2261
|
if merge:
|
1067
2262
|
# Merge with existing format sets
|
1068
2263
|
for key, value in loaded_sets.items():
|
@@ -1076,6 +2271,7 @@ def load_output_format_sets(file_path: str, merge: bool = True) -> None:
|
|
1076
2271
|
logger.error(f"Error loading format sets from {file_path}: {e}")
|
1077
2272
|
raise
|
1078
2273
|
|
2274
|
+
|
1079
2275
|
def load_user_format_sets() -> None:
|
1080
2276
|
"""
|
1081
2277
|
Load all user-defined format sets from the user format sets directory.
|
@@ -1086,7 +2282,7 @@ def load_user_format_sets() -> None:
|
|
1086
2282
|
if not os.path.exists(USER_FORMAT_SETS_DIR):
|
1087
2283
|
logger.debug(f"User format sets directory {USER_FORMAT_SETS_DIR} does not exist")
|
1088
2284
|
return
|
1089
|
-
|
2285
|
+
|
1090
2286
|
# Load all JSON files in the directory
|
1091
2287
|
for file_path in Path(USER_FORMAT_SETS_DIR).glob("*.json"):
|
1092
2288
|
try:
|
@@ -1139,11 +2335,12 @@ def format_sets_markdown() -> str:
|
|
1139
2335
|
lines.append("")
|
1140
2336
|
return "\n".join(lines) + "\n"
|
1141
2337
|
|
2338
|
+
|
1142
2339
|
# Load user-defined format sets at module initialization
|
1143
2340
|
try:
|
1144
2341
|
load_user_format_sets()
|
1145
2342
|
except Exception as e:
|
1146
2343
|
logger.error(f"Error loading user-defined format sets: {e}")
|
1147
2344
|
for key, format_set in output_format_sets.items():
|
1148
|
-
|
1149
|
-
|
2345
|
+
if not format_set.formats:
|
2346
|
+
logger.warning(f"FormatSet {key} has no formats defined.")
|