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.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +2 -2
  3. data/README.md +6 -16
  4. data/Rakefile +32 -4
  5. data/lib/magellan/cli/command.rb +1 -1
  6. data/lib/magellan/cli/messaging/base.rb +2 -2
  7. data/lib/magellan/cli/reference_generator.rb +2 -1
  8. data/lib/magellan/cli/resources/stage.rb +4 -4
  9. data/lib/magellan/cli/version.rb +1 -1
  10. data/lib/magellan/cli.rb +0 -1
  11. data/reference/en/index.md +20 -15
  12. data/reference/en/messaging/http.md +117 -0
  13. data/reference/en/messaging/mqtt.md +48 -0
  14. data/reference/en/resources/authority.md +93 -0
  15. data/reference/en/resources/client_version.md +99 -0
  16. data/reference/en/resources/cloudsql.md +94 -0
  17. data/reference/en/resources/container.md +66 -0
  18. data/reference/en/resources/image.md +66 -0
  19. data/reference/en/resources/organization.md +84 -0
  20. data/reference/en/resources/project.md +93 -0
  21. data/reference/en/resources/stage.md +182 -0
  22. data/reference/en/resources/team.md +84 -0
  23. data/reference/en/resources/worker.md +108 -0
  24. data/reference/ja/index.md +20 -15
  25. data/reference/ja/messaging/http.md +117 -0
  26. data/reference/ja/messaging/mqtt.md +48 -0
  27. data/reference/ja/resources/authority.md +93 -0
  28. data/reference/ja/resources/client_version.md +99 -0
  29. data/reference/ja/resources/cloudsql.md +94 -0
  30. data/reference/ja/resources/container.md +66 -0
  31. data/reference/ja/resources/image.md +66 -0
  32. data/reference/ja/resources/organization.md +84 -0
  33. data/reference/ja/resources/project.md +93 -0
  34. data/reference/ja/resources/stage.md +182 -0
  35. data/reference/ja/resources/team.md +84 -0
  36. data/reference/ja/resources/worker.md +108 -0
  37. metadata +26 -20
  38. data/reference/en/client_version.md +0 -83
  39. data/reference/en/cloudsql.md +0 -93
  40. data/reference/en/container.md +0 -65
  41. data/reference/en/image.md +0 -65
  42. data/reference/en/organization.md +0 -83
  43. data/reference/en/project.md +0 -92
  44. data/reference/en/stage.md +0 -181
  45. data/reference/en/team.md +0 -74
  46. data/reference/en/worker.md +0 -107
  47. data/reference/ja/client_version.md +0 -83
  48. data/reference/ja/cloudsql.md +0 -93
  49. data/reference/ja/container.md +0 -65
  50. data/reference/ja/image.md +0 -65
  51. data/reference/ja/organization.md +0 -83
  52. data/reference/ja/project.md +0 -92
  53. data/reference/ja/stage.md +0 -181
  54. data/reference/ja/team.md +0 -74
  55. data/reference/ja/worker.md +0 -107
@@ -0,0 +1,94 @@
1
+ ---
2
+ layout: index
3
+ title: cloudsql | 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> / cloudsql en <a href="/reference/ja/resources/cloudsql.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
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
+ ## Global Options
18
+
19
+ ```text
20
+ Options:
21
+ -v, [--version], [--no-version] # Show the program version
22
+ -V, [--verbose], [--no-verbose] # Show additional logging information
23
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
24
+
25
+ ```
26
+
27
+
28
+ ## Details
29
+ ### <a name="list"></a>list
30
+
31
+ ```text
32
+ magellan-cli cloudsql list
33
+ ```
34
+
35
+ Show a list of the cloudsqls
36
+
37
+ ### <a name="show"></a>show
38
+
39
+ ```text
40
+ magellan-cli cloudsql show [ID]
41
+ ```
42
+
43
+ Show the detail of the cloudsql specified by ID
44
+
45
+ ### <a name="select"></a>select
46
+
47
+ ```text
48
+ magellan-cli cloudsql select NAME
49
+ ```
50
+
51
+ Select the cloudsql by NAME
52
+
53
+ ### <a name="deselect"></a>deselect
54
+
55
+ ```text
56
+ magellan-cli cloudsql deselect
57
+ ```
58
+
59
+ Deselect the cloudsql
60
+
61
+ ### <a name="delete"></a>delete
62
+
63
+ ```text
64
+ magellan-cli cloudsql delete NAME
65
+ ```
66
+
67
+ Delete the cloudsql specified by NAME
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 async mode. release_now returns soon
78
+ [-i=N] # -i polling interval(seconds)
79
+ # Default: 10
80
+ [-t=N] # -t timeout(seconds)
81
+ # Default: 600
82
+
83
+ ```
84
+
85
+ Create a new cloudsql database with NAME
86
+
87
+ ### <a name="help"></a>help
88
+
89
+ ```text
90
+ magellan-cli cloudsql help [COMMAND]
91
+ ```
92
+
93
+ Describe available commands or one specific command
94
+
@@ -0,0 +1,66 @@
1
+ ---
2
+ layout: index
3
+ title: container | 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> / container en <a href="/reference/ja/resources/container.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
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
+ ## Global Options
16
+
17
+ ```text
18
+ Options:
19
+ -v, [--version], [--no-version] # Show the program version
20
+ -V, [--verbose], [--no-verbose] # Show additional logging information
21
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
22
+
23
+ ```
24
+
25
+
26
+ ## Details
27
+ ### <a name="list"></a>list
28
+
29
+ ```text
30
+ magellan-cli container list
31
+ ```
32
+
33
+ Show a list of the containers
34
+
35
+ ### <a name="show"></a>show
36
+
37
+ ```text
38
+ magellan-cli container show [ID]
39
+ ```
40
+
41
+ Show the detail of the container specified by ID
42
+
43
+ ### <a name="select"></a>select
44
+
45
+ ```text
46
+ magellan-cli container select NAME
47
+ ```
48
+
49
+ Select the container by NAME
50
+
51
+ ### <a name="deselect"></a>deselect
52
+
53
+ ```text
54
+ magellan-cli container deselect
55
+ ```
56
+
57
+ Deselect the container
58
+
59
+ ### <a name="help"></a>help
60
+
61
+ ```text
62
+ magellan-cli container help [COMMAND]
63
+ ```
64
+
65
+ Describe available commands or one specific command
66
+
@@ -0,0 +1,66 @@
1
+ ---
2
+ layout: index
3
+ title: image | 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> / image en <a href="/reference/ja/resources/image.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
8
+
9
+ - [magellan-cli image list](#list)
10
+ - [magellan-cli image show [ID]](#show)
11
+ - [magellan-cli image select NAME](#select)
12
+ - [magellan-cli image deselect](#deselect)
13
+ - [magellan-cli image help [COMMAND]](#help)
14
+
15
+ ## Global Options
16
+
17
+ ```text
18
+ Options:
19
+ -v, [--version], [--no-version] # Show the program version
20
+ -V, [--verbose], [--no-verbose] # Show additional logging information
21
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
22
+
23
+ ```
24
+
25
+
26
+ ## Details
27
+ ### <a name="list"></a>list
28
+
29
+ ```text
30
+ magellan-cli image list
31
+ ```
32
+
33
+ Show a list of the images
34
+
35
+ ### <a name="show"></a>show
36
+
37
+ ```text
38
+ magellan-cli image show [ID]
39
+ ```
40
+
41
+ Show the detail of the image specified by ID
42
+
43
+ ### <a name="select"></a>select
44
+
45
+ ```text
46
+ magellan-cli image select NAME
47
+ ```
48
+
49
+ Select the image by NAME
50
+
51
+ ### <a name="deselect"></a>deselect
52
+
53
+ ```text
54
+ magellan-cli image deselect
55
+ ```
56
+
57
+ Deselect the image
58
+
59
+ ### <a name="help"></a>help
60
+
61
+ ```text
62
+ magellan-cli image help [COMMAND]
63
+ ```
64
+
65
+ Describe available commands or one specific command
66
+
@@ -0,0 +1,84 @@
1
+ ---
2
+ layout: index
3
+ title: organization | 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> / organization en <a href="/reference/ja/resources/organization.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
8
+
9
+ - [magellan-cli organization list](#list)
10
+ - [magellan-cli organization show [ID]](#show)
11
+ - [magellan-cli organization select NAME](#select)
12
+ - [magellan-cli organization deselect](#deselect)
13
+ - [magellan-cli organization delete NAME](#delete)
14
+ - [magellan-cli organization create NAME](#create)
15
+ - [magellan-cli organization help [COMMAND]](#help)
16
+
17
+ ## Global Options
18
+
19
+ ```text
20
+ Options:
21
+ -v, [--version], [--no-version] # Show the program version
22
+ -V, [--verbose], [--no-verbose] # Show additional logging information
23
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
24
+
25
+ ```
26
+
27
+
28
+ ## Details
29
+ ### <a name="list"></a>list
30
+
31
+ ```text
32
+ magellan-cli organization list
33
+ ```
34
+
35
+ Show a list of the organizations
36
+
37
+ ### <a name="show"></a>show
38
+
39
+ ```text
40
+ magellan-cli organization show [ID]
41
+ ```
42
+
43
+ Show the detail of the organization specified by ID
44
+
45
+ ### <a name="select"></a>select
46
+
47
+ ```text
48
+ magellan-cli organization select NAME
49
+ ```
50
+
51
+ Select the organization by NAME
52
+
53
+ ### <a name="deselect"></a>deselect
54
+
55
+ ```text
56
+ magellan-cli organization deselect
57
+ ```
58
+
59
+ Deselect the organization
60
+
61
+ ### <a name="delete"></a>delete
62
+
63
+ ```text
64
+ magellan-cli organization delete NAME
65
+ ```
66
+
67
+ Delete the organization specified by NAME
68
+
69
+ ### <a name="create"></a>create
70
+
71
+ ```text
72
+ magellan-cli organization create NAME
73
+ ```
74
+
75
+ Create a new organization with NAME
76
+
77
+ ### <a name="help"></a>help
78
+
79
+ ```text
80
+ magellan-cli organization help [COMMAND]
81
+ ```
82
+
83
+ Describe available commands or one specific command
84
+
@@ -0,0 +1,93 @@
1
+ ---
2
+ layout: index
3
+ title: project | 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> / project en <a href="/reference/ja/resources/project.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
8
+
9
+ - [magellan-cli project list](#list)
10
+ - [magellan-cli project show [ID]](#show)
11
+ - [magellan-cli project select NAME](#select)
12
+ - [magellan-cli project deselect](#deselect)
13
+ - [magellan-cli project delete NAME](#delete)
14
+ - [magellan-cli project update ATTRIBUTES](#update)
15
+ - [magellan-cli project create NAME](#create)
16
+ - [magellan-cli project help [COMMAND]](#help)
17
+
18
+ ## Global Options
19
+
20
+ ```text
21
+ Options:
22
+ -v, [--version], [--no-version] # Show the program version
23
+ -V, [--verbose], [--no-verbose] # Show additional logging information
24
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
25
+
26
+ ```
27
+
28
+
29
+ ## Details
30
+ ### <a name="list"></a>list
31
+
32
+ ```text
33
+ magellan-cli project list
34
+ ```
35
+
36
+ Show a list of the projects
37
+
38
+ ### <a name="show"></a>show
39
+
40
+ ```text
41
+ magellan-cli project show [ID]
42
+ ```
43
+
44
+ Show the detail of the project specified by ID
45
+
46
+ ### <a name="select"></a>select
47
+
48
+ ```text
49
+ magellan-cli project select NAME
50
+ ```
51
+
52
+ Select the project by NAME
53
+
54
+ ### <a name="deselect"></a>deselect
55
+
56
+ ```text
57
+ magellan-cli project deselect
58
+ ```
59
+
60
+ Deselect the project
61
+
62
+ ### <a name="delete"></a>delete
63
+
64
+ ```text
65
+ magellan-cli project delete NAME
66
+ ```
67
+
68
+ Delete the project specified by NAME
69
+
70
+ ### <a name="update"></a>update
71
+
72
+ ```text
73
+ magellan-cli project update ATTRIBUTES
74
+ ```
75
+
76
+ Update the ATTRIBUTES of the selected project
77
+
78
+ ### <a name="create"></a>create
79
+
80
+ ```text
81
+ magellan-cli project create NAME
82
+ ```
83
+
84
+ Create a new project with NAME
85
+
86
+ ### <a name="help"></a>help
87
+
88
+ ```text
89
+ magellan-cli project help [COMMAND]
90
+ ```
91
+
92
+ Describe available commands or one specific command
93
+
@@ -0,0 +1,182 @@
1
+ ---
2
+ layout: index
3
+ title: stage | 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> / stage en <a href="/reference/ja/resources/stage.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
8
+
9
+ - [magellan-cli stage list](#list)
10
+ - [magellan-cli stage show [ID]](#show)
11
+ - [magellan-cli stage select NAME](#select)
12
+ - [magellan-cli stage deselect](#deselect)
13
+ - [magellan-cli stage delete NAME](#delete)
14
+ - [magellan-cli stage create NAME [-t development|staging|production]](#create)
15
+ - [magellan-cli stage planning](#planning)
16
+ - [magellan-cli stage current](#current)
17
+ - [magellan-cli stage prepare](#prepare)
18
+ - [magellan-cli stage repair](#repair)
19
+ - [magellan-cli stage update ATTRIBUTES](#update)
20
+ - [magellan-cli stage release_now](#release_now)
21
+ - [magellan-cli stage logs](#logs)
22
+ - [magellan-cli stage set_container_num NUM](#set_container_num)
23
+ - [magellan-cli stage reload](#reload)
24
+ - [magellan-cli stage help [COMMAND]](#help)
25
+
26
+ ## Global Options
27
+
28
+ ```text
29
+ Options:
30
+ -v, [--version], [--no-version] # Show the program version
31
+ -V, [--verbose], [--no-verbose] # Show additional logging information
32
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
33
+
34
+ ```
35
+
36
+
37
+ ## Details
38
+ ### <a name="list"></a>list
39
+
40
+ ```text
41
+ magellan-cli stage list
42
+ ```
43
+
44
+ Show a list of the stages
45
+
46
+ ### <a name="show"></a>show
47
+
48
+ ```text
49
+ magellan-cli stage show [ID]
50
+ ```
51
+
52
+ Show the detail of the stage specified by ID
53
+
54
+ ### <a name="select"></a>select
55
+
56
+ ```text
57
+ magellan-cli stage select NAME
58
+ ```
59
+
60
+ Select the stage by NAME
61
+
62
+ ### <a name="deselect"></a>deselect
63
+
64
+ ```text
65
+ magellan-cli stage deselect
66
+ ```
67
+
68
+ Deselect the stage
69
+
70
+ ### <a name="delete"></a>delete
71
+
72
+ ```text
73
+ magellan-cli stage delete NAME
74
+ ```
75
+
76
+ Delete the stage specified by NAME
77
+
78
+ ### <a name="create"></a>create
79
+
80
+ ```text
81
+ magellan-cli stage create NAME [-t development|staging|production]
82
+ ```
83
+
84
+ ```text
85
+ Options:
86
+ [-t=T] # -t development|staging|production. specify Stage Type
87
+ # Default: development
88
+
89
+ ```
90
+
91
+ Create a new stage with Name and Type
92
+
93
+ ### <a name="planning"></a>planning
94
+
95
+ ```text
96
+ magellan-cli stage planning
97
+ ```
98
+
99
+ Switch to planning to build next released version
100
+
101
+ ### <a name="current"></a>current
102
+
103
+ ```text
104
+ magellan-cli stage current
105
+ ```
106
+
107
+ Switch to current released version
108
+
109
+ ### <a name="prepare"></a>prepare
110
+
111
+ ```text
112
+ magellan-cli stage prepare
113
+ ```
114
+
115
+ Prepare the containers
116
+
117
+ ### <a name="repair"></a>repair
118
+
119
+ ```text
120
+ magellan-cli stage repair
121
+ ```
122
+
123
+ Repair the stage status
124
+
125
+ ### <a name="update"></a>update
126
+
127
+ ```text
128
+ magellan-cli stage update ATTRIBUTES
129
+ ```
130
+
131
+ Update the ATTRIBUTES of the selected stage
132
+
133
+ ### <a name="release_now"></a>release_now
134
+
135
+ ```text
136
+ magellan-cli stage release_now
137
+ ```
138
+
139
+ ```text
140
+ Options:
141
+ [-A], [--no-A] # -A async mode. release_now returns soon
142
+ [-i=N] # -i polling interval(seconds)
143
+ # Default: 10
144
+ [-t=N] # -t timeout(seconds)
145
+ # Default: 600
146
+
147
+ ```
148
+
149
+ Release the changes now
150
+
151
+ ### <a name="logs"></a>logs
152
+
153
+ ```text
154
+ magellan-cli stage logs
155
+ ```
156
+
157
+ Fetch the logs of the workers
158
+
159
+ ### <a name="set_container_num"></a>set_container_num
160
+
161
+ ```text
162
+ magellan-cli stage set_container_num NUM
163
+ ```
164
+
165
+ Set the number of containers for the selected image
166
+
167
+ ### <a name="reload"></a>reload
168
+
169
+ ```text
170
+ magellan-cli stage reload
171
+ ```
172
+
173
+ Reload the last selections
174
+
175
+ ### <a name="help"></a>help
176
+
177
+ ```text
178
+ magellan-cli stage help [COMMAND]
179
+ ```
180
+
181
+ Describe available commands or one specific command
182
+
@@ -0,0 +1,84 @@
1
+ ---
2
+ layout: index
3
+ title: team | 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> / team en <a href="/reference/ja/resources/team.html">ja</a>
5
+ ---
6
+
7
+ ## Commands
8
+
9
+ - [magellan-cli team list](#list)
10
+ - [magellan-cli team show [ID]](#show)
11
+ - [magellan-cli team select NAME](#select)
12
+ - [magellan-cli team deselect](#deselect)
13
+ - [magellan-cli team delete NAME](#delete)
14
+ - [magellan-cli team create NAME ROLE](#create)
15
+ - [magellan-cli team help [COMMAND]](#help)
16
+
17
+ ## Global Options
18
+
19
+ ```text
20
+ Options:
21
+ -v, [--version], [--no-version] # Show the program version
22
+ -V, [--verbose], [--no-verbose] # Show additional logging information
23
+ -D, [--dryrun], [--no-dryrun] # Do a dry run without executing actions
24
+
25
+ ```
26
+
27
+
28
+ ## Details
29
+ ### <a name="list"></a>list
30
+
31
+ ```text
32
+ magellan-cli team list
33
+ ```
34
+
35
+ Show a list of the teams
36
+
37
+ ### <a name="show"></a>show
38
+
39
+ ```text
40
+ magellan-cli team show [ID]
41
+ ```
42
+
43
+ Show the detail of the team specified by ID
44
+
45
+ ### <a name="select"></a>select
46
+
47
+ ```text
48
+ magellan-cli team select NAME
49
+ ```
50
+
51
+ Select the team by NAME
52
+
53
+ ### <a name="deselect"></a>deselect
54
+
55
+ ```text
56
+ magellan-cli team deselect
57
+ ```
58
+
59
+ Deselect the team
60
+
61
+ ### <a name="delete"></a>delete
62
+
63
+ ```text
64
+ magellan-cli team delete NAME
65
+ ```
66
+
67
+ Delete the team specified by NAME
68
+
69
+ ### <a name="create"></a>create
70
+
71
+ ```text
72
+ magellan-cli team create NAME ROLE
73
+ ```
74
+
75
+ Create a new team with NAME and ROLE
76
+
77
+ ### <a name="help"></a>help
78
+
79
+ ```text
80
+ magellan-cli team help [COMMAND]
81
+ ```
82
+
83
+ Describe available commands or one specific command
84
+