mas-cli 5.1.4__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.

Potentially problematic release.


This version of mas-cli might be problematic. Click here for more details.

Files changed (114) hide show
  1. mas/cli/__init__.py +11 -0
  2. mas/cli/aiservice/install/__init__.py +11 -0
  3. mas/cli/aiservice/install/app.py +894 -0
  4. mas/cli/aiservice/install/argBuilder.py +180 -0
  5. mas/cli/aiservice/install/argParser.py +507 -0
  6. mas/cli/aiservice/install/params.py +100 -0
  7. mas/cli/aiservice/install/summarizer.py +134 -0
  8. mas/cli/cli.py +432 -0
  9. mas/cli/displayMixins.py +132 -0
  10. mas/cli/gencfg.py +113 -0
  11. mas/cli/install/__init__.py +11 -0
  12. mas/cli/install/app.py +1316 -0
  13. mas/cli/install/argBuilder.py +465 -0
  14. mas/cli/install/argParser.py +1176 -0
  15. mas/cli/install/catalogs.py +27 -0
  16. mas/cli/install/params.py +172 -0
  17. mas/cli/install/settings/__init__.py +23 -0
  18. mas/cli/install/settings/additionalConfigs.py +227 -0
  19. mas/cli/install/settings/db2Settings.py +252 -0
  20. mas/cli/install/settings/kafkaSettings.py +103 -0
  21. mas/cli/install/settings/manageSettings.py +273 -0
  22. mas/cli/install/settings/mongodbSettings.py +46 -0
  23. mas/cli/install/settings/turbonomicSettings.py +29 -0
  24. mas/cli/install/summarizer.py +398 -0
  25. mas/cli/templates/facilities-configs.yml.j2 +25 -0
  26. mas/cli/templates/ibm-mas-tekton.yaml +49772 -0
  27. mas/cli/templates/jdbccfg.yml.j2 +52 -0
  28. mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml +26 -0
  29. mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml +56 -0
  30. mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml +21 -0
  31. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml +28 -0
  32. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml +32 -0
  33. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml +12 -0
  34. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml +14 -0
  35. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml +22 -0
  36. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml +40 -0
  37. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml +10 -0
  38. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml +24 -0
  39. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml +20 -0
  40. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml +10 -0
  41. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml +18 -0
  42. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml +14 -0
  43. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml +18 -0
  44. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml +48 -0
  45. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml +28 -0
  46. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml +26 -0
  47. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml +40 -0
  48. mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml +22 -0
  49. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml +13 -0
  50. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml +10 -0
  51. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml +10 -0
  52. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml +10 -0
  53. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml +46 -0
  54. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml +48 -0
  55. mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml +10 -0
  56. mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml +13 -0
  57. mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml +14 -0
  58. mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml +10 -0
  59. mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml +10 -0
  60. mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml +136 -0
  61. mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml +34 -0
  62. mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml +10 -0
  63. mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml +56 -0
  64. mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml +140 -0
  65. mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml +45 -0
  66. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml +70 -0
  67. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml +80 -0
  68. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml +24 -0
  69. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml +26 -0
  70. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml +52 -0
  71. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml +106 -0
  72. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml +16 -0
  73. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml +62 -0
  74. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml +44 -0
  75. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml +16 -0
  76. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml +42 -0
  77. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml +32 -0
  78. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml +42 -0
  79. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml +126 -0
  80. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml +70 -0
  81. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml +62 -0
  82. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml +106 -0
  83. mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml +52 -0
  84. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml +28 -0
  85. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml +18 -0
  86. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml +16 -0
  87. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml +16 -0
  88. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml +106 -0
  89. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml +126 -0
  90. mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml +16 -0
  91. mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml +25 -0
  92. mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml +26 -0
  93. mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml +16 -0
  94. mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml +16 -0
  95. mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml +340 -0
  96. mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml +76 -0
  97. mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml +16 -0
  98. mas/cli/templates/suite_mongocfg.yml.j2 +55 -0
  99. mas/cli/uninstall/__init__.py +11 -0
  100. mas/cli/uninstall/app.py +197 -0
  101. mas/cli/uninstall/argParser.py +115 -0
  102. mas/cli/update/__init__.py +11 -0
  103. mas/cli/update/app.py +673 -0
  104. mas/cli/update/argParser.py +156 -0
  105. mas/cli/upgrade/__init__.py +11 -0
  106. mas/cli/upgrade/app.py +164 -0
  107. mas/cli/upgrade/argParser.py +68 -0
  108. mas/cli/upgrade/settings/__init__.py +19 -0
  109. mas/cli/validators.py +151 -0
  110. mas_cli-5.1.4.data/scripts/mas-cli +87 -0
  111. mas_cli-5.1.4.dist-info/METADATA +73 -0
  112. mas_cli-5.1.4.dist-info/RECORD +114 -0
  113. mas_cli-5.1.4.dist-info/WHEEL +5 -0
  114. mas_cli-5.1.4.dist-info/top_level.txt +1 -0
@@ -0,0 +1,73 @@
1
+ Metadata-Version: 2.4
2
+ Name: mas-cli
3
+ Version: 5.1.4
4
+ Summary: Python Admin CLI for Maximo Application Suite
5
+ Home-page: https://github.com/ibm-mas/cli
6
+ Author: David Parker
7
+ Author-email: parkerda@uk.ibm.com
8
+ License: Eclipse Public License - v1.0
9
+ Classifier: Development Status :: 4 - Beta
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Operating System :: Microsoft :: Windows
12
+ Classifier: Operating System :: POSIX :: Linux
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Topic :: Communications
18
+ Classifier: Topic :: Internet
19
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
20
+ Requires-Dist: mas-devops>=2.0.0
21
+ Requires-Dist: halo
22
+ Requires-Dist: prompt_toolkit
23
+ Requires-Dist: openshift
24
+ Requires-Dist: kubernetes
25
+ Requires-Dist: tabulate
26
+ Provides-Extra: dev
27
+ Requires-Dist: build; extra == "dev"
28
+ Requires-Dist: flake8; extra == "dev"
29
+ Requires-Dist: pytest; extra == "dev"
30
+ Requires-Dist: pyinstaller; extra == "dev"
31
+ Dynamic: author
32
+ Dynamic: author-email
33
+ Dynamic: classifier
34
+ Dynamic: description
35
+ Dynamic: home-page
36
+ Dynamic: license
37
+ Dynamic: provides-extra
38
+ Dynamic: requires-dist
39
+ Dynamic: summary
40
+
41
+ mas.devops
42
+ ----------
43
+
44
+ Example
45
+ =======
46
+
47
+ .. code:: python
48
+
49
+ from openshift import dynamic
50
+ from kubernetes import config
51
+ from kubernetes.client import api_client
52
+
53
+ from mas.devops.ocp import createNamespace
54
+ from mas.devops.tekton import installOpenShiftPipelines, updateTektonDefinitions, launchUpgradePipeline
55
+
56
+ instanceId = "mymas"
57
+ pipelinesNamespace = f"mas-{instanceId}-pipelines"
58
+
59
+ # Create an OpenShift client
60
+ dynClient = dynamic.DynamicClient(
61
+ api_client.ApiClient(configuration=config.load_kube_config())
62
+ )
63
+
64
+ # Install OpenShift Pipelines Operator
65
+ installOpenShiftPipelines(dynamicClient)
66
+
67
+ # Create the pipelines namespace and install the MAS tekton definitions
68
+ createNamespace(dynamicClient, pipelinesNamespace)
69
+ updateTektonDefinitions(pipelinesNamespace)
70
+
71
+ # Launch the upgrade pipeline and print the URL to view the pipeline run
72
+ pipelineURL = launchUpgradePipeline(self.dynamicClient, instanceId)
73
+ print(pipelineURL)
@@ -0,0 +1,114 @@
1
+ mas/cli/__init__.py,sha256=15Z_RAbBRlUIWZAkzJDU1-bEu5H0omm3x42St_7YlNs,525
2
+ mas/cli/cli.py,sha256=AhV0kXi-M1tCB98xWaOAbHxBC696OUvKEJcO6mRIPwU,18931
3
+ mas/cli/displayMixins.py,sha256=e3lAx1DIOwsriDcNI0M2JyP1jeLOZKvId6sPrvWLyqs,5984
4
+ mas/cli/gencfg.py,sha256=kgbYihOcqGADK8XnrfcEoBawaY1qSGKuVNW1unACOnU,4433
5
+ mas/cli/validators.py,sha256=2mLqBfoFU4D3A84ma9namjpnPKR3a0XySSGXa_b7pWg,5495
6
+ mas/cli/aiservice/install/__init__.py,sha256=Af-TjB2oIy3bM-Rt3YNeJ_2ndsZZU7azqFkT5um7XQY,515
7
+ mas/cli/aiservice/install/app.py,sha256=Pj4gN3mSbOjl0Y6Ib7HPm2NUoTaZIs9aYPAQEj5XYnU,45575
8
+ mas/cli/aiservice/install/argBuilder.py,sha256=21xICcclro9WGrjSMhZDCl7N11xT_HAVKAaWuSzShsQ,11023
9
+ mas/cli/aiservice/install/argParser.py,sha256=qld-nLHJgePtNTUrWGGV3HUin5qQScRv7DGlyK9Z6fY,14582
10
+ mas/cli/aiservice/install/params.py,sha256=yeNvs94R06W5W2JoMXflhc50aMBg1pA9FC_qNHWuhHM,2586
11
+ mas/cli/aiservice/install/summarizer.py,sha256=apMU6vLZyEgq3qaR5IRhKlth2fuqSZb2MMvdYNz73co,6719
12
+ mas/cli/install/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
13
+ mas/cli/install/app.py,sha256=f4Md9uGsOCNq_1aajDAQHf1W1J_1V8eqk1NIv8GOb5Q,69334
14
+ mas/cli/install/argBuilder.py,sha256=HIWTZM8On-21uNTspekW1egVx7DrE1Yr_8PwbXghI28,28464
15
+ mas/cli/install/argParser.py,sha256=fgwmjKMPQAPKA-jNlCKGEB0AsByKSAQf7TYq4L7HHq0,35267
16
+ mas/cli/install/catalogs.py,sha256=9HX70_GUt0ohGb7G8QVDBQVnX9lAVrmxzdpz4TJiAeY,833
17
+ mas/cli/install/params.py,sha256=TPcg8rpznxDJ0j48vH0BroK9EY41tmuEvfjQUeoCagc,4864
18
+ mas/cli/install/summarizer.py,sha256=zPEn3YDEqyZAa4EjrRHZKRPVYD81YREVVXUxnAeM3xI,22131
19
+ mas/cli/install/settings/__init__.py,sha256=RdyBSh-rM0wkuvILVzJ1gxjOtLuQ1mF6QbEL0MyiKIY,1034
20
+ mas/cli/install/settings/additionalConfigs.py,sha256=hFN7OIiPmmAoo8h_5JiMLtW9r30zK1mMKuPqPpFf1mc,10187
21
+ mas/cli/install/settings/db2Settings.py,sha256=zFw1wiZTGFLdUsQUKY0l5dWne4ZXQhKuksSO0Q_86AM,16825
22
+ mas/cli/install/settings/kafkaSettings.py,sha256=r1uK-IApqB9IQiSNt_8sP0wa4FPJcXU_qnadhElEOuI,7241
23
+ mas/cli/install/settings/manageSettings.py,sha256=TZIdAY_xUc751i-Vs6cXhVI3ul4MCnLdtpP9khLZpeI,16109
24
+ mas/cli/install/settings/mongodbSettings.py,sha256=aZdQHpeMwLVznrJWAkJsZu2Ok9t4Dkra2RGa_uKJHaY,2604
25
+ mas/cli/install/settings/turbonomicSettings.py,sha256=ul4eWf53b1NCzJTFsEPX6DWM23YUlWILYBygplqXYlU,1631
26
+ mas/cli/templates/facilities-configs.yml.j2,sha256=Er4UwxUl1Y3rtjIPMExVM8EXNcbesMusgLcRV050B1s,774
27
+ mas/cli/templates/ibm-mas-tekton.yaml,sha256=-DcchzWpLA2uE4cCP0x6duK9NfMMyVnDSGaQqRnonpg,1569691
28
+ mas/cli/templates/jdbccfg.yml.j2,sha256=cANbwkUkKEPQp-P3_BB_Llbt94457Ciagah2hOdySIM,1644
29
+ mas/cli/templates/suite_mongocfg.yml.j2,sha256=WrgJUfGyvfaRIHjY5VR_zLZ5irTpV5khKNq76ejIxKU,1606
30
+ mas/cli/templates/pod-templates/best-effort/ibm-data-dictionary-assetdatadictionary.yml,sha256=8VG_FDFcEjWNaAOZTcS58Pe0tWOXC10SJLloNqzEMC8,757
31
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-bascfg.yml,sha256=rkq8c2pVJoskgict9tCZzCchGSE2MBC-dJ47JyMYm7A,1559
32
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-coreidp.yml,sha256=9fBqmd6t8WNOpFlZ2imZVeXH2Z-wui6QVRw3RxBubBw,648
33
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-actions.yml,sha256=VlZGhG9fFE35BFKVTKZmw8b11K_39y7AepDkptjKqdg,829
34
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-auth.yml,sha256=BkD9Hb6R8jOa6mtPhrqfuB7jqvxct3A-SlDU4ooIYUc,922
35
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-datapower.yml,sha256=ALiYzZIjVmGJvhq55wsie5mBCfrIR_VsR2wWGYEY48Y,462
36
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-devops.yml,sha256=JOwPyTiuvOSpVbETCdUbWaXnlfWl31lLNwz2zTgvx8E,495
37
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dm.yml,sha256=JF1yTmIPOwbM8m2qEn8DrF13a7KFJmekK4FiwRVTmws,695
38
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-dsc.yml,sha256=4LuI67s3g0jJQCBOn73pJaH3BxM9grF_mQ9cqZbw9FI,1168
39
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-edgeconfig.yml,sha256=oaVZXH-5BRjRF8B8nkBSCKzN7sVVl86WAf9Q8Lj8bso,425
40
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-fpl.yml,sha256=CjLQJSulhb5E7GNpAvxaMFfSJkeG7--Ikf2mr4ClwHU,742
41
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-guardian.yml,sha256=SBY7o1LVd7R56Q6zIBxFJgc84kNE2zk_DOQEsI3X-Q4,686
42
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-iot.yml,sha256=Fi9kzKa1zRySRDGbF9kavXVuYzY0nw-2Qq0d1QNoviY,415
43
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mbgx.yml,sha256=-8rJ33T6-FeOYZqmJyvayyi6RmxvjUHkceUWu9jlblc,599
44
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-mfgx.yml,sha256=7O9v2MJL1aLVRIDHtqMEmPn_wMtvJfm-KtnNdfH6wdo,492
45
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-monitor.yml,sha256=T245FTimwCK1yEit-s6f5dbs7UvFvoSVua-7WdIwiuE,601
46
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-orgmgmt.yml,sha256=qi7WoCnK9Oql4-bGsidZhDi-FTdeNBDBbBFOC8ScJJs,1256
47
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-provision.yml,sha256=RnvoCrCIN0S-k9LM0Z4wSG-VxhRTSzQFZJ-iADHqnTw,830
48
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-registry.yml,sha256=2yCyfHtmEoBt4rT9GtIiB4fICK1ZAdcFsWoZgTjWi5M,779
49
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-state.yml,sha256=d4AsEd_BWJN6N6BurqQOvGQnTaCFErdGqFkn3djHGjg,1095
50
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-iot-webui.yml,sha256=ydkFbjxNDogM3sI-gKXsVEN6BHKNZeR2eUkVF1w7H1I,683
51
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextaccelerator.yml,sha256=yMeHwgWvAR3kwP3PiMJI6KN5VjIxPld4cIPzGj5nHuc,447
52
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-healthextworkspace.yml,sha256=ZcpfzfwQ6C4hmr-CqQHKHeAQGHn0IfzNlCYQ3Wnmkoc,416
53
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-imagestitching.yml,sha256=q8EFHeenFNlr7yeG4dBYYfWdmTXRs7Ya43lydcxdS4Y,401
54
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageaccelerators.yml,sha256=t2-K9ifDBq8SdPoe5lQsRAcTSMtoTQ0YlTxM0uzEiPk,418
55
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageapp.yml,sha256=kwFGuUrlA7D325ZoWL3RaRQIPsXoeFRIAtrUQ27BRWQ,1244
56
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-manageworkspace.yml,sha256=GgFJ6GlvPQxhphJOWywn5SA-Hv--f-gim19TiO2cP_Q,1161
57
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-manage-slackproxy.yml,sha256=bBl7Mogmff0OgCobZTuhDmHWJaNJPzuoo7b1j-o2tNE,393
58
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-pushnotificationcfg.yml,sha256=W-h_Yopebpfh80sPw_noBdZvj78vFsqirWnrA8eBw3Q,528
59
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-scimcfg.yml,sha256=VV4yZTWjvNqrKQhIbnwbW_TZ4AKQwRAHRCaN0h_HCBE,491
60
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-slscfg.yml,sha256=zeg5WuigItEduuU0KxzHyYXnQfTz88V8Wfz9XmR8Edg,427
61
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-smtpcfg.yml,sha256=Plf_cZEToo_eFe6KgupIPlWyOsx9k24uePjvf45gR9c,413
62
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-suite.yml,sha256=hh1wkEt2rur-OWsBhgsPxTt8GmCi-mQnPgbvtI3hu3c,3288
63
+ mas/cli/templates/pod-templates/best-effort/ibm-mas-visualinspection.yml,sha256=-37W0_o6E-F3LjEP55jeyD3HVZzkesr2kMtoJXYZZZg,1049
64
+ mas/cli/templates/pod-templates/best-effort/ibm-sls-licenseservice.yml,sha256=11juNTgjJlkcIDQcCiIVM0aQrmXB48W6GF7-J8eWenw,426
65
+ mas/cli/templates/pod-templates/guaranteed/ibm-data-dictionary-assetdatadictionary.yml,sha256=ShHBqL0WeIarUbKw_whi-gbNBnm_cOOzBuUVPyFiqsQ,1364
66
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-bascfg.yml,sha256=oAK9pCgtKlhptX9affv42l3EHupY1Wf2XT6PyY8ibh4,3333
67
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-coreidp.yml,sha256=I8z7-3Fde57sWyT-NvKrh5pNdwJi5SQEHGuEGqwY2Mg,1160
68
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-actions.yml,sha256=kHb1EymjlTS311-RF2zuMeNDr1Z_51bBKwJxYnJhlLY,1710
69
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-auth.yml,sha256=FKem1Qh9a3X6q15ZmSyWodeD8LkBAe8mjunljVicO5Q,1924
70
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-datapower.yml,sha256=mTv1rfjc3HYrSOPyqOOsClbwMz6jnFY12pU3BKScpE0,718
71
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-devops.yml,sha256=cP0HghyD3QCPU6LN05rHRMr8r4eLgv51-fwfD1jY_yg,737
72
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dm.yml,sha256=Msg-YpfD6sm1_E-Ytuawr31MWH15visKDLFex8ikppk,1316
73
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-dsc.yml,sha256=wfC3YBOkhkSkaGaATjrXlZ4nzff5mDE3DSEby-zpKjQ,2539
74
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-edgeconfig.yml,sha256=b14mASqFIWDIWdejSYrvaVzsXsCBRXfq-FCNDzBbaHA,546
75
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-fpl.yml,sha256=jxOUAGes5QxVzLed6F7Basl-6ek0tg1jy_JzC3YsmDw,1533
76
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-guardian.yml,sha256=9JyLKMRGalhF3SxuKwEP0RmquDVgjScPKfvoOazFc0U,1198
77
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-iot.yml,sha256=Gml99aRmXr_HsX_AL62YmG4z9lEIlEDGQk0nG5V9VwM,544
78
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mbgx.yml,sha256=0EvOHdae2yqKs3JBVfe1ZiSjIXtt33cbIbdKer6wxCg,1103
79
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-mfgx.yml,sha256=nKS8NePj7fTxF4T9bSsMjGSU0Fs6Bob6bliZO-BvaCA,867
80
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-monitor.yml,sha256=zHqzip8xHCZY9HhEuQBSH3YCaf6QNFpiuAvP2eAqO5U,1101
81
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-orgmgmt.yml,sha256=HicbSWVtk4of3bDyLx67BpMdcEr7187i_-xerpbsElE,2869
82
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-provision.yml,sha256=sRd0WIFAS-6gSxeXLXO93WNycDgi26iLBU8RmWI_lnc,1711
83
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-registry.yml,sha256=g3qk-q4WBJ7A8DrmcMDzhQa3NHIA2lLQZhVivUN5tDc,1531
84
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-state.yml,sha256=9pabyziABGRR2tqGG0SE7zBm9-nFCipwMqRcq4Z2t7M,2466
85
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-iot-webui.yml,sha256=a8qN3b3E3JpufFUcODU_1n2GNslssy-pBsY1wu32wR8,1322
86
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextaccelerator.yml,sha256=g1X3z-lu7baYVWmBTcv5rziVKYtYmQIpQUSk2FiGFQo,708
87
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-healthextworkspace.yml,sha256=w2-1-EdEouiNto9ay1miPtxRpIHbA2l0G3tk1zuMjVo,615
88
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-imagestitching.yml,sha256=A_0fmur1Bo8WbIN6Md34ywr_PzoV2BKES5vraWVEuGw,524
89
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageaccelerators.yml,sha256=Md1uRJ_boeE0fw99Mt21rnHD1tQj2_GVaiEIj47q6qg,551
90
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageapp.yml,sha256=Mg_kVBQh_66Y8_B6TeyJGFeDUX3z-OndqmLkxL4E3TY,2537
91
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-manageworkspace.yml,sha256=g8Pim2v1MOqxOqwO-EW3dRLV9mP1Xie0hH8pk56_YxI,2844
92
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-manage-slackproxy.yml,sha256=uCcq85P8T7fIqvDdbUk0CnHepxFTHEU-PBVSinfzUio,516
93
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-pushnotificationcfg.yml,sha256=wpqfKOflsUgfxgWwh97yVnGikyCjDwxDE5TNItZ8BBI,786
94
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-scimcfg.yml,sha256=U8761Wiqe4dD7kxUvW5yoh-JS4k2A_kNrNUi2bNEwJg,749
95
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-slscfg.yml,sha256=TmVdo6BlefZVXjRY_Is5c1ullOTHRuunMqJOnCpnC3k,552
96
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-smtpcfg.yml,sha256=fbBe8S5iHHk9qHTzW9AmKVwUpHhHafG2gnBT4dCmWEc,538
97
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-suite.yml,sha256=aB-buCWUAqD0PV9zcGrPI5gm8QWUHZgxdriw_HG85q0,7656
98
+ mas/cli/templates/pod-templates/guaranteed/ibm-mas-visualinspection.yml,sha256=NiXBlXKe3j2RvroEcx3kCSuD92G6WB-jcpNAYGAg3T0,1975
99
+ mas/cli/templates/pod-templates/guaranteed/ibm-sls-licenseservice.yml,sha256=CKt1yim4L3ClloVcQDHiXLD8EMvmKXIltmDxJTxNdDs,546
100
+ mas/cli/uninstall/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
101
+ mas/cli/uninstall/app.py,sha256=uPJy3z-1Yt66MSFdZz1Qh8MjA97ZrQmjSgTx-Gqua9I,10047
102
+ mas/cli/uninstall/argParser.py,sha256=VVG4myUvFOtg98L6HAzpgGg7s5c-vub_UMZPGuNQko4,3452
103
+ mas/cli/update/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
104
+ mas/cli/update/app.py,sha256=W-q795RgQVUiHNWbqP3sgxKh52pEiKw-uBrZ_jA_mzM,39442
105
+ mas/cli/update/argParser.py,sha256=oOIXzB_rsI2p3og_5X5SFt_g7LURyEdLxZeiGCKq1nU,4711
106
+ mas/cli/upgrade/__init__.py,sha256=v0WJlcdrSycWGT5ofFjRDV3jTZ8AqVCz1AGxok4Khtc,508
107
+ mas/cli/upgrade/app.py,sha256=ZaT8tGrFfIsZM2dkvoYBy89EiqQ0ZKgEfhbMYdf0UEc,8873
108
+ mas/cli/upgrade/argParser.py,sha256=5JxAcbwKjFKCKnbucCxg7Xacdhjphb9nRORfsgB1h_0,2196
109
+ mas/cli/upgrade/settings/__init__.py,sha256=QI2CUsj-NXBU1qrPOsOk4MbeWnfNq0UOF3rYYc_1l2A,775
110
+ mas_cli-5.1.4.data/scripts/mas-cli,sha256=ijL4Ecg_2fRtdrQ8Mk28qsi6o3O6KRIAUM8BUry5cPs,3621
111
+ mas_cli-5.1.4.dist-info/METADATA,sha256=9awidV7EOVP4G96wIyOnAVEChOWCHxsvDhRJ_SkNcks,2257
112
+ mas_cli-5.1.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
113
+ mas_cli-5.1.4.dist-info/top_level.txt,sha256=_Hlsp7pvMvyV14LFg-vk1hULq30j61EILnnxMFIhhc8,4
114
+ mas_cli-5.1.4.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ mas