@@ -44,6 +44,10 @@ $ aio console --help
4444* [ ` aio console:project ` ] ( #aio-consoleproject )
4545* [ ` aio console:project:list ` ] ( #aio-consoleprojectlist )
4646* [ ` aio console:project:select [PROJECTIDORNAME] ` ] ( #aio-consoleprojectselect-projectidorname )
47+ * [ ` aio console:publickey ` ] ( #aio-consolepublickey )
48+ * [ ` aio console:publickey:delete IDORFINGERPRINT ` ] ( #aio-consolepublickeydelete-idorfingerprint )
49+ * [ ` aio console:publickey:list ` ] ( #aio-consolepublickeylist )
50+ * [ ` aio console:publickey:upload FILE ` ] ( #aio-consolepublickeyupload-file )
4751* [ ` aio console:where ` ] ( #aio-consolewhere )
4852* [ ` aio console:workspace ` ] ( #aio-consoleworkspace )
4953* [ ` aio console:workspace:download [DESTINATION] ` ] ( #aio-consoleworkspacedownload-destination )
@@ -55,8 +59,6 @@ $ aio console --help
5559Console plugin for the Adobe I/O CLI
5660
5761```
58- Console plugin for the Adobe I/O CLI
59-
6062USAGE
6163 $ aio console
6264
@@ -71,8 +73,6 @@ _See code: [src/commands/console/index.js](https://github.com/adobe/aio-cli-plug
7173Manage your Adobe I/O Console Organizations
7274
7375```
74- Manage your Adobe I/O Console Organizations
75-
7676USAGE
7777 $ aio console:org
7878
@@ -87,8 +87,6 @@ _See code: [src/commands/console/org/index.js](https://github.com/adobe/aio-cli-
8787List your Organizations
8888
8989```
90- List your Organizations
91-
9290USAGE
9391 $ aio console:org:list
9492
@@ -108,8 +106,6 @@ _See code: [src/commands/console/org/list.js](https://github.com/adobe/aio-cli-p
108106Select an Organization
109107
110108```
111- Select an Organization
112-
113109USAGE
114110 $ aio console:org:select [ORGCODE]
115111
@@ -130,8 +126,6 @@ _See code: [src/commands/console/org/select.js](https://github.com/adobe/aio-cli
130126Manage your Adobe I/O Console Projects
131127
132128```
133- Manage your Adobe I/O Console Projects
134-
135129USAGE
136130 $ aio console:project
137131
@@ -146,8 +140,6 @@ _See code: [src/commands/console/project/index.js](https://github.com/adobe/aio-
146140List your Projects for the selected Organization
147141
148142```
149- List your Projects for the selected Organization
150-
151143USAGE
152144 $ aio console:project:list
153145
@@ -168,8 +160,6 @@ _See code: [src/commands/console/project/list.js](https://github.com/adobe/aio-c
168160Select a Project for the selected Organization
169161
170162```
171- Select a Project for the selected Organization
172-
173163USAGE
174164 $ aio console:project:select [PROJECTIDORNAME]
175165
@@ -186,13 +176,86 @@ ALIASES
186176
187177_ See code: [ src/commands/console/project/select.js] ( https://github.com/adobe/aio-cli-plugin-console/blob/3.4.2/src/commands/console/project/select.js ) _
188178
189- ## ` aio console:where `
179+ ## ` aio console:publickey `
190180
191- Show the currently selected Organization, Project and Workspace
181+ Manage Public Key Bindings for your Adobe I/O Console Workspaces
182+
183+ ```
184+ USAGE
185+ $ aio console:publickey
186+
187+ OPTIONS
188+ --help Show help
189+ ```
190+
191+ _ See code: [ src/commands/console/publickey/index.js] ( https://github.com/adobe/aio-cli-plugin-console/blob/3.4.2/src/commands/console/publickey/index.js ) _
192+
193+ ## ` aio console:publickey:delete IDORFINGERPRINT `
194+
195+ Delete a public key certificate from the selected Workspace
196+
197+ ```
198+ USAGE
199+ $ aio console:publickey:delete IDORFINGERPRINT
200+
201+ ARGUMENTS
202+ IDORFINGERPRINT The bindingId or the fingerprint of the public key binding to delete
203+
204+ OPTIONS
205+ --help Show help
206+ --orgId=orgId Organization id of the Console Workspace to delete the public key certificate from
207+ --projectId=projectId Project id of the Console Workspace to delete the public key certificate from
208+ --workspaceId=workspaceId Workspace id of the Console Workspace to delete the public key certificate from
209+ ```
210+
211+ _ See code: [ src/commands/console/publickey/delete.js] ( https://github.com/adobe/aio-cli-plugin-console/blob/3.4.2/src/commands/console/publickey/delete.js ) _
212+
213+ ## ` aio console:publickey:list `
214+
215+ List the public key certificates bound to the selected Workspace
216+
217+ ```
218+ USAGE
219+ $ aio console:publickey:list
220+
221+ OPTIONS
222+ -j, --json Output json
223+ -y, --yml Output yml
224+ --help Show help
225+ --orgId=orgId Organization id of the Console Workspace to list the public key certificates for
226+ --projectId=projectId Project id of the Console Workspace to list the public key certificate for
227+ --workspaceId=workspaceId Workspace id of the Console Workspace to list the public key certificate for
228+ ```
229+
230+ _ See code: [ src/commands/console/publickey/list.js] ( https://github.com/adobe/aio-cli-plugin-console/blob/3.4.2/src/commands/console/publickey/list.js ) _
231+
232+ ## ` aio console:publickey:upload FILE `
233+
234+ Upload a public key certificate to the selected Workspace
235+
236+ ```
237+ USAGE
238+ $ aio console:publickey:upload FILE
192239
240+ ARGUMENTS
241+ FILE Path to public key certificate file in PEM format
242+
243+ OPTIONS
244+ -j, --json Output json
245+ -y, --yml Output yml
246+ --help Show help
247+ --orgId=orgId Organization id of the Console Workspace to upload the public key certificate to
248+ --projectId=projectId Project id of the Console Workspace to upload the public key certificate to
249+ --workspaceId=workspaceId Workspace id of the Console Workspace to upload the public key certificate to
193250```
251+
252+ _ See code: [ src/commands/console/publickey/upload.js] ( https://github.com/adobe/aio-cli-plugin-console/blob/3.4.2/src/commands/console/publickey/upload.js ) _
253+
254+ ## ` aio console:where `
255+
194256Show the currently selected Organization, Project and Workspace
195257
258+ ```
196259USAGE
197260 $ aio console:where
198261
@@ -212,8 +275,6 @@ _See code: [src/commands/console/where/index.js](https://github.com/adobe/aio-cl
212275Manage your Adobe I/O Console Workspaces
213276
214277```
215- Manage your Adobe I/O Console Workspaces
216-
217278USAGE
218279 $ aio console:workspace
219280
@@ -231,8 +292,6 @@ _See code: [src/commands/console/workspace/index.js](https://github.com/adobe/ai
231292Downloads the configuration for the selected Workspace
232293
233294```
234- Downloads the configuration for the selected Workspace
235-
236295USAGE
237296 $ aio console:workspace:download [DESTINATION]
238297
@@ -258,8 +317,6 @@ _See code: [src/commands/console/workspace/download.js](https://github.com/adobe
258317List your Workspaces for your selected Project
259318
260319```
261- List your Workspaces for your selected Project
262-
263320USAGE
264321 $ aio console:workspace:list
265322
@@ -283,8 +340,6 @@ _See code: [src/commands/console/workspace/list.js](https://github.com/adobe/aio
283340Select a Workspace for the selected Project
284341
285342```
286- Select a Workspace for the selected Project
287-
288343USAGE
289344 $ aio console:workspace:select [WORKSPACEIDORNAME]
290345
0 commit comments