pyegeria 5.4.7.4__py3-none-any.whl → 5.4.7.6__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.
@@ -1252,7 +1252,7 @@ class ExternalReferences(Client2):
1252
1252
  ignore_case : bool, [default=False], optional
1253
1253
  Ignore case when searching
1254
1254
  start_from: int, [default=0], optional
1255
- When multiple pages of results are available, the page number to start from.
1255
+ When multiple pages of results are available, the page number to start from.
1256
1256
  page_size: int, [default=None]
1257
1257
  The number of items to return in a single page. If not specified, the default will be taken from
1258
1258
  the class instance.
@@ -9,7 +9,7 @@ Copyright Contributors to the ODPi Egeria project.
9
9
  import json
10
10
  from pyegeria.utils import body_slimmer
11
11
  from pyegeria._client import Client
12
- from pyegeria._globals import TEMPLATE_GUIDS, INTEGRATION_GUIDS, max_paging_size
12
+ from pyegeria._globals import max_paging_size
13
13
  from pyegeria._exceptions import InvalidParameterException
14
14
  from pyegeria._globals import enable_ssl_check
15
15
  from pyegeria._validators import validate_name, validate_url
@@ -157,6 +157,10 @@ class ProjectManager(Client2):
157
157
  The identity of the parent to find linked projects from.
158
158
  project_status: str, optional
159
159
  Optionally, filter results by project status.
160
+ output_format: str, default = "JSON"
161
+ - Type of output to return.
162
+ output_format_set: dict | str, default = None
163
+ - Output format set to use. If None, the default output format set is used.
160
164
 
161
165
  start_from: int, [default=0], optional
162
166
  When multiple pages of results are available, the page number to start from.
@@ -211,6 +215,10 @@ class ProjectManager(Client2):
211
215
  Optionally, filter results by project status.
212
216
  effective_time: str, optional
213
217
  Time at which to query for projects. Time format is "YYYY-MM-DDTHH:MM:SS" (ISO 8601).
218
+ output_format: str, default = "JSON"
219
+ - Type of output to return.
220
+ output_format_set: dict | str, default = None
221
+ - Output format set to use. If None, the default output format set is used.
214
222
 
215
223
  start_from: int, [default=0], optional
216
224
  When multiple pages of results are available, the page number to start from.
@@ -164,6 +164,10 @@ class ReferenceDataManager(Client2):
164
164
  Search string to use to find matching projects. If the search string is '*' then all projects returned.
165
165
  effective_time: str, [default=None], optional
166
166
  Effective time of the query. If not specified will default to any time.
167
+ output_format: str, default = "JSON"
168
+ - Type of output to return.
169
+ output_format_set: dict | str, default = None
170
+ - Output format set to use. If None, the default output format set is used.
167
171
 
168
172
  starts_with : bool, [default=False], optional
169
173
  Starts with the supplied string.
@@ -1619,7 +1619,8 @@ class SolutionArchitect(Client2):
1619
1619
 
1620
1620
  return self.find_information_supply_chains("*", classification_names, metadata_element_types, starts_with, ends_with, ignore_case, start_from, page_size, output_format, output_format_set, body)
1621
1621
 
1622
- async def _async_find_information_supply_chains(self, search_string: str = "*", classification_names: list[str] = None,
1622
+ async def _async_find_information_supply_chains(self, search_string: str = "*", add_implementation: bool = True,
1623
+ classification_names: list[str] = None,
1623
1624
  metadata_element_types: list[str] = None,
1624
1625
  starts_with: bool = True, ends_with: bool = False,
1625
1626
  ignore_case: bool = False, start_from: int = 0,
@@ -1682,7 +1683,7 @@ class SolutionArchitect(Client2):
1682
1683
 
1683
1684
  """
1684
1685
 
1685
- url = f"{self.solution_architect_command_root}/information-supply-chains/by-search-string"
1686
+ url = f"{self.solution_architect_command_root}/information-supply-chains/by-search-string?addImplementation={add_implementation}"
1686
1687
  return await self._async_find_request(url, _type="GovernanceDefinition",
1687
1688
  _gen_output=self.generate_info_supply_chain_output,
1688
1689
  search_string=search_string, classification_names=classification_names,
@@ -1694,7 +1695,8 @@ class SolutionArchitect(Client2):
1694
1695
 
1695
1696
 
1696
1697
 
1697
- def find_information_supply_chains(self, search_string: str = "*", classification_names: list[str] = None,
1698
+ def find_information_supply_chains(self, search_string: str = "*", add_implementation: bool = False,
1699
+ classification_names: list[str] = None,
1698
1700
  metadata_element_types: list[str] = None,
1699
1701
  starts_with: bool = True, ends_with: bool = False,
1700
1702
  ignore_case: bool = False, start_from: int = 0,
@@ -1763,7 +1765,7 @@ class SolutionArchitect(Client2):
1763
1765
 
1764
1766
  loop = asyncio.get_event_loop()
1765
1767
  response = loop.run_until_complete(
1766
- self._async_find_information_supply_chains(search_string, classification_names, metadata_element_types,
1768
+ self._async_find_information_supply_chains(search_string, add_implementation,classification_names, metadata_element_types,
1767
1769
  starts_with, ends_with, ignore_case,
1768
1770
  start_from, page_size, output_format,
1769
1771
  output_format_set, body))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyegeria
3
- Version: 5.4.7.4
3
+ Version: 5.4.7.6
4
4
  Summary: A python client for Egeria
5
5
  Author-email: Dan Wolfson <dan.wolfson@pdr-associates.com>
6
6
  License-Expression: Apache-2.0
@@ -42,13 +42,13 @@ commands/my/list_my_roles.py,sha256=jXkIcA71GRBrx556GROML4QrE3JGt-IPuGzVodDhPx0,
42
42
  commands/my/monitor_my_todos.py,sha256=mM68RH1DJzf38BqmIZZXJrQgpGyAQDO4VimlPYE4osU,7104
43
43
  commands/my/monitor_open_todos.py,sha256=Vi6VOcxdHe_94de_ICTHoIOA94KCcTxDCTRb9-4oKRs,5975
44
44
  commands/my/todo_actions.py,sha256=daio-D1dVDkAXIcz15bVogJ-nWA_bMGKrpvkK7tc3cQ,8153
45
- commands/ops/__init__.py,sha256=v7u-zC3gr8soVbYV0Izc2wuEcGCovO00j5v-IhLg3xs,450
45
+ commands/ops/__init__.py,sha256=jRR_UmymLlllFVc4zUHrA9EsUFP4iZh4Bi3AqHHm_jY,407
46
46
  commands/ops/gov_server_actions.py,sha256=OCff2cajMbZOy_nwG6xIiIX1seiu3tLxn-uP_CPrpTM,5685
47
47
  commands/ops/list_archives.py,sha256=jKm_easQUjJNRkuasILvuVpQBFuyyBlBHE-L0i0FGgQ,5456
48
- commands/ops/list_catalog_targets.py,sha256=oVPYozPGZjMaXgOb7AaeA3l8ciY6XeFAmDjDD18dVVU,7688
49
- commands/ops/load_archive.py,sha256=5GvwYKHFbmKuxbqTLe2fpUVptlmlmYU-4vMfNcYiZe4,2878
48
+ commands/ops/list_catalog_targets.py,sha256=imtWWp71xObsN_-FDyUCcSjgzFKcAPXCtVRNm8ee_m4,7665
49
+ commands/ops/load_archive.py,sha256=DRmwPq2MOaaW87icgM3vu8oSSAD4vwtCaA2DGr3brBU,3008
50
50
  commands/ops/monitor_asset_events.py,sha256=5XXWt5yvl9mGq1Lve9gdrWT0dvvTWpFr_lFWO-_WdaU,3883
51
- commands/ops/monitor_engine_activity.py,sha256=AVSOtxlKBSM5yrh9YsOk5agevZMhLGPjT8j0uaVWjqU,9897
51
+ commands/ops/monitor_engine_activity.py,sha256=7PFDTZmOs8b2Uy_8VgSvUu5PH1tVefAKNrnY-ZF2kww,9904
52
52
  commands/ops/monitor_engine_activity_c.py,sha256=OlN72BaK_Abgp_HlYWa-aF8jhL0JqhZl7wFK9_QvzwY,10774
53
53
  commands/ops/monitor_gov_eng_status.py,sha256=gK5HXewXKnLEjCBRkbEyzbGtWs998P-AoFKaMCAQBLs,9917
54
54
  commands/ops/monitor_integ_daemon_status.py,sha256=N09KaP1eA3OiGfRS4GgbjKxnkheMYK6oQojNbuO6KRo,11828
@@ -61,7 +61,7 @@ commands/ops/refresh_integration_daemon.py,sha256=cOgdWQV6pTajIBWNeJy7MJo32JtMxP
61
61
  commands/ops/restart_integration_daemon.py,sha256=M8vb-SEIGFd4fnZcwFD1rRNYXGe-jySzFGnizB72dSI,2917
62
62
  commands/ops/table_integ_daemon_status.py,sha256=XyHM4LzOslWFmH5q9nFa8tpZNylL9JztOavtQacnP7w,8430
63
63
  commands/ops/x_engine_actions.py,sha256=sjoyDJD2_0xQkE2tSlFdBxD2d9C3Nzcy9qi69dWC4Rw,2284
64
- commands/tech/__init__.py,sha256=0O3kDAlDfx7ohSg_5tZt55B4B3UItgE0noROQLCIUxs,449
64
+ commands/tech/__init__.py,sha256=Dkyww0rDAARkfvrO5w5EIU3zj0XQII8BPjVrPo8xqjA,406
65
65
  commands/tech/generic_actions.py,sha256=vHwgaADbai61R46QiCvS9pZr4vZXAN1XEtcizaSEidU,2677
66
66
  commands/tech/get_element_info.py,sha256=a1msEwL_kKjO8uslJa-tSgrdW6UgKUY4iyLjZqzeG9M,4761
67
67
  commands/tech/get_guid_info.py,sha256=7QBMteAd8mbJymkJC8AJW8D2TQ8Roc2zDcNb0tI2l-A,4295
@@ -103,7 +103,7 @@ md_processing/md_commands/glossary_commands.py,sha256=g0SHac8Gu_rtaUcscJYZHEbKDl
103
103
  md_processing/md_commands/governance_officer_commands.py,sha256=c7SnJqQooPr3zCebDzeztAM8wZq9G7ZB4EpJ-uR5moI,26479
104
104
  md_processing/md_commands/product_manager_commands.py,sha256=4YKKdd_2tI5ekZlSJBiJJGqFISD7X6m0rfEd2wEL_PY,57790
105
105
  md_processing/md_commands/project_commands.py,sha256=GXipp2o40o1syakH8pJ8lFO2y5mrZw4UZVcjTSPiIF8,17107
106
- md_processing/md_commands/solution_architect_commands.py,sha256=4Ghb8j2wlDdWtHoSCrx5jCJFEJfqII4mnFJ_tqduRKI,52569
106
+ md_processing/md_commands/solution_architect_commands.py,sha256=FKBn-kO6Eqs39D04zhBDYM3CUl6HJP2Wt1yNORtRkkc,52561
107
107
  md_processing/md_commands/view_commands.py,sha256=bIOSw0GVluOcpZMQNioeO1Srr4Y_84YNz-VHMKpPfVE,12092
108
108
  md_processing/md_processing_utils/__init__.py,sha256=LxAmxlcji26ziKV4gGar01d95gL9vgToRIeJW8N-Ifs,80
109
109
  md_processing/md_processing_utils/common_md_proc_utils.py,sha256=gT9Xc2BlZZe7MBRpENfz2As95N3oGk4LRko1dg9AGyI,58673
@@ -116,9 +116,9 @@ md_processing/md_processing_utils/generate_md_cmd_templates.py,sha256=mFenxe9Jq8
116
116
  md_processing/md_processing_utils/generate_md_templates.py,sha256=DMnMQ7_LbmQCS8aG-ppHGTu25obOSn4ZzSg7V21k9jo,3547
117
117
  md_processing/md_processing_utils/md_processing_constants.py,sha256=_j8FSsB1mZ2SsmDaQWaPH8iWKy1ZHYYjzOgcdIoLZPE,21108
118
118
  md_processing/md_processing_utils/message_constants.py,sha256=UBf18obM83umM6zplR7ychre4xLRbBnTzidHDZ2gNvM,548
119
- pyegeria/__init__.py,sha256=elcY2ZJdfk6zcXYY6DS58IqFQZVG3ZzLifgmb-9-IBQ,4604
119
+ pyegeria/__init__.py,sha256=jbqMHk7Txugk-oRCz5hws4el-brzv1njjK0gwOgiQb8,4536
120
120
  pyegeria/_client.py,sha256=hJHn5pD8sbelP_M9dK-M5Z2CYqpRXzXfg1UCgAdQ6dQ,33416
121
- pyegeria/_client_new.py,sha256=VwHgWjrZAogVODrHo2_TU0u_AZeUkMU7ZzT2eyl_eTk,85784
121
+ pyegeria/_client_new.py,sha256=nXR4RXw-FYdYO5Hyv7wgPFjALcHWComTBjFOmivwsS0,92753
122
122
  pyegeria/_deprecated_gov_engine.py,sha256=dWNcwVsE5__dF2u4QiIyQrssozzzOjBbLld8MdpmVCQ,17264
123
123
  pyegeria/_exceptions.py,sha256=1SrnV194V4_YJNnNAU0myTHQ3dhLn4GF2B2gZcj1u90,18153
124
124
  pyegeria/_exceptions_new.py,sha256=srmrlqoWy7VvOJOhPcYFKW32MCIovgEg5J7PrYDxzQA,19706
@@ -127,8 +127,8 @@ pyegeria/_output_format_models.py,sha256=p9fTYaIa5KyTMIR4-JAbE9g66_gGMPTnUqjIq20
127
127
  pyegeria/_output_formats.py,sha256=0IXO8ol5nuZAtttBfQPYoUyEa3qX1RlkMLons2Xrmi8,184307
128
128
  pyegeria/_validators.py,sha256=pNxND0dN2qvyuGE52N74l1Ezfrh2p9Hao2ziR_t1ENI,7425
129
129
  pyegeria/asset_catalog_omvs.py,sha256=sBXPgkRe_ZFOunZ-xoZe4qndILf9L0dPRHpQb_95bHw,29030
130
- pyegeria/automated_curation.py,sha256=GI3TWQ-f67U7y9OV8xXTQl8rs1EdBlsAQabHl09amqY,141200
131
- pyegeria/classification_manager.py,sha256=k-CEUcDSr2RE_s_JLj962J8WKoaaVNPhB7IwmcN_leA,193180
130
+ pyegeria/automated_curation.py,sha256=34N4stE52OENMJHIuESm4TiR4B5AlyH_WV_o-8szEHM,142016
131
+ pyegeria/classification_manager.py,sha256=wT42fqcdtu9qt3N9_gazxDzkjK63tc5Xg6uG801Opmk,250435
132
132
  pyegeria/classification_manager_omvs.py,sha256=QkcH33BmdoOnyM9Ojwi084ULC3BaesZV6_a-pNyYkcU,184192
133
133
  pyegeria/collection_manager.py,sha256=kNIo1XXoG5b7tQpSZWNnkjZ8lp8X8pTamyvGZmmkqe8,239194
134
134
  pyegeria/collection_models.py,sha256=d3DdWONqDdAeuUQgussiCNfvhKIDFpaI35cdW_Tv4_0,5315
@@ -141,10 +141,10 @@ pyegeria/egeria_client.py,sha256=N_CvaUgb8tQtRLsy8dfLNJ2lPPiCrfW-AFiLBxqIlyI,610
141
141
  pyegeria/egeria_config_client.py,sha256=YkgndiZ6-CfhwVeBW9ErS7l95SIrd0G9--H8kAfeBJY,2479
142
142
  pyegeria/egeria_my_client.py,sha256=3dSBUlrivzih75hodNHe-2BM9pGB8AQVLru-_NbhYNE,3186
143
143
  pyegeria/egeria_tech_client.py,sha256=zHuhLe6s3wihS9LMqu3pIm_fLjL9wXqdRpkOW-LyrjI,4863
144
- pyegeria/external_references.py,sha256=WQycWk68nvcQ9WDRum9hI61QbuFCG3iehLhB5eWnBd0,74759
144
+ pyegeria/external_references.py,sha256=8cTB02N1NhUAz-QFYzHoBhypVsELMNf0nPBEqrUHj2U,74751
145
145
  pyegeria/feedback_manager_omvs.py,sha256=0xBs0p54vmdfVYYgQ8pOanLC4fxfgTk1Z61Y6D1U7_I,152978
146
146
  pyegeria/format_set_executor.py,sha256=schuaWyb1q9XjGV28gLArsI1rWx0OuItzfJhaeQLmac,11571
147
- pyegeria/full_omag_server_config.py,sha256=flOFSG_W-J84F1YIvFQPHR5wmZFyrj8pwqyeWmLfRyY,47492
147
+ pyegeria/full_omag_server_config.py,sha256=832EiMX7oeTHQxWf_4NQ4gXze9PMA9Vsx1jn9m9a_Mw,47457
148
148
  pyegeria/glossary_manager.py,sha256=0oqD09iP-7ZsibJZEMDwPHqjxqHQW4dlikDuBzwv9qQ,106790
149
149
  pyegeria/governance_officer.py,sha256=OYEewhoe3HBcxTR6kGdKNkwLT4gkQDRGKfFIsVlD5oI,109203
150
150
  pyegeria/load_config.py,sha256=XDwPAHB3MvGRuoP8kg1lJJAI4BgMWZ3TYxfxYROgJj4,1188
@@ -159,19 +159,19 @@ pyegeria/models.py,sha256=Ar7Yg26vODjsITT1kxJz26G8m2-W5S9AC0OtczYIT0A,20580
159
159
  pyegeria/my_profile_omvs.py,sha256=d0oJYCJG7pS9BINPuGciVa00ac0jwPHNANXDCLginEc,34720
160
160
  pyegeria/output_formatter.py,sha256=huSGkVyve8hd3OocvxI_5Vz-44eoiZ4UY5FjVER1Ztc,43676
161
161
  pyegeria/platform_services.py,sha256=AJNa8n2mKfAMK68q886YCD-p5bpCxIlCxBsRdr0R9O4,41708
162
- pyegeria/project_manager.py,sha256=BrI23_fWIM4FE1y5zRqo3651iaDJ1BI_aNBpZ7D6nJQ,65887
163
- pyegeria/reference_data.py,sha256=nKI_fxrSi3t0ay4wdAachvYw1-vpgKN_F9yB8XAklbk,41847
162
+ pyegeria/project_manager.py,sha256=erATGo7KrcvPdGdM8uGMhuXLqyGub7M2HJI17nyGmSA,66341
163
+ pyegeria/reference_data.py,sha256=QWyTjrk-xfpIs578GxQO9gtOyl1gdc4PXhD12mbkwwI,42074
164
164
  pyegeria/registered_info.py,sha256=y0-LgDIQXpph0lEWxIOG3_HsqX_Z2iAIb3xu4Aa4B70,6344
165
165
  pyegeria/runtime_manager_omvs.py,sha256=k0lwSuOrbql_UoJ7Rf4fgh-SQQbiii4CQbvOUlaejyM,80302
166
166
  pyegeria/server_operations.py,sha256=dTqUEmX1B77b0x61OSU0aonsW8KwIpfzb3eioRpwaiI,16832
167
- pyegeria/solution_architect.py,sha256=WQtbAJLOPeU2db9wT6IoOJikoTAmxASVw2fgath-QUc,233700
167
+ pyegeria/solution_architect.py,sha256=dqtHIYMNug8vb4x7juyb_moWGDOeh4bkAwHuhz53GXA,233914
168
168
  pyegeria/template_manager_omvs.py,sha256=chBljs1vy5wr9DRAtbvIt4Cob_7HxGfxLkCNlDTM-rQ,42755
169
169
  pyegeria/utils.py,sha256=xOTxk9PH8ZGZmgIwz_a6rczTVLADLEjucr10ZJTUnY4,9272
170
170
  pyegeria/valid_metadata_omvs.py,sha256=Xq9DqBQvBFFJzaFIRKcVZ2k4gJvSh9yeXs_j-O3vn1w,65050
171
171
  pyegeria/x_action_author_omvs.py,sha256=XyRsUgN-xnWR-cJayzo5RtY4Xv1uBDML4pwaKHrwC1w,6430
172
- pyegeria-5.4.7.4.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
173
- pyegeria-5.4.7.4.dist-info/METADATA,sha256=cXqe_slpxw7vOgnQ4gdZGiqcy8ioM7JsYcnJs0iRxQo,5898
174
- pyegeria-5.4.7.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
175
- pyegeria-5.4.7.4.dist-info/entry_points.txt,sha256=Ig9cZyl-nq_RohLvahgWXzZbcpHzLS3Zdc1A8qvdPG0,6595
176
- pyegeria-5.4.7.4.dist-info/top_level.txt,sha256=48Mt-O3p8yO7jiEv6-Y9bUsryqJn9BQsiyV0BqSn8tk,32
177
- pyegeria-5.4.7.4.dist-info/RECORD,,
172
+ pyegeria-5.4.7.6.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
173
+ pyegeria-5.4.7.6.dist-info/METADATA,sha256=FN5gJq9nKqd-vmXtGw9gweZEZySzxfZ27PpQF7MKt2s,5898
174
+ pyegeria-5.4.7.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
175
+ pyegeria-5.4.7.6.dist-info/entry_points.txt,sha256=Ig9cZyl-nq_RohLvahgWXzZbcpHzLS3Zdc1A8qvdPG0,6595
176
+ pyegeria-5.4.7.6.dist-info/top_level.txt,sha256=48Mt-O3p8yO7jiEv6-Y9bUsryqJn9BQsiyV0BqSn8tk,32
177
+ pyegeria-5.4.7.6.dist-info/RECORD,,