Skip to content

Commit 6137ff0

Browse files
0.0.3
1 parent 13ffaff commit 6137ff0

File tree

3 files changed

+25
-28
lines changed

3 files changed

+25
-28
lines changed

README.md

Lines changed: 22 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ $ npm install -g @dishantlangayan/solace-cloud-cli
2222
$ sc COMMAND
2323
running command...
2424
$ sc (--version)
25-
@dishantlangayan/solace-cloud-cli/0.0.2 darwin-x64 node-v23.10.0
25+
@dishantlangayan/solace-cloud-cli/0.0.3 darwin-x64 node-v23.10.0
2626
$ sc --help [COMMAND]
2727
USAGE
2828
$ sc COMMAND
@@ -144,7 +144,7 @@ EXAMPLES
144144
$ sc missionctrl broker create --name=MyBrokerName --datacenter-id=eks-ca-central-1a --service-class-id=DEVELOPER
145145
```
146146

147-
_See code: [src/commands/missionctrl/broker/create.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/missionctrl/broker/create.ts)_
147+
_See code: [src/commands/missionctrl/broker/create.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/missionctrl/broker/create.ts)_
148148

149149
## `sc missionctrl broker delete`
150150

@@ -176,7 +176,7 @@ EXAMPLES
176176
$ sc missionctrl broker delete --name=MyBrokerName
177177
```
178178

179-
_See code: [src/commands/missionctrl/broker/delete.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/missionctrl/broker/delete.ts)_
179+
_See code: [src/commands/missionctrl/broker/delete.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/missionctrl/broker/delete.ts)_
180180

181181
## `sc missionctrl broker display`
182182

@@ -207,7 +207,7 @@ EXAMPLES
207207
$ sc missionctrl broker display
208208
```
209209

210-
_See code: [src/commands/missionctrl/broker/display.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/missionctrl/broker/display.ts)_
210+
_See code: [src/commands/missionctrl/broker/display.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/missionctrl/broker/display.ts)_
211211

212212
## `sc missionctrl broker list`
213213

@@ -253,44 +253,41 @@ EXAMPLES
253253
$ sc missionctrl broker list --name=MyBrokerName --pageNumber=1 --pageSize=10 --sort=name:asc
254254
```
255255

256-
_See code: [src/commands/missionctrl/broker/list.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/missionctrl/broker/list.ts)_
256+
_See code: [src/commands/missionctrl/broker/list.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/missionctrl/broker/list.ts)_
257257

258258
## `sc missionctrl broker opstatus`
259259

260-
Get the status of all operations being performed on an event broker service.
260+
Get the status of an operation that being performed on an event broker service.
261261

262262
```
263263
USAGE
264-
$ sc missionctrl broker opstatus [--json] [--log-level debug|warn|error|info|trace] [-b <value>] [-n <value>] [-p] [-w
265-
<value>]
264+
$ sc missionctrl broker opstatus [--json] [--log-level debug|warn|error|info|trace] [-b <value>] [-n <value>] [-o
265+
<value>] [-p]
266266
267267
FLAGS
268-
-b, --broker-id=<value> Id of the event broker service.
269-
-n, --name=<value> Name of the event broker service.
270-
-p, --show-progress Displays a status bar of the in-progress operations. The command will wait for completion of
271-
each step of the operation.
272-
-w, --wait-ms=<value> The milliseconds to wait between API calls for checking progress of the operation. Default is
273-
5000 ms.
268+
-b, --broker-id=<value> Id of the event broker service.
269+
-n, --name=<value> Name of the event broker service.
270+
-o, --operation-id=<value> The identifier of the operation being performed on the event broker service.
271+
-p, --show-progress Displays a status bar of the in-progress operation. The command will wait for completion
272+
of each step of the operation.
274273
275274
GLOBAL FLAGS
276275
--json Format output as json.
277276
--log-level=<option> [default: info] Specify level for logging.
278277
<options: debug|warn|error|info|trace>
279278
280279
DESCRIPTION
281-
Get the status of all operations being performed on an event broker service.
282-
To get the operation status, you must provide the identifier or name of the event broker service.
280+
Get the status of an operation that being performed on an event broker service.
281+
To get the operation, you provide identifier of the operation and the identifier of the event broker service.
283282
284283
Token Permissions: [ mission_control:access or services:get or services:get:self or services:view or
285284
services:view:self ]
286285
287286
EXAMPLES
288-
$ sc missionctrl broker opstatus -b <broker-id>
289-
290-
$ sc missionctrl broker opstatus -n <broker-name>
287+
$ sc missionctrl broker opstatus
291288
```
292289

293-
_See code: [src/commands/missionctrl/broker/opstatus.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/missionctrl/broker/opstatus.ts)_
290+
_See code: [src/commands/missionctrl/broker/opstatus.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/missionctrl/broker/opstatus.ts)_
294291

295292
## `sc platform env create`
296293

@@ -324,7 +321,7 @@ EXAMPLES
324321
$ sc platform env create --name=MyEnvironment --desc="My environment description" --isDefault --isProduction
325322
```
326323

327-
_See code: [src/commands/platform/env/create.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/platform/env/create.ts)_
324+
_See code: [src/commands/platform/env/create.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/platform/env/create.ts)_
328325

329326
## `sc platform env delete`
330327

@@ -354,7 +351,7 @@ EXAMPLES
354351
$ sc platform env delete --env-id=MyEnvId
355352
```
356353

357-
_See code: [src/commands/platform/env/delete.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/platform/env/delete.ts)_
354+
_See code: [src/commands/platform/env/delete.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/platform/env/delete.ts)_
358355

359356
## `sc platform env display`
360357

@@ -386,7 +383,7 @@ EXAMPLES
386383
$ sc platform env display --env-id=MyEnvId
387384
```
388385

389-
_See code: [src/commands/platform/env/display.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/platform/env/display.ts)_
386+
_See code: [src/commands/platform/env/display.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/platform/env/display.ts)_
390387

391388
## `sc platform env list`
392389

@@ -419,7 +416,7 @@ EXAMPLES
419416
$ sc platform env list --name=Default --pageNumber=1 --pageSize=10 --sort=name:ASC
420417
```
421418

422-
_See code: [src/commands/platform/env/list.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/platform/env/list.ts)_
419+
_See code: [src/commands/platform/env/list.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/platform/env/list.ts)_
423420

424421
## `sc platform env update`
425422

@@ -456,7 +453,7 @@ EXAMPLES
456453
$ sc platform env update --env-id=MyEnvId --new-name=MyNewEnvName --desc="My description to update" --isDefault
457454
```
458455

459-
_See code: [src/commands/platform/env/update.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.2/src/commands/platform/env/update.ts)_
456+
_See code: [src/commands/platform/env/update.ts](https://github.com/dishantlangayan/solace-cloud-cli/blob/v0.0.3/src/commands/platform/env/update.ts)_
460457

461458
## `sc plugins`
462459

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@dishantlangayan/solace-cloud-cli",
33
"description": "The Solace Cloud CLI",
4-
"version": "0.0.2",
4+
"version": "0.0.3",
55
"author": "Dishant Langayan",
66
"bin": {
77
"sc": "./bin/run.js"

0 commit comments

Comments
 (0)