Skip to content

Commit a26bfa7

Browse files
committed
Incremented version to 0.1.6
1 parent 658c6ff commit a26bfa7

File tree

3 files changed

+35
-13
lines changed

3 files changed

+35
-13
lines changed

README.md

Lines changed: 33 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ $ aio config:set cloudmanager_programid 4
8383
* [`aio cloudmanager:cancel-current-execution PIPELINEID`](#aio-cloudmanagercancel-current-execution-pipelineid)
8484
* [`aio cloudmanager:get-current-execution PIPELINEID`](#aio-cloudmanagerget-current-execution-pipelineid)
8585
* [`aio cloudmanager:get-execution-step-details PIPELINEID EXECUTIONID`](#aio-cloudmanagerget-execution-step-details-pipelineid-executionid)
86+
* [`aio cloudmanager:get-execution-step-log PIPELINEID EXECUTIONID ACTION`](#aio-cloudmanagerget-execution-step-log-pipelineid-executionid-action)
8687
* [`aio cloudmanager:get-quality-gate-results PIPELINEID EXECUTIONID ACTION`](#aio-cloudmanagerget-quality-gate-results-pipelineid-executionid-action)
8788
* [`aio cloudmanager:list-current-executions`](#aio-cloudmanagerlist-current-executions)
8889
* [`aio cloudmanager:list-environments`](#aio-cloudmanagerlist-environments)
@@ -120,7 +121,7 @@ EXAMPLES
120121
$ aio cloudmanager:advance-current-execution --programId=PROGRAM_ID PIPELINE_ID
121122
```
122123

123-
_See code: [src/commands/cloudmanager/index.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/index.js)_
124+
_See code: [src/commands/cloudmanager/index.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/index.js)_
124125

125126
## `aio cloudmanager:advance-current-execution PIPELINEID`
126127

@@ -138,7 +139,7 @@ OPTIONS
138139
-r, --passphrase=passphrase the passphrase for the private-key
139140
```
140141

141-
_See code: [src/commands/cloudmanager/advance-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/advance-current-execution.js)_
142+
_See code: [src/commands/cloudmanager/advance-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/advance-current-execution.js)_
142143

143144
## `aio cloudmanager:cancel-current-execution PIPELINEID`
144145

@@ -156,7 +157,7 @@ OPTIONS
156157
-r, --passphrase=passphrase the passphrase for the private-key
157158
```
158159

159-
_See code: [src/commands/cloudmanager/cancel-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/cancel-current-execution.js)_
160+
_See code: [src/commands/cloudmanager/cancel-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/cancel-current-execution.js)_
160161

161162
## `aio cloudmanager:get-current-execution PIPELINEID`
162163

@@ -174,7 +175,7 @@ OPTIONS
174175
-r, --passphrase=passphrase the passphrase for the private-key
175176
```
176177

177-
_See code: [src/commands/cloudmanager/get-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/get-current-execution.js)_
178+
_See code: [src/commands/cloudmanager/get-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/get-current-execution.js)_
178179

179180
## `aio cloudmanager:get-execution-step-details PIPELINEID EXECUTIONID`
180181

@@ -193,7 +194,28 @@ OPTIONS
193194
-r, --passphrase=passphrase the passphrase for the private-key
194195
```
195196

196-
_See code: [src/commands/cloudmanager/get-execution-step-details.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/get-execution-step-details.js)_
197+
_See code: [src/commands/cloudmanager/get-execution-step-details.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/get-execution-step-details.js)_
198+
199+
## `aio cloudmanager:get-execution-step-log PIPELINEID EXECUTIONID ACTION`
200+
201+
get step log
202+
203+
```
204+
USAGE
205+
$ aio cloudmanager:get-execution-step-log PIPELINEID EXECUTIONID ACTION
206+
207+
ARGUMENTS
208+
PIPELINEID the pipeline id
209+
EXECUTIONID the execution id
210+
ACTION (build|codeQuality|devDeploy|stageDeploy|prodDeploy) the step action
211+
212+
OPTIONS
213+
-o, --output=output the output file. If not set, uses standard output.
214+
-p, --programId=programId the programId. if not specified, defaults to 'cloudmanager_programid' config value
215+
-r, --passphrase=passphrase the passphrase for the private-key
216+
```
217+
218+
_See code: [src/commands/cloudmanager/get-execution-step-log.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/get-execution-step-log.js)_
197219

198220
## `aio cloudmanager:get-quality-gate-results PIPELINEID EXECUTIONID ACTION`
199221

@@ -213,7 +235,7 @@ OPTIONS
213235
-r, --passphrase=passphrase the passphrase for the private-key
214236
```
215237

216-
_See code: [src/commands/cloudmanager/get-quality-gate-results.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/get-quality-gate-results.js)_
238+
_See code: [src/commands/cloudmanager/get-quality-gate-results.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/get-quality-gate-results.js)_
217239

218240
## `aio cloudmanager:list-current-executions`
219241

@@ -228,7 +250,7 @@ OPTIONS
228250
-r, --passphrase=passphrase the passphrase for the private-key
229251
```
230252

231-
_See code: [src/commands/cloudmanager/list-current-executions.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/list-current-executions.js)_
253+
_See code: [src/commands/cloudmanager/list-current-executions.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/list-current-executions.js)_
232254

233255
## `aio cloudmanager:list-environments`
234256

@@ -243,7 +265,7 @@ OPTIONS
243265
-r, --passphrase=passphrase the passphrase for the private-key
244266
```
245267

246-
_See code: [src/commands/cloudmanager/list-environments.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/list-environments.js)_
268+
_See code: [src/commands/cloudmanager/list-environments.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/list-environments.js)_
247269

248270
## `aio cloudmanager:list-pipelines`
249271

@@ -258,7 +280,7 @@ OPTIONS
258280
-r, --passphrase=passphrase the passphrase for the private-key
259281
```
260282

261-
_See code: [src/commands/cloudmanager/list-pipelines.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/list-pipelines.js)_
283+
_See code: [src/commands/cloudmanager/list-pipelines.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/list-pipelines.js)_
262284

263285
## `aio cloudmanager:list-programs`
264286

@@ -273,7 +295,7 @@ OPTIONS
273295
-r, --passphrase=passphrase the passphrase for the private-key
274296
```
275297

276-
_See code: [src/commands/cloudmanager/list-programs.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/list-programs.js)_
298+
_See code: [src/commands/cloudmanager/list-programs.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/list-programs.js)_
277299

278300
## `aio cloudmanager:start-execution PIPELINEID`
279301

@@ -291,7 +313,7 @@ OPTIONS
291313
-r, --passphrase=passphrase the passphrase for the private-key
292314
```
293315

294-
_See code: [src/commands/cloudmanager/start-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.5/src/commands/cloudmanager/start-execution.js)_
316+
_See code: [src/commands/cloudmanager/start-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.6/src/commands/cloudmanager/start-execution.js)_
295317
<!-- commandsstop -->
296318

297319
# Development

package-lock.json

Lines changed: 1 addition & 1 deletion
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": "@adobe/aio-cli-plugin-cloudmanager",
33
"description": "Cloud Manager commands for the Adobe I/O CLI",
4-
"version": "0.1.5",
4+
"version": "0.1.6",
55
"author": "Adobe Inc.",
66
"bugs": "https://github.com/adobe/aio-cli-plugin-cloudmanager/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)