共用方式為


Iot Hub Resource - Get Quota Metrics

取得IoT中樞的配額計量。

GET https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Devices/IotHubs/{resourceName}/quotaMetrics?api-version=2023-06-30

URI 參數

名稱 位於 必要 類型 Description
resourceGroupName
path True

string

包含IoT中樞的資源群組名稱。

resourceName
path True

string

IoT 中樞的名稱。

subscriptionId
path True

string

訂用帳戶識別碼。

api-version
query True

string

API 的版本。

回應

名稱 類型 Description
200 OK

IotHubQuotaMetricInfoListResult

這是同步作業。 回應包含IoT中樞配額計量的 JSON 串行化數位。

Other Status Codes

ErrorDetails

DefaultErrorResponse

安全性

azure_auth

Azure Active Directory OAuth2 Flow

類型: oauth2
Flow: implicit
授權 URL: https://login.microsoftonline.com/common/oauth2/authorize

範圍

名稱 Description
user_impersonation 模擬您的用戶帳戶

範例

IotHubResource_GetQuotaMetrics

範例要求

GET https://management.azure.com/subscriptions/91d12660-3dec-467a-be2a-213b5544ddc0/resourceGroups/myResourceGroup/providers/Microsoft.Devices/IotHubs/testHub/quotaMetrics?api-version=2023-06-30

範例回覆

{
  "value": [
    {
      "name": "TotalMessages",
      "currentValue": 0,
      "maxValue": 400000
    },
    {
      "name": "TotalDeviceCount",
      "currentValue": 0,
      "maxValue": 500000
    }
  ]
}

定義

名稱 Description
ErrorDetails

錯誤詳細數據。

IotHubQuotaMetricInfo

配額計量屬性。

IotHubQuotaMetricInfoListResult

具有下一個連結的 IotHubQuotaMetricInfo 物件的 JSON 串行化陣列。

ErrorDetails

錯誤詳細數據。

名稱 類型 Description
code

string

錯誤碼。

details

string

錯誤詳細資料。

httpStatusCode

string

HTTP 狀態碼。

message

string

錯誤訊息。

IotHubQuotaMetricInfo

配額計量屬性。

名稱 類型 Description
currentValue

integer

配額計量的目前值。

maxValue

integer

配額計量的最大值。

name

string

配額計量的名稱。

IotHubQuotaMetricInfoListResult

具有下一個連結的 IotHubQuotaMetricInfo 物件的 JSON 串行化陣列。

名稱 類型 Description
nextLink

string

下一個連結。

value

IotHubQuotaMetricInfo[]

配額計量對象的陣列。