3.3.1. {+restconf}/data

该强制性资源表示客户端可以访问的组合配置和状态数据资源。它不能被客户创建或删除。数据存储资源类型在3.4节中定义。

例:

客户端的这个示例请求将只使用“content”查询参数(见第4.8.1节)检索“library”资源中存在的非配置数据节点。

  1. GET /restconf/data/example-jukebox:jukebox/library?content=nonconfig HTTP/1.1
  2. Host: example.com
  3. Accept: application/yang-data+xml

服务器可能会如下回应:

  1. HTTP/1.1 200 OK
  2. Date: Thu, 26 Jan 2017 20:56:30 GMT
  3. Server: example-server
  4. Cache-Control: no-cache
  5. Content-Type: application/yang-data+xml
  6. <library xmlns="https://example.com/ns/example-jukebox">
  7. <artist-count>42</artist-count>
  8. <album-count>59</album-count>
  9. <song-count>374</song-count>
  10. </library>