Skip to content
This repository has been archived by the owner on Nov 13, 2023. It is now read-only.

Introduced examples for setting default profiles in Examples section #862

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the Imperative package will be documented in this file.

## Recent Changes

- Introduced examples for setting default profiles in `zowe config set` Examples section. [#1428](https://github.com/zowe/zowe-cli/issues/1428)

## `5.3.7`

- BugFix: Fixed error when installing plug-ins that do not define profiles. [#859](https://github.com/zowe/imperative/issues/859)
Expand Down
8 changes: 8 additions & 0 deletions packages/imperative/src/config/cmd/set/set.definition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,14 @@ export const setDefinition: ICommandDefinition = {
{
description: "Store the property value",
options: `"profiles.host1.profiles.service1.properties.setting" "value" --secure`
},
{
description: "Set a default zosmf profile",
options: `"defaults.zosmf" "zosmfProfileName"`
},
{
description: "Set a default tso profile",
options: `"defaults.tso" "tsoProfileName"`
}
]
};