@@ -75,13 +75,42 @@ $ aio config:set cloudmanager_programid 4
7575
7676# Commands
7777<!-- commands -->
78+ * [ ` ./bin/run cloudmanager ` ] ( #bin-run-cloudmanager )
7879* [ ` ./bin/run cloudmanager:get-current-execution PIPELINEID ` ] ( #bin-run-cloudmanagerget-current-execution-pipelineid )
7980* [ ` ./bin/run cloudmanager:get-quality-gate-results PIPELINEID EXECUTIONID ACTION ` ] ( #bin-run-cloudmanagerget-quality-gate-results-pipelineid-executionid-action )
8081* [ ` ./bin/run cloudmanager:list-current-executions ` ] ( #bin-run-cloudmanagerlist-current-executions )
8182* [ ` ./bin/run cloudmanager:list-pipelines ` ] ( #bin-run-cloudmanagerlist-pipelines )
8283* [ ` ./bin/run cloudmanager:list-programs ` ] ( #bin-run-cloudmanagerlist-programs )
8384* [ ` ./bin/run cloudmanager:start-execution PIPELINEID ` ] ( #bin-run-cloudmanagerstart-execution-pipelineid )
8485
86+ ## ` ./bin/run cloudmanager `
87+
88+ interact with the Cloud Manager API to list, start, cancel, and inspect pipelines and executions.
89+
90+ ```
91+ USAGE
92+ $ ./bin/run cloudmanager
93+
94+ OPTIONS
95+ -r, --passphrase=passphrase the passphrase for the private-key
96+
97+ EXAMPLES
98+ $ aio cloudmanager:list-programs
99+ $ aio cloudmanager:list-programs --enabledonly
100+ $ aio cloudmanager:list-pipelines
101+ $ aio cloudmanager:list-pipelines --programId=PROGRAM_ID
102+ $ aio cloudmanager:start-execution PIPELINE_ID
103+ $ aio cloudmanager:start-execution --programId=PROGRAM_ID PIPELINE_ID
104+ $ aio cloudmanager:list-current-executions
105+ $ aio cloudmanager:list-current-executions --programId=PROGRAM_ID
106+ $ aio cloudmanager:get-current-execution PIPELINE_ID
107+ $ aio cloudmanager:get-current-execution --programId=PROGRAM_ID PIPELINE_ID
108+ $ aio cloudmanager:get-quality-gate-results PIPELINE_ID [codeQuality|security|performance]
109+ $ aio cloudmanager:get-quality-gate-results --programId=PROGRAM_ID PIPELINE_ID [codeQuality|security|performance]
110+ ```
111+
112+ _ See code: [ src/commands/cloudmanager/index.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3/src/commands/cloudmanager/index.js ) _
113+
85114## ` ./bin/run cloudmanager:get-current-execution PIPELINEID `
86115
87116get pipeline execution
@@ -98,7 +127,7 @@ OPTIONS
98127 -r, --passphrase=passphrase the passphrase for the private-key
99128```
100129
101- _ See code: [ src/commands/cloudmanager/get-current-execution.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.2 /src/commands/cloudmanager/get-current-execution.js ) _
130+ _ See code: [ src/commands/cloudmanager/get-current-execution.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3 /src/commands/cloudmanager/get-current-execution.js ) _
102131
103132## ` ./bin/run cloudmanager:get-quality-gate-results PIPELINEID EXECUTIONID ACTION `
104133
@@ -118,7 +147,7 @@ OPTIONS
118147 -r, --passphrase=passphrase the passphrase for the private-key
119148```
120149
121- _ See code: [ src/commands/cloudmanager/get-quality-gate-results.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.2 /src/commands/cloudmanager/get-quality-gate-results.js ) _
150+ _ See code: [ src/commands/cloudmanager/get-quality-gate-results.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3 /src/commands/cloudmanager/get-quality-gate-results.js ) _
122151
123152## ` ./bin/run cloudmanager:list-current-executions `
124153
@@ -133,7 +162,7 @@ OPTIONS
133162 -r, --passphrase=passphrase the passphrase for the private-key
134163```
135164
136- _ See code: [ src/commands/cloudmanager/list-current-executions.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.2 /src/commands/cloudmanager/list-current-executions.js ) _
165+ _ See code: [ src/commands/cloudmanager/list-current-executions.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3 /src/commands/cloudmanager/list-current-executions.js ) _
137166
138167## ` ./bin/run cloudmanager:list-pipelines `
139168
@@ -148,7 +177,7 @@ OPTIONS
148177 -r, --passphrase=passphrase the passphrase for the private-key
149178```
150179
151- _ See code: [ src/commands/cloudmanager/list-pipelines.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.2 /src/commands/cloudmanager/list-pipelines.js ) _
180+ _ See code: [ src/commands/cloudmanager/list-pipelines.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3 /src/commands/cloudmanager/list-pipelines.js ) _
152181
153182## ` ./bin/run cloudmanager:list-programs `
154183
@@ -163,7 +192,7 @@ OPTIONS
163192 -r, --passphrase=passphrase the passphrase for the private-key
164193```
165194
166- _ See code: [ src/commands/cloudmanager/list-programs.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.2 /src/commands/cloudmanager/list-programs.js ) _
195+ _ See code: [ src/commands/cloudmanager/list-programs.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3 /src/commands/cloudmanager/list-programs.js ) _
167196
168197## ` ./bin/run cloudmanager:start-execution PIPELINEID `
169198
@@ -181,5 +210,5 @@ OPTIONS
181210 -r, --passphrase=passphrase the passphrase for the private-key
182211```
183212
184- _ See code: [ src/commands/cloudmanager/start-execution.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.2 /src/commands/cloudmanager/start-execution.js ) _
213+ _ See code: [ src/commands/cloudmanager/start-execution.js] ( https://github.com/adobe/aio-cli-plugin-cloudmanager/blob/v0.0.3 /src/commands/cloudmanager/start-execution.js ) _
185214<!-- commandsstop -->
0 commit comments