magellan-cli 0.7.11 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
@@ -0,0 +1,108 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: worker | magellan-cli-0.7 (en) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/en">magellan-cli-0.7</a> / worker en <a href="/reference/ja/resources/worker.html">ja</a>
|
5
|
+
---
|
6
|
+
|
7
|
+
## Commands
|
8
|
+
|
9
|
+
- [magellan-cli worker list](#list)
|
10
|
+
- [magellan-cli worker show [ID]](#show)
|
11
|
+
- [magellan-cli worker select NAME](#select)
|
12
|
+
- [magellan-cli worker deselect](#deselect)
|
13
|
+
- [magellan-cli worker delete NAME](#delete)
|
14
|
+
- [magellan-cli worker create NAME IMAGE](#create)
|
15
|
+
- [magellan-cli worker update ATTRIBUTES](#update)
|
16
|
+
- [magellan-cli worker prepare_images](#prepare_images)
|
17
|
+
- [magellan-cli worker help [COMMAND]](#help)
|
18
|
+
|
19
|
+
## Global Options
|
20
|
+
|
21
|
+
```text
|
22
|
+
Options:
|
23
|
+
-v, [--version], [--no-version] # Show the program version
|
24
|
+
-V, [--verbose], [--no-verbose] # Show additional logging information
|
25
|
+
-D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
|
30
|
+
## Details
|
31
|
+
### <a name="list"></a>list
|
32
|
+
|
33
|
+
```text
|
34
|
+
magellan-cli worker list
|
35
|
+
```
|
36
|
+
|
37
|
+
Show a list of the workers
|
38
|
+
|
39
|
+
### <a name="show"></a>show
|
40
|
+
|
41
|
+
```text
|
42
|
+
magellan-cli worker show [ID]
|
43
|
+
```
|
44
|
+
|
45
|
+
Show the detail of the worker specified by ID
|
46
|
+
|
47
|
+
### <a name="select"></a>select
|
48
|
+
|
49
|
+
```text
|
50
|
+
magellan-cli worker select NAME
|
51
|
+
```
|
52
|
+
|
53
|
+
Select the worker by NAME
|
54
|
+
|
55
|
+
### <a name="deselect"></a>deselect
|
56
|
+
|
57
|
+
```text
|
58
|
+
magellan-cli worker deselect
|
59
|
+
```
|
60
|
+
|
61
|
+
Deselect the worker
|
62
|
+
|
63
|
+
### <a name="delete"></a>delete
|
64
|
+
|
65
|
+
```text
|
66
|
+
magellan-cli worker delete NAME
|
67
|
+
```
|
68
|
+
|
69
|
+
Delete the worker specified by NAME
|
70
|
+
|
71
|
+
### <a name="create"></a>create
|
72
|
+
|
73
|
+
```text
|
74
|
+
magellan-cli worker create NAME IMAGE
|
75
|
+
```
|
76
|
+
|
77
|
+
```text
|
78
|
+
Options:
|
79
|
+
-A, [--attributes-yaml=ATTRIBUTES_YAML] # path to YAML file which defines attributes
|
80
|
+
|
81
|
+
```
|
82
|
+
|
83
|
+
Create a new worker with NAME and IMAGE
|
84
|
+
|
85
|
+
### <a name="update"></a>update
|
86
|
+
|
87
|
+
```text
|
88
|
+
magellan-cli worker update ATTRIBUTES
|
89
|
+
```
|
90
|
+
|
91
|
+
Update the ATTRIBUTES(filename or JSON) of the selected worker
|
92
|
+
|
93
|
+
### <a name="prepare_images"></a>prepare_images
|
94
|
+
|
95
|
+
```text
|
96
|
+
magellan-cli worker prepare_images
|
97
|
+
```
|
98
|
+
|
99
|
+
Prepare the images for the selected worker
|
100
|
+
|
101
|
+
### <a name="help"></a>help
|
102
|
+
|
103
|
+
```text
|
104
|
+
magellan-cli worker help [COMMAND]
|
105
|
+
```
|
106
|
+
|
107
|
+
Describe available commands or one specific command
|
108
|
+
|
data/reference/ja/index.md
CHANGED
@@ -1,20 +1,24 @@
|
|
1
1
|
---
|
2
2
|
layout: index
|
3
|
-
|
3
|
+
title: magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / <a href="/reference/en/index.html">en</a> ja
|
4
5
|
---
|
5
6
|
|
6
7
|
## コマンドの一覧
|
7
8
|
|
8
9
|
- [magellan-cli login](#login)
|
9
|
-
- [magellan-cli organization SUBCOMMAND ...ARGS](./organization.html)
|
10
|
-
- [magellan-cli team SUBCOMMAND ...ARGS](./team.html)
|
11
|
-
- [magellan-cli project SUBCOMMAND ...ARGS](./project.html)
|
12
|
-
- [magellan-cli
|
13
|
-
- [magellan-cli
|
14
|
-
- [magellan-cli
|
15
|
-
- [magellan-cli
|
16
|
-
- [magellan-cli
|
17
|
-
- [magellan-cli
|
10
|
+
- [magellan-cli organization SUBCOMMAND ...ARGS](./resources/organization.html)
|
11
|
+
- [magellan-cli team SUBCOMMAND ...ARGS](./resources/team.html)
|
12
|
+
- [magellan-cli project SUBCOMMAND ...ARGS](./resources/project.html)
|
13
|
+
- [magellan-cli authority SUBCOMMAND ...ARGS](./resources/authority.html)
|
14
|
+
- [magellan-cli stage SUBCOMMAND ...ARGS](./resources/stage.html)
|
15
|
+
- [magellan-cli client_version SUBCOMMAND ...ARGS](./resources/client_version.html)
|
16
|
+
- [magellan-cli worker SUBCOMMAND ...ARGS](./resources/worker.html)
|
17
|
+
- [magellan-cli image SUBCOMMAND ...ARGS](./resources/image.html)
|
18
|
+
- [magellan-cli container SUBCOMMAND ...ARGS](./resources/container.html)
|
19
|
+
- [magellan-cli cloudsql SUBCOMMAND ...ARGS](./resources/cloudsql.html)
|
20
|
+
- [magellan-cli http SUBCOMMAND ...ARGS](./messaging/http.html)
|
21
|
+
- [magellan-cli mqtt SUBCOMMAND ...ARGS](./messaging/mqtt.html)
|
18
22
|
- [magellan-cli info](#info)
|
19
23
|
- [magellan-cli help [COMMAND]](#help)
|
20
24
|
|
@@ -22,9 +26,9 @@ breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="
|
|
22
26
|
|
23
27
|
```text
|
24
28
|
Options:
|
25
|
-
-
|
26
|
-
-
|
27
|
-
-
|
29
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
30
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
31
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
28
32
|
|
29
33
|
```
|
30
34
|
|
@@ -38,8 +42,9 @@ magellan-cli login
|
|
38
42
|
|
39
43
|
```text
|
40
44
|
Options:
|
41
|
-
-e, [--email=EMAIL]
|
42
|
-
-p, [--password=PASSWORD]
|
45
|
+
-e, [--email=EMAIL] # ログインするアカウントのメールアドレス
|
46
|
+
-p, [--password=PASSWORD] # ログインするアカウントのパスワード
|
47
|
+
-t, [--authentication-token=AUTHENTICATION_TOKEN] # ログインするアカウントの認証トークン
|
43
48
|
|
44
49
|
```
|
45
50
|
|
@@ -0,0 +1,117 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: http | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / http <a href="/reference/en/messaging/http.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli http get PATH](#get)
|
10
|
+
- [magellan-cli http post PATH](#post)
|
11
|
+
- [magellan-cli http put PATH](#put)
|
12
|
+
- [magellan-cli http patch PATH](#patch)
|
13
|
+
- [magellan-cli http delete PATH](#delete)
|
14
|
+
- [magellan-cli http ping](#ping)
|
15
|
+
- [magellan-cli http help [COMMAND]](#help)
|
16
|
+
|
17
|
+
## 共通オプション
|
18
|
+
|
19
|
+
```text
|
20
|
+
Options:
|
21
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
22
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
23
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
## コマンドの詳細
|
29
|
+
### <a name="get"></a>get
|
30
|
+
|
31
|
+
```text
|
32
|
+
magellan-cli http get PATH
|
33
|
+
```
|
34
|
+
|
35
|
+
```text
|
36
|
+
Options:
|
37
|
+
-H, [--headers=HEADERS] # JSON形式の文字列か、拡張子が.ymlのYAML形式のファイルへのパス、あるいは拡張子が.jsonのJSON形式のファイルへのパス
|
38
|
+
|
39
|
+
```
|
40
|
+
|
41
|
+
GETメソッドを使ってHTTPリクエストを送信します
|
42
|
+
|
43
|
+
### <a name="post"></a>post
|
44
|
+
|
45
|
+
```text
|
46
|
+
magellan-cli http post PATH
|
47
|
+
```
|
48
|
+
|
49
|
+
```text
|
50
|
+
Options:
|
51
|
+
-d, [--body=BODY] # 内容を表す文字列か、内容を保持するファイルへのパス
|
52
|
+
-H, [--headers=HEADERS] # JSON形式の文字列か、拡張子が.ymlのYAML形式のファイルへのパス、あるいは拡張子が.jsonのJSON形式のファイルへのパス
|
53
|
+
|
54
|
+
```
|
55
|
+
|
56
|
+
POSTメソッドを使ってHTTPリクエストを送信します
|
57
|
+
|
58
|
+
### <a name="put"></a>put
|
59
|
+
|
60
|
+
```text
|
61
|
+
magellan-cli http put PATH
|
62
|
+
```
|
63
|
+
|
64
|
+
```text
|
65
|
+
Options:
|
66
|
+
-d, [--body=BODY] # 内容を表す文字列か、内容を保持するファイルへのパス
|
67
|
+
-H, [--headers=HEADERS] # JSON形式の文字列か、拡張子が.ymlのYAML形式のファイルへのパス、あるいは拡張子が.jsonのJSON形式のファイルへのパス
|
68
|
+
|
69
|
+
```
|
70
|
+
|
71
|
+
PUTメソッドを使ってHTTPリクエストを送信します
|
72
|
+
|
73
|
+
### <a name="patch"></a>patch
|
74
|
+
|
75
|
+
```text
|
76
|
+
magellan-cli http patch PATH
|
77
|
+
```
|
78
|
+
|
79
|
+
```text
|
80
|
+
Options:
|
81
|
+
-d, [--body=BODY] # 内容を表す文字列か、内容を保持するファイルへのパス
|
82
|
+
-H, [--headers=HEADERS] # JSON形式の文字列か、拡張子が.ymlのYAML形式のファイルへのパス、あるいは拡張子が.jsonのJSON形式のファイルへのパス
|
83
|
+
|
84
|
+
```
|
85
|
+
|
86
|
+
PATCHメソッドを使ってHTTPリクエストを送信します
|
87
|
+
|
88
|
+
### <a name="delete"></a>delete
|
89
|
+
|
90
|
+
```text
|
91
|
+
magellan-cli http delete PATH
|
92
|
+
```
|
93
|
+
|
94
|
+
```text
|
95
|
+
Options:
|
96
|
+
-H, [--headers=HEADERS] # JSON形式の文字列か、拡張子が.ymlのYAML形式のファイルへのパス、あるいは拡張子が.jsonのJSON形式のファイルへのパス
|
97
|
+
|
98
|
+
```
|
99
|
+
|
100
|
+
DELETEメソッドを使ってHTTPリクエストを送信します
|
101
|
+
|
102
|
+
### <a name="ping"></a>ping
|
103
|
+
|
104
|
+
```text
|
105
|
+
magellan-cli http ping
|
106
|
+
```
|
107
|
+
|
108
|
+
接続確認のリクエストを送信します
|
109
|
+
|
110
|
+
### <a name="help"></a>help
|
111
|
+
|
112
|
+
```text
|
113
|
+
magellan-cli http help [COMMAND]
|
114
|
+
```
|
115
|
+
|
116
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
117
|
+
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: mqtt | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / mqtt <a href="/reference/en/messaging/mqtt.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli mqtt pub TOPIC PAYLOAD](#pub)
|
10
|
+
- [magellan-cli mqtt get [TOPIC]](#get)
|
11
|
+
- [magellan-cli mqtt help [COMMAND]](#help)
|
12
|
+
|
13
|
+
## 共通オプション
|
14
|
+
|
15
|
+
```text
|
16
|
+
Options:
|
17
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
18
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
19
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
|
24
|
+
## コマンドの詳細
|
25
|
+
### <a name="pub"></a>pub
|
26
|
+
|
27
|
+
```text
|
28
|
+
magellan-cli mqtt pub TOPIC PAYLOAD
|
29
|
+
```
|
30
|
+
|
31
|
+
TOPICを指定してメッセージを配信します
|
32
|
+
|
33
|
+
### <a name="get"></a>get
|
34
|
+
|
35
|
+
```text
|
36
|
+
magellan-cli mqtt get [TOPIC]
|
37
|
+
```
|
38
|
+
|
39
|
+
メッセージを取得します
|
40
|
+
|
41
|
+
### <a name="help"></a>help
|
42
|
+
|
43
|
+
```text
|
44
|
+
magellan-cli mqtt help [COMMAND]
|
45
|
+
```
|
46
|
+
|
47
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
48
|
+
|
@@ -0,0 +1,93 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: authority | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / authority <a href="/reference/en/resources/authority.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli authority list](#list)
|
10
|
+
- [magellan-cli authority show [ID]](#show)
|
11
|
+
- [magellan-cli authority select ID](#select)
|
12
|
+
- [magellan-cli authority deselect](#deselect)
|
13
|
+
- [magellan-cli authority update ATTRIBUTES](#update)
|
14
|
+
- [magellan-cli authority create PROJECT_ROLE STAGE_ROLE STAGE_TYPE](#create)
|
15
|
+
- [magellan-cli authority delete ID](#delete)
|
16
|
+
- [magellan-cli authority help [COMMAND]](#help)
|
17
|
+
|
18
|
+
## 共通オプション
|
19
|
+
|
20
|
+
```text
|
21
|
+
Options:
|
22
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
23
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
24
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
25
|
+
|
26
|
+
```
|
27
|
+
|
28
|
+
|
29
|
+
## コマンドの詳細
|
30
|
+
### <a name="list"></a>list
|
31
|
+
|
32
|
+
```text
|
33
|
+
magellan-cli authority list
|
34
|
+
```
|
35
|
+
|
36
|
+
authorities の一覧を表示します
|
37
|
+
|
38
|
+
### <a name="show"></a>show
|
39
|
+
|
40
|
+
```text
|
41
|
+
magellan-cli authority show [ID]
|
42
|
+
```
|
43
|
+
|
44
|
+
IDで指定されたauthorityの詳細を表示します
|
45
|
+
|
46
|
+
### <a name="select"></a>select
|
47
|
+
|
48
|
+
```text
|
49
|
+
magellan-cli authority select ID
|
50
|
+
```
|
51
|
+
|
52
|
+
ID を指定してauthorityを選択します
|
53
|
+
|
54
|
+
### <a name="deselect"></a>deselect
|
55
|
+
|
56
|
+
```text
|
57
|
+
magellan-cli authority deselect
|
58
|
+
```
|
59
|
+
|
60
|
+
authorityの選択を解除します
|
61
|
+
|
62
|
+
### <a name="update"></a>update
|
63
|
+
|
64
|
+
```text
|
65
|
+
magellan-cli authority update ATTRIBUTES
|
66
|
+
```
|
67
|
+
|
68
|
+
選択したauthorityの属性を指定したATTRIBUTESで更新します
|
69
|
+
|
70
|
+
### <a name="create"></a>create
|
71
|
+
|
72
|
+
```text
|
73
|
+
magellan-cli authority create PROJECT_ROLE STAGE_ROLE STAGE_TYPE
|
74
|
+
```
|
75
|
+
|
76
|
+
PROJECT_ROLE STAGE_ROLE STAGE_TYPE を指定してauthorityを登録します
|
77
|
+
|
78
|
+
### <a name="delete"></a>delete
|
79
|
+
|
80
|
+
```text
|
81
|
+
magellan-cli authority delete ID
|
82
|
+
```
|
83
|
+
|
84
|
+
ID を指定してauthorityを削除します
|
85
|
+
|
86
|
+
### <a name="help"></a>help
|
87
|
+
|
88
|
+
```text
|
89
|
+
magellan-cli authority help [COMMAND]
|
90
|
+
```
|
91
|
+
|
92
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
93
|
+
|
@@ -0,0 +1,99 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: client_version | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / client_version <a href="/reference/en/resources/client_version.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli client_version list](#list)
|
10
|
+
- [magellan-cli client_version show [ID]](#show)
|
11
|
+
- [magellan-cli client_version select VERSION](#select)
|
12
|
+
- [magellan-cli client_version deselect](#deselect)
|
13
|
+
- [magellan-cli client_version create VERSION](#create)
|
14
|
+
- [magellan-cli client_version update ATTRIBUTES](#update)
|
15
|
+
- [magellan-cli client_version delete VERSION](#delete)
|
16
|
+
- [magellan-cli client_version help [COMMAND]](#help)
|
17
|
+
|
18
|
+
## 共通オプション
|
19
|
+
|
20
|
+
```text
|
21
|
+
Options:
|
22
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
23
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
24
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
25
|
+
|
26
|
+
```
|
27
|
+
|
28
|
+
|
29
|
+
## コマンドの詳細
|
30
|
+
### <a name="list"></a>list
|
31
|
+
|
32
|
+
```text
|
33
|
+
magellan-cli client_version list
|
34
|
+
```
|
35
|
+
|
36
|
+
client_versions の一覧を表示します
|
37
|
+
|
38
|
+
### <a name="show"></a>show
|
39
|
+
|
40
|
+
```text
|
41
|
+
magellan-cli client_version show [ID]
|
42
|
+
```
|
43
|
+
|
44
|
+
IDで指定されたclient_versionの詳細を表示します
|
45
|
+
|
46
|
+
### <a name="select"></a>select
|
47
|
+
|
48
|
+
```text
|
49
|
+
magellan-cli client_version select VERSION
|
50
|
+
```
|
51
|
+
|
52
|
+
VERSIONを指定してclient_versionを選択します
|
53
|
+
|
54
|
+
### <a name="deselect"></a>deselect
|
55
|
+
|
56
|
+
```text
|
57
|
+
magellan-cli client_version deselect
|
58
|
+
```
|
59
|
+
|
60
|
+
client_versionの選択を解除します
|
61
|
+
|
62
|
+
### <a name="create"></a>create
|
63
|
+
|
64
|
+
```text
|
65
|
+
magellan-cli client_version create VERSION
|
66
|
+
```
|
67
|
+
|
68
|
+
```text
|
69
|
+
Options:
|
70
|
+
-d, [--domain=DOMAIN] # OAuth認証を行わずHTTPアクセスする際のアクセス先となるドメイン名
|
71
|
+
|
72
|
+
```
|
73
|
+
|
74
|
+
VERSIONを指定してclient_versionを登録します
|
75
|
+
|
76
|
+
### <a name="update"></a>update
|
77
|
+
|
78
|
+
```text
|
79
|
+
magellan-cli client_version update ATTRIBUTES
|
80
|
+
```
|
81
|
+
|
82
|
+
選択したclient_versionの属性を指定したATTRIBUTESで更新します。ATTRIBUTESにはYAMLのファイル名かJSON文字列を指定可能です
|
83
|
+
|
84
|
+
### <a name="delete"></a>delete
|
85
|
+
|
86
|
+
```text
|
87
|
+
magellan-cli client_version delete VERSION
|
88
|
+
```
|
89
|
+
|
90
|
+
VERSIONを指定してclient_versionを削除します
|
91
|
+
|
92
|
+
### <a name="help"></a>help
|
93
|
+
|
94
|
+
```text
|
95
|
+
magellan-cli client_version help [COMMAND]
|
96
|
+
```
|
97
|
+
|
98
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
99
|
+
|
@@ -0,0 +1,94 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: cloudsql | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / cloudsql <a href="/reference/en/resources/cloudsql.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli cloudsql list](#list)
|
10
|
+
- [magellan-cli cloudsql show [ID]](#show)
|
11
|
+
- [magellan-cli cloudsql select NAME](#select)
|
12
|
+
- [magellan-cli cloudsql deselect](#deselect)
|
13
|
+
- [magellan-cli cloudsql delete NAME](#delete)
|
14
|
+
- [magellan-cli cloudsql create NAME](#create)
|
15
|
+
- [magellan-cli cloudsql help [COMMAND]](#help)
|
16
|
+
|
17
|
+
## 共通オプション
|
18
|
+
|
19
|
+
```text
|
20
|
+
Options:
|
21
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
22
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
23
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
28
|
+
## コマンドの詳細
|
29
|
+
### <a name="list"></a>list
|
30
|
+
|
31
|
+
```text
|
32
|
+
magellan-cli cloudsql list
|
33
|
+
```
|
34
|
+
|
35
|
+
cloudsqls の一覧を表示します
|
36
|
+
|
37
|
+
### <a name="show"></a>show
|
38
|
+
|
39
|
+
```text
|
40
|
+
magellan-cli cloudsql show [ID]
|
41
|
+
```
|
42
|
+
|
43
|
+
IDで指定されたcloudsqlの詳細を表示します
|
44
|
+
|
45
|
+
### <a name="select"></a>select
|
46
|
+
|
47
|
+
```text
|
48
|
+
magellan-cli cloudsql select NAME
|
49
|
+
```
|
50
|
+
|
51
|
+
NAMEを指定してcloudsqlを選択します
|
52
|
+
|
53
|
+
### <a name="deselect"></a>deselect
|
54
|
+
|
55
|
+
```text
|
56
|
+
magellan-cli cloudsql deselect
|
57
|
+
```
|
58
|
+
|
59
|
+
cloudsqlの選択を解除します
|
60
|
+
|
61
|
+
### <a name="delete"></a>delete
|
62
|
+
|
63
|
+
```text
|
64
|
+
magellan-cli cloudsql delete NAME
|
65
|
+
```
|
66
|
+
|
67
|
+
NAMEを指定してcloudsqlを削除します
|
68
|
+
|
69
|
+
### <a name="create"></a>create
|
70
|
+
|
71
|
+
```text
|
72
|
+
magellan-cli cloudsql create NAME
|
73
|
+
```
|
74
|
+
|
75
|
+
```text
|
76
|
+
Options:
|
77
|
+
[-A], [--no-A] # -A 非同期モード。リリースの終了を待たずにコマンドを終了します
|
78
|
+
[-i=N] # -i 状態を取得する間隔を秒で指定します
|
79
|
+
# Default: 10
|
80
|
+
[-t=N] # -t タイムアウトを秒で指定します
|
81
|
+
# Default: 600
|
82
|
+
|
83
|
+
```
|
84
|
+
|
85
|
+
NAMEを指定してcloudsql databaseを登録します
|
86
|
+
|
87
|
+
### <a name="help"></a>help
|
88
|
+
|
89
|
+
```text
|
90
|
+
magellan-cli cloudsql help [COMMAND]
|
91
|
+
```
|
92
|
+
|
93
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
94
|
+
|
@@ -0,0 +1,66 @@
|
|
1
|
+
---
|
2
|
+
layout: index
|
3
|
+
title: container | magellan-cli-0.7 (ja) | Reference
|
4
|
+
breadcrumb: <a href="/">Top</a> / <a href="/reference">Reference</a> / <a href="/reference/magellan-cli/ja">magellan-cli-0.7</a> / container <a href="/reference/en/resources/container.html">en</a> ja
|
5
|
+
---
|
6
|
+
|
7
|
+
## コマンドの一覧
|
8
|
+
|
9
|
+
- [magellan-cli container list](#list)
|
10
|
+
- [magellan-cli container show [ID]](#show)
|
11
|
+
- [magellan-cli container select NAME](#select)
|
12
|
+
- [magellan-cli container deselect](#deselect)
|
13
|
+
- [magellan-cli container help [COMMAND]](#help)
|
14
|
+
|
15
|
+
## 共通オプション
|
16
|
+
|
17
|
+
```text
|
18
|
+
Options:
|
19
|
+
-v, [--version], [--no-version] # バージョンを表示します
|
20
|
+
-V, [--verbose], [--no-verbose] # 追加のログ情報を表示します
|
21
|
+
-D, [--dryrun], [--no-dryrun] # 登録や削除などのシステムには反映させずにアクションを実行します
|
22
|
+
|
23
|
+
```
|
24
|
+
|
25
|
+
|
26
|
+
## コマンドの詳細
|
27
|
+
### <a name="list"></a>list
|
28
|
+
|
29
|
+
```text
|
30
|
+
magellan-cli container list
|
31
|
+
```
|
32
|
+
|
33
|
+
containers の一覧を表示します
|
34
|
+
|
35
|
+
### <a name="show"></a>show
|
36
|
+
|
37
|
+
```text
|
38
|
+
magellan-cli container show [ID]
|
39
|
+
```
|
40
|
+
|
41
|
+
IDで指定されたcontainerの詳細を表示します
|
42
|
+
|
43
|
+
### <a name="select"></a>select
|
44
|
+
|
45
|
+
```text
|
46
|
+
magellan-cli container select NAME
|
47
|
+
```
|
48
|
+
|
49
|
+
NAMEを指定してcontainerを選択します
|
50
|
+
|
51
|
+
### <a name="deselect"></a>deselect
|
52
|
+
|
53
|
+
```text
|
54
|
+
magellan-cli container deselect
|
55
|
+
```
|
56
|
+
|
57
|
+
containerの選択を解除します
|
58
|
+
|
59
|
+
### <a name="help"></a>help
|
60
|
+
|
61
|
+
```text
|
62
|
+
magellan-cli container help [COMMAND]
|
63
|
+
```
|
64
|
+
|
65
|
+
利用可能なコマンドの一覧か特定のコマンドの説明を表示します
|
66
|
+
|