GET – SNMPv3-{N}-{M} 的事件订阅
使用 GET 方法检索服务器的事件订阅条目中的属性。
请求 URL
GET https://<BMC_IPADDR>/redfish/v1/EventService/Subscriptions/REST-SNMPv3-{N}-{M}
请求正文
无
响应正文
字段 | 类型 | 描述 | ||||||
---|---|---|---|---|---|---|---|---|
Id | 字符串 | REST-SMTPv3-{N}-{M},其中 N 是介于 1 - 12 之间的帐户索引,M 是介于 1-3 之间的订阅索引。 | ||||||
Name | 字符串 | SNMPv3 的用户名。 | ||||||
Context | 字符串 | 空字符串。 | ||||||
Status | 对象 | 已展开 | ||||||
State | 字符串 | 此订阅的状态。可能的值为“Enabled”和“Disabled”。 | ||||||
EventFormatType | 布尔 | “Event” | ||||||
Destination | 字符串 | 此属性应包含要将事件发送到的目标的 URI。 | ||||||
SubscriptionType | 字符串 | “SNMPTrap” | ||||||
Description | 数组 | “This resource represents an event destination for a Redfish implementation.” | ||||||
Protocol | 字符串 | “SNMPv3” | ||||||
SNMP | 对象 | 已展开 | ||||||
TrapCommunity | 字符串 | null |
状态代码
HTTP 状态代码 | 错误消息 ID |
---|---|
500 | InternalError |
示例
返回以下示例 JSON 响应:
{
"SubscriptionType": "SNMPTrap",
"@odata.etag": "\"3f6d1b3b4bba27279a2\"",
"Id": "REST-SNMPv3-3-1",
"Name": "test",
"@odata.type": "#EventDestination.v1_11_2.EventDestination",
"@odata.id": "/redfish/v1/EventService/Subscriptions/REST-SNMPv3-3-1",
"Status": {
"State": "Enabled"
},
"EventFormatType": "Event",
"@odata.context": "/redfish/v1/$metadata#EventDestination.EventDestination",
"Context": "",
"Protocol": "SNMPv3",
"Destination": "snmp://test@10.10.10.10",
"Description": "This resource represents an event destination for a Redfish implementation.",
"SNMP": {
"TrapCommunity": null
}
}
提供反馈