Get-AzureSqlDatabaseServerQuota
取得 Azure SQL 資料庫 伺服器的配額資訊。
注意
本文件中參考的 Cmdlet 用於管理使用 Azure Service Manager(ASM) API 的舊版 Azure 資源。 建立新的資源時,不建議使用此舊版 PowerShell 模組,因為 ASM 已排定淘汰。 如需詳細資訊,請參閱 Azure Service Manager 淘汰。
Az PowerShell 模組是使用 PowerShell 管理 Azure Resource Manager (ARM) 資源的建議 PowerShell 模組。
語法
Get-AzureSqlDatabaseServerQuota
-ConnectionContext <IServerDataServiceContext>
[-QuotaName <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Get-AzureSqlDatabaseServerQuota
-ServerName <String>
[-QuotaName <String>]
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Description
Get-AzureSqlDatabaseServerQuota Cmdlet 會取得指定 Azure SQL 資料庫 Server 實例的配額資訊。 指定連接內容或伺服器名稱。 如果您未指定配額名稱,此 Cmdlet 會取得伺服器的所有配額資訊。
範例
範例 1:取得特定配額的資訊
PS C:\> $QuotaPremium = GetAzureSqlDatabaseServerQuota $Context -QuotaName "Premium_Databases"
此命令會從儲存在 $Context 變數中的連線所指定的 Azure SQL 資料庫 伺服器,取得名為 Premium_Databases 的配額。
範例 2:取得所有配額的資訊
PS C:\> $QuotaList = GetAzureSqlDatabaseServerQuota $Context
此命令會從連接$Context所指定的伺服器取得所有配額值。
參數
-ConnectionContext
指定伺服器的連接內容。
類型: | IServerDataServiceContext |
別名: | Context |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
-Profile
指定此 Cmdlet 從中讀取的 Azure 設定檔。 如果您未指定設定檔,此 Cmdlet 會從本機預設配置檔讀取。
類型: | AzureSMProfile |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | False |
接受萬用字元: | False |
-QuotaName
指定這個 Cmdlet 取得的配額值名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | False |
接受管線輸入: | True |
接受萬用字元: | False |
-ServerName
指定伺服器的名稱。
類型: | String |
Position: | Named |
預設值: | None |
必要: | True |
接受管線輸入: | True |
接受萬用字元: | False |
輸出
Microsoft.WindowsAzure.Commands.SqlDatabase.Services.Server.ServerQuota[]
備註
- 驗證:此 Cmdlet 可以使用 SQL Server 驗證或憑證式驗證。 如需設定驗證的範例,請參閱 New-AzureSqlDatabaseServerContext Cmdlet。