Skip to content

Commit 40b7431

Browse files
committed
5.2.0
1 parent 1ec9d85 commit 40b7431

2 files changed

Lines changed: 182 additions & 18 deletions

File tree

README.md

Lines changed: 181 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ $ aio console --help
4545
* [`aio console org sel [ORGCODE]`](#aio-console-org-sel-orgcode)
4646
* [`aio console org select [ORGCODE]`](#aio-console-org-select-orgcode)
4747
* [`aio console project`](#aio-console-project)
48+
* [`aio console project create`](#aio-console-project-create)
49+
* [`aio console project init`](#aio-console-project-init)
4850
* [`aio console project list`](#aio-console-project-list)
4951
* [`aio console project ls`](#aio-console-project-ls)
5052
* [`aio console project sel [PROJECTIDORNAME]`](#aio-console-project-sel-projectidorname)
@@ -55,15 +57,19 @@ $ aio console --help
5557
* [`aio console publickey upload FILE`](#aio-console-publickey-upload-file)
5658
* [`aio console where`](#aio-console-where)
5759
* [`aio console workspace`](#aio-console-workspace)
60+
* [`aio console workspace create`](#aio-console-workspace-create)
5861
* [`aio console workspace dl [DESTINATION]`](#aio-console-workspace-dl-destination)
5962
* [`aio console workspace download [DESTINATION]`](#aio-console-workspace-download-destination)
63+
* [`aio console workspace init`](#aio-console-workspace-init)
6064
* [`aio console workspace list`](#aio-console-workspace-list)
6165
* [`aio console workspace ls`](#aio-console-workspace-ls)
6266
* [`aio console workspace sel [WORKSPACEIDORNAME]`](#aio-console-workspace-sel-workspaceidorname)
6367
* [`aio console workspace select [WORKSPACEIDORNAME]`](#aio-console-workspace-select-workspaceidorname)
6468
* [`aio console ws`](#aio-console-ws)
69+
* [`aio console ws create`](#aio-console-ws-create)
6570
* [`aio console ws dl [DESTINATION]`](#aio-console-ws-dl-destination)
6671
* [`aio console ws download [DESTINATION]`](#aio-console-ws-download-destination)
72+
* [`aio console ws init`](#aio-console-ws-init)
6773
* [`aio console ws list`](#aio-console-ws-list)
6874
* [`aio console ws ls`](#aio-console-ws-ls)
6975
* [`aio console ws sel [WORKSPACEIDORNAME]`](#aio-console-ws-sel-workspaceidorname)
@@ -86,7 +92,7 @@ DESCRIPTION
8692
Console plugin for the Adobe I/O CLI
8793
```
8894

89-
_See code: [src/commands/console/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/index.js)_
95+
_See code: [src/commands/console/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/index.js)_
9096

9197
## `aio console open`
9298

@@ -106,7 +112,7 @@ ALIASES
106112
$ aio open
107113
```
108114

109-
_See code: [src/commands/console/open.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/open.js)_
115+
_See code: [src/commands/console/open.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/open.js)_
110116

111117
## `aio console org`
112118

@@ -123,7 +129,7 @@ DESCRIPTION
123129
Manage your Adobe I/O Console Organizations
124130
```
125131

126-
_See code: [src/commands/console/org/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/org/index.js)_
132+
_See code: [src/commands/console/org/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/org/index.js)_
127133

128134
## `aio console org list`
129135

@@ -145,7 +151,7 @@ ALIASES
145151
$ aio console org ls
146152
```
147153

148-
_See code: [src/commands/console/org/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/org/list.js)_
154+
_See code: [src/commands/console/org/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/org/list.js)_
149155

150156
## `aio console org ls`
151157

@@ -209,7 +215,7 @@ ALIASES
209215
$ aio console org sel
210216
```
211217

212-
_See code: [src/commands/console/org/select.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/org/select.js)_
218+
_See code: [src/commands/console/org/select.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/org/select.js)_
213219

214220
## `aio console project`
215221

@@ -226,7 +232,57 @@ DESCRIPTION
226232
Manage your Adobe I/O Console Projects
227233
```
228234

229-
_See code: [src/commands/console/project/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/project/index.js)_
235+
_See code: [src/commands/console/project/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/project/index.js)_
236+
237+
## `aio console project create`
238+
239+
Create a new App Builder Project for the selected Organization
240+
241+
```
242+
USAGE
243+
$ aio console project create -n <value> [--help] [-o <value>] [-t <value>] [-d <value>] [-j | -y]
244+
245+
FLAGS
246+
-d, --description=<value> Description of the project, defaults to the name
247+
-j, --json Output json
248+
-n, --name=<value> (required) Name of the project
249+
-o, --orgId=<value> OrgID to create the project in
250+
-t, --title=<value> Title of the project, defaults to the name
251+
-y, --yml Output yml
252+
--help Show help
253+
254+
DESCRIPTION
255+
Create a new App Builder Project for the selected Organization
256+
257+
ALIASES
258+
$ aio console project init
259+
```
260+
261+
_See code: [src/commands/console/project/create.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/project/create.js)_
262+
263+
## `aio console project init`
264+
265+
Create a new App Builder Project for the selected Organization
266+
267+
```
268+
USAGE
269+
$ aio console project init -n <value> [--help] [-o <value>] [-t <value>] [-d <value>] [-j | -y]
270+
271+
FLAGS
272+
-d, --description=<value> Description of the project, defaults to the name
273+
-j, --json Output json
274+
-n, --name=<value> (required) Name of the project
275+
-o, --orgId=<value> OrgID to create the project in
276+
-t, --title=<value> Title of the project, defaults to the name
277+
-y, --yml Output yml
278+
--help Show help
279+
280+
DESCRIPTION
281+
Create a new App Builder Project for the selected Organization
282+
283+
ALIASES
284+
$ aio console project init
285+
```
230286

231287
## `aio console project list`
232288

@@ -249,7 +305,7 @@ ALIASES
249305
$ aio console project ls
250306
```
251307

252-
_See code: [src/commands/console/project/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/project/list.js)_
308+
_See code: [src/commands/console/project/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/project/list.js)_
253309

254310
## `aio console project ls`
255311

@@ -316,7 +372,7 @@ ALIASES
316372
$ aio console project sel
317373
```
318374

319-
_See code: [src/commands/console/project/select.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/project/select.js)_
375+
_See code: [src/commands/console/project/select.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/project/select.js)_
320376

321377
## `aio console publickey`
322378

@@ -333,7 +389,7 @@ DESCRIPTION
333389
Manage Public Key Bindings for your Adobe I/O Console Workspaces
334390
```
335391

336-
_See code: [src/commands/console/publickey/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/publickey/index.js)_
392+
_See code: [src/commands/console/publickey/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/publickey/index.js)_
337393

338394
## `aio console publickey delete IDORFINGERPRINT`
339395

@@ -357,7 +413,7 @@ DESCRIPTION
357413
Delete a public key certificate from the selected Workspace
358414
```
359415

360-
_See code: [src/commands/console/publickey/delete.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/publickey/delete.js)_
416+
_See code: [src/commands/console/publickey/delete.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/publickey/delete.js)_
361417

362418
## `aio console publickey list`
363419

@@ -379,7 +435,7 @@ DESCRIPTION
379435
List the public key certificates bound to the selected Workspace
380436
```
381437

382-
_See code: [src/commands/console/publickey/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/publickey/list.js)_
438+
_See code: [src/commands/console/publickey/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/publickey/list.js)_
383439

384440
## `aio console publickey upload FILE`
385441

@@ -404,7 +460,7 @@ DESCRIPTION
404460
Upload a public key certificate to the selected Workspace
405461
```
406462

407-
_See code: [src/commands/console/publickey/upload.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/publickey/upload.js)_
463+
_See code: [src/commands/console/publickey/upload.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/publickey/upload.js)_
408464

409465
## `aio console where`
410466

@@ -426,7 +482,7 @@ ALIASES
426482
$ aio where
427483
```
428484

429-
_See code: [src/commands/console/where/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/where/index.js)_
485+
_See code: [src/commands/console/where/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/where/index.js)_
430486

431487
## `aio console workspace`
432488

@@ -446,7 +502,36 @@ ALIASES
446502
$ aio console ws
447503
```
448504

449-
_See code: [src/commands/console/workspace/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/workspace/index.js)_
505+
_See code: [src/commands/console/workspace/index.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/workspace/index.js)_
506+
507+
## `aio console workspace create`
508+
509+
Create a new Workspace in the specified Project
510+
511+
```
512+
USAGE
513+
$ aio console workspace create --projectName <value> --name <value> [--help] [--orgId <value>] [--title <value>] [-j |
514+
-y]
515+
516+
FLAGS
517+
-j, --json Output json
518+
-y, --yml Output yml
519+
--help Show help
520+
--name=<value> (required) Name of the workspace
521+
--orgId=<value> OrgID of the organization that contains the project to create the workspace in
522+
--projectName=<value> (required) Name of the project to create the workspace in
523+
--title=<value> Title of the workspace, defaults to the name
524+
525+
DESCRIPTION
526+
Create a new Workspace in the specified Project
527+
528+
ALIASES
529+
$ aio console workspace init
530+
$ aio console ws create
531+
$ aio console ws init
532+
```
533+
534+
_See code: [src/commands/console/workspace/create.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/workspace/create.js)_
450535

451536
## `aio console workspace dl [DESTINATION]`
452537

@@ -501,7 +586,34 @@ ALIASES
501586
$ aio console ws dl
502587
```
503588

504-
_See code: [src/commands/console/workspace/download.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/workspace/download.js)_
589+
_See code: [src/commands/console/workspace/download.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/workspace/download.js)_
590+
591+
## `aio console workspace init`
592+
593+
Create a new Workspace in the specified Project
594+
595+
```
596+
USAGE
597+
$ aio console workspace init --projectName <value> --name <value> [--help] [--orgId <value>] [--title <value>] [-j |
598+
-y]
599+
600+
FLAGS
601+
-j, --json Output json
602+
-y, --yml Output yml
603+
--help Show help
604+
--name=<value> (required) Name of the workspace
605+
--orgId=<value> OrgID of the organization that contains the project to create the workspace in
606+
--projectName=<value> (required) Name of the project to create the workspace in
607+
--title=<value> Title of the workspace, defaults to the name
608+
609+
DESCRIPTION
610+
Create a new Workspace in the specified Project
611+
612+
ALIASES
613+
$ aio console workspace init
614+
$ aio console ws create
615+
$ aio console ws init
616+
```
505617

506618
## `aio console workspace list`
507619

@@ -527,7 +639,7 @@ ALIASES
527639
$ aio console ws ls
528640
```
529641

530-
_See code: [src/commands/console/workspace/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/workspace/list.js)_
642+
_See code: [src/commands/console/workspace/list.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/workspace/list.js)_
531643

532644
## `aio console workspace ls`
533645

@@ -603,7 +715,7 @@ ALIASES
603715
$ aio console ws sel
604716
```
605717

606-
_See code: [src/commands/console/workspace/select.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.1.0/src/commands/console/workspace/select.js)_
718+
_See code: [src/commands/console/workspace/select.js](https://github.com/adobe/aio-cli-plugin-console/blob/5.2.0/src/commands/console/workspace/select.js)_
607719

608720
## `aio console ws`
609721

@@ -623,6 +735,32 @@ ALIASES
623735
$ aio console ws
624736
```
625737

738+
## `aio console ws create`
739+
740+
Create a new Workspace in the specified Project
741+
742+
```
743+
USAGE
744+
$ aio console ws create --projectName <value> --name <value> [--help] [--orgId <value>] [--title <value>] [-j | -y]
745+
746+
FLAGS
747+
-j, --json Output json
748+
-y, --yml Output yml
749+
--help Show help
750+
--name=<value> (required) Name of the workspace
751+
--orgId=<value> OrgID of the organization that contains the project to create the workspace in
752+
--projectName=<value> (required) Name of the project to create the workspace in
753+
--title=<value> Title of the workspace, defaults to the name
754+
755+
DESCRIPTION
756+
Create a new Workspace in the specified Project
757+
758+
ALIASES
759+
$ aio console workspace init
760+
$ aio console ws create
761+
$ aio console ws init
762+
```
763+
626764
## `aio console ws dl [DESTINATION]`
627765

628766
Downloads the configuration for the selected Workspace
@@ -675,6 +813,32 @@ ALIASES
675813
$ aio console ws dl
676814
```
677815

816+
## `aio console ws init`
817+
818+
Create a new Workspace in the specified Project
819+
820+
```
821+
USAGE
822+
$ aio console ws init --projectName <value> --name <value> [--help] [--orgId <value>] [--title <value>] [-j | -y]
823+
824+
FLAGS
825+
-j, --json Output json
826+
-y, --yml Output yml
827+
--help Show help
828+
--name=<value> (required) Name of the workspace
829+
--orgId=<value> OrgID of the organization that contains the project to create the workspace in
830+
--projectName=<value> (required) Name of the project to create the workspace in
831+
--title=<value> Title of the workspace, defaults to the name
832+
833+
DESCRIPTION
834+
Create a new Workspace in the specified Project
835+
836+
ALIASES
837+
$ aio console workspace init
838+
$ aio console ws create
839+
$ aio console ws init
840+
```
841+
678842
## `aio console ws list`
679843

680844
List your Workspaces for your selected Project

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-console",
33
"description": "Console plugin for the Adobe I/O CLI",
4-
"version": "5.1.0",
4+
"version": "5.2.0",
55
"author": "Adobe Inc.",
66
"bugs": "https://github.com/adobe/aio-cli-plugin-console/issues",
77
"dependencies": {

0 commit comments

Comments
 (0)