forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate HdInsightOnAks from generation to main (Azure#25611)
* Move HdInsightOnAks to main * Update ChangeLog.md * Update SignatureIssues.csv --------- Co-authored-by: Yabo Hu <[email protected]>
- Loading branch information
1 parent
d26c1bc
commit 6981fa4
Showing
458 changed files
with
55,014 additions
and
11,687 deletions.
There are no files selected for viewing
1,496 changes: 1,459 additions & 37 deletions
1,496
src/HdInsightOnAks/HdInsightOnAks.Autorest/Az.HdInsightOnAks.format.ps1xml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/HdInsightOnAks/HdInsightOnAks.Autorest/UX/Microsoft.HDInsight/clusterpools-clusters.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/HdInsightOnAks/HdInsightOnAks.Autorest/UX/Microsoft.HDInsight/clusterpools.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 0 additions & 61 deletions
61
...sightOnAks/HdInsightOnAks.Autorest/custom/New-AzHdInsightOnAksClusterConfigFileObject.ps1
This file was deleted.
Oops, something went wrong.
68 changes: 0 additions & 68 deletions
68
...htOnAks/HdInsightOnAks.Autorest/custom/New-AzHdInsightOnAksClusterHotfixUpgradeObject.ps1
This file was deleted.
Oops, something went wrong.
70 changes: 70 additions & 0 deletions
70
...ghtOnAks/HdInsightOnAks.Autorest/custom/New-AzHdInsightOnAksClusterMavenLibraryObject.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
|
||
# ---------------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code | ||
# is regenerated. | ||
# ---------------------------------------------------------------------------------- | ||
|
||
<# | ||
.Synopsis | ||
Create an in-memory object for MavenLibraryProperties. | ||
.Description | ||
Create an in-memory object for MavenLibraryProperties. | ||
.Outputs | ||
Microsoft.Azure.PowerShell.Cmdlets.HdInsightOnAks.Models.MavenLibraryProperties | ||
.Link | ||
https://learn.microsoft.com/powershell/module/Az.HdInsightOnAks/new-azhdinsightonaksclustermavenlibraryobject | ||
#> | ||
function New-AzHdInsightOnAksClusterMavenLibraryObject { | ||
[OutputType('Microsoft.Azure.PowerShell.Cmdlets.HdInsightOnAks.Models.IClusterLibrary')] | ||
[CmdletBinding(PositionalBinding=$false)] | ||
Param( | ||
|
||
[Parameter(Mandatory, HelpMessage="GroupId of the Maven package.")] | ||
[string] | ||
$GroupId, | ||
[Parameter(Mandatory, HelpMessage="ArtifactId of the Maven package.")] | ||
[string] | ||
$Name, | ||
[Parameter(HelpMessage="Version of the Maven package.")] | ||
[string] | ||
$Version, | ||
[Parameter(HelpMessage="Remark of the latest library management operation.")] | ||
[string] | ||
$Remark | ||
) | ||
|
||
process { | ||
$Object = [Microsoft.Azure.PowerShell.Cmdlets.HdInsightOnAks.Models.MavenLibraryProperties]::New() | ||
|
||
if ($PSBoundParameters.ContainsKey('GroupId')) { | ||
$Object.GroupId = $GroupId | ||
} | ||
if ($PSBoundParameters.ContainsKey('Name')) { | ||
$Object.Name = $Name | ||
} | ||
if ($PSBoundParameters.ContainsKey('Version')) { | ||
$Object.Version = $Version | ||
} | ||
if ($PSBoundParameters.ContainsKey('Remark')) { | ||
$Object.Remark = $Remark | ||
} | ||
|
||
$LibraryObj = [Microsoft.Azure.PowerShell.Cmdlets.HdInsightOnAks.Models.ClusterLibrary]::New() | ||
|
||
$LibraryObj.Property = $Object | ||
|
||
return $LibraryObj | ||
} | ||
} | ||
|
62 changes: 0 additions & 62 deletions
62
...tOnAks/HdInsightOnAks.Autorest/custom/New-AzHdInsightOnAksClusterPoolAKSUpgradeObject.ps1
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.