Skip to content

Commit 1115f68

Browse files
aim-for-betterZhenyu Zhou
andauthored
[HDInsight]Add properties: Fqdn and EffectiveDiskEncryptionKeyUrl in AzureHDInsightHostInfo (#13771)
* Add properties: `Fqdn` and `EffectiveDiskEncryptionKeyUrl` in AzureHDInsightHostInfo.\n Update related session records.\n Update other cmdlets's help doc. * Update changelog Co-authored-by: Zhenyu Zhou <[email protected]>
1 parent 785b3d7 commit 1115f68

29 files changed

+770
-1381
lines changed

src/HDInsight/HDInsight.Test/HDInsight.Test.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<ItemGroup>
1414
<PackageReference Include="Microsoft.Azure.KeyVault" Version="3.0.5" />
15-
<PackageReference Include="Microsoft.Azure.Management.HDInsight" Version="6.0.0" />
15+
<PackageReference Include="Microsoft.Azure.Management.HDInsight" Version="6.1.0" />
1616
<PackageReference Include="Microsoft.Azure.Management.HDInsight.Job" Version="2.0.7" />
1717
<PackageReference Include="Microsoft.Azure.Management.KeyVault" Version="3.1.0-preview.2" />
1818
<PackageReference Include="Microsoft.Azure.Management.ManagedServiceIdentity" Version="0.11.0" />

src/HDInsight/HDInsight.Test/ScenarioTests/HDInsightHostTests.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ function Test-HostRelatedCommands{
3333
-MinSupportedTlsVersion $params.minSupportedTlsVersion
3434
Assert-NotNull $cluster
3535

36-
#test Get-AzHDInsightHost
36+
# test Get-AzHDInsightHost
3737
$result = Get-AzHDInsightHost -ClusterName $cluster.Name
3838
Assert-NotNull $result
3939

40-
#test Restart-AzHDInsightHost
40+
# test Restart-AzHDInsightHost
4141
$workernode1= $result|Where-Object {$_.Name -like "wn1*"}
4242
$resizeCluster = $workernode1 | Restart-AzHDInsightHost -ClusterName $cluster.Name
4343
}

src/HDInsight/HDInsight.Test/SessionRecords/Commands.HDInsight.Test.ScenarioTests.HDInsightHostTests/TestHostRelatedCommands.json

Lines changed: 699 additions & 1323 deletions
Large diffs are not rendered by default.

src/HDInsight/HDInsight/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+
Add properties: Fqdn and EffectiveDiskEncryptionKeyUrl in the class AzureHDInsightHostInfo.
2122

2223
## Version 4.1.0
2324

src/HDInsight/HDInsight/HDInsight.csproj

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

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.Azure.Management.HDInsight" Version="6.0.0" />
14+
<PackageReference Include="Microsoft.Azure.Management.HDInsight" Version="6.1.0" />
1515
<PackageReference Include="Microsoft.Azure.Management.HDInsight.Job" Version="2.0.7" />
1616
<PackageReference Include="WindowsAzure.Storage" Version="9.3.0" />
1717
</ItemGroup>

src/HDInsight/HDInsight/Models/Management/AzureHDInsightHostInfo.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,23 @@ public class AzureHDInsightHostInfo
2121
public AzureHDInsightHostInfo(HostInfo hostInfo)
2222
{
2323
name = hostInfo?.Name;
24+
Fqdn = hostInfo?.Fqdn;
25+
EffectiveDiskEncryptionKeyUrl = hostInfo?.EffectiveDiskEncryptionKeyUrl;
2426
}
2527

2628
/// <summary>
2729
/// The name of hosts.
2830
/// </summary>
2931
public string name { get; set; }
32+
33+
/// <summary>
34+
/// The full qualified dns name.
35+
/// </summary>
36+
public string Fqdn { get; set; }
37+
38+
/// <summary>
39+
/// The effective disk encryption key url.
40+
/// </summary>
41+
public string EffectiveDiskEncryptionKeyUrl { get; set; }
3042
}
3143
}

src/HDInsight/HDInsight/help/Add-AzHDInsightClusterIdentity.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ Adds a cluster identity to a cluster configuration object.
1717
```
1818
Add-AzHDInsightClusterIdentity [-Config] <AzureHDInsightConfig> [-ObjectId] <Guid>
1919
[-CertificateFilePath] <String> [-CertificatePassword] <String> [[-AadTenantId] <Guid>]
20-
[-ApplicationId <Guid>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
20+
[[-ApplicationId] <Guid>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
2121
```
2222

2323
### CertificateFileContents
2424
```
2525
Add-AzHDInsightClusterIdentity [-Config] <AzureHDInsightConfig> [-ObjectId] <Guid>
2626
[-CertificateFileContents] <Byte[]> [-CertificatePassword] <String> [[-AadTenantId] <Guid>]
27-
[-ApplicationId <Guid>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
27+
[[-ApplicationId] <Guid>] [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
2828
```
2929

3030
## DESCRIPTION
@@ -106,7 +106,7 @@ Parameter Sets: (All)
106106
Aliases:
107107

108108
Required: False
109-
Position: Named
109+
Position: 5
110110
Default value: None
111111
Accept pipeline input: False
112112
Accept wildcard characters: False

src/HDInsight/HDInsight/help/Add-AzHDInsightComponentVersion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 774848C9-47A1-4C43-B6FA-B3C0C3C76470
@@ -152,7 +152,7 @@ Accept wildcard characters: False
152152
```
153153
154154
### CommonParameters
155-
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).
155+
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).
156156
157157
## INPUTS
158158

src/HDInsight/HDInsight/help/Add-AzHDInsightStorage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 2C2AF43D-18BF-4036-A355-FC27E406B18A
@@ -134,7 +134,7 @@ Accept wildcard characters: False
134134
```
135135
136136
### CommonParameters
137-
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).
137+
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).
138138
139139
## INPUTS
140140

src/HDInsight/HDInsight/help/Get-AzHDInsightHost.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ Lists the hosts of the HDInsight cluster.
1515
### SetByNameParameterSet (Default)
1616
```
1717
Get-AzHDInsightHost [[-ResourceGroupName] <String>] [-ClusterName] <String>
18-
[[-DefaultProfile] <IAzureContextContainer>] [<CommonParameters>]
18+
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
1919
```
2020

2121
### SetByResourceIdParameterSet
2222
```
23-
Get-AzHDInsightHost [-ResourceId] <String> [[-DefaultProfile] <IAzureContextContainer>] [<CommonParameters>]
23+
Get-AzHDInsightHost [-ResourceId] <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
2424
```
2525

2626
### SetByInputObjectParameterSet
2727
```
28-
Get-AzHDInsightHost [-InputObject] <AzureHDInsightCluster> [[-DefaultProfile] <IAzureContextContainer>]
28+
Get-AzHDInsightHost [-InputObject] <AzureHDInsightCluster> [-DefaultProfile <IAzureContextContainer>]
2929
[<CommonParameters>]
3030
```
3131

src/HDInsight/HDInsight/help/Get-AzHDInsightJob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: AFE90092-8B25-4897-8D3A-3E732CC5CBA6
@@ -138,7 +138,7 @@ Accept wildcard characters: False
138138
```
139139
140140
### CommonParameters
141-
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).
141+
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).
142142
143143
## INPUTS
144144

src/HDInsight/HDInsight/help/Get-AzHDInsightJobOutput.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 5871C962-27D7-4EC8-927E-D4CAE5F23C58
@@ -189,7 +189,7 @@ Accept wildcard characters: False
189189
```
190190
191191
### CommonParameters
192-
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).
192+
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).
193193
194194
## INPUTS
195195

src/HDInsight/HDInsight/help/Get-AzHDInsightPersistedScriptAction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 2B7C1B83-EEEA-4BD1-9E9B-1F3070295995
@@ -93,7 +93,7 @@ Accept wildcard characters: False
9393
```
9494
9595
### CommonParameters
96-
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).
96+
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).
9797
9898
## INPUTS
9999

src/HDInsight/HDInsight/help/Get-AzHDInsightScriptActionHistory.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: CE690DB0-0CD4-4841-B219-C208173D4730
@@ -93,7 +93,7 @@ Accept wildcard characters: False
9393
```
9494
9595
### CommonParameters
96-
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).
96+
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).
9797
9898
## INPUTS
9999

src/HDInsight/HDInsight/help/Invoke-AzHDInsightHiveJob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 3C6DCC81-82F7-4044-AFBC-4EE1BCC306F2
@@ -245,7 +245,7 @@ Accept wildcard characters: False
245245
```
246246
247247
### CommonParameters
248-
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).
248+
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).
249249
250250
## INPUTS
251251

src/HDInsight/HDInsight/help/New-AzHDInsightHiveJobDefinition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 580D3388-4E18-4E67-866F-1FCF5E54AB3A
@@ -186,7 +186,7 @@ Accept wildcard characters: False
186186
```
187187
188188
### CommonParameters
189-
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).
189+
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).
190190
191191
## INPUTS
192192

src/HDInsight/HDInsight/help/New-AzHDInsightMapReduceJobDefinition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 6BF6F9A7-BED3-4CCE-9E0A-46ECBFF55DA9
@@ -179,7 +179,7 @@ Accept wildcard characters: False
179179
```
180180
181181
### CommonParameters
182-
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).
182+
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).
183183
184184
## INPUTS
185185

src/HDInsight/HDInsight/help/New-AzHDInsightPigJobDefinition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: B9BA5FD1-A4F8-4E24-8FCB-847649B82AB6
@@ -138,7 +138,7 @@ Accept wildcard characters: False
138138
```
139139
140140
### CommonParameters
141-
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).
141+
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).
142142
143143
## INPUTS
144144

src/HDInsight/HDInsight/help/New-AzHDInsightSqoopJobDefinition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 4ED47646-542B-4983-B46B-B603BE33D499
@@ -132,7 +132,7 @@ Accept wildcard characters: False
132132
```
133133
134134
### CommonParameters
135-
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).
135+
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).
136136
137137
## INPUTS
138138

src/HDInsight/HDInsight/help/New-AzHDInsightStreamingMapReduceJobDefinition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 17CB76E7-2F91-4EFE-9DA3-F083F02235E1
@@ -214,7 +214,7 @@ Accept wildcard characters: False
214214
```
215215
216216
### CommonParameters
217-
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).
217+
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).
218218
219219
## INPUTS
220220

src/HDInsight/HDInsight/help/Remove-AzHDInsightCluster.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ This command removes the cluster named your-hadoop-001.
3939
Specifies the name of the cluster.
4040

4141
```yaml
42-
Type: String
42+
Type: System.String
4343
Parameter Sets: (All)
4444
Aliases:
4545

@@ -54,7 +54,7 @@ Accept wildcard characters: False
5454
The credentials, account, tenant, and subscription used for communication with azure
5555
5656
```yaml
57-
Type: IAzureContextContainer
57+
Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer
5858
Parameter Sets: (All)
5959
Aliases: AzContext, AzureRmContext, AzureCredential
6060

@@ -65,11 +65,11 @@ Accept pipeline input: False
6565
Accept wildcard characters: False
6666
```
6767
68-
### -ResourceGroupName
69-
Specifies the name of the resource group.
68+
### -PassThru
69+
If PassThru is present, output the result
7070
7171
```yaml
72-
Type: String
72+
Type: System.Management.Automation.SwitchParameter
7373
Parameter Sets: (All)
7474
Aliases:
7575

@@ -80,11 +80,11 @@ Accept pipeline input: False
8080
Accept wildcard characters: False
8181
```
8282
83-
### -PassThru
84-
If PassThru is present, output the result
83+
### -ResourceGroupName
84+
Specifies the name of the resource group.
8585
8686
```yaml
87-
Type: SwitchParameter
87+
Type: System.String
8888
Parameter Sets: (All)
8989
Aliases:
9090

src/HDInsight/HDInsight/help/Remove-AzHDInsightPersistedScriptAction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 08D1D6AC-D064-4E2D-9C22-0B65E7BE4DA7
@@ -96,7 +96,7 @@ Accept wildcard characters: False
9696
```
9797
9898
### CommonParameters
99-
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).
99+
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).
100100
101101
## INPUTS
102102

src/HDInsight/HDInsight/help/Set-AzHDInsightClusterSize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: A9A8C4B9-6346-4186-9D73-3A56437BFB2F
@@ -93,7 +93,7 @@ Accept wildcard characters: False
9393
```
9494
9595
### CommonParameters
96-
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).
96+
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).
9797
9898
## INPUTS
9999

src/HDInsight/HDInsight/help/Set-AzHDInsightPersistedScriptAction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 92F21752-4FB6-4162-B542-DA25ACA3340B
@@ -99,7 +99,7 @@ Accept wildcard characters: False
9999
```
100100
101101
### CommonParameters
102-
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).
102+
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).
103103
104104
## INPUTS
105105

src/HDInsight/HDInsight/help/Start-AzHDInsightJob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
---
22
external help file: Microsoft.Azure.PowerShell.Cmdlets.HDInsight.dll-Help.xml
33
Module Name: Az.HDInsight
44
ms.assetid: 0225C7CA-74B4-4ACC-870C-9539DF6ECC47
@@ -122,7 +122,7 @@ Accept wildcard characters: False
122122
```
123123
124124
### CommonParameters
125-
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).
125+
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).
126126
127127
## INPUTS
128128

0 commit comments

Comments
 (0)