Skip to content

Commit e07373c

Browse files
author
Sean Wheeler
committed
2 parents 698a078 + deaaa71 commit e07373c

File tree

4,969 files changed

+872165
-7
lines changed

Some content is hidden

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

4,969 files changed

+872165
-7
lines changed

azureps-cmdlets-docs/ResourceManager/docs-conceptual/authenticate-azureps.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ For more information about authentication and subscription management in Azure,
6262
6363
Azure PowerShell cmdlets for role management
6464
65-
* [Get-AzureRmRoleAssignment](/module/AzureRM.Resources/Get-AzureRmRoleAssignment)
66-
* [Get-AzureRmRoleDefinition](/module/AzureRM.Resources/Get-AzureRmRoleDefinition)
67-
* [New-AzureRmRoleAssignment](/module/AzureRM.Resources/New-AzureRmRoleAssignment)
68-
* [New-AzureRmRoleDefinition](/module/AzureRM.Resources/New-AzureRmRoleDefinition)
69-
* [Remove-AzureRmRoleAssignment](/module/AzureRM.Resources/Remove-AzureRmRoleAssignment)
70-
* [Remove-AzureRmRoleDefinition](/module/AzureRM.Resources/Remove-AzureRmRoleDefinition)
71-
* [Set-AzureRmRoleDefinition](/module/AzureRM.Resources/Set-AzureRmRoleDefinition)
65+
* [Get-AzureRmRoleAssignment](/powershell/module/AzureRM.Resources/Get-AzureRmRoleAssignment)
66+
* [Get-AzureRmRoleDefinition](/powershell/AzureRM.Resources/Get-AzureRmRoleDefinition)
67+
* [New-AzureRmRoleAssignment](/powershell/module/AzureRM.Resources/New-AzureRmRoleAssignment)
68+
* [New-AzureRmRoleDefinition](/powershell/AzureRM.Resources/New-AzureRmRoleDefinition)
69+
* [Remove-AzureRmRoleAssignment](/powershell//AzureRM.Resources/Remove-AzureRmRoleAssignment)
70+
* [Remove-AzureRmRoleDefinition](/powershell//AzureRM.Resources/Remove-AzureRmRoleDefinition)
71+
* [Set-AzureRmRoleDefinition](/powershell/AzureRM.Resources/Set-AzureRmRoleDefinition)
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
Module Name: Azure.Antimalware
3+
Module Guid: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
4+
Download Help Link: {{Please enter FwLink manually}}
5+
Help Version: {{Please enter version of help manually (X.X.X.X) format}}
6+
Locale: en-US
7+
ms.assetid: 37512B6C-A290-43DA-A397-D60002E7B160
8+
---
9+
10+
# Azure.Antimalware Module
11+
## Description
12+
This topic displays help topics for the Azure cmdlets for Microsoft Antimalware.
13+
14+
## Azure.Antimalware Cmdlets
15+
### [Get-AzureServiceAntimalwareConfig](./Get-AzureServiceAntimalwareConfig.md)
16+
Gets configuration details for the Microsoft Antimalware extension for a service.
17+
18+
19+
### [Get-AzureVMMicrosoftAntimalwareExtension](./Get-AzureVMMicrosoftAntimalwareExtension.md)
20+
Gets the Microsoft Antimalware extension details for a virtual machine.
21+
22+
23+
### [Remove-AzureServiceAntimalwareExtension](./Remove-AzureServiceAntimalwareExtension.md)
24+
Removes the antimalware configuration from a cloud service.
25+
26+
27+
### [Remove-AzureVMMicrosoftAntimalwareExtension](./Remove-AzureVMMicrosoftAntimalwareExtension.md)
28+
Removes the Microsoft Antimalware extension from a virtual machine.
29+
30+
31+
### [Set-AzureServiceAntimalwareExtension](./Set-AzureServiceAntimalwareExtension.md)
32+
Configures the Microsoft Antimalware extension for cloud services.
33+
34+
35+
### [Set-AzureVMMicrosoftAntimalwareExtension](./Set-AzureVMMicrosoftAntimalwareExtension.md)
36+
Configures the Microsoft Antimalware extension for a virtual machine.
37+
38+
39+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
---
2+
external help file: Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml
3+
online version:
4+
schema: 2.0.0
5+
ms.assetid: ED51D91A-9688-4595-AE4D-2D1A9A9234DF
6+
---
7+
8+
# Get-AzureServiceAntimalwareConfig
9+
10+
## SYNOPSIS
11+
Gets configuration details for the Microsoft Antimalware extension for a service.
12+
13+
## SYNTAX
14+
15+
```
16+
Get-AzureServiceAntimalwareConfig [-ServiceName] <String> [[-Slot] <String>] [-Profile <AzureProfile>]
17+
[<CommonParameters>]
18+
```
19+
20+
## DESCRIPTION
21+
The **Get-AzureServiceAntimalwareConfig** cmdlet gets the antimalware configuration and monitoring configuration details associated with the Microsoft Antimalware extension for a cloud service.
22+
23+
## EXAMPLES
24+
25+
### Example 1: Get configuration for a service
26+
```
27+
PS C:\>Get-AzureServiceAntimalwareConfig -ServiceName "ContosoService03"
28+
```
29+
30+
This command returns the antimalware configuration object for the specified service name.
31+
Because this command does not specify the *Slot* parameter, the command gets the configuration for the default slot, Production.
32+
For services that have monitoring enabled, the command also returns a monitoring configuration object.
33+
34+
### Example 2: Get configuration for a service for the Staging slot
35+
```
36+
PS C:\>Get-AzureServiceAntimalwareConfig -ServiceName "ContosoService03" -Slot "Staging"
37+
```
38+
39+
This command returns the antimalware configuration object for the specified service name.
40+
Because this command specifies a value of Staging for the *Slot* parameter, the command gets the configuration for the Staging slot.
41+
For services that have monitoring enabled, the command also returns a monitoring configuration object.
42+
43+
## PARAMETERS
44+
45+
### -ServiceName
46+
Specifies the name of the cloud service.
47+
48+
```yaml
49+
Type: String
50+
Parameter Sets: (All)
51+
Aliases:
52+
53+
Required: True
54+
Position: 0
55+
Default value: None
56+
Accept pipeline input: True (ByPropertyName)
57+
Accept wildcard characters: False
58+
```
59+
60+
### -Slot
61+
Specifies a deployment slot.
62+
Valid values are:
63+
64+
- Production
65+
- Staging
66+
67+
The default value is Production.
68+
69+
```yaml
70+
Type: String
71+
Parameter Sets: (All)
72+
Aliases:
73+
74+
Required: False
75+
Position: 1
76+
Default value: None
77+
Accept pipeline input: True (ByPropertyName)
78+
Accept wildcard characters: False
79+
```
80+
81+
### -Profile
82+
In-memory profile.
83+
84+
```yaml
85+
Type: AzureProfile
86+
Parameter Sets: (All)
87+
Aliases:
88+
89+
Required: False
90+
Position: Named
91+
Default value: None
92+
Accept pipeline input: False
93+
Accept wildcard characters: False
94+
```
95+
96+
### CommonParameters
97+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
98+
99+
## INPUTS
100+
101+
## OUTPUTS
102+
103+
## NOTES
104+
105+
## RELATED LINKS
106+
107+
[Remove-AzureServiceAntimalwareExtension](./Remove-AzureServiceAntimalwareExtension.md)
108+
109+
[Set-AzureServiceAntimalwareExtension](./Set-AzureServiceAntimalwareExtension.md)
110+
111+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
---
2+
external help file: Microsoft.WindowsAzure.Commands.ServiceManagement.dll-Help.xml
3+
online version:
4+
schema: 2.0.0
5+
ms.assetid: C8FCE2DE-0342-4690-B43B-3565A0FF0FDB
6+
---
7+
8+
# Get-AzureVMMicrosoftAntimalwareExtension
9+
10+
## SYNOPSIS
11+
Gets the Microsoft Antimalware extension details for a virtual machine.
12+
13+
## SYNTAX
14+
15+
```
16+
Get-AzureVMMicrosoftAntimalwareExtension -VM <IPersistentVM> [-Profile <AzureProfile>] [<CommonParameters>]
17+
```
18+
19+
## DESCRIPTION
20+
The **Get-AzureVMMicrosoftAntimalwareExtension** cmdlet gets the Microsoft Antimalware extension details for a virtual machine.
21+
This cmdlet gets details for virtual machines that have the extension turned on programmatically by using the **Set-AzureVMMicrosoftAntimalwareExtension** cmdlet.
22+
**Get-AzureVMMicrosoftAntimalwareExtension** gets the JavaScript Object Notation (JSON) equivalent for the configuration.
23+
If monitoring is turned on, the cmdlet also gets an XML representation of the antimalware monitoring configuration.
24+
25+
## EXAMPLES
26+
27+
### Example 1: Get information for the extension for a virtual machine
28+
```
29+
PS C:\>Get-AzureVM -ServiceName "ContosoService03" -Name "ContosoVM22" | Get-AzureVMMicrosoftAntimalwareExtension
30+
```
31+
32+
This command gets details for the Microsoft Antimalware extension for a virtual machine.
33+
The command uses the **Get-AzureVM** cmdlet to get the specified virtual machine object, and then passes the object to the current cmdlet by using the pipeline operator.
34+
**Get-AzureVMMicrosoftAntimalwareExtension** gets configuration information for the extension.
35+
36+
The configuration information appears in the output field labeled **AntimalwareConfiguration**.
37+
The configuration information for monitoring appears in the output field labeled **AntimalwareMonitoringConfiguration**.
38+
39+
## PARAMETERS
40+
41+
### -VM
42+
Specifies the virtual machine as an **IPersistentVM** object.
43+
44+
```yaml
45+
Type: IPersistentVM
46+
Parameter Sets: (All)
47+
Aliases: InputObject
48+
49+
Required: True
50+
Position: Named
51+
Default value: None
52+
Accept pipeline input: True (ByPropertyName, ByValue)
53+
Accept wildcard characters: False
54+
```
55+
56+
### -Profile
57+
In-memory profile.
58+
59+
```yaml
60+
Type: AzureProfile
61+
Parameter Sets: (All)
62+
Aliases:
63+
64+
Required: False
65+
Position: Named
66+
Default value: None
67+
Accept pipeline input: False
68+
Accept wildcard characters: False
69+
```
70+
71+
### CommonParameters
72+
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
73+
74+
## INPUTS
75+
76+
### IPersistentVM
77+
A virtual machine object.
78+
79+
## OUTPUTS
80+
81+
### VirtualMachineMicrosoftAntimalwareExtensionContext
82+
A context object that includes the JSON antimalware configuration.
83+
If monitoring is turned on, the object includes an XML representation of the antimalware monitoring configuration.
84+
85+
## NOTES
86+
87+
## RELATED LINKS
88+
89+
[Get-AzureVM](../../Azure.Service/v0.9.8/Get-AzureVM.md)
90+
91+
[Remove-AzureVMMicrosoftAntimalwareExtension](./Remove-AzureVMMicrosoftAntimalwareExtension.md)
92+
93+
[Set-AzureVMMicrosoftAntimalwareExtension](./Set-AzureVMMicrosoftAntimalwareExtension.md)
94+
95+

0 commit comments

Comments
 (0)