Skip to content

Commit feb92a4

Browse files
committed
Incremented version to 0.1.5
1 parent dd93b69 commit feb92a4

File tree

3 files changed

+32
-12
lines changed

3 files changed

+32
-12
lines changed

README.md

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ $ aio config:set cloudmanager_programid 4
8282
* [`aio cloudmanager:advance-current-execution PIPELINEID`](#aio-cloudmanageradvance-current-execution-pipelineid)
8383
* [`aio cloudmanager:cancel-current-execution PIPELINEID`](#aio-cloudmanagercancel-current-execution-pipelineid)
8484
* [`aio cloudmanager:get-current-execution PIPELINEID`](#aio-cloudmanagerget-current-execution-pipelineid)
85+
* [`aio cloudmanager:get-execution-step-details PIPELINEID EXECUTIONID`](#aio-cloudmanagerget-execution-step-details-pipelineid-executionid)
8586
* [`aio cloudmanager:get-quality-gate-results PIPELINEID EXECUTIONID ACTION`](#aio-cloudmanagerget-quality-gate-results-pipelineid-executionid-action)
8687
* [`aio cloudmanager:list-current-executions`](#aio-cloudmanagerlist-current-executions)
8788
* [`aio cloudmanager:list-environments`](#aio-cloudmanagerlist-environments)
@@ -119,7 +120,7 @@ EXAMPLES
119120
$ aio cloudmanager:advance-current-execution --programId=PROGRAM_ID PIPELINE_ID
120121
```
121122

122-
_See code: [src/commands/cloudmanager/index.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/index.js)_
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)_
123124

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

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

140-
_See code: [src/commands/cloudmanager/advance-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/advance-current-execution.js)_
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)_
141142

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

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

158-
_See code: [src/commands/cloudmanager/cancel-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/cancel-current-execution.js)_
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)_
159160

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

@@ -173,7 +174,26 @@ OPTIONS
173174
-r, --passphrase=passphrase the passphrase for the private-key
174175
```
175176

176-
_See code: [src/commands/cloudmanager/get-current-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/get-current-execution.js)_
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+
179+
## `aio cloudmanager:get-execution-step-details PIPELINEID EXECUTIONID`
180+
181+
get quality gate results
182+
183+
```
184+
USAGE
185+
$ aio cloudmanager:get-execution-step-details PIPELINEID EXECUTIONID
186+
187+
ARGUMENTS
188+
PIPELINEID the pipeline id
189+
EXECUTIONID the execution id
190+
191+
OPTIONS
192+
-p, --programId=programId the programId. if not specified, defaults to 'cloudmanager_programid' config value
193+
-r, --passphrase=passphrase the passphrase for the private-key
194+
```
195+
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)_
177197

178198
## `aio cloudmanager:get-quality-gate-results PIPELINEID EXECUTIONID ACTION`
179199

@@ -193,7 +213,7 @@ OPTIONS
193213
-r, --passphrase=passphrase the passphrase for the private-key
194214
```
195215

196-
_See code: [src/commands/cloudmanager/get-quality-gate-results.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/get-quality-gate-results.js)_
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)_
197217

198218
## `aio cloudmanager:list-current-executions`
199219

@@ -208,7 +228,7 @@ OPTIONS
208228
-r, --passphrase=passphrase the passphrase for the private-key
209229
```
210230

211-
_See code: [src/commands/cloudmanager/list-current-executions.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/list-current-executions.js)_
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)_
212232

213233
## `aio cloudmanager:list-environments`
214234

@@ -223,7 +243,7 @@ OPTIONS
223243
-r, --passphrase=passphrase the passphrase for the private-key
224244
```
225245

226-
_See code: [src/commands/cloudmanager/list-environments.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/list-environments.js)_
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)_
227247

228248
## `aio cloudmanager:list-pipelines`
229249

@@ -238,7 +258,7 @@ OPTIONS
238258
-r, --passphrase=passphrase the passphrase for the private-key
239259
```
240260

241-
_See code: [src/commands/cloudmanager/list-pipelines.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/list-pipelines.js)_
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)_
242262

243263
## `aio cloudmanager:list-programs`
244264

@@ -253,7 +273,7 @@ OPTIONS
253273
-r, --passphrase=passphrase the passphrase for the private-key
254274
```
255275

256-
_See code: [src/commands/cloudmanager/list-programs.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/list-programs.js)_
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)_
257277

258278
## `aio cloudmanager:start-execution PIPELINEID`
259279

@@ -271,7 +291,7 @@ OPTIONS
271291
-r, --passphrase=passphrase the passphrase for the private-key
272292
```
273293

274-
_See code: [src/commands/cloudmanager/start-execution.js](https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.1.4/src/commands/cloudmanager/start-execution.js)_
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)_
275295
<!-- commandsstop -->
276296

277297
# 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.4",
4+
"version": "0.1.5",
55
"author": "Adobe Inc.",
66
"bugs": "https://github.com/adobe/aio-cli-plugin-cloudmanager/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)