D. POST https://api.meraki.com/api/v0/organizations/<org_id>/networks
Explanation:
POST is the correct HTTP method for creating a new resource, such as a network.
The URI specifies the endpoint for the networks resource under a specific organization (<org_id>), which aligns with how Meraki's API operates.
The request body provides the necessary details (name, organizationId, type) for creating a new network.
Reference:
The provided link aligns with the Meraki Dashboard API documentation, which describes how to create networks under an organization using the /networks endpoint.
The YANG data node that is referenced in the question is:
D. routing-instance is a container.
This is because the question explicitly asks what the YANG data node is for routing-instance, and in YANG terms, routing-instance is defined as a container.
The XML structure and RESTCONF response indicate the following:
- route is a list because it allows multiple route entries, each with a unique key (destination-prefix) and associated sub-elements (next-hop, outgoing-interface).
- static-routes is a container, as it groups the ipv4 element.
- routing-instance is a container, as it contains multiple elements (name, description, etc.).