Querying NMS Resource Information

Function

This interface is used to query NMS resource information.

Syntax

Operation type: GET

URL: https://device_ip/redfish/v1/NetManager

Request header:

X-Auth-Token: auth_value

Request message body: None

Usage Guidelines

None

Example

Request:

GET https://10.10.10.10/redfish/v1/NetManager

Request header:

X-Auth-Token: auth_value

Request message body: None

Response:
  • The NMS mode is web.
    {
        "@odata.context": "/redfish/v1/$metadata#NetManager",
        "@odata.id": "/redfish/v1/NetManager",
        "@odata.type": "#MindXEdgeNetManager.v1_0_0.MindXEdgeNetManager",
        "Id": "NetManager",
        "Name": "NetManager",
        "NetManager": "Web",
        "NetIP": "",
        "Port": "",
        "NetAccount": "",
        "ServerName": "",
        "ConnectStatus": "not_configured",
        "NodeID": {
            "@odata.id": "/redfish/v1/NetManager/NodeID"
        },
        "QueryFdCert": {
            "@odata.id": "/redfish/v1/NetManager/QueryFdCert"
        },
        "Actions": {
            "#ImportFdCert": {
                "target": "/redfish/v1/NetManager/ImportFdCert"
            },
            "#ImportFdCrl": {
                "target": "/redfish/v1/NetManager/ImportFdCrl"
            }
        }
    }
  • The NMS mode is FusionDirector.
    {
        "@odata.context": "/redfish/v1/$metadata#NetManager",
        "@odata.id": "/redfish/v1/NetManager",
        "@odata.type": "#MindXEdgeNetManager.v1_0_0.MindXEdgeNetManager",
        "Id": "NetManager",
        "Name": "NetManager",
        "NetManager": "FusionDirector",
        "NetIP": "xx.xx.xx.xx",
        "Port": "443",
        "NetAccount": "2102312NNUN0L6000008",
        "ServerName": "fd.fusiondirector.huawei.com",
        "ConnectStatus": "connected",
        "NodeID": {
            "@odata.id": "/redfish/v1/NetManager/NodeID"
        },
        "QueryFdCert": {
            "@odata.id": "/redfish/v1/NetManager/QueryFdCert"
        },
        "Actions": {
            "#ImportFdCert": {
                "target": "/redfish/v1/NetManager/ImportFdCert"
            },
            "#ImportFdCrl": {
                "target": "/redfish/v1/NetManager/ImportFdCrl"
            }
        }
    }

Output Description

Table 1 Operation output description

Field

Type

Description

@odata.context

Character string

OData description of the current resource model. This is a fixed field of the northbound interface.

@odata.id

Character string

Path to access the current resource node. This is a fixed field of the northbound interface.

@odata.type

Character string

Type of the current resource. This is a fixed field of the northbound interface.

Id

Character string

ID of the current resource. This is a fixed field of the northbound interface.

Name

Character string

Name of the current resource. This is a fixed field of the northbound interface.

NetManager

Character string

NMS mode. The options are as follows:

  • Web: managed by the Atlas IES.
  • FusionDirector: managed by FusionDirector.

NetIP

Character string

Interconnection IP address. This parameter is valid only when FusionDirector is selected.

Port

Character string

Interconnection port number. This parameter is valid only when FusionDirector is selected.

NetAccount

Character string

Interconnection account. This parameter is valid only when FusionDirector is selected.

ServerName

Character string

Server name. This parameter is valid only when FusionDirector is selected.

ConnectStatus

Character string

Interconnection status. The options are as follows:
  • not_configured: not configured
  • connecting: connecting
  • connected: connected
  • error_configured: the configuration is incorrect.

NodeID

Object

Path to access a NodeID interface resource.

QueryFdCert

Object

Path to access a root certificate interface resource.

Actions

Object

Operations that can be performed.

Actions.#ImportFdCert

Object

Access path for importing the root certificate.

Actions.#ImportFdCrl

Object

Access path for importing the revocation list.