Skip to content

Commit 35915ea

Browse files
Help template
1 parent 82731a3 commit 35915ea

File tree

3 files changed

+169
-2
lines changed

3 files changed

+169
-2
lines changed

experiments/Compute.Experiments/AzureRM.Compute.Experiments.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = ".\AzureRM.Compute.Experiments.psm1"
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.1'
15+
ModuleVersion = '1.0.2'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

experiments/Compute.Experiments/AzureRM.Compute.Experiments.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function New-AzVm {
88
[Parameter()][string] $Location,
99
[Parameter()][string] $VirtualNetworkName,
1010
[Parameter()][string] $PublicIpAddressName,
11-
[Parameter()][string] $SecurityGroupName,
11+
[Parameter()][string] $SecurityGroupName
1212
# [Parameter()][string] $NetworkInterfaceName
1313
)
1414

Lines changed: 167 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,167 @@
1+
---
2+
external help file: AzureRM.Compute.Experiments-help.xml
3+
Module Name: AzureRM.Compute.Experiments
4+
online version:
5+
schema: 2.0.0
6+
---
7+
8+
# New-AzVm
9+
10+
## SYNOPSIS
11+
{{Fill in the Synopsis}}
12+
13+
## SYNTAX
14+
15+
```
16+
New-AzVm [-Name] <String> [[-Credential] <PSCredential>] [[-ImageName] <String>]
17+
[[-ResourceGroupName] <String>] [[-Location] <String>] [[-VirtualNetworkName] <String>]
18+
[[-PublicIpAddressName] <String>] [[-SecurityGroupName] <String>]
19+
```
20+
21+
## DESCRIPTION
22+
{{Fill in the Description}}
23+
24+
## EXAMPLES
25+
26+
### Example 1
27+
```
28+
PS C:\> {{ Add example code here }}
29+
```
30+
31+
{{ Add example description here }}
32+
33+
## PARAMETERS
34+
35+
### -Credential
36+
{{Fill Credential Description}}
37+
38+
```yaml
39+
Type: PSCredential
40+
Parameter Sets: (All)
41+
Aliases:
42+
43+
Required: False
44+
Position: 1
45+
Default value: None
46+
Accept pipeline input: False
47+
Accept wildcard characters: False
48+
```
49+
50+
### -ImageName
51+
{{Fill ImageName Description}}
52+
53+
```yaml
54+
Type: String
55+
Parameter Sets: (All)
56+
Aliases:
57+
58+
Required: False
59+
Position: 2
60+
Default value: None
61+
Accept pipeline input: False
62+
Accept wildcard characters: False
63+
```
64+
65+
### -Location
66+
{{Fill Location Description}}
67+
68+
```yaml
69+
Type: String
70+
Parameter Sets: (All)
71+
Aliases:
72+
73+
Required: False
74+
Position: 4
75+
Default value: None
76+
Accept pipeline input: False
77+
Accept wildcard characters: False
78+
```
79+
80+
### -Name
81+
{{Fill Name Description}}
82+
83+
```yaml
84+
Type: String
85+
Parameter Sets: (All)
86+
Aliases:
87+
88+
Required: True
89+
Position: 0
90+
Default value: None
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### -PublicIpAddressName
96+
{{Fill PublicIpAddressName Description}}
97+
98+
```yaml
99+
Type: String
100+
Parameter Sets: (All)
101+
Aliases:
102+
103+
Required: False
104+
Position: 6
105+
Default value: None
106+
Accept pipeline input: False
107+
Accept wildcard characters: False
108+
```
109+
110+
### -ResourceGroupName
111+
{{Fill ResourceGroupName Description}}
112+
113+
```yaml
114+
Type: String
115+
Parameter Sets: (All)
116+
Aliases:
117+
118+
Required: False
119+
Position: 3
120+
Default value: None
121+
Accept pipeline input: False
122+
Accept wildcard characters: False
123+
```
124+
125+
### -SecurityGroupName
126+
{{Fill SecurityGroupName Description}}
127+
128+
```yaml
129+
Type: String
130+
Parameter Sets: (All)
131+
Aliases:
132+
133+
Required: False
134+
Position: 7
135+
Default value: None
136+
Accept pipeline input: False
137+
Accept wildcard characters: False
138+
```
139+
140+
### -VirtualNetworkName
141+
{{Fill VirtualNetworkName Description}}
142+
143+
```yaml
144+
Type: String
145+
Parameter Sets: (All)
146+
Aliases:
147+
148+
Required: False
149+
Position: 5
150+
Default value: None
151+
Accept pipeline input: False
152+
Accept wildcard characters: False
153+
```
154+
155+
## INPUTS
156+
157+
### None
158+
159+
160+
## OUTPUTS
161+
162+
### System.Object
163+
164+
## NOTES
165+
166+
## RELATED LINKS
167+

0 commit comments

Comments
 (0)