Skip to content

Commit

Permalink
Help template
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-shandar committed Sep 14, 2017
1 parent 82731a3 commit 35915ea
Show file tree
Hide file tree
Showing 3 changed files with 169 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = ".\AzureRM.Compute.Experiments.psm1"

# Version number of this module.
ModuleVersion = '1.0.1'
ModuleVersion = '1.0.2'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function New-AzVm {
[Parameter()][string] $Location,
[Parameter()][string] $VirtualNetworkName,
[Parameter()][string] $PublicIpAddressName,
[Parameter()][string] $SecurityGroupName,
[Parameter()][string] $SecurityGroupName
# [Parameter()][string] $NetworkInterfaceName
)

Expand Down
167 changes: 167 additions & 0 deletions experiments/Compute.Experiments/docs/New-AzVm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,167 @@
---
external help file: AzureRM.Compute.Experiments-help.xml
Module Name: AzureRM.Compute.Experiments
online version:
schema: 2.0.0
---

# New-AzVm

## SYNOPSIS
{{Fill in the Synopsis}}

## SYNTAX

```
New-AzVm [-Name] <String> [[-Credential] <PSCredential>] [[-ImageName] <String>]
[[-ResourceGroupName] <String>] [[-Location] <String>] [[-VirtualNetworkName] <String>]
[[-PublicIpAddressName] <String>] [[-SecurityGroupName] <String>]
```

## DESCRIPTION
{{Fill in the Description}}

## EXAMPLES

### Example 1
```
PS C:\> {{ Add example code here }}
```

{{ Add example description here }}

## PARAMETERS

### -Credential
{{Fill Credential Description}}

```yaml
Type: PSCredential
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -ImageName
{{Fill ImageName Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Location
{{Fill Location Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -Name
{{Fill Name Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -PublicIpAddressName
{{Fill PublicIpAddressName Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -ResourceGroupName
{{Fill ResourceGroupName Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -SecurityGroupName
{{Fill SecurityGroupName Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### -VirtualNetworkName
{{Fill VirtualNetworkName Description}}
```yaml
Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
## INPUTS
### None
## OUTPUTS
### System.Object
## NOTES
## RELATED LINKS

0 comments on commit 35915ea

Please sign in to comment.