From 3902c161c36e0e874f892da8770b72d57af1ce41 Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Sat, 19 Oct 2024 07:42:56 -0400 Subject: [PATCH 1/2] Update examples.rst to add more profile options Signed-off-by: Timothy Johnson --- docs/source/usage/examples.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/source/usage/examples.rst b/docs/source/usage/examples.rst index 205f6493..fbda0ba7 100644 --- a/docs/source/usage/examples.rst +++ b/docs/source/usage/examples.rst @@ -12,6 +12,9 @@ Create a dictionary to handle communication with the plug-in: "port": 443, # Include the port if different from the default (443) "user": "", "password": "", + # "rejectUnauthorized": True, # Set to False to disable SSL verification + # "basePath": "", # Define base path if using Zowe API ML (e.g. "/ibmzosmf/api/v1" for z/OSMF) + # "protocol": "https", # Include the protocol if different from the default (https) } my_console = Console(profile) From 1d3193b06a2325c3037f8612eb4fb0693478de84 Mon Sep 17 00:00:00 2001 From: Timothy Johnson Date: Mon, 21 Oct 2024 09:50:55 -0400 Subject: [PATCH 2/2] chore: Configure DCO to allow remediation commits Signed-off-by: Timothy Johnson --- .github/dco.yml | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .github/dco.yml diff --git a/.github/dco.yml b/.github/dco.yml new file mode 100644 index 00000000..1f94d940 --- /dev/null +++ b/.github/dco.yml @@ -0,0 +1,3 @@ +allowRemediationCommits: + individual: true + thirdParty: true