You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will print the host, port, and rejectUnauthorized properties for the "lpar1_zosmf" profile.
The example config JSON at the top of the page uses nested profiles to store properties separately at the top level ("lpar1") and in a sub-profile ("lpar1.zosmf").
We want to support the following:
fromzowe.core_for_zowe_sdkimportProfileManagerprofile_manager=ProfileManager(show_warnings=False)
print(profile_manager.load(profile_type="lpar1.zosmf")) # Note the "." indicating a nested profile
Currently this fails. Instead we want it to load host and rejectUnauthorized from the "lpar1" profile, and port from the "lpar1.zosmf" profile, and print them all.
Currently only top-level profiles get loaded. We should support a zosmf child profile with a typeless parent profile like the following:
The text was updated successfully, but these errors were encountered: