зеркало из https://github.com/Azure/benchpress.git
49 строки
1.1 KiB
PowerShell
49 строки
1.1 KiB
PowerShell
# INLINE_SKIP
|
|
using module ./../Classes/ConfirmResult.psm1
|
|
|
|
. $PSScriptRoot/../Private/Connect-Account.ps1
|
|
# end INLINE_SKIP
|
|
|
|
function Confirm-AksCluster {
|
|
<#
|
|
.SYNOPSIS
|
|
Confirms that an AKS Cluster exists.
|
|
|
|
.DESCRIPTION
|
|
The Confirm-AzBPAksCluster cmdlet gets an AKS Cluster using the specified AKS Cluster and Resource Group names.
|
|
|
|
.PARAMETER AKSName
|
|
The name of the AKS Cluster.
|
|
|
|
.PARAMETER ResourceGroupName
|
|
The name of the Resource Group. The name is case insensitive.
|
|
|
|
.EXAMPLE
|
|
Confirm-AzBPAksCluster -AKSName "benchpresstest" -ResourceGroupName "rgbenchpresstest"
|
|
|
|
.INPUTS
|
|
System.String
|
|
|
|
.OUTPUTS
|
|
ConfirmResult
|
|
#>
|
|
[CmdletBinding()]
|
|
[OutputType([ConfirmResult])]
|
|
param (
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$AksName,
|
|
|
|
[Parameter(Mandatory=$true)]
|
|
[string]$ResourceGroupName
|
|
)
|
|
Begin {
|
|
$connectResults = Connect-Account
|
|
}
|
|
Process {
|
|
$resource = Get-AzAksCluster -ResourceGroupName $ResourceGroupName -Name $AksName
|
|
|
|
[ConfirmResult]::new($resource, $connectResults.AuthenticationData)
|
|
}
|
|
End { }
|
|
}
|