Skip to content
This repository was archived by the owner on May 24, 2021. It is now read-only.

Commit fed0882

Browse files
author
Cory Fowler
committed
adding in more new commands
1 parent 8f03eb1 commit fed0882

10 files changed

+668
-76
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
[extension]
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<dt>-d, --document &lt;document&gt;</dt>
2+
<dd>the new default document</dd>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<dt>-e, --extension &lt;extension&gt;</dt>
2+
<dd>The extension to map to a handler</dd>

_includes/html-cli-cross-platform-defaultdocument.md

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<th>description</th>
77
</tr>
88
<tr>
9-
<td> {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
9+
<td>list {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
1010
<td>
1111
<dl class="dl-horizontal">
1212
{% include command-option-help.md %}
@@ -15,6 +15,34 @@
1515
{% include command-option-subscription.md %}
1616
</dl>
1717
</td>
18-
<td></td>
18+
<td>Show your site default documents</td>
19+
</tr>
20+
<tr>
21+
<td>add {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
22+
<td>
23+
<dl class="dl-horizontal">
24+
{% include command-option-help.md %}
25+
{% include command-option-verbose.md %}
26+
{% include command-option-json.md %}
27+
{% include command-option-subscription.md %}
28+
{% include command-option-document.md %}
29+
<dt>-p, --position &lt;position&gt;</dt><dd>the position of the new default document</dd>
30+
</dl>
31+
</td>
32+
<td>Add a site default document (appended to list by default)</td>
33+
</tr>
34+
<tr>
35+
<td>delete {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
36+
<td>
37+
<dl class="dl-horizontal">
38+
{% include command-option-help.md %}
39+
{% include command-option-verbose.md %}
40+
{% include command-option-json.md %}
41+
{% include command-option-subscription.md %}
42+
{% include command-option-document.md %}
43+
{% include command-option-quiet.md %}
44+
</dl>
45+
</td>
46+
<td>Deletes a site default document</td>
1947
</tr>
2048
</table>

_includes/html-cli-cross-platform-domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<table class="table table-striped cli cmd">
2-
<caption>{% include snippet-fun-consoleuser.md %}<kbd>azure site </kbd></caption>
2+
<caption>{% include snippet-fun-consoleuser.md %}<kbd>azure site domain</kbd></caption>
33
<tr>
44
<th class="w20">command</th>
55
<th class="w60">options</th>
Lines changed: 32 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<table class="table table-striped cli cmd">
2-
<caption>{% include snippet-fun-consoleuser.md %}<kbd>azure site </kbd></caption>
2+
<caption>{% include snippet-fun-consoleuser.md %}<kbd>azure site handler</kbd></caption>
33
<tr>
44
<th class="w20">command</th>
55
<th class="w60">options</th>
66
<th>description</th>
77
</tr>
88
<tr>
9-
<td> {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
9+
<td>list {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
1010
<td>
1111
<dl class="dl-horizontal">
1212
{% include command-option-help.md %}
@@ -15,6 +15,35 @@
1515
{% include command-option-subscription.md %}
1616
</dl>
1717
</td>
18-
<td></td>
18+
<td>Show your site handler mappings</td>
19+
</tr>
20+
<tr>
21+
<td>add {% include command-argument-options.md %} {% include command-argument-extension.md %} [processor] {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
22+
<td>
23+
<dl class="dl-horizontal">
24+
{% include command-option-help.md %}
25+
{% include command-option-verbose.md %}
26+
{% include command-option-json.md %}
27+
{% include command-option-subscription.md %}
28+
{% include command-option-extension.md %}
29+
<dt>-p, --processor &lt;processor&gt;</dt><dd>The path to the script processor (executable that will process the file given by the extension)</dd>
30+
<dt>-a, --arguments &lt;arguments&gt;</dt><dd>The additional arguments</dd>
31+
</dl>
32+
</td>
33+
<td>Add a handler mapping</td>
34+
</tr>
35+
<tr>
36+
<td>delete {% include command-argument-options.md %} {% include command-argument-extension.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
37+
<td>
38+
<dl class="dl-horizontal">
39+
{% include command-option-help.md %}
40+
{% include command-option-verbose.md %}
41+
{% include command-option-json.md %}
42+
{% include command-option-subscription.md %}
43+
{% include command-option-extension.md %}
44+
{% include command-option-quiet.md %}
45+
</dl>
46+
</td>
47+
<td>Deletes a site handler mapping</td>
1948
</tr>
2049
</table>

_includes/html-cli-cross-platform-scale.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,33 @@
11
<table class="table table-striped cli cmd">
2-
<caption>{% include snippet-fun-consoleuser.md %}<kbd>azure site </kbd></caption>
2+
<caption>{% include snippet-fun-consoleuser.md %}<kbd>azure site scale</kbd></caption>
33
<tr>
44
<th class="w20">command</th>
55
<th class="w60">options</th>
66
<th>description</th>
77
</tr>
88
<tr>
9-
<td> {% include command-argument-options.md %} {% include command-argument-name.md %}<p><span class="label label-warning">new</span></p></td>
9+
<td>mode {% include command-argument-name.md %} &lt;mode&gt;</td>
1010
<td>
1111
<dl class="dl-horizontal">
1212
{% include command-option-help.md %}
1313
{% include command-option-verbose.md %}
1414
{% include command-option-json.md %}
1515
{% include command-option-subscription.md %}
16+
<dt>--mode &lt;mode&gt;</dt><dd>The mode of the site (available are: free, shared and standard)</dd>
17+
</dl>
18+
</td>
19+
<td>Sets the web site mode</td>
20+
</tr>
21+
<tr>
22+
<td>instances {% include command-argument-name.md %} &lt;instances&gt; [size]</td>
23+
<td>
24+
<dl class="dl-horizontal">
25+
{% include command-option-help.md %}
26+
{% include command-option-verbose.md %}
27+
{% include command-option-json.md %}
28+
{% include command-option-subscription.md %}
29+
<dt>--instances &lt;instances&gt;</dt><dd>The number of instances</dd>
30+
<dt>--size &lt;size&gt;</dt><dd>The size of the instances (available are: small, medium and large)</dd>
1631
</dl>
1732
</td>
1833
<td></td>

_posts/04-01-01-Windows-Azure-CLI-Tools-Cross-Platform.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,22 @@ The Windows Azure cross platform command line tools enable the power of the [Win
2828

2929
## Configuration Commands
3030

31-
{% include html-cli-cross-platform-site-config-commands.md %}
3231
{% include html-cli-cross-platform-appsetting.md %}
33-
{% include html-cli-cross-platform-connectionstring.md %}
32+
3433
{% include html-cli-cross-platform-cert.md %}
3534

35+
{% include html-cli-cross-platform-site-config-commands.md %}
36+
37+
{% include html-cli-cross-platform-connectionstring.md %}
38+
39+
{% include html-cli-cross-platform-defaultdocument.md %}
40+
41+
{% include html-cli-cross-platform-domain.md %}
42+
43+
{% include html-cli-cross-platform-handler.md %}
44+
45+
{% include html-cli-cross-platform-log.md %}
46+
47+
{% include html-cli-cross-platform-scale.md %}
48+
3649
[WA-Portal]: https://manage.windowsazure.com

0 commit comments

Comments
 (0)