Skip to content

Commit dbf82d3

Browse files
author
VSC
committed
Sync docs from source code repo to content repo.
1 parent e8a4600 commit dbf82d3

File tree

88 files changed

+5737
-560
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+5737
-560
lines changed

latest_release_of_ResourceManager/AzureRM.Automation/Import-AzureRMAutomationRunbook.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ It is equivalent to GraphicalPowerShellWorkflow.
228228
Type: System.String
229229
Parameter Sets: (All)
230230
Aliases:
231-
Accepted values: PowerShell, GraphicalPowerShell, PowerShellWorkflow, GraphicalPowerShellWorkflow, Graph
231+
Accepted values: PowerShell, GraphicalPowerShell, PowerShellWorkflow, GraphicalPowerShellWorkflow, Graph, Python
232232

233233
Required: True
234234
Position: Named

latest_release_of_ResourceManager/AzureRM.Compute/Add-AzureRMVhd.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Uploads a virtual hard disk from an on-premises virtual machine to a blob in a c
1717

1818
```
1919
Add-AzureRmVhd [[-ResourceGroupName] <String>] [-Destination] <Uri> [-LocalFilePath] <FileInfo>
20-
[[-NumberOfUploaderThreads] <Int32>] [[-BaseImageUriToPatch] <Uri>] [-OverWrite]
20+
[[-NumberOfUploaderThreads] <Int32>] [[-BaseImageUriToPatch] <Uri>] [-OverWrite] [-AsJob]
2121
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
2222
```
2323

@@ -62,6 +62,19 @@ This command adds a .vhd file to a storage account and specifies the SAS URI.
6262

6363
## PARAMETERS
6464

65+
### -AsJob
66+
Run cmdlet in the background and return a Job to track progress.```yaml
67+
Type: System.Management.Automation.SwitchParameter
68+
Parameter Sets: (All)
69+
Aliases:
70+
71+
Required: False
72+
Position: Named
73+
Default value: False
74+
Accept pipeline input: False
75+
Accept wildcard characters: False
76+
```
77+
6578
### -BaseImageUriToPatch
6679
Specifies the URI to a base image blob in Azure Blob Storage.
6780
An SAS can be specified as the value for this parameter.

latest_release_of_ResourceManager/AzureRM.Compute/Invoke-AzureRmVMRunCommand.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ Run command on the VM.
1616

1717
### DefaultParameter (Default)
1818
```
19-
Invoke-AzureRmVMRunCommand [-ResourceGroupName] <String> [-VMName] <String> -CommandId <String>
19+
Invoke-AzureRmVMRunCommand [-AsJob] [-ResourceGroupName] <String> [-VMName] <String> -CommandId <String>
2020
[-ScriptPath <String>] [-Parameter <Hashtable>] [-DefaultProfile <IAzureContextContainer>] [-WhatIf]
2121
[-Confirm] [<CommonParameters>]
2222
```
2323

2424
### VMParameter
2525
```
26-
Invoke-AzureRmVMRunCommand -CommandId <String> [-ScriptPath <String>] [-Parameter <Hashtable>]
26+
Invoke-AzureRmVMRunCommand [-AsJob] -CommandId <String> [-ScriptPath <String>] [-Parameter <Hashtable>]
2727
[-VM] <PSVirtualMachine> [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
2828
```
2929

@@ -41,6 +41,21 @@ Invoke a run command of RunPowerShellScript with overriding the script 'sample.p
4141

4242
## PARAMETERS
4343

44+
### -AsJob
45+
Run cmdlet in the background and return a Job to track progress.
46+
47+
```yaml
48+
Type: System.Management.Automation.SwitchParameter
49+
Parameter Sets: (All)
50+
Aliases:
51+
52+
Required: False
53+
Position: Named
54+
Default value: None
55+
Accept pipeline input: False
56+
Accept wildcard characters: False
57+
```
58+
4459
### -CommandId
4560
The run command id.
4661

latest_release_of_ResourceManager/AzureRM.Compute/New-AzureRmAvailabilitySet.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Creates an Azure availability set.
1818
```
1919
New-AzureRmAvailabilitySet [-ResourceGroupName] <String> [-Name] <String> [-Location] <String>
2020
[[-PlatformUpdateDomainCount] <Int32>] [[-PlatformFaultDomainCount] <Int32>] [[-Sku] <String>] [-Managed]
21-
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
21+
[-AsJob] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
2222
```
2323

2424
## DESCRIPTION
@@ -35,6 +35,19 @@ This command creates an availability set named AvailablitySet03 in the resource
3535

3636
## PARAMETERS
3737

38+
### -AsJob
39+
Run cmdlet in the background and return a Job to track progress.```yaml
40+
Type: System.Management.Automation.SwitchParameter
41+
Parameter Sets: (All)
42+
Aliases:
43+
44+
Required: False
45+
Position: Named
46+
Default value: False
47+
Accept pipeline input: False
48+
Accept wildcard characters: False
49+
```
50+
3851
### -DefaultProfile
3952
The credentials, account, tenant, and subscription used for communication with azure.```yaml
4053
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer

latest_release_of_ResourceManager/AzureRM.Compute/New-AzureRmContainerService.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Creates a container service.
1616
## SYNTAX
1717

1818
```
19-
New-AzureRmContainerService [-ResourceGroupName] <String> [-Name] <String>
19+
New-AzureRmContainerService [-AsJob] [-ResourceGroupName] <String> [-Name] <String>
2020
[-ContainerService] <PSContainerService> [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
2121
[<CommonParameters>]
2222
```
@@ -45,6 +45,19 @@ The service is named csResourceGroup17.
4545

4646
## PARAMETERS
4747

48+
### -AsJob
49+
RRun cmdlet in the background and return a Job to track progress.```yaml
50+
Type: System.Management.Automation.SwitchParameter
51+
Parameter Sets: (All)
52+
Aliases:
53+
54+
Required: False
55+
Position: Named
56+
Default value: False
57+
Accept pipeline input: False
58+
Accept wildcard characters: False
59+
```
60+
4861
### -ContainerService
4962
Specifies a container service object that contains the properties for the new service.
5063
To obtain a **ContainerService** object, use the New-AzureRmContainerServiceConfig cmdlet.

latest_release_of_ResourceManager/AzureRM.Compute/New-AzureRmDisk.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Creates a managed disk.
1515
## SYNTAX
1616

1717
```
18-
New-AzureRmDisk [-ResourceGroupName] <String> [-DiskName] <String> [-Disk] <PSDisk>
18+
New-AzureRmDisk [-AsJob] [-ResourceGroupName] <String> [-DiskName] <String> [-Disk] <PSDisk>
1919
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
2020
```
2121

@@ -42,6 +42,19 @@ The last command takes the disk object and creates a disk with name 'Disk01' in
4242

4343
## PARAMETERS
4444

45+
### -AsJob
46+
Run cmdlet in the background and return a Job to track progress.```yaml
47+
Type: System.Management.Automation.SwitchParameter
48+
Parameter Sets: (All)
49+
Aliases:
50+
51+
Required: False
52+
Position: Named
53+
Default value: False
54+
Accept pipeline input: False
55+
Accept wildcard characters: False
56+
```
57+
4558
### -DefaultProfile
4659
The credentials, account, tenant, and subscription used for communication with azure.```yaml
4760
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer

latest_release_of_ResourceManager/AzureRM.Compute/New-AzureRmSnapshot.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Creates a snapshot.
1515
## SYNTAX
1616

1717
```
18-
New-AzureRmSnapshot [-ResourceGroupName] <String> [-SnapshotName] <String> [-Snapshot] <PSSnapshot>
18+
New-AzureRmSnapshot [-AsJob] [-ResourceGroupName] <String> [-SnapshotName] <String> [-Snapshot] <PSSnapshot>
1919
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
2020
```
2121

@@ -42,6 +42,19 @@ The last command takes the snapshot object and creates a snapshot with name 'Sna
4242

4343
## PARAMETERS
4444

45+
### -AsJob
46+
Run cmdlet in the background and return a Job to track progress.```yaml
47+
Type: System.Management.Automation.SwitchParameter
48+
Parameter Sets: (All)
49+
Aliases:
50+
51+
Required: False
52+
Position: Named
53+
Default value: False
54+
Accept pipeline input: False
55+
Accept wildcard characters: False
56+
```
57+
4558
### -DefaultProfile
4659
The credentials, account, tenant, and subscription used for communication with azure.```yaml
4760
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.IAzureContextContainer

0 commit comments

Comments
 (0)