magellan-cli 0.7.11 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +2 -2
- data/README.md +6 -16
- data/Rakefile +32 -4
- data/lib/magellan/cli/command.rb +1 -1
- data/lib/magellan/cli/messaging/base.rb +2 -2
- data/lib/magellan/cli/reference_generator.rb +2 -1
- data/lib/magellan/cli/resources/stage.rb +4 -4
- data/lib/magellan/cli/version.rb +1 -1
- data/lib/magellan/cli.rb +0 -1
- data/reference/en/index.md +20 -15
- data/reference/en/messaging/http.md +117 -0
- data/reference/en/messaging/mqtt.md +48 -0
- data/reference/en/resources/authority.md +93 -0
- data/reference/en/resources/client_version.md +99 -0
- data/reference/en/resources/cloudsql.md +94 -0
- data/reference/en/resources/container.md +66 -0
- data/reference/en/resources/image.md +66 -0
- data/reference/en/resources/organization.md +84 -0
- data/reference/en/resources/project.md +93 -0
- data/reference/en/resources/stage.md +182 -0
- data/reference/en/resources/team.md +84 -0
- data/reference/en/resources/worker.md +108 -0
- data/reference/ja/index.md +20 -15
- data/reference/ja/messaging/http.md +117 -0
- data/reference/ja/messaging/mqtt.md +48 -0
- data/reference/ja/resources/authority.md +93 -0
- data/reference/ja/resources/client_version.md +99 -0
- data/reference/ja/resources/cloudsql.md +94 -0
- data/reference/ja/resources/container.md +66 -0
- data/reference/ja/resources/image.md +66 -0
- data/reference/ja/resources/organization.md +84 -0
- data/reference/ja/resources/project.md +93 -0
- data/reference/ja/resources/stage.md +182 -0
- data/reference/ja/resources/team.md +84 -0
- data/reference/ja/resources/worker.md +108 -0
- metadata +26 -20
- data/reference/en/client_version.md +0 -83
- data/reference/en/cloudsql.md +0 -93
- data/reference/en/container.md +0 -65
- data/reference/en/image.md +0 -65
- data/reference/en/organization.md +0 -83
- data/reference/en/project.md +0 -92
- data/reference/en/stage.md +0 -181
- data/reference/en/team.md +0 -74
- data/reference/en/worker.md +0 -107
- data/reference/ja/client_version.md +0 -83
- data/reference/ja/cloudsql.md +0 -93
- data/reference/ja/container.md +0 -65
- data/reference/ja/image.md +0 -65
- data/reference/ja/organization.md +0 -83
- data/reference/ja/project.md +0 -92
- data/reference/ja/stage.md +0 -181
- data/reference/ja/team.md +0 -74
- data/reference/ja/worker.md +0 -107
data/reference/en/team.md
DELETED
@@ -1,74 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / team
|
4
|
-
---
|
5
|
-
|
6
|
-
## Commands
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli create NAME ROLE](#create)
|
13
|
-
- [magellan-cli help [COMMAND]](#help)
|
14
|
-
|
15
|
-
## Global Options
|
16
|
-
|
17
|
-
```text
|
18
|
-
Options:
|
19
|
-
-V, [--verbose]
|
20
|
-
-D, [--dryrun]
|
21
|
-
-v, [--version]
|
22
|
-
|
23
|
-
```
|
24
|
-
|
25
|
-
|
26
|
-
## Details
|
27
|
-
### <a name="list"></a>list
|
28
|
-
|
29
|
-
```text
|
30
|
-
magellan-cli list
|
31
|
-
```
|
32
|
-
|
33
|
-
Show a list of the teams
|
34
|
-
|
35
|
-
### <a name="show"></a>show
|
36
|
-
|
37
|
-
```text
|
38
|
-
magellan-cli show [ID]
|
39
|
-
```
|
40
|
-
|
41
|
-
Show the detail of the team specified by ID
|
42
|
-
|
43
|
-
### <a name="select"></a>select
|
44
|
-
|
45
|
-
```text
|
46
|
-
magellan-cli select NAME
|
47
|
-
```
|
48
|
-
|
49
|
-
Select the team by NAME
|
50
|
-
|
51
|
-
### <a name="deselect"></a>deselect
|
52
|
-
|
53
|
-
```text
|
54
|
-
magellan-cli deselect
|
55
|
-
```
|
56
|
-
|
57
|
-
Deselect the team
|
58
|
-
|
59
|
-
### <a name="create"></a>create
|
60
|
-
|
61
|
-
```text
|
62
|
-
magellan-cli create NAME ROLE
|
63
|
-
```
|
64
|
-
|
65
|
-
Create a new team with NAME and ROLE
|
66
|
-
|
67
|
-
### <a name="help"></a>help
|
68
|
-
|
69
|
-
```text
|
70
|
-
magellan-cli help [COMMAND]
|
71
|
-
```
|
72
|
-
|
73
|
-
Describe available commands or one specific command
|
74
|
-
|
data/reference/en/worker.md
DELETED
@@ -1,107 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / worker
|
4
|
-
---
|
5
|
-
|
6
|
-
## Commands
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli delete NAME](#delete)
|
13
|
-
- [magellan-cli create NAME IMAGE](#create)
|
14
|
-
- [magellan-cli update ATTRIBUTES](#update)
|
15
|
-
- [magellan-cli prepare_images](#prepare_images)
|
16
|
-
- [magellan-cli help [COMMAND]](#help)
|
17
|
-
|
18
|
-
## Global Options
|
19
|
-
|
20
|
-
```text
|
21
|
-
Options:
|
22
|
-
-V, [--verbose]
|
23
|
-
-D, [--dryrun]
|
24
|
-
-v, [--version]
|
25
|
-
|
26
|
-
```
|
27
|
-
|
28
|
-
|
29
|
-
## Details
|
30
|
-
### <a name="list"></a>list
|
31
|
-
|
32
|
-
```text
|
33
|
-
magellan-cli list
|
34
|
-
```
|
35
|
-
|
36
|
-
Show a list of the workers
|
37
|
-
|
38
|
-
### <a name="show"></a>show
|
39
|
-
|
40
|
-
```text
|
41
|
-
magellan-cli show [ID]
|
42
|
-
```
|
43
|
-
|
44
|
-
Show the detail of the worker specified by ID
|
45
|
-
|
46
|
-
### <a name="select"></a>select
|
47
|
-
|
48
|
-
```text
|
49
|
-
magellan-cli select NAME
|
50
|
-
```
|
51
|
-
|
52
|
-
Select the worker by NAME
|
53
|
-
|
54
|
-
### <a name="deselect"></a>deselect
|
55
|
-
|
56
|
-
```text
|
57
|
-
magellan-cli deselect
|
58
|
-
```
|
59
|
-
|
60
|
-
Deselect the worker
|
61
|
-
|
62
|
-
### <a name="delete"></a>delete
|
63
|
-
|
64
|
-
```text
|
65
|
-
magellan-cli delete NAME
|
66
|
-
```
|
67
|
-
|
68
|
-
Delete the worker specified by NAME
|
69
|
-
|
70
|
-
### <a name="create"></a>create
|
71
|
-
|
72
|
-
```text
|
73
|
-
magellan-cli create NAME IMAGE
|
74
|
-
```
|
75
|
-
|
76
|
-
```text
|
77
|
-
Options:
|
78
|
-
-A, [--attributes-yaml=ATTRIBUTES_YAML] # path to YAML file which defines attributes
|
79
|
-
|
80
|
-
```
|
81
|
-
|
82
|
-
Create a new worker with NAME and IMAGE
|
83
|
-
|
84
|
-
### <a name="update"></a>update
|
85
|
-
|
86
|
-
```text
|
87
|
-
magellan-cli update ATTRIBUTES
|
88
|
-
```
|
89
|
-
|
90
|
-
Update the ATTRIBUTES(filename or JSON) of the selected worker
|
91
|
-
|
92
|
-
### <a name="prepare_images"></a>prepare_images
|
93
|
-
|
94
|
-
```text
|
95
|
-
magellan-cli prepare_images
|
96
|
-
```
|
97
|
-
|
98
|
-
Prepare the images for the selected worker
|
99
|
-
|
100
|
-
### <a name="help"></a>help
|
101
|
-
|
102
|
-
```text
|
103
|
-
magellan-cli help [COMMAND]
|
104
|
-
```
|
105
|
-
|
106
|
-
Describe available commands or one specific command
|
107
|
-
|
@@ -1,83 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / client_version
|
4
|
-
---
|
5
|
-
|
6
|
-
## コマンドの一覧
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli create VERSION](#create)
|
13
|
-
- [magellan-cli delete VERSION](#delete)
|
14
|
-
- [magellan-cli help [COMMAND]](#help)
|
15
|
-
|
16
|
-
## 共通オプション
|
17
|
-
|
18
|
-
```text
|
19
|
-
Options:
|
20
|
-
-V, [--verbose]
|
21
|
-
-D, [--dryrun]
|
22
|
-
-v, [--version]
|
23
|
-
|
24
|
-
```
|
25
|
-
|
26
|
-
|
27
|
-
## コマンドの詳細
|
28
|
-
### <a name="list"></a>list
|
29
|
-
|
30
|
-
```text
|
31
|
-
magellan-cli list
|
32
|
-
```
|
33
|
-
|
34
|
-
client_versions の一覧を表示します
|
35
|
-
|
36
|
-
### <a name="show"></a>show
|
37
|
-
|
38
|
-
```text
|
39
|
-
magellan-cli show [ID]
|
40
|
-
```
|
41
|
-
|
42
|
-
IDで指定されたclient_versionの詳細を表示します
|
43
|
-
|
44
|
-
### <a name="select"></a>select
|
45
|
-
|
46
|
-
```text
|
47
|
-
magellan-cli select NAME
|
48
|
-
```
|
49
|
-
|
50
|
-
NAMEを指定してclient_versionを選択します
|
51
|
-
|
52
|
-
### <a name="deselect"></a>deselect
|
53
|
-
|
54
|
-
```text
|
55
|
-
magellan-cli deselect
|
56
|
-
```
|
57
|
-
|
58
|
-
client_versionの選択を解除します
|
59
|
-
|
60
|
-
### <a name="create"></a>create
|
61
|
-
|
62
|
-
```text
|
63
|
-
magellan-cli create VERSION
|
64
|
-
```
|
65
|
-
|
66
|
-
VERSIONを指定してclient_versionを登録します
|
67
|
-
|
68
|
-
### <a name="delete"></a>delete
|
69
|
-
|
70
|
-
```text
|
71
|
-
magellan-cli delete VERSION
|
72
|
-
```
|
73
|
-
|
74
|
-
VERSIONを指定してclient_versionを削除します
|
75
|
-
|
76
|
-
### <a name="help"></a>help
|
77
|
-
|
78
|
-
```text
|
79
|
-
magellan-cli help [COMMAND]
|
80
|
-
```
|
81
|
-
|
82
|
-
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
83
|
-
|
data/reference/ja/cloudsql.md
DELETED
@@ -1,93 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / cloudsql
|
4
|
-
---
|
5
|
-
|
6
|
-
## コマンドの一覧
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli delete NAME](#delete)
|
13
|
-
- [magellan-cli create NAME](#create)
|
14
|
-
- [magellan-cli help [COMMAND]](#help)
|
15
|
-
|
16
|
-
## 共通オプション
|
17
|
-
|
18
|
-
```text
|
19
|
-
Options:
|
20
|
-
-V, [--verbose]
|
21
|
-
-D, [--dryrun]
|
22
|
-
-v, [--version]
|
23
|
-
|
24
|
-
```
|
25
|
-
|
26
|
-
|
27
|
-
## コマンドの詳細
|
28
|
-
### <a name="list"></a>list
|
29
|
-
|
30
|
-
```text
|
31
|
-
magellan-cli list
|
32
|
-
```
|
33
|
-
|
34
|
-
cloudsqls の一覧を表示します
|
35
|
-
|
36
|
-
### <a name="show"></a>show
|
37
|
-
|
38
|
-
```text
|
39
|
-
magellan-cli show [ID]
|
40
|
-
```
|
41
|
-
|
42
|
-
IDで指定されたcloudsqlの詳細を表示します
|
43
|
-
|
44
|
-
### <a name="select"></a>select
|
45
|
-
|
46
|
-
```text
|
47
|
-
magellan-cli select NAME
|
48
|
-
```
|
49
|
-
|
50
|
-
NAMEを指定してcloudsqlを選択します
|
51
|
-
|
52
|
-
### <a name="deselect"></a>deselect
|
53
|
-
|
54
|
-
```text
|
55
|
-
magellan-cli deselect
|
56
|
-
```
|
57
|
-
|
58
|
-
cloudsqlの選択を解除します
|
59
|
-
|
60
|
-
### <a name="delete"></a>delete
|
61
|
-
|
62
|
-
```text
|
63
|
-
magellan-cli delete NAME
|
64
|
-
```
|
65
|
-
|
66
|
-
NAMEを指定してcloudsqlを削除します
|
67
|
-
|
68
|
-
### <a name="create"></a>create
|
69
|
-
|
70
|
-
```text
|
71
|
-
magellan-cli create NAME
|
72
|
-
```
|
73
|
-
|
74
|
-
```text
|
75
|
-
Options:
|
76
|
-
[-A] # -A 非同期モード。リリースの終了を待たずにコマンドを終了します
|
77
|
-
[-i=N] # -i 状態を取得する間隔を秒で指定します
|
78
|
-
# Default: 10
|
79
|
-
[-t=N] # -t タイムアウトを秒で指定します
|
80
|
-
# Default: 600
|
81
|
-
|
82
|
-
```
|
83
|
-
|
84
|
-
NAMEを指定してcloudsql databaseを登録します
|
85
|
-
|
86
|
-
### <a name="help"></a>help
|
87
|
-
|
88
|
-
```text
|
89
|
-
magellan-cli help [COMMAND]
|
90
|
-
```
|
91
|
-
|
92
|
-
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
93
|
-
|
data/reference/ja/container.md
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / container
|
4
|
-
---
|
5
|
-
|
6
|
-
## コマンドの一覧
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli help [COMMAND]](#help)
|
13
|
-
|
14
|
-
## 共通オプション
|
15
|
-
|
16
|
-
```text
|
17
|
-
Options:
|
18
|
-
-V, [--verbose]
|
19
|
-
-D, [--dryrun]
|
20
|
-
-v, [--version]
|
21
|
-
|
22
|
-
```
|
23
|
-
|
24
|
-
|
25
|
-
## コマンドの詳細
|
26
|
-
### <a name="list"></a>list
|
27
|
-
|
28
|
-
```text
|
29
|
-
magellan-cli list
|
30
|
-
```
|
31
|
-
|
32
|
-
containers の一覧を表示します
|
33
|
-
|
34
|
-
### <a name="show"></a>show
|
35
|
-
|
36
|
-
```text
|
37
|
-
magellan-cli show [ID]
|
38
|
-
```
|
39
|
-
|
40
|
-
IDで指定されたcontainerの詳細を表示します
|
41
|
-
|
42
|
-
### <a name="select"></a>select
|
43
|
-
|
44
|
-
```text
|
45
|
-
magellan-cli select NAME
|
46
|
-
```
|
47
|
-
|
48
|
-
NAMEを指定してcontainerを選択します
|
49
|
-
|
50
|
-
### <a name="deselect"></a>deselect
|
51
|
-
|
52
|
-
```text
|
53
|
-
magellan-cli deselect
|
54
|
-
```
|
55
|
-
|
56
|
-
containerの選択を解除します
|
57
|
-
|
58
|
-
### <a name="help"></a>help
|
59
|
-
|
60
|
-
```text
|
61
|
-
magellan-cli help [COMMAND]
|
62
|
-
```
|
63
|
-
|
64
|
-
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
65
|
-
|
data/reference/ja/image.md
DELETED
@@ -1,65 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / image
|
4
|
-
---
|
5
|
-
|
6
|
-
## コマンドの一覧
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli help [COMMAND]](#help)
|
13
|
-
|
14
|
-
## 共通オプション
|
15
|
-
|
16
|
-
```text
|
17
|
-
Options:
|
18
|
-
-V, [--verbose]
|
19
|
-
-D, [--dryrun]
|
20
|
-
-v, [--version]
|
21
|
-
|
22
|
-
```
|
23
|
-
|
24
|
-
|
25
|
-
## コマンドの詳細
|
26
|
-
### <a name="list"></a>list
|
27
|
-
|
28
|
-
```text
|
29
|
-
magellan-cli list
|
30
|
-
```
|
31
|
-
|
32
|
-
images の一覧を表示します
|
33
|
-
|
34
|
-
### <a name="show"></a>show
|
35
|
-
|
36
|
-
```text
|
37
|
-
magellan-cli show [ID]
|
38
|
-
```
|
39
|
-
|
40
|
-
IDで指定されたimageの詳細を表示します
|
41
|
-
|
42
|
-
### <a name="select"></a>select
|
43
|
-
|
44
|
-
```text
|
45
|
-
magellan-cli select NAME
|
46
|
-
```
|
47
|
-
|
48
|
-
NAMEを指定してimageを選択します
|
49
|
-
|
50
|
-
### <a name="deselect"></a>deselect
|
51
|
-
|
52
|
-
```text
|
53
|
-
magellan-cli deselect
|
54
|
-
```
|
55
|
-
|
56
|
-
imageの選択を解除します
|
57
|
-
|
58
|
-
### <a name="help"></a>help
|
59
|
-
|
60
|
-
```text
|
61
|
-
magellan-cli help [COMMAND]
|
62
|
-
```
|
63
|
-
|
64
|
-
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
65
|
-
|
@@ -1,83 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / organization
|
4
|
-
---
|
5
|
-
|
6
|
-
## コマンドの一覧
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli delete NAME](#delete)
|
13
|
-
- [magellan-cli create NAME](#create)
|
14
|
-
- [magellan-cli help [COMMAND]](#help)
|
15
|
-
|
16
|
-
## 共通オプション
|
17
|
-
|
18
|
-
```text
|
19
|
-
Options:
|
20
|
-
-V, [--verbose]
|
21
|
-
-D, [--dryrun]
|
22
|
-
-v, [--version]
|
23
|
-
|
24
|
-
```
|
25
|
-
|
26
|
-
|
27
|
-
## コマンドの詳細
|
28
|
-
### <a name="list"></a>list
|
29
|
-
|
30
|
-
```text
|
31
|
-
magellan-cli list
|
32
|
-
```
|
33
|
-
|
34
|
-
organizations の一覧を表示します
|
35
|
-
|
36
|
-
### <a name="show"></a>show
|
37
|
-
|
38
|
-
```text
|
39
|
-
magellan-cli show [ID]
|
40
|
-
```
|
41
|
-
|
42
|
-
IDで指定されたorganizationの詳細を表示します
|
43
|
-
|
44
|
-
### <a name="select"></a>select
|
45
|
-
|
46
|
-
```text
|
47
|
-
magellan-cli select NAME
|
48
|
-
```
|
49
|
-
|
50
|
-
NAMEを指定してorganizationを選択します
|
51
|
-
|
52
|
-
### <a name="deselect"></a>deselect
|
53
|
-
|
54
|
-
```text
|
55
|
-
magellan-cli deselect
|
56
|
-
```
|
57
|
-
|
58
|
-
organizationの選択を解除します
|
59
|
-
|
60
|
-
### <a name="delete"></a>delete
|
61
|
-
|
62
|
-
```text
|
63
|
-
magellan-cli delete NAME
|
64
|
-
```
|
65
|
-
|
66
|
-
NAMEを指定してorganizationを削除します
|
67
|
-
|
68
|
-
### <a name="create"></a>create
|
69
|
-
|
70
|
-
```text
|
71
|
-
magellan-cli create NAME
|
72
|
-
```
|
73
|
-
|
74
|
-
NAMEを指定してorganizationを登録します
|
75
|
-
|
76
|
-
### <a name="help"></a>help
|
77
|
-
|
78
|
-
```text
|
79
|
-
magellan-cli help [COMMAND]
|
80
|
-
```
|
81
|
-
|
82
|
-
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
83
|
-
|
data/reference/ja/project.md
DELETED
@@ -1,92 +0,0 @@
|
|
1
|
-
---
|
2
|
-
layout: index
|
3
|
-
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli">magellan-cli</a> / project
|
4
|
-
---
|
5
|
-
|
6
|
-
## コマンドの一覧
|
7
|
-
|
8
|
-
- [magellan-cli list](#list)
|
9
|
-
- [magellan-cli show [ID]](#show)
|
10
|
-
- [magellan-cli select NAME](#select)
|
11
|
-
- [magellan-cli deselect](#deselect)
|
12
|
-
- [magellan-cli delete NAME](#delete)
|
13
|
-
- [magellan-cli update ATTRIBUTES](#update)
|
14
|
-
- [magellan-cli create NAME](#create)
|
15
|
-
- [magellan-cli help [COMMAND]](#help)
|
16
|
-
|
17
|
-
## 共通オプション
|
18
|
-
|
19
|
-
```text
|
20
|
-
Options:
|
21
|
-
-V, [--verbose]
|
22
|
-
-D, [--dryrun]
|
23
|
-
-v, [--version]
|
24
|
-
|
25
|
-
```
|
26
|
-
|
27
|
-
|
28
|
-
## コマンドの詳細
|
29
|
-
### <a name="list"></a>list
|
30
|
-
|
31
|
-
```text
|
32
|
-
magellan-cli list
|
33
|
-
```
|
34
|
-
|
35
|
-
projects の一覧を表示します
|
36
|
-
|
37
|
-
### <a name="show"></a>show
|
38
|
-
|
39
|
-
```text
|
40
|
-
magellan-cli show [ID]
|
41
|
-
```
|
42
|
-
|
43
|
-
IDで指定されたprojectの詳細を表示します
|
44
|
-
|
45
|
-
### <a name="select"></a>select
|
46
|
-
|
47
|
-
```text
|
48
|
-
magellan-cli select NAME
|
49
|
-
```
|
50
|
-
|
51
|
-
NAMEを指定してprojectを選択します
|
52
|
-
|
53
|
-
### <a name="deselect"></a>deselect
|
54
|
-
|
55
|
-
```text
|
56
|
-
magellan-cli deselect
|
57
|
-
```
|
58
|
-
|
59
|
-
projectの選択を解除します
|
60
|
-
|
61
|
-
### <a name="delete"></a>delete
|
62
|
-
|
63
|
-
```text
|
64
|
-
magellan-cli delete NAME
|
65
|
-
```
|
66
|
-
|
67
|
-
NAMEを指定してprojectを削除します
|
68
|
-
|
69
|
-
### <a name="update"></a>update
|
70
|
-
|
71
|
-
```text
|
72
|
-
magellan-cli update ATTRIBUTES
|
73
|
-
```
|
74
|
-
|
75
|
-
選択したprojectの属性を指定したATTRIBUTESで更新します
|
76
|
-
|
77
|
-
### <a name="create"></a>create
|
78
|
-
|
79
|
-
```text
|
80
|
-
magellan-cli create NAME
|
81
|
-
```
|
82
|
-
|
83
|
-
NAMEを指定してprojectを登録します
|
84
|
-
|
85
|
-
### <a name="help"></a>help
|
86
|
-
|
87
|
-
```text
|
88
|
-
magellan-cli help [COMMAND]
|
89
|
-
```
|
90
|
-
|
91
|
-
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
92
|
-
|