Skip to content

Commit fbcb08b

Browse files
committed
Merge branch 'master' of https://github.com/Azure/azure-powershell into xynoclafe/exportTemplateSDK
2 parents 24e6df4 + c707f29 commit fbcb08b

File tree

10 files changed

+55
-9
lines changed

10 files changed

+55
-9
lines changed

src/Automation/Automation/help/Get-AzAutomationDscNodeReport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The **Get-AzAutomationDscNodeReport** cmdlet gets reports sent from an APS Desir
4040
### Example 1: Get all reports for a DSC node
4141
```
4242
PS C:\>$Node = Get-AzAutomationDscNode -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -Name "Computer14"
43-
PS C:\> Get-AzAutomationDscNodeReport -ResourceGroupName "ResourceGroup14" -AutomationAccountName "Contoso17" -NodeId $Node.Id
43+
PS C:\> Get-AzAutomationDscNodeReport -ResourceGroupName "ResourceGroup03" -AutomationAccountName "Contoso17" -NodeId $Node.Id
4444
```
4545

4646
The first command gets the DSC node for the computer named Computer14 in the Automation account named Contoso17.

src/DataLakeAnalytics/DataLakeAnalytics/help/Add-AzDataLakeAnalyticsDataSource.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,21 @@ The **Add-AzDataLakeAnalyticsDataSource** cmdlet adds a data source to an Azure
3131
## EXAMPLES
3232

3333
### Example 1: Add a data source to an account
34-
```
34+
```powershell
3535
PS C:\>Add-AzDataLakeAnalyticsDataSource -Account "ContosoAdlA" -DataLakeStore "ContosoAdlS"
3636
```
3737

3838
This command adds a Data Lake Store data source to a Data Lake Analytics account.
3939

40+
### Example 2
41+
42+
Adds a data source to a Data Lake Analytics account. (autogenerated)
43+
44+
<!-- Aladdin Generated Example -->
45+
```powershell
46+
Add-AzDataLakeAnalyticsDataSource -AccessKey '...newaccesskey...' -Account 'ContosoAdlA' -Blob 'AzureStorage01'
47+
```
48+
4049
## PARAMETERS
4150

4251
### -AccessKey

src/DataLakeAnalytics/DataLakeAnalytics/help/Set-AzDataLakeAnalyticsAccount.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,21 @@ The **Set-AzDataLakeAnalyticsAccount** cmdlet modifies an Azure Data Lake Analyt
2626
## EXAMPLES
2727

2828
### Example 1: Modify the data source of an account
29-
```
29+
```powershell
3030
PS C:\>Set-AzDataLakeAnalyticsAccount -Name "ContosoAdlAcct" -DefaultDataLakeStore "ContosoAdlStore01" -Tags @{"stage"="production"}
3131
```
3232

3333
This command changes the default data source and the Tags property of the account.
3434

35+
### Example 2
36+
37+
Modifies a Data Lake Analytics account. (autogenerated)
38+
39+
<!-- Aladdin Generated Example -->
40+
```powershell
41+
Set-AzDataLakeAnalyticsAccount -AllowAzureIpState Enabled -FirewallState Enabled -Name 'ContosoAdlAcct' -ResourceGroupName myresourcegroup
42+
```
43+
3544
## PARAMETERS
3645

3746
### -AllowAzureIpState

src/DataLakeStore/DataLakeStore/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Update ADLS dataplane SDK to 1.2.4-alpha. Changes:https://github.com/Azure/azure-data-lake-store-net/blob/preview-alpha/CHANGELOG.md#version-124-alpha
2122

2223
## Version 1.2.8
2324
* Added breaking change description for `Export-AzDataLakeStoreItem` and `Import-AzDataLakeStoreItem`

src/DataLakeStore/DataLakeStore/DataLakeStore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="Microsoft.Azure.DataLake.Store" Version="1.2.3-alpha" />
15+
<PackageReference Include="Microsoft.Azure.DataLake.Store" Version="1.2.4-alpha" />
1616
<PackageReference Include="Microsoft.Azure.Management.DataLake.Store" Version="2.4.2-preview" />
1717
<PackageReference Include="NLog" Version="4.5.0" />
1818
<PackageReference Include="System.Buffers" Version="4.3.0" />

src/Network/Network/help/Set-AzNetworkWatcherConfigFlowLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ Accept wildcard characters: False
429429
```
430430
431431
### -TrafficAnalyticsInterval
432-
Gets or sets the interval (in minutes) which would decide how frequently TA service should do flow analytics.
432+
Gets or sets the interval (in minutes) which would decide how frequently TA service should do flow analytics. Supported values are 10 and 60 minutes.
433433
434434
```yaml
435435
Type: System.Int32

src/NotificationHubs/NotificationHubs/help/Get-AzNotificationHub.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,21 @@ Other cmdlets, such as Get-AzNotificationHubAuthorizationRules, Get-AzNotificati
3030
## EXAMPLES
3131

3232
### Example 1: Get information for all notification hubs in a specific namespace
33-
```
33+
```powershell
3434
PS C:\>Get-AzNotificationHub -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup"
3535
```
3636

3737
This command gets information for all the notification hubs in the namespace named ContosoNamespace that have been assigned to the resource group ContosoNotificationsGroup.
3838

39+
### Example 2
40+
41+
Gets information about your notification hubs. (autogenerated)
42+
43+
<!-- Aladdin Generated Example -->
44+
```powershell
45+
Get-AzNotificationHub -Namespace 'ContosoNamespace' -NotificationHub 'ContosoInternalHub' -ResourceGroup 'ContosoNotificationsGroup'
46+
```
47+
3948
## PARAMETERS
4049

4150
### -DefaultProfile

src/NotificationHubs/NotificationHubs/help/Set-AzNotificationHub.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,23 @@ When used in conjunction with the **Set-AzNotificationHub** cmdlet, the precedin
4343
## EXAMPLES
4444

4545
### Example 1: Modify the property values for a notification hub
46-
```
46+
```powershell
4747
PS C:\>Set-AzNotificationHub -Namespace "ContosoNamespace" -ResourceGroup "ContosoNotificationsGroup" -InputFile "C:\Configuration\Hubs.json"
4848
```
4949

5050
This command modifies the property values for a notification hub found in the ContosoNamespace namespace and assigned it to the resource group ContosoNotificationsGroup.
5151
The property values, as well as the name of the hub to be modified, are not specified in the command.
5252
Instead, that information is contained in the input file C:\Configuration\Hubs.json.
5353

54+
### Example 2
55+
56+
Sets property values for a notification hub. (autogenerated)
57+
58+
<!-- Aladdin Generated Example -->
59+
```powershell
60+
Set-AzNotificationHub -Namespace 'ContosoNamespace' -NotificationHubObj <NotificationHubAttributes> -ResourceGroup 'ContosoNotificationsGroup'
61+
```
62+
5463
## PARAMETERS
5564

5665
### -DefaultProfile

src/ServiceFabric/ServiceFabric/help/Remove-AzServiceFabricNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Use **Remove-AzServiceFabricNode** to remove nodes from a specific node type fro
2424

2525
### Example 1
2626
```powershell
27-
PS c:> Remove-AzServiceFabricNode -ResourceGroupName 'Group1' -Name 'Contoso01SFCluster' -NodeTypeName 'nt1' -NumberOfNodesToRemove 2
27+
PS c:> Remove-AzServiceFabricNode -ResourceGroupName 'Group1' -Name 'Contoso01SFCluster' -NodeType 'nt1' -NumberOfNodesToRemove 2
2828
```
2929

3030
This command will remove 2 nodes from the NodeType 'nt1'.

src/ServiceFabric/ServiceFabric/help/Update-AzServiceFabricReliability.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,21 @@ Use **Update-AzServiceFabricReliability** to update reliability of the primary n
2424
## EXAMPLES
2525

2626
### Example 1
27-
```
27+
```powershell
2828
PS c:> Update-AzServiceFabricReliability -ResourceGroupName 'Group1' -Name 'Contoso01SFCluster' -ReliabilityLevel Silver
2929
```
3030

3131
This command changes the reliability tier of the primary node type to silver.
3232

33+
### Example 2
34+
35+
Update the reliability tier of the primary node type in a cluster. (autogenerated)
36+
37+
<!-- Aladdin Generated Example -->
38+
```powershell
39+
Update-AzServiceFabricReliability -AutoAddNode -Name 'Contoso01SFCluster' -ReliabilityLevel None -ResourceGroupName 'Group1'
40+
```
41+
3342
## PARAMETERS
3443

3544
### -AutoAddNode

0 commit comments

Comments
 (0)