Configuring Event History Buffers for PIM6

Configuring the IPv6 PIM Event-History Buffers for Assert-Receive Events

Configuring the IPv6 PIM Event-History Buffers for Assert-Receive Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "assertRcv"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>assertRcv</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history assert-receive size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for Assert-Receive Events

Deleting the IPv6 PIM Event-History Buffers for Assert-Receive Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "assertRcv"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>assertRcv</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history assert-receive size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for Hello Events

Configuring the IPv6 PIM Event-History Buffers for Hello Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "hello"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>hello</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history hello size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for Hello Events

Deleting the IPv6 PIM Event-History Buffers for Hello Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "hello"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>hello</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history hello size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for Join-Prune Events

Configuring the IPv6 PIM Event-History Buffers for Join-Prune Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "joinPrune"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>joinPrune</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history join-prune size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for Join-Prune Events

Deleting the IPv6 PIM Event-History Buffers for Join-Prune Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "joinPrune"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>joinPrune</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history join-prune size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for Null-Register Events

Configuring the IPv6 PIM Event-History Buffers for Null-Register Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "nullReg"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>nullReg</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history null-register size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for Null-Register Events

Deleting the IPv6 PIM Event-History Buffers for Null-Register Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "nullReg"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>nullReg</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history null-register size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for Packet Events

Configuring the IPv6 PIM Event-History Buffers for Packet Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "packet"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>packet</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history packet size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for Packet Events

Deleting the IPv6 PIM Event-History Buffers for Packet Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "packet"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>packet</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history packet size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for PIM6-Internal Events

Configuring the IPv6 PIM Event-History Buffers for PIM6-Internal Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "pim6Internal"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>pim6Internal</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history pim6-internal size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for PIM6-Internal Events

Deleting the IPv6 PIM Event-History Buffers for PIM6-Internal Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "pim6Internal"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>pim6Internal</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history pim6-internal size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for RP Events

Configuring the IPv6 PIM Event-History Buffers for RP Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "rp"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>rp</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history rp size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for RP Events

Deleting the IPv6 PIM Event-History Buffers for RP Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "rp"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>rp</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history rp size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Configuring the IPv6 PIM Event-History Buffers for VRF Events

Configuring the IPv6 PIM Event-History Buffers for VRF Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "size": "medium",
                  "type": "vrf"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list>
              <type>vrf</type>
              <size>3</size>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

ipv6 pim event-history vrf size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html

Deleting the IPv6 PIM Event-History Buffers for VRF Events

Deleting the IPv6 PIM Event-History Buffers for VRF Events 
POST http://<mgmt0_IP>/api/mo/sys/pim6/inst.json
{
  "pim6Inst": {
    "children": [
      {
        "pim6Dom": {
          "attributes": {
            "name": "default"
          },
          "children": [
            {
              "pim6EventHistory": {
                "attributes": {
                  "status": "deleted",
                  "type": "vrf"
}}}]}}]}}
{
    imdata:[]
}
<System>
  <pim6-items>
    <inst-items>
      <dom-items>
        <Dom-list>
          <name>default</name>
          <eventhist-items>
            <EventHistory-list xc:operation="delete">
              <type>vrf</type>
            </EventHistory-list>
          </eventhist-items>
        </Dom-list>
      </dom-items>
    </inst-items>
  </pim6-items>
</System>

Note: This example was added in Release 9.2(1).


CLI Commands

The CLI commands are equivalent to the payload examples displayed in the pane on the right. Click the DME tab in the top-left corner of the right pane to view the JSON payload. Click the YANG tab to view the XML payload.

no ipv6 pim event-history vrf size medium

For other CLI options, see the Cisco Nexus 9000 Series NX-OS Command Reference:
http://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-command-reference-list.html

See the NX-API DME Model Reference for detailed information about classes and attributes described in the payload:
https://developer.cisco.com/media/dme/index.html

For information about using the payloads, see the Cisco Nexus 9000 Series NX-OS Programmability Guide
https://www.cisco.com/c/en/us/support/switches/nexus-9000-series-switches/products-programming-reference-guides-list.html